ionbase-ui 0.37.0 → 0.46.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/figma-descriptions.json +39 -39
- package/dist/figma-map.json +1 -1
- package/dist/meta/Alert.json +2 -0
- package/dist/meta/Avatar.json +1 -0
- package/dist/meta/AvatarGradient.json +30 -30
- package/dist/meta/AvatarGroup.json +1 -0
- package/dist/meta/Button.json +1 -0
- package/dist/meta/components.json +36 -31
- package/dist/meta/contrast.json +13024 -2207
- package/dist/meta/index.json +1 -1
- package/dist/meta/patterns/index.json +1 -1
- package/dist/styles/alert.css +6 -0
- package/dist/styles/avatar-gradient.css +92 -55
- package/dist/styles/avatar.css +7 -1
- package/dist/styles/button.css +6 -1
- package/dist/styles/empty-state.css +13 -18
- package/dist/styles/tokens/base.css +88 -16
- package/dist/styles/tokens/theme-dark.css +42 -29
- package/dist/tokens/index.d.ts +441 -51
- package/dist/tokens/index.d.ts.map +1 -1
- package/dist/tokens/index.js +362 -44
- package/dist/tokens/index.js.map +1 -1
- package/llms.txt +1 -1
- package/package.json +1 -1
|
@@ -1,197 +1,197 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.
|
|
2
|
+
"version": "0.46.0",
|
|
3
3
|
"begin": "───── CODE · ionbase-ui ─────",
|
|
4
4
|
"end": "───── end code ─────",
|
|
5
5
|
"blocks": {
|
|
6
6
|
"21:461": {
|
|
7
7
|
"figmaComponent": "Button",
|
|
8
8
|
"component": "Button",
|
|
9
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Button } from 'ionbase-ui';\n<Button variant=\"primary-brand\" size=\"sm\">Label</Button>\n\nPROPERTIES\n Type → variant: Primary Brand=primary-brand, Primary Neutral=primary-neutral, Primary Soft=primary-soft, Secondary=secondary, Tertiary=tertiary, Destructive=destructive, Success=success\n Size → size: Small=sm, Medium=md, Large=lg, XLarge=xl\n State → isDisabled (Disabled only)\n Label → children\n Leading Icon → startIcon\n Trailing Icon → endIcon\n Show Leading Icon → startIcon\n Show Trailing Icon → endIcon\n\nNOTES\n State: Default, Hover, Pressed and Focus are CSS and React Aria — :hover, :focus-visible, data-pressed — not props. Only Disabled is one.\n Leading Icon: wrap in Icon; omit Icon's label, the button text names it\n Trailing Icon: same\n Show Leading Icon: an absent prop is the switch — React needs no Show boolean, so false means omit startIcon\n Show Trailing Icon: same\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/button/index.html.md\nGenerated from ionbase-ui@0.
|
|
9
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Button } from 'ionbase-ui';\n<Button variant=\"primary-brand\" size=\"sm\">Label</Button>\n\nPROPERTIES\n Type → variant: Primary Brand=primary-brand, Primary Neutral=primary-neutral, Primary Soft=primary-soft, Secondary=secondary, Tertiary=tertiary, Destructive=destructive, Success=success\n Size → size: Small=sm, Medium=md, Large=lg, XLarge=xl\n State → isDisabled (Disabled only)\n Label → children\n Leading Icon → startIcon\n Trailing Icon → endIcon\n Show Leading Icon → startIcon\n Show Trailing Icon → endIcon\n\nNOTES\n State: Default, Hover, Pressed and Focus are CSS and React Aria — :hover, :focus-visible, data-pressed — not props. Only Disabled is one.\n Leading Icon: wrap in Icon; omit Icon's label, the button text names it\n Trailing Icon: same\n Show Leading Icon: an absent prop is the switch — React needs no Show boolean, so false means omit startIcon\n Show Trailing Icon: same\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/button/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
10
10
|
},
|
|
11
11
|
"623:151": {
|
|
12
12
|
"figmaComponent": "Icon Button",
|
|
13
13
|
"component": "Button",
|
|
14
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Button } from 'ionbase-ui';\n<Button variant=\"primary-brand\" size=\"sm\" aria-label=\"…\" />\n\nPROPERTIES\n Type → variant: Primary Brand=primary-brand, Primary Neutral=primary-neutral, Primary Soft=primary-soft, Secondary=secondary, Tertiary=tertiary, Destructive=destructive, Success=success\n Size → size: Small=sm, Medium=md, Large=lg, XLarge=xl\n State → isDisabled (Disabled only)\n Icon → startIcon\n\nNot a separate component in code: an icon-only Button. It is the one case where aria-label is required, because there is no text to name it.\n\nNOTES\n State: as Button\n Icon: with Icon's own label omitted — the Button's aria-label carries the name\n Shape: Figma draws a square and a circle variant; code has no shape prop. A round icon button is a className, not an API.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/button/index.html.md\nGenerated from ionbase-ui@0.
|
|
14
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Button } from 'ionbase-ui';\n<Button variant=\"primary-brand\" size=\"sm\" aria-label=\"…\" />\n\nPROPERTIES\n Type → variant: Primary Brand=primary-brand, Primary Neutral=primary-neutral, Primary Soft=primary-soft, Secondary=secondary, Tertiary=tertiary, Destructive=destructive, Success=success\n Size → size: Small=sm, Medium=md, Large=lg, XLarge=xl\n State → isDisabled (Disabled only)\n Icon → startIcon\n\nNot a separate component in code: an icon-only Button. It is the one case where aria-label is required, because there is no text to name it.\n\nNOTES\n State: as Button\n Icon: with Icon's own label omitted — the Button's aria-label carries the name\n Shape: Figma draws a square and a circle variant; code has no shape prop. A round icon button is a className, not an API.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/button/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
15
15
|
},
|
|
16
16
|
"80:275": {
|
|
17
17
|
"figmaComponent": "Input",
|
|
18
18
|
"component": "Input",
|
|
19
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Input } from 'ionbase-ui';\n<Input size=\"lg\" label=\"…\" />\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n State → isInvalid (Invalid only)\n Value → value\n Leading Icon → leadingIcon\n Trailing Icon → trailingIcon\n Show Leading Icon → leadingIcon\n Show Trailing Icon → trailingIcon\n\nNOTES\n State: Hover, Focus and Filled are CSS or content. Disabled is isDisabled, Read-only is isReadOnly — both react-aria props rather than this axis.\n Value: or defaultValue when uncontrolled; Figma's text is placeholder content, not necessarily a value\n Show Leading Icon: false means omit the prop\n Show Trailing Icon: false means omit the prop\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/input/index.html.md\nGenerated from ionbase-ui@0.
|
|
19
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Input } from 'ionbase-ui';\n<Input size=\"lg\" label=\"…\" />\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n State → isInvalid (Invalid only)\n Value → value\n Leading Icon → leadingIcon\n Trailing Icon → trailingIcon\n Show Leading Icon → leadingIcon\n Show Trailing Icon → trailingIcon\n\nNOTES\n State: Hover, Focus and Filled are CSS or content. Disabled is isDisabled, Read-only is isReadOnly — both react-aria props rather than this axis.\n Value: or defaultValue when uncontrolled; Figma's text is placeholder content, not necessarily a value\n Show Leading Icon: false means omit the prop\n Show Trailing Icon: false means omit the prop\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/input/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
20
20
|
},
|
|
21
21
|
"80:372": {
|
|
22
22
|
"figmaComponent": "Input/Phone",
|
|
23
23
|
"component": "PhoneInput",
|
|
24
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { PhoneInput } from 'ionbase-ui';\n<PhoneInput size=\"lg\" label=\"…\" />\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n Dial Code → dialCode\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/phone-input/index.html.md\nGenerated from ionbase-ui@0.
|
|
24
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { PhoneInput } from 'ionbase-ui';\n<PhoneInput size=\"lg\" label=\"…\" />\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n Dial Code → dialCode\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/phone-input/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
25
25
|
},
|
|
26
26
|
"82:379": {
|
|
27
27
|
"figmaComponent": "Select",
|
|
28
28
|
"component": "Select",
|
|
29
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Select } from 'ionbase-ui';\n<Select size=\"lg\" label=\"…\" />\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n State → isInvalid (Invalid only)\n Value → placeholder\n\nNOTES\n State: Hover, Focus and Filled are CSS or content; Disabled is isDisabled\n Value: Figma's text is the collapsed display value. In code that is `placeholder` when nothing is chosen; once something is, the label comes from the `options` array.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/select/index.html.md\nGenerated from ionbase-ui@0.
|
|
29
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Select } from 'ionbase-ui';\n<Select size=\"lg\" label=\"…\" />\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n State → isInvalid (Invalid only)\n Value → placeholder\n\nNOTES\n State: Hover, Focus and Filled are CSS or content; Disabled is isDisabled\n Value: Figma's text is the collapsed display value. In code that is `placeholder` when nothing is chosen; once something is, the label comes from the `options` array.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/select/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
30
30
|
},
|
|
31
31
|
"87:350": {
|
|
32
32
|
"figmaComponent": "Checkbox",
|
|
33
33
|
"component": "Checkbox",
|
|
34
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Checkbox } from 'ionbase-ui';\n<Checkbox size=\"sm\" intent=\"brand\">Label</Checkbox>\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n Color → intent: Brand=brand, Neutral=neutral, Danger=danger\n State → isIndeterminate (Indeterminate, Indeterminate-disabled only)\n Label → children\n Show Label → children\n\nNOTES\n State: Checked is `checked`/`defaultChecked`, and the -disabled halves are isDisabled. One Figma axis, three code props, which is why it is not a single mapping.\n Show Label: false means a bare box — and then aria-label becomes required\n Focused: a drawn focus ring. In code it is :focus-visible, which the browser owns.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/checkbox/index.html.md\nGenerated from ionbase-ui@0.
|
|
34
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Checkbox } from 'ionbase-ui';\n<Checkbox size=\"sm\" intent=\"brand\">Label</Checkbox>\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n Color → intent: Brand=brand, Neutral=neutral, Danger=danger\n State → isIndeterminate (Indeterminate, Indeterminate-disabled only)\n Label → children\n Show Label → children\n\nNOTES\n State: Checked is `checked`/`defaultChecked`, and the -disabled halves are isDisabled. One Figma axis, three code props, which is why it is not a single mapping.\n Show Label: false means a bare box — and then aria-label becomes required\n Focused: a drawn focus ring. In code it is :focus-visible, which the browser owns.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/checkbox/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
35
35
|
},
|
|
36
36
|
"89:314": {
|
|
37
37
|
"figmaComponent": "Radio",
|
|
38
38
|
"component": "Radio",
|
|
39
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Radio } from 'ionbase-ui';\n<Radio size=\"lg\" intent=\"brand\" value={…}>Label</Radio>\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n Color → intent: Brand=brand, Neutral=neutral, Danger=danger\n Label → children\n Show Label → children\n\nNOTES\n State: Selected/Unselected is the RadioGroup's value, not a prop on the Radio — a radio cannot own its own selection\n Show Label: false means aria-label is required\n Focused: drawn focus ring; :focus-visible in code\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/radio/index.html.md\nGenerated from ionbase-ui@0.
|
|
39
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Radio } from 'ionbase-ui';\n<Radio size=\"lg\" intent=\"brand\" value={…}>Label</Radio>\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n Color → intent: Brand=brand, Neutral=neutral, Danger=danger\n Label → children\n Show Label → children\n\nNOTES\n State: Selected/Unselected is the RadioGroup's value, not a prop on the Radio — a radio cannot own its own selection\n Show Label: false means aria-label is required\n Focused: drawn focus ring; :focus-visible in code\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/radio/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
40
40
|
},
|
|
41
41
|
"88:323": {
|
|
42
42
|
"figmaComponent": "Toggle",
|
|
43
43
|
"component": "Toggle",
|
|
44
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Toggle } from 'ionbase-ui';\n<Toggle size=\"sm\" intent=\"brand\">Label</Toggle>\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n Color → intent: Brand=brand, Neutral=neutral, Danger=danger\n Label → children\n Show Label → children\n\nNOTES\n State: On/Off is `checked`/`defaultChecked` on the underlying input, not a Toggle prop\n Show Label: false means aria-label is required\n Focused: drawn focus ring; :focus-visible in code\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/toggle/index.html.md\nGenerated from ionbase-ui@0.
|
|
44
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Toggle } from 'ionbase-ui';\n<Toggle size=\"sm\" intent=\"brand\">Label</Toggle>\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n Color → intent: Brand=brand, Neutral=neutral, Danger=danger\n Label → children\n Show Label → children\n\nNOTES\n State: On/Off is `checked`/`defaultChecked` on the underlying input, not a Toggle prop\n Show Label: false means aria-label is required\n Focused: drawn focus ring; :focus-visible in code\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/toggle/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
45
45
|
},
|
|
46
46
|
"152:73": {
|
|
47
47
|
"figmaComponent": "Badge",
|
|
48
48
|
"component": "Badge",
|
|
49
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Badge } from 'ionbase-ui';\n<Badge intent=\"neutral\" size=\"sm\" shape=\"pill\">Label</Badge>\n\nPROPERTIES\n Intent → intent: Neutral=neutral, Primary=primary, Success=success, Warning=warning, Error=error, Information=information\n Label → children\n Show Label → children\n Show Dot → dot\n Show Icon → icon\n Swap Icon → icon\n Size → size: Small=sm, Medium=md, Large=lg\n Shape → shape: Pill=pill, Rounded=rounded\n\nNOTES\n Show Icon: false means omit icon; dot wins when both are set\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/badge/index.html.md\nGenerated from ionbase-ui@0.
|
|
49
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Badge } from 'ionbase-ui';\n<Badge intent=\"neutral\" size=\"sm\" shape=\"pill\">Label</Badge>\n\nPROPERTIES\n Intent → intent: Neutral=neutral, Primary=primary, Success=success, Warning=warning, Error=error, Information=information\n Label → children\n Show Label → children\n Show Dot → dot\n Show Icon → icon\n Swap Icon → icon\n Size → size: Small=sm, Medium=md, Large=lg\n Shape → shape: Pill=pill, Rounded=rounded\n\nNOTES\n Show Icon: false means omit icon; dot wins when both are set\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/badge/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
50
50
|
},
|
|
51
51
|
"812:1902": {
|
|
52
52
|
"figmaComponent": "Alert",
|
|
53
53
|
"component": "Alert",
|
|
54
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Alert } from 'ionbase-ui';\n<Alert intent=\"information\" emphasis=\"subtle\" layout=\"inline\">Label</Alert>\n\nPROPERTIES\n Intent → intent: Neutral=neutral, Primary=primary, Success=success, Warning=warning, Error=error, Information=information\n Emphasis → emphasis: Subtle=subtle, Solid=solid\n Layout → layout: Inline=inline, Banner=banner\n Title → title\n Show Title → title\n Message → children\n Show Icon → hideIcon\n Show Dismiss → onDismiss\n Show Actions → actions\n\nNOTES\n Show Title: false means omit title\n Show Icon: inverted — Figma's Show Icon false is hideIcon true\n Show Dismiss: the dismiss button appears when a handler is passed; there is no boolean\n Show Actions: an absent prop is the switch\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/alert/index.html.md\nGenerated from ionbase-ui@0.
|
|
54
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Alert } from 'ionbase-ui';\n<Alert intent=\"information\" emphasis=\"subtle\" layout=\"inline\">Label</Alert>\n\nPROPERTIES\n Intent → intent: Neutral=neutral, Primary=primary, Success=success, Warning=warning, Error=error, Information=information\n Emphasis → emphasis: Subtle=subtle, Solid=solid\n Layout → layout: Inline=inline, Banner=banner\n Title → title\n Show Title → title\n Message → children\n Show Icon → hideIcon\n Show Dismiss → onDismiss\n Show Actions → actions\n\nNOTES\n Show Title: false means omit title\n Show Icon: inverted — Figma's Show Icon false is hideIcon true\n Show Dismiss: the dismiss button appears when a handler is passed; there is no boolean\n Show Actions: an absent prop is the switch\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/alert/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
55
55
|
},
|
|
56
56
|
"820:1655": {
|
|
57
57
|
"figmaComponent": "Toast",
|
|
58
58
|
"component": "Toast",
|
|
59
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Toast } from 'ionbase-ui';\n<Toast intent=\"information\" onDismiss={…} id={…} />\n\nPROPERTIES\n Intent → intent: Neutral=neutral, Primary=primary, Success=success, Warning=warning, Error=error, Information=information\n Title → title\n Show Title → title\n Message → message\n Show Message → message\n Show Action → action\n Show Dismiss → dismissLabel\n\nNOTES\n Show Action: one action only — a second belongs in a Modal\n Show Dismiss: the dismiss control is always rendered; only its label is configurable\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/toast/index.html.md\nGenerated from ionbase-ui@0.
|
|
59
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Toast } from 'ionbase-ui';\n<Toast intent=\"information\" onDismiss={…} id={…} />\n\nPROPERTIES\n Intent → intent: Neutral=neutral, Primary=primary, Success=success, Warning=warning, Error=error, Information=information\n Title → title\n Show Title → title\n Message → message\n Show Message → message\n Show Action → action\n Show Dismiss → dismissLabel\n\nNOTES\n Show Action: one action only — a second belongs in a Modal\n Show Dismiss: the dismiss control is always rendered; only its label is configurable\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/toast/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
60
60
|
},
|
|
61
61
|
"774:1516": {
|
|
62
62
|
"figmaComponent": "Link",
|
|
63
63
|
"component": "Link",
|
|
64
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Link } from 'ionbase-ui';\n<Link variant=\"inline\">Label</Link>\n\nPROPERTIES\n Type → variant: Inline=inline, Standalone=standalone\n State → isDisabled (Disabled only)\n Label → children\n Leading Icon → startIcon\n Trailing Icon → endIcon\n Show Leading Icon → startIcon\n Show Trailing Icon → endIcon\n\nNOTES\n State: Hover and Focus are CSS; Visited is :visited, which no prop can set\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/link/index.html.md\nGenerated from ionbase-ui@0.
|
|
64
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Link } from 'ionbase-ui';\n<Link variant=\"inline\">Label</Link>\n\nPROPERTIES\n Type → variant: Inline=inline, Standalone=standalone\n State → isDisabled (Disabled only)\n Label → children\n Leading Icon → startIcon\n Trailing Icon → endIcon\n Show Leading Icon → startIcon\n Show Trailing Icon → endIcon\n\nNOTES\n State: Hover and Focus are CSS; Visited is :visited, which no prop can set\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/link/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
65
65
|
},
|
|
66
66
|
"53:13": {
|
|
67
67
|
"figmaComponent": "Nav Item",
|
|
68
68
|
"component": "NavItem",
|
|
69
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { NavItem } from 'ionbase-ui';\n<NavItem>Label</NavItem>\n\nPROPERTIES\n Label → children\n Icon → icon\n Show Chevron → showChevron\n\nNOTES\n State: Default and Hover are CSS and React Aria's useHover, not props\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/nav-item/index.html.md\nGenerated from ionbase-ui@0.
|
|
69
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { NavItem } from 'ionbase-ui';\n<NavItem>Label</NavItem>\n\nPROPERTIES\n Label → children\n Icon → icon\n Show Chevron → showChevron\n\nNOTES\n State: Default and Hover are CSS and React Aria's useHover, not props\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/nav-item/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
70
70
|
},
|
|
71
71
|
"82:306": {
|
|
72
72
|
"figmaComponent": "Menu",
|
|
73
73
|
"component": "Menu",
|
|
74
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Menu } from 'ionbase-ui';\n<Menu />\n\nNOTES\n Type: Single and Multi describe how many items may be selected, which is the caller's state. Menu renders the surface and holds no selection of its own.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/menu/index.html.md\nGenerated from ionbase-ui@0.
|
|
74
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Menu } from 'ionbase-ui';\n<Menu />\n\nNOTES\n Type: Single and Multi describe how many items may be selected, which is the caller's state. Menu renders the surface and holds no selection of its own.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/menu/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
75
75
|
},
|
|
76
76
|
"639:2634": {
|
|
77
77
|
"figmaComponent": "Menu Item",
|
|
78
78
|
"component": "MenuItem",
|
|
79
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { MenuItem } from 'ionbase-ui';\n<MenuItem>Label</MenuItem>\n\nPROPERTIES\n Status → isSelected (Selected, Selected Primary only)\n Text → children\n Show Icon → icon\n Select Icon → icon\n\nNOTES\n Status: Hover is CSS. Selected Primary is a second selected styling Figma draws and code does not yet ship.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/menu-item/index.html.md\nGenerated from ionbase-ui@0.
|
|
79
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { MenuItem } from 'ionbase-ui';\n<MenuItem>Label</MenuItem>\n\nPROPERTIES\n Status → isSelected (Selected, Selected Primary only)\n Text → children\n Show Icon → icon\n Select Icon → icon\n\nNOTES\n Status: Hover is CSS. Selected Primary is a second selected styling Figma draws and code does not yet ship.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/menu-item/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
80
80
|
},
|
|
81
81
|
"157:126": {
|
|
82
82
|
"figmaComponent": "Tabs",
|
|
83
83
|
"component": "Tabs",
|
|
84
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Tabs } from 'ionbase-ui';\n<Tabs type=\"pill\" orientation=\"horizontal\" aria-label=\"…\" />\n\nPROPERTIES\n Type → type: Pill=pill, Underline=underline\n Orientation → orientation: Horizontal=horizontal, Vertical=vertical\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/tabs/index.html.md\nGenerated from ionbase-ui@0.
|
|
84
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Tabs } from 'ionbase-ui';\n<Tabs type=\"pill\" orientation=\"horizontal\" aria-label=\"…\" />\n\nPROPERTIES\n Type → type: Pill=pill, Underline=underline\n Orientation → orientation: Horizontal=horizontal, Vertical=vertical\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/tabs/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
85
85
|
},
|
|
86
86
|
"156:259": {
|
|
87
87
|
"figmaComponent": "Tabs Item",
|
|
88
88
|
"component": "TabItem",
|
|
89
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { TabItem } from 'ionbase-ui';\n<TabItem key=\"billing\" title=\"Billing\">Panel content</TabItem>\n\nTabItem is a collection item and takes no props of its own. Type, Size and State belong to the parent Tabs or to its selection state, which is why almost everything here is ignored rather than mapped.\n\nNOTES\n Label: TabItem's label is its `title` collection prop. It is not a typed prop the TypeScript checker can see, so there is nothing here to verify against — see TabItem's contract.\n Type: set on the parent Tabs, not per item\n Size: set on the parent Tabs, not per item\n State: selection is the Tabs collection's state; Disabled is disabledKeys on Tabs\n Show Label: a tab without a label is a tab that cannot be named\n Show Leading Icon: not yet in the code component\n Leading Icon: not yet in the code component\n Show Trailing: not yet in the code component\n Trailing: not yet in the code component\n Focused: drawn focus ring; :focus-visible in code\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/tab-item/index.html.md\nGenerated from ionbase-ui@0.
|
|
89
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { TabItem } from 'ionbase-ui';\n<TabItem key=\"billing\" title=\"Billing\">Panel content</TabItem>\n\nTabItem is a collection item and takes no props of its own. Type, Size and State belong to the parent Tabs or to its selection state, which is why almost everything here is ignored rather than mapped.\n\nNOTES\n Label: TabItem's label is its `title` collection prop. It is not a typed prop the TypeScript checker can see, so there is nothing here to verify against — see TabItem's contract.\n Type: set on the parent Tabs, not per item\n Size: set on the parent Tabs, not per item\n State: selection is the Tabs collection's state; Disabled is disabledKeys on Tabs\n Show Label: a tab without a label is a tab that cannot be named\n Show Leading Icon: not yet in the code component\n Leading Icon: not yet in the code component\n Show Trailing: not yet in the code component\n Trailing: not yet in the code component\n Focused: drawn focus ring; :focus-visible in code\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/tab-item/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
90
90
|
},
|
|
91
91
|
"174:103": {
|
|
92
92
|
"figmaComponent": "Table Cell",
|
|
93
93
|
"component": "TableCell",
|
|
94
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { TableCell } from 'ionbase-ui';\n<TableCell align=\"leading\" />\n\nPROPERTIES\n Type → header (Header only)\n Align → align: Leading=leading, Trailing=trailing\n Show Divider → showDivider\n Content → children\n Show Content → children\n\nNOTES\n Type: Body is the default <td>\n Density: density is set once on Table and reaches the cell through CSS — a per-cell prop could disagree with its own table\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/table-cell/index.html.md\nGenerated from ionbase-ui@0.
|
|
94
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { TableCell } from 'ionbase-ui';\n<TableCell align=\"leading\" />\n\nPROPERTIES\n Type → header (Header only)\n Align → align: Leading=leading, Trailing=trailing\n Show Divider → showDivider\n Content → children\n Show Content → children\n\nNOTES\n Type: Body is the default <td>\n Density: density is set once on Table and reaches the cell through CSS — a per-cell prop could disagree with its own table\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/table-cell/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
95
95
|
},
|
|
96
96
|
"175:605": {
|
|
97
97
|
"figmaComponent": "Table Row",
|
|
98
98
|
"component": "TableRow",
|
|
99
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { TableRow } from 'ionbase-ui';\n<TableRow />\n\nPROPERTIES\n State → isSelected (Selected, Selected-Hover only)\n Show Selection → selection\n\nNOTES\n State: Hover is CSS\n Show Selection: takes the Checkbox's own props, not a boolean — a selectable row needs checked/onChange wiring\n Density: set once on Table; see Table Cell\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/table-row/index.html.md\nGenerated from ionbase-ui@0.
|
|
99
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { TableRow } from 'ionbase-ui';\n<TableRow />\n\nPROPERTIES\n State → isSelected (Selected, Selected-Hover only)\n Show Selection → selection\n\nNOTES\n State: Hover is CSS\n Show Selection: takes the Checkbox's own props, not a boolean — a selectable row needs checked/onChange wiring\n Density: set once on Table; see Table Cell\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/table-row/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
100
100
|
},
|
|
101
101
|
"74:164": {
|
|
102
102
|
"figmaComponent": "Avatar",
|
|
103
103
|
"component": "Avatar",
|
|
104
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Avatar } from 'ionbase-ui';\n<Avatar size=\"lg\" shape=\"circle\" />\n\nPROPERTIES\n Size → size: Mini=mini, Small=sm, Medium=md, Large=lg\n Shape → shape: Circle=circle, Square=square\n Type → src (Image only)\n Initials → initials\n Icon → icon\n Show Ring → ring\n Show Top Indicator → topIndicator\n Show Bottom Indicator → bottomIndicator\n\nNOTES\n Type: code picks by precedence rather than a type prop: src, then initials, then icon. Character means pass initials, Icon means pass icon.\n Show Top Indicator: Figma needs a boolean because the intent lives on the nested Status Indicator instance; code takes the intent itself, so passing one is what shows the mark. The drawn instance is Intent=Primary with its check glyph, which is what `topIndicator=\"primary\"` renders.\n Show Bottom Indicator: As the top indicator — the intent comes from the nested Status Indicator, which a boolean cannot carry. The drawn instance is Intent=Success with no glyph.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/avatar/index.html.md\nGenerated from ionbase-ui@0.
|
|
104
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Avatar } from 'ionbase-ui';\n<Avatar size=\"lg\" shape=\"circle\" />\n\nPROPERTIES\n Size → size: Mini=mini, Small=sm, Medium=md, Large=lg\n Shape → shape: Circle=circle, Square=square\n Type → src (Image only)\n Initials → initials\n Icon → icon\n Show Ring → ring\n Show Top Indicator → topIndicator\n Show Bottom Indicator → bottomIndicator\n\nNOTES\n Type: code picks by precedence rather than a type prop: src, then initials, then icon. Character means pass initials, Icon means pass icon.\n Show Top Indicator: Figma needs a boolean because the intent lives on the nested Status Indicator instance; code takes the intent itself, so passing one is what shows the mark. The drawn instance is Intent=Primary with its check glyph, which is what `topIndicator=\"primary\"` renders.\n Show Bottom Indicator: As the top indicator — the intent comes from the nested Status Indicator, which a boolean cannot carry. The drawn instance is Intent=Success with no glyph.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/avatar/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
105
105
|
},
|
|
106
106
|
"74:279": {
|
|
107
107
|
"figmaComponent": "Avatar Group",
|
|
108
108
|
"component": "AvatarGroup",
|
|
109
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { AvatarGroup } from 'ionbase-ui';\n<AvatarGroup size=\"lg\" shape=\"circle\" />\n\nPROPERTIES\n Size → size: Mini=mini, Small=sm, Medium=md, Large=lg\n Shape → shape: Circle=circle, Square=square\n Show Overflow → max\n Show Avatar 3 → children\n Show Avatar 4 → children\n\nNOTES\n Show Overflow: the +N avatar appears when children exceed max\n Show Avatar 3: Figma needs a boolean per slot; React just renders fewer children\n Show Avatar 4: same\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/avatar-group/index.html.md\nGenerated from ionbase-ui@0.
|
|
109
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { AvatarGroup } from 'ionbase-ui';\n<AvatarGroup size=\"lg\" shape=\"circle\" />\n\nPROPERTIES\n Size → size: Mini=mini, Small=sm, Medium=md, Large=lg\n Shape → shape: Circle=circle, Square=square\n Show Overflow → max\n Show Avatar 3 → children\n Show Avatar 4 → children\n\nNOTES\n Show Overflow: the +N avatar appears when children exceed max\n Show Avatar 3: Figma needs a boolean per slot; React just renders fewer children\n Show Avatar 4: same\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/avatar-group/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
110
110
|
},
|
|
111
111
|
"1054:305": {
|
|
112
112
|
"figmaComponent": "Avatar Gradient",
|
|
113
113
|
"component": "AvatarGradient",
|
|
114
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { AvatarGradient } from 'ionbase-ui';\n<AvatarGradient size=\"lg\" color=\"slate\" />\n\nPROPERTIES\n Size → size: Mini=mini, Small=sm, Medium=md, Large=lg\n Color → color: Slate=slate, Blue=blue, Violet=violet, Pink=pink, Orange=orange, Green=green, Red=red\n Initials → initials\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/avatar-gradient/index.html.md\nGenerated from ionbase-ui@0.
|
|
114
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { AvatarGradient } from 'ionbase-ui';\n<AvatarGradient size=\"lg\" color=\"slate\" />\n\nPROPERTIES\n Size → size: Mini=mini, Small=sm, Medium=md, Large=lg\n Color → color: Slate=slate, Blue=blue, Violet=violet, Pink=pink, Orange=orange, Green=green, Red=red\n Initials → initials\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/avatar-gradient/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
115
115
|
},
|
|
116
116
|
"126:22724": {
|
|
117
117
|
"figmaComponent": "Border",
|
|
118
118
|
"component": "Divider",
|
|
119
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Divider } from 'ionbase-ui';\n<Divider orientation=\"vertical\" />\n\nPROPERTIES\n Style → orientation: Horizontal=horizontal, Vertical=vertical\n\nFigma calls it Border; the code component is Divider, because it renders an <hr> and an <hr> is a thematic break rather than an edge.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/divider/index.html.md\nGenerated from ionbase-ui@0.
|
|
119
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Divider } from 'ionbase-ui';\n<Divider orientation=\"vertical\" />\n\nPROPERTIES\n Style → orientation: Horizontal=horizontal, Vertical=vertical\n\nFigma calls it Border; the code component is Divider, because it renders an <hr> and an <hr> is a thematic break rather than an edge.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/divider/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
120
120
|
},
|
|
121
121
|
"52:21369": {
|
|
122
122
|
"figmaComponent": "Logo-Ionbase",
|
|
123
123
|
"component": "Logo",
|
|
124
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Logo } from 'ionbase-ui';\n<Logo size=\"sm\" wordmark=\"vector\" />\n\nPROPERTIES\n Size → size: Small=sm, Large=lg\n Type → wordmark: Logo=vector, Icon=text\n\nNOTES\n Type: the names invert: Figma's Logo is the serif vector wordmark, Figma's Icon is live Host Grotesk text\n Property: the Name axis renders placeholder text in an unbound colour — leftover debug content, not a real asset. LogoMark covers the no-wordmark case.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/logo/index.html.md\nGenerated from ionbase-ui@0.
|
|
124
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Logo } from 'ionbase-ui';\n<Logo size=\"sm\" wordmark=\"vector\" />\n\nPROPERTIES\n Size → size: Small=sm, Large=lg\n Type → wordmark: Logo=vector, Icon=text\n\nNOTES\n Type: the names invert: Figma's Logo is the serif vector wordmark, Figma's Icon is live Host Grotesk text\n Property: the Name axis renders placeholder text in an unbound colour — leftover debug content, not a real asset. LogoMark covers the no-wordmark case.\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/logo/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
125
125
|
},
|
|
126
126
|
"792:1537": {
|
|
127
127
|
"figmaComponent": "Modal",
|
|
128
128
|
"component": "Modal",
|
|
129
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Modal } from 'ionbase-ui';\n<Modal size=\"sm\" align=\"left\" title={…} />\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg, Fullscreen=fullscreen\n Align → align: Left=left, Center=center\n Title → title\n Description → description\n Show Description → description\n Show Close → showClose\n Show Body → children\n Show Footer → footer\n Show Media → media\n Media → media\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/modal/index.html.md\nGenerated from ionbase-ui@0.
|
|
129
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Modal } from 'ionbase-ui';\n<Modal size=\"sm\" align=\"left\" title={…} />\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg, Fullscreen=fullscreen\n Align → align: Left=left, Center=center\n Title → title\n Description → description\n Show Description → description\n Show Close → showClose\n Show Body → children\n Show Footer → footer\n Show Media → media\n Media → media\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/modal/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
130
130
|
},
|
|
131
131
|
"825:1853": {
|
|
132
132
|
"figmaComponent": "Popover",
|
|
133
133
|
"component": "Popover",
|
|
134
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Popover } from 'ionbase-ui';\n<Popover placement=\"bottom\" size=\"sm\">…</Popover>\n\nPROPERTIES\n Placement → placement: Top=top, Bottom=bottom, Left=left, Right=right\n Size → size: Small=sm, Medium=md, Large=lg\n Title → title\n Show Header → title\n Body → content\n Show Body → content\n Show Close → showClose\n Show Footer → footer\n Show Arrow → hideArrow\n\nNOTES\n Show Arrow: inverted — Show Arrow false is hideArrow true\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/popover/index.html.md\nGenerated from ionbase-ui@0.
|
|
134
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Popover } from 'ionbase-ui';\n<Popover placement=\"bottom\" size=\"sm\">…</Popover>\n\nPROPERTIES\n Placement → placement: Top=top, Bottom=bottom, Left=left, Right=right\n Size → size: Small=sm, Medium=md, Large=lg\n Title → title\n Show Header → title\n Body → content\n Show Body → content\n Show Close → showClose\n Show Footer → footer\n Show Arrow → hideArrow\n\nNOTES\n Show Arrow: inverted — Show Arrow false is hideArrow true\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/popover/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
135
135
|
},
|
|
136
136
|
"801:68": {
|
|
137
137
|
"figmaComponent": "Tooltip",
|
|
138
138
|
"component": "Tooltip",
|
|
139
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Tooltip } from 'ionbase-ui';\n<Tooltip placement=\"top\" label={…}>…</Tooltip>\n\nPROPERTIES\n Placement → placement: Top=top, Bottom=bottom, Left=left, Right=right\n Label → label\n Title → title\n Show Title → title\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/tooltip/index.html.md\nGenerated from ionbase-ui@0.
|
|
139
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Tooltip } from 'ionbase-ui';\n<Tooltip placement=\"top\" label={…}>…</Tooltip>\n\nPROPERTIES\n Placement → placement: Top=top, Bottom=bottom, Left=left, Right=right\n Label → label\n Title → title\n Show Title → title\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/tooltip/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
140
140
|
},
|
|
141
141
|
"592:857": {
|
|
142
142
|
"figmaComponent": "Full Card",
|
|
143
143
|
"component": "FullCard",
|
|
144
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { FullCard } from 'ionbase-ui';\n<FullCard alignment=\"right\" headline={…} />\n\nPROPERTIES\n Row Reverse → alignment: True=left, False=right\n Headline → headline\n Description → description\n Show Description → description\n Eyebrow → eyebrow\n Show Eyebrow → eyebrow\n Actions → actions\n Show Actions → actions\n Media → media\n\nNOTES\n Row Reverse: Figma's boolean reverses the row; the code prop names which side the MEDIA sits on\n Media: pass the screenshot itself — the component draws the frame\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/full-card/index.html.md\nGenerated from ionbase-ui@0.
|
|
144
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { FullCard } from 'ionbase-ui';\n<FullCard alignment=\"right\" headline={…} />\n\nPROPERTIES\n Row Reverse → alignment: True=left, False=right\n Headline → headline\n Description → description\n Show Description → description\n Eyebrow → eyebrow\n Show Eyebrow → eyebrow\n Actions → actions\n Show Actions → actions\n Media → media\n\nNOTES\n Row Reverse: Figma's boolean reverses the row; the code prop names which side the MEDIA sits on\n Media: pass the screenshot itself — the component draws the frame\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/full-card/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
145
145
|
},
|
|
146
146
|
"69:335": {
|
|
147
147
|
"figmaComponent": "Header",
|
|
148
148
|
"component": "Header",
|
|
149
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Header } from 'ionbase-ui';\n<Header />\n\nPROPERTIES\n Device → open (Mobile-Open, Mobile-Closed only)\n Center Slot → center\n End Slot → end\n Show Center Slot → center\n Show End Slot → end\n\nNOTES\n Device: Figma spells one four-way axis; code splits it in two. Desktop/Tablet/Mobile is a media query the browser already answers, and only Open/Closed is a prop.\n End Slot: a duplicate slot in the Figma component\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/header/index.html.md\nGenerated from ionbase-ui@0.
|
|
149
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Header } from 'ionbase-ui';\n<Header />\n\nPROPERTIES\n Device → open (Mobile-Open, Mobile-Closed only)\n Center Slot → center\n End Slot → end\n Show Center Slot → center\n Show End Slot → end\n\nNOTES\n Device: Figma spells one four-way axis; code splits it in two. Desktop/Tablet/Mobile is a media query the browser already answers, and only Open/Closed is a prop.\n End Slot: a duplicate slot in the Figma component\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/header/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
150
150
|
},
|
|
151
151
|
"1156:296": {
|
|
152
152
|
"figmaComponent": "Agent Stop",
|
|
153
153
|
"component": "AgentStop",
|
|
154
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { AgentStop } from 'ionbase-ui';\n<AgentStop size=\"sm\" onStop={…} />\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n Label → label\n Stopping Label → stoppingLabel\n\nNOTES\n State: Default/Hover are CSS states; Stopping is the drawn form of isStopping\n Focused: drawn focus ring; :focus-visible in code\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/agent-stop/index.html.md\nGenerated from ionbase-ui@0.
|
|
154
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { AgentStop } from 'ionbase-ui';\n<AgentStop size=\"sm\" onStop={…} />\n\nPROPERTIES\n Size → size: Small=sm, Medium=md, Large=lg\n Label → label\n Stopping Label → stoppingLabel\n\nNOTES\n State: Default/Hover are CSS states; Stopping is the drawn form of isStopping\n Focused: drawn focus ring; :focus-visible in code\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/agent-stop/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
155
155
|
},
|
|
156
156
|
"1160:423": {
|
|
157
157
|
"figmaComponent": "Approval Gate",
|
|
158
158
|
"component": "ApprovalGate",
|
|
159
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { ApprovalGate } from 'ionbase-ui';\n<ApprovalGate risk=\"low\" status=\"pending\" title={…}>Label</ApprovalGate>\n\nPROPERTIES\n Risk → risk: Low=low, Medium=medium, High=high\n Status → status: Pending=pending, Approved=approved, Rejected=rejected, Expired=expired\n Title → title\n Detail → children\n Show Detail → children\n Reject Label → rejectLabel\n Edit Label → editLabel\n Approve Label → approveLabel\n Show Edit → onEdit\n\nNOTES\n Show Detail: false means no children passed\n Show Edit: the Edit button renders only when onEdit is supplied\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/approval-gate/index.html.md\nGenerated from ionbase-ui@0.
|
|
159
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { ApprovalGate } from 'ionbase-ui';\n<ApprovalGate risk=\"low\" status=\"pending\" title={…}>Label</ApprovalGate>\n\nPROPERTIES\n Risk → risk: Low=low, Medium=medium, High=high\n Status → status: Pending=pending, Approved=approved, Rejected=rejected, Expired=expired\n Title → title\n Detail → children\n Show Detail → children\n Reject Label → rejectLabel\n Edit Label → editLabel\n Approve Label → approveLabel\n Show Edit → onEdit\n\nNOTES\n Show Detail: false means no children passed\n Show Edit: the Edit button renders only when onEdit is supplied\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/approval-gate/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
160
160
|
},
|
|
161
161
|
"1162:246": {
|
|
162
162
|
"figmaComponent": "Agent Activity",
|
|
163
163
|
"component": "AgentActivity",
|
|
164
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { AgentActivity } from 'ionbase-ui';\n<AgentActivity />\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/agent-activity/index.html.md\nGenerated from ionbase-ui@0.
|
|
164
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { AgentActivity } from 'ionbase-ui';\n<AgentActivity />\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/agent-activity/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
165
165
|
},
|
|
166
166
|
"1161:287": {
|
|
167
167
|
"figmaComponent": "Agent Activity Step",
|
|
168
168
|
"component": "AgentActivityStep",
|
|
169
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { AgentActivityStep } from 'ionbase-ui';\n<AgentActivityStep status=\"pending\">Label</AgentActivityStep>\n\nPROPERTIES\n Status → status: Pending=pending, Active=active, Done=done, Failed=failed, Skipped=skipped\n Label → children\n Detail → detail\n Show Detail → detail\n\nNOTES\n Show Detail: false means detail is omitted\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/agent-activity-step/index.html.md\nGenerated from ionbase-ui@0.
|
|
169
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { AgentActivityStep } from 'ionbase-ui';\n<AgentActivityStep status=\"pending\">Label</AgentActivityStep>\n\nPROPERTIES\n Status → status: Pending=pending, Active=active, Done=done, Failed=failed, Skipped=skipped\n Label → children\n Detail → detail\n Show Detail → detail\n\nNOTES\n Show Detail: false means detail is omitted\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/agent-activity-step/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
170
170
|
},
|
|
171
171
|
"1164:248": {
|
|
172
172
|
"figmaComponent": "Streaming Text",
|
|
173
173
|
"component": "StreamingText",
|
|
174
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { StreamingText } from 'ionbase-ui';\n<StreamingText isStreaming=\"true\">Label</StreamingText>\n\nPROPERTIES\n Streaming → isStreaming: True=true, False=false\n Text → children\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/streaming-text/index.html.md\nGenerated from ionbase-ui@0.
|
|
174
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { StreamingText } from 'ionbase-ui';\n<StreamingText isStreaming=\"true\">Label</StreamingText>\n\nPROPERTIES\n Streaming → isStreaming: True=true, False=false\n Text → children\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/streaming-text/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
175
175
|
},
|
|
176
176
|
"1167:247": {
|
|
177
177
|
"figmaComponent": "Citation",
|
|
178
178
|
"component": "Citation",
|
|
179
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { Citation } from 'ionbase-ui';\n<Citation index={…} source={…} />\n\nPROPERTIES\n Index → index\n\nNOTES\n State: Default/Hover is :hover in code\n Focused: drawn focus ring; :focus-visible in code\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/citation/index.html.md\nGenerated from ionbase-ui@0.
|
|
179
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { Citation } from 'ionbase-ui';\n<Citation index={…} source={…} />\n\nPROPERTIES\n Index → index\n\nNOTES\n State: Default/Hover is :hover in code\n Focused: drawn focus ring; :focus-visible in code\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/citation/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
180
180
|
},
|
|
181
181
|
"1168:246": {
|
|
182
182
|
"figmaComponent": "Citation List",
|
|
183
183
|
"component": "CitationList",
|
|
184
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { CitationList } from 'ionbase-ui';\n<CitationList />\n\nPROPERTIES\n Label → label\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/citation-list/index.html.md\nGenerated from ionbase-ui@0.
|
|
184
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { CitationList } from 'ionbase-ui';\n<CitationList />\n\nPROPERTIES\n Label → label\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/citation-list/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
185
185
|
},
|
|
186
186
|
"1168:241": {
|
|
187
187
|
"figmaComponent": "Citation List Item",
|
|
188
188
|
"component": "CitationListItem",
|
|
189
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { CitationListItem } from 'ionbase-ui';\n<CitationListItem index={…} source={…}>Label</CitationListItem>\n\nPROPERTIES\n Index → index\n Source → source\n Passage → children\n Show Passage → children\n\nNOTES\n Show Passage: false means no children passed\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/citation-list-item/index.html.md\nGenerated from ionbase-ui@0.
|
|
189
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { CitationListItem } from 'ionbase-ui';\n<CitationListItem index={…} source={…}>Label</CitationListItem>\n\nPROPERTIES\n Index → index\n Source → source\n Passage → children\n Show Passage → children\n\nNOTES\n Show Passage: false means no children passed\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/citation-list-item/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
190
190
|
},
|
|
191
191
|
"1166:262": {
|
|
192
192
|
"figmaComponent": "Confidence Indicator",
|
|
193
193
|
"component": "ConfidenceIndicator",
|
|
194
|
-
"block": "───── CODE · ionbase-ui ─────\nimport { ConfidenceIndicator } from 'ionbase-ui';\n<ConfidenceIndicator level=\"low\" basis={…} />\n\nPROPERTIES\n Level → level: Low=low, Medium=medium, High=high\n Basis → basis\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/confidence-indicator/index.html.md\nGenerated from ionbase-ui@0.
|
|
194
|
+
"block": "───── CODE · ionbase-ui ─────\nimport { ConfidenceIndicator } from 'ionbase-ui';\n<ConfidenceIndicator level=\"low\" basis={…} />\n\nPROPERTIES\n Level → level: Low=low, Medium=medium, High=high\n Basis → basis\n\nFull contract: https://raza-ahmed.github.io/ionbase-design-system/components/confidence-indicator/index.html.md\nGenerated from ionbase-ui@0.46.0. Edit the code, not this block.\n───── end code ─────"
|
|
195
195
|
}
|
|
196
196
|
}
|
|
197
197
|
}
|
package/dist/figma-map.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "ionbase-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.46.0",
|
|
4
4
|
"figmaFile": "gaLbGd0QNb1fUl6BjSpfBA",
|
|
5
5
|
"figmaExported": "2026-09-02",
|
|
6
6
|
"usage": "Given a Figma node id or component name, look it up here for the React component, its import, and how each Figma property maps onto a real prop. Every mapping is verified against both the Figma export and the TypeScript API on each build.",
|
package/dist/meta/Alert.json
CHANGED
|
@@ -115,6 +115,7 @@
|
|
|
115
115
|
"--font-weight-regular",
|
|
116
116
|
"--icon-error",
|
|
117
117
|
"--icon-information",
|
|
118
|
+
"--icon-inverse",
|
|
118
119
|
"--icon-on-color",
|
|
119
120
|
"--icon-primary",
|
|
120
121
|
"--icon-secondary",
|
|
@@ -149,6 +150,7 @@
|
|
|
149
150
|
"--surface-warning-subtle",
|
|
150
151
|
"--text-error",
|
|
151
152
|
"--text-information",
|
|
153
|
+
"--text-inverse",
|
|
152
154
|
"--text-link",
|
|
153
155
|
"--text-on-color",
|
|
154
156
|
"--text-secondary",
|
package/dist/meta/Avatar.json
CHANGED
|
@@ -96,34 +96,6 @@
|
|
|
96
96
|
],
|
|
97
97
|
"stylesheet": "src/styles/avatar-gradient.css",
|
|
98
98
|
"tokens": [
|
|
99
|
-
"--color-blue-200",
|
|
100
|
-
"--color-blue-300",
|
|
101
|
-
"--color-blue-50",
|
|
102
|
-
"--color-blue-600",
|
|
103
|
-
"--color-gray-200",
|
|
104
|
-
"--color-gray-300",
|
|
105
|
-
"--color-gray-50",
|
|
106
|
-
"--color-gray-600",
|
|
107
|
-
"--color-green-200",
|
|
108
|
-
"--color-green-300",
|
|
109
|
-
"--color-green-50",
|
|
110
|
-
"--color-green-600",
|
|
111
|
-
"--color-orange-200",
|
|
112
|
-
"--color-orange-300",
|
|
113
|
-
"--color-orange-50",
|
|
114
|
-
"--color-orange-600",
|
|
115
|
-
"--color-pink-200",
|
|
116
|
-
"--color-pink-300",
|
|
117
|
-
"--color-pink-50",
|
|
118
|
-
"--color-pink-600",
|
|
119
|
-
"--color-purple-200",
|
|
120
|
-
"--color-purple-300",
|
|
121
|
-
"--color-purple-50",
|
|
122
|
-
"--color-purple-600",
|
|
123
|
-
"--color-red-200",
|
|
124
|
-
"--color-red-300",
|
|
125
|
-
"--color-red-50",
|
|
126
|
-
"--color-red-600",
|
|
127
99
|
"--font-family-sans",
|
|
128
100
|
"--font-weight-medium",
|
|
129
101
|
"--font-weight-regular",
|
|
@@ -133,8 +105,6 @@
|
|
|
133
105
|
"--ion-avatar-gradient-from",
|
|
134
106
|
"--ion-avatar-gradient-line-height",
|
|
135
107
|
"--ion-avatar-gradient-mid",
|
|
136
|
-
"--ion-avatar-gradient-sheen",
|
|
137
|
-
"--ion-avatar-gradient-sheen-mid",
|
|
138
108
|
"--ion-avatar-gradient-size",
|
|
139
109
|
"--ion-avatar-gradient-text",
|
|
140
110
|
"--ion-avatar-gradient-to",
|
|
@@ -143,6 +113,36 @@
|
|
|
143
113
|
"--spacing-32",
|
|
144
114
|
"--spacing-40",
|
|
145
115
|
"--spacing-48",
|
|
116
|
+
"--surface-palette-1",
|
|
117
|
+
"--surface-palette-1-subtle",
|
|
118
|
+
"--surface-palette-1-tint",
|
|
119
|
+
"--surface-palette-2",
|
|
120
|
+
"--surface-palette-2-subtle",
|
|
121
|
+
"--surface-palette-2-tint",
|
|
122
|
+
"--surface-palette-3",
|
|
123
|
+
"--surface-palette-3-subtle",
|
|
124
|
+
"--surface-palette-3-tint",
|
|
125
|
+
"--surface-palette-4",
|
|
126
|
+
"--surface-palette-4-subtle",
|
|
127
|
+
"--surface-palette-4-tint",
|
|
128
|
+
"--surface-palette-5",
|
|
129
|
+
"--surface-palette-5-subtle",
|
|
130
|
+
"--surface-palette-5-tint",
|
|
131
|
+
"--surface-palette-6",
|
|
132
|
+
"--surface-palette-6-subtle",
|
|
133
|
+
"--surface-palette-6-tint",
|
|
134
|
+
"--surface-palette-7",
|
|
135
|
+
"--surface-palette-7-subtle",
|
|
136
|
+
"--surface-palette-7-tint",
|
|
137
|
+
"--surface-sheen",
|
|
138
|
+
"--surface-sheen-subtle",
|
|
139
|
+
"--text-palette-1",
|
|
140
|
+
"--text-palette-2",
|
|
141
|
+
"--text-palette-3",
|
|
142
|
+
"--text-palette-4",
|
|
143
|
+
"--text-palette-5",
|
|
144
|
+
"--text-palette-6",
|
|
145
|
+
"--text-palette-7",
|
|
146
146
|
"--type-body",
|
|
147
147
|
"--type-body-lg",
|
|
148
148
|
"--type-body-lg-line-height",
|
package/dist/meta/Button.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"package": "ionbase-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.46.0",
|
|
4
4
|
"generated": "by scripts/build-meta.mjs — do not edit; intent lives in meta/*.json",
|
|
5
5
|
"hooks": [
|
|
6
6
|
"useToast"
|
|
@@ -506,6 +506,7 @@
|
|
|
506
506
|
"--font-weight-regular",
|
|
507
507
|
"--icon-error",
|
|
508
508
|
"--icon-information",
|
|
509
|
+
"--icon-inverse",
|
|
509
510
|
"--icon-on-color",
|
|
510
511
|
"--icon-primary",
|
|
511
512
|
"--icon-secondary",
|
|
@@ -540,6 +541,7 @@
|
|
|
540
541
|
"--surface-warning-subtle",
|
|
541
542
|
"--text-error",
|
|
542
543
|
"--text-information",
|
|
544
|
+
"--text-inverse",
|
|
543
545
|
"--text-link",
|
|
544
546
|
"--text-on-color",
|
|
545
547
|
"--text-secondary",
|
|
@@ -1067,6 +1069,7 @@
|
|
|
1067
1069
|
"--surface-primary",
|
|
1068
1070
|
"--surface-success",
|
|
1069
1071
|
"--surface-warning",
|
|
1072
|
+
"--text-inverse",
|
|
1070
1073
|
"--text-on-color",
|
|
1071
1074
|
"--text-tertiary",
|
|
1072
1075
|
"--type-body",
|
|
@@ -1283,34 +1286,6 @@
|
|
|
1283
1286
|
],
|
|
1284
1287
|
"stylesheet": "src/styles/avatar-gradient.css",
|
|
1285
1288
|
"tokens": [
|
|
1286
|
-
"--color-blue-200",
|
|
1287
|
-
"--color-blue-300",
|
|
1288
|
-
"--color-blue-50",
|
|
1289
|
-
"--color-blue-600",
|
|
1290
|
-
"--color-gray-200",
|
|
1291
|
-
"--color-gray-300",
|
|
1292
|
-
"--color-gray-50",
|
|
1293
|
-
"--color-gray-600",
|
|
1294
|
-
"--color-green-200",
|
|
1295
|
-
"--color-green-300",
|
|
1296
|
-
"--color-green-50",
|
|
1297
|
-
"--color-green-600",
|
|
1298
|
-
"--color-orange-200",
|
|
1299
|
-
"--color-orange-300",
|
|
1300
|
-
"--color-orange-50",
|
|
1301
|
-
"--color-orange-600",
|
|
1302
|
-
"--color-pink-200",
|
|
1303
|
-
"--color-pink-300",
|
|
1304
|
-
"--color-pink-50",
|
|
1305
|
-
"--color-pink-600",
|
|
1306
|
-
"--color-purple-200",
|
|
1307
|
-
"--color-purple-300",
|
|
1308
|
-
"--color-purple-50",
|
|
1309
|
-
"--color-purple-600",
|
|
1310
|
-
"--color-red-200",
|
|
1311
|
-
"--color-red-300",
|
|
1312
|
-
"--color-red-50",
|
|
1313
|
-
"--color-red-600",
|
|
1314
1289
|
"--font-family-sans",
|
|
1315
1290
|
"--font-weight-medium",
|
|
1316
1291
|
"--font-weight-regular",
|
|
@@ -1320,8 +1295,6 @@
|
|
|
1320
1295
|
"--ion-avatar-gradient-from",
|
|
1321
1296
|
"--ion-avatar-gradient-line-height",
|
|
1322
1297
|
"--ion-avatar-gradient-mid",
|
|
1323
|
-
"--ion-avatar-gradient-sheen",
|
|
1324
|
-
"--ion-avatar-gradient-sheen-mid",
|
|
1325
1298
|
"--ion-avatar-gradient-size",
|
|
1326
1299
|
"--ion-avatar-gradient-text",
|
|
1327
1300
|
"--ion-avatar-gradient-to",
|
|
@@ -1330,6 +1303,36 @@
|
|
|
1330
1303
|
"--spacing-32",
|
|
1331
1304
|
"--spacing-40",
|
|
1332
1305
|
"--spacing-48",
|
|
1306
|
+
"--surface-palette-1",
|
|
1307
|
+
"--surface-palette-1-subtle",
|
|
1308
|
+
"--surface-palette-1-tint",
|
|
1309
|
+
"--surface-palette-2",
|
|
1310
|
+
"--surface-palette-2-subtle",
|
|
1311
|
+
"--surface-palette-2-tint",
|
|
1312
|
+
"--surface-palette-3",
|
|
1313
|
+
"--surface-palette-3-subtle",
|
|
1314
|
+
"--surface-palette-3-tint",
|
|
1315
|
+
"--surface-palette-4",
|
|
1316
|
+
"--surface-palette-4-subtle",
|
|
1317
|
+
"--surface-palette-4-tint",
|
|
1318
|
+
"--surface-palette-5",
|
|
1319
|
+
"--surface-palette-5-subtle",
|
|
1320
|
+
"--surface-palette-5-tint",
|
|
1321
|
+
"--surface-palette-6",
|
|
1322
|
+
"--surface-palette-6-subtle",
|
|
1323
|
+
"--surface-palette-6-tint",
|
|
1324
|
+
"--surface-palette-7",
|
|
1325
|
+
"--surface-palette-7-subtle",
|
|
1326
|
+
"--surface-palette-7-tint",
|
|
1327
|
+
"--surface-sheen",
|
|
1328
|
+
"--surface-sheen-subtle",
|
|
1329
|
+
"--text-palette-1",
|
|
1330
|
+
"--text-palette-2",
|
|
1331
|
+
"--text-palette-3",
|
|
1332
|
+
"--text-palette-4",
|
|
1333
|
+
"--text-palette-5",
|
|
1334
|
+
"--text-palette-6",
|
|
1335
|
+
"--text-palette-7",
|
|
1333
1336
|
"--type-body",
|
|
1334
1337
|
"--type-body-lg",
|
|
1335
1338
|
"--type-body-lg-line-height",
|
|
@@ -1498,6 +1501,7 @@
|
|
|
1498
1501
|
"--surface-primary",
|
|
1499
1502
|
"--surface-success",
|
|
1500
1503
|
"--surface-warning",
|
|
1504
|
+
"--text-inverse",
|
|
1501
1505
|
"--text-on-color",
|
|
1502
1506
|
"--text-tertiary",
|
|
1503
1507
|
"--type-body",
|
|
@@ -1942,6 +1946,7 @@
|
|
|
1942
1946
|
"--surface-success-hover",
|
|
1943
1947
|
"--surface-success-pressed",
|
|
1944
1948
|
"--text-disabled",
|
|
1949
|
+
"--text-inverse",
|
|
1945
1950
|
"--text-on-color",
|
|
1946
1951
|
"--text-primary",
|
|
1947
1952
|
"--text-secondary",
|