Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/website/screens/components/link/code/LinkCodePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const sections = [
<td>
<TableCode>boolean</TableCode>
</td>
<td>If true, the link is disabled.</td>
<td>If true, the link will be disabled.</td>
<td>
<TableCode>false</TableCode>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const sections = [
<td>
<TableCode>boolean</TableCode>
</td>
<td>Whether the tab is disabled or not.</td>
<td>If true, the tab will be disabled.</td>
<td>
<TableCode>false</TableCode>
</td>
Expand Down
2 changes: 1 addition & 1 deletion apps/website/screens/components/tabs/code/TabsCodePage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const sections = [
<td>
<TableCode>boolean</TableCode>
</td>
<td>Whether the tab is disabled or not.</td>
<td>If true, the tab will be disabled.</td>
<td>
<TableCode>false</TableCode>
</td>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const sections = [
name or SVG element used as the icon displayed in the step.
</li>
<li>
<b>disabled</b>: Whether the step is disabled or not.
<b>disabled</b>: If true, the step will be disabled.
</li>
<li>
<b>valid</b>: Whether the step is valid or not.
Expand Down
2 changes: 1 addition & 1 deletion packages/lib/src/link/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Margin, SVG, Space } from "../common/utils";

export type LinkProps = {
/**
* If true, the link is disabled.
* If true, the link will be disabled.
*/
disabled?: boolean;
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/lib/src/nav-tabs/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export type TabProps = {
*/
children: string;
/**
* Whether the tab is disabled or not.
* If true, the tab will be disabled.
*/
disabled?: boolean;
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/lib/src/wizard/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export type StepProps = {
*/
icon?: string | SVG;
/**
* Whether the step is disabled or not.
* If true, the step will be disabled.
*/
disabled?: boolean;
/**
Expand Down