@utilitywarehouse/hearth-react-native 0.2.0 → 0.3.1
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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-lint.log +3 -1
- package/CHANGELOG.md +34 -0
- package/build/components/Alert/AlertCloseButton.js +25 -3
- package/build/components/Alert/AlertIcon.js +17 -1
- package/build/components/Alert/AlertIconButton.js +27 -1
- package/build/components/Alert/AlertLink.js +47 -1
- package/build/components/Alert/AlertText.d.ts +1 -1
- package/build/components/Alert/AlertText.js +26 -2
- package/build/components/Alert/AlertTitle.d.ts +1 -1
- package/build/components/Alert/AlertTitle.js +26 -2
- package/build/components/Badge/Badge.js +101 -14
- package/build/components/Badge/Badge.props.d.ts +2 -2
- package/build/components/Badge/BadgeIcon.js +27 -29
- package/build/components/Badge/BadgeText.js +29 -31
- package/build/components/Button/Button.d.ts +2 -2
- package/build/components/Button/ButtonGroupRoot.d.ts +3 -2
- package/build/components/Button/ButtonGroupRoot.js +9 -0
- package/build/components/Button/ButtonRoot.js +1 -0
- package/build/components/Card/Card.props.d.ts +2 -2
- package/build/components/Checkbox/Checkbox.d.ts +2 -2
- package/build/components/Checkbox/Checkbox.js +11 -10
- package/build/components/Checkbox/Checkbox.props.d.ts +3 -1
- package/build/components/Checkbox/CheckboxIcon.js +1 -1
- package/build/components/Checkbox/CheckboxImage.d.ts +6 -0
- package/build/components/Checkbox/CheckboxImage.js +5 -0
- package/build/components/Checkbox/CheckboxTileRoot.js +1 -1
- package/build/components/Checkbox/index.d.ts +3 -2
- package/build/components/Checkbox/index.js +2 -1
- package/build/components/CurrencyInput/CurrencyInput.d.ts +6 -0
- package/build/components/CurrencyInput/CurrencyInput.js +47 -0
- package/build/components/CurrencyInput/CurrencyInput.props.d.ts +14 -0
- package/build/components/CurrencyInput/CurrencyInput.props.js +1 -0
- package/build/components/CurrencyInput/index.d.ts +1 -0
- package/build/components/CurrencyInput/index.js +1 -0
- package/build/components/DescriptionList/DescriptionList.context.d.ts +6 -0
- package/build/components/DescriptionList/DescriptionList.context.js +9 -0
- package/build/components/DescriptionList/DescriptionList.d.ts +6 -0
- package/build/components/DescriptionList/DescriptionList.js +25 -0
- package/build/components/DescriptionList/DescriptionList.props.d.ts +18 -0
- package/build/components/DescriptionList/DescriptionList.props.js +1 -0
- package/build/components/DescriptionList/DescriptionListItem.d.ts +6 -0
- package/build/components/DescriptionList/DescriptionListItem.js +49 -0
- package/build/components/DescriptionList/DescriptionListItem.props.d.ts +17 -0
- package/build/components/DescriptionList/DescriptionListItem.props.js +1 -0
- package/build/components/DescriptionList/index.d.ts +4 -0
- package/build/components/DescriptionList/index.js +2 -0
- package/build/components/Divider/Divider.js +46 -0
- package/build/components/Divider/Divider.props.d.ts +2 -2
- package/build/components/Flex/Flex.props.d.ts +3 -2
- package/build/components/Grid/Grid.props.d.ts +2 -2
- package/build/components/IconContainer/IconContainer.d.ts +5 -0
- package/build/components/IconContainer/IconContainer.js +161 -0
- package/build/components/IconContainer/IconContainer.props.d.ts +15 -0
- package/build/components/IconContainer/IconContainer.props.js +1 -0
- package/build/components/IconContainer/index.d.ts +2 -0
- package/build/components/IconContainer/index.js +1 -0
- package/build/components/Icons/CircleIcon.js +3 -3
- package/build/components/Input/Input.js +2 -34
- package/build/components/Input/Input.props.d.ts +1 -17
- package/build/components/Input/InputField.js +0 -7
- package/build/components/Link/Link.d.ts +1 -1
- package/build/components/Link/Link.js +4 -4
- package/build/components/Link/Link.props.d.ts +3 -0
- package/build/components/Modal/Modal.js +17 -1
- package/build/components/Radio/Radio.d.ts +2 -2
- package/build/components/Radio/Radio.js +9 -8
- package/build/components/Radio/Radio.props.d.ts +3 -1
- package/build/components/Radio/RadioImage.d.ts +6 -0
- package/build/components/Radio/RadioImage.js +5 -0
- package/build/components/Radio/RadioTileRoot.js +1 -1
- package/build/components/Radio/index.d.ts +3 -2
- package/build/components/Radio/index.js +2 -1
- package/build/components/SectionHeader/SectionHeader.js +1 -0
- package/build/components/Select/SelectOption.js +1 -7
- package/build/components/Tabs/Tab.d.ts +18 -0
- package/build/components/Tabs/Tab.js +74 -0
- package/build/components/Tabs/Tab.props.d.ts +14 -0
- package/build/components/Tabs/Tab.props.js +1 -0
- package/build/components/Tabs/TabPanel.d.ts +3 -0
- package/build/components/Tabs/TabPanel.js +34 -0
- package/build/components/Tabs/TabPanel.props.d.ts +8 -0
- package/build/components/Tabs/TabPanel.props.js +1 -0
- package/build/components/Tabs/Tabs.context.d.ts +23 -0
- package/build/components/Tabs/Tabs.context.js +8 -0
- package/build/components/Tabs/Tabs.d.ts +6 -0
- package/build/components/Tabs/Tabs.js +114 -0
- package/build/components/Tabs/Tabs.props.d.ts +19 -0
- package/build/components/Tabs/Tabs.props.js +1 -0
- package/build/components/Tabs/TabsList.d.ts +6 -0
- package/build/components/Tabs/TabsList.js +112 -0
- package/build/components/Tabs/TabsList.props.d.ts +6 -0
- package/build/components/Tabs/TabsList.props.js +1 -0
- package/build/components/Tabs/index.d.ts +8 -0
- package/build/components/Tabs/index.js +4 -0
- package/build/components/UnstyledIconButton/UnstyledIconButton.d.ts +1 -1
- package/build/components/UnstyledIconButton/UnstyledIconButton.js +4 -4
- package/build/components/UnstyledIconButton/UnstyledIconButton.props.d.ts +2 -1
- package/build/components/index.d.ts +4 -0
- package/build/components/index.js +4 -0
- package/build/core/themes.d.ts +428 -160
- package/build/core/themes.js +57 -1
- package/build/tokens/color.d.ts +88 -80
- package/build/tokens/color.js +44 -40
- package/build/tokens/components/dark/alert.d.ts +13 -0
- package/build/tokens/components/dark/alert.js +13 -0
- package/build/tokens/components/dark/button.d.ts +1 -0
- package/build/tokens/components/dark/button.js +1 -0
- package/build/tokens/components/dark/checkbox.d.ts +4 -1
- package/build/tokens/components/dark/checkbox.js +4 -1
- package/build/tokens/components/dark/icon-button.d.ts +10 -3
- package/build/tokens/components/dark/icon-button.js +10 -3
- package/build/tokens/components/dark/index.d.ts +1 -0
- package/build/tokens/components/dark/index.js +1 -0
- package/build/tokens/components/dark/link.d.ts +5 -0
- package/build/tokens/components/dark/link.js +5 -0
- package/build/tokens/components/dark/progress-bar.d.ts +41 -0
- package/build/tokens/components/dark/progress-bar.js +40 -0
- package/build/tokens/components/dark/radio.d.ts +1 -1
- package/build/tokens/components/dark/radio.js +1 -1
- package/build/tokens/components/dark/tabs.d.ts +2 -0
- package/build/tokens/components/dark/tabs.js +2 -0
- package/build/tokens/components/light/alert.d.ts +13 -0
- package/build/tokens/components/light/alert.js +13 -0
- package/build/tokens/components/light/badge.d.ts +1 -1
- package/build/tokens/components/light/badge.js +1 -1
- package/build/tokens/components/light/button.d.ts +1 -0
- package/build/tokens/components/light/button.js +1 -0
- package/build/tokens/components/light/checkbox.d.ts +6 -3
- package/build/tokens/components/light/checkbox.js +6 -3
- package/build/tokens/components/light/icon-button.d.ts +8 -1
- package/build/tokens/components/light/icon-button.js +8 -1
- package/build/tokens/components/light/index.d.ts +1 -0
- package/build/tokens/components/light/index.js +1 -0
- package/build/tokens/components/light/link.d.ts +5 -0
- package/build/tokens/components/light/link.js +5 -0
- package/build/tokens/components/light/progress-bar.d.ts +41 -0
- package/build/tokens/components/light/progress-bar.js +40 -0
- package/build/tokens/components/light/radio.d.ts +3 -3
- package/build/tokens/components/light/radio.js +3 -3
- package/build/tokens/components/light/tabs.d.ts +2 -0
- package/build/tokens/components/light/tabs.js +2 -0
- package/build/tokens/index.d.ts +1 -0
- package/build/tokens/index.js +1 -0
- package/build/tokens/layout.d.ts +48 -30
- package/build/tokens/layout.js +24 -15
- package/build/tokens/motion.d.ts +23 -0
- package/build/tokens/motion.js +22 -0
- package/build/tokens/primitive.d.ts +19 -0
- package/build/tokens/primitive.js +19 -0
- package/build/tokens/semantic-dark.d.ts +26 -24
- package/build/tokens/semantic-dark.js +26 -24
- package/build/tokens/semantic-light.d.ts +18 -16
- package/build/tokens/semantic-light.js +18 -16
- package/build/types/values.d.ts +2 -1
- package/build/utils/formatThousands.d.ts +2 -0
- package/build/utils/formatThousands.js +16 -0
- package/build/utils/index.d.ts +1 -0
- package/build/utils/index.js +1 -0
- package/docs/assets/bank-logo.png +0 -0
- package/docs/assets/bank-logo1.png +0 -0
- package/docs/components/AllComponents.web.tsx +97 -8
- package/docs/components/NextPrevPage.tsx +11 -3
- package/docs/components/UsageWrap.tsx +2 -2
- package/docs/components/index.ts +6 -7
- package/docs/heplers/addReactNativePrefix.ts +8 -0
- package/docs/heplers/index.ts +1 -0
- package/docs/introduction.mdx +3 -3
- package/docs/theme-tokens.mdx +42 -0
- package/package.json +13 -13
- package/src/components/Alert/AlertCloseButton.tsx +33 -5
- package/src/components/Alert/AlertIcon.tsx +17 -1
- package/src/components/Alert/AlertIconButton.tsx +37 -4
- package/src/components/Alert/AlertLink.tsx +52 -1
- package/src/components/Alert/AlertText.tsx +28 -3
- package/src/components/Alert/AlertTitle.tsx +28 -3
- package/src/components/Badge/Badge.docs.mdx +7 -7
- package/src/components/Badge/Badge.props.ts +3 -2
- package/src/components/Badge/Badge.stories.tsx +81 -92
- package/src/components/Badge/Badge.tsx +101 -14
- package/src/components/Badge/BadgeIcon.tsx +27 -29
- package/src/components/Badge/BadgeText.tsx +29 -31
- package/src/components/Button/ButtonGroupRoot.tsx +12 -2
- package/src/components/Button/ButtonRoot.tsx +1 -0
- package/src/components/Card/Card.docs.mdx +1 -1
- package/src/components/Card/Card.props.ts +2 -2
- package/src/components/Checkbox/Checkbox.docs.mdx +45 -7
- package/src/components/Checkbox/Checkbox.props.ts +3 -1
- package/src/components/Checkbox/Checkbox.stories.tsx +37 -1
- package/src/components/Checkbox/Checkbox.tsx +12 -9
- package/src/components/Checkbox/CheckboxIcon.tsx +1 -1
- package/src/components/Checkbox/CheckboxImage.tsx +9 -0
- package/src/components/Checkbox/CheckboxTileRoot.tsx +1 -1
- package/src/components/Checkbox/index.ts +3 -2
- package/src/components/CurrencyInput/CurrencyInput.docs.mdx +120 -0
- package/src/components/CurrencyInput/CurrencyInput.props.ts +19 -0
- package/src/components/CurrencyInput/CurrencyInput.stories.tsx +116 -0
- package/src/components/CurrencyInput/CurrencyInput.tsx +91 -0
- package/src/components/CurrencyInput/index.ts +1 -0
- package/src/components/DescriptionList/DescriptionList.context.ts +18 -0
- package/src/components/DescriptionList/DescriptionList.docs.mdx +98 -0
- package/src/components/DescriptionList/DescriptionList.props.ts +20 -0
- package/src/components/DescriptionList/DescriptionList.stories.tsx +154 -0
- package/src/components/DescriptionList/DescriptionList.tsx +64 -0
- package/src/components/DescriptionList/DescriptionListItem.props.ts +19 -0
- package/src/components/DescriptionList/DescriptionListItem.tsx +101 -0
- package/src/components/DescriptionList/index.ts +4 -0
- package/src/components/Divider/Divider.props.ts +2 -2
- package/src/components/Divider/Divider.stories.tsx +3 -3
- package/src/components/Divider/Divider.tsx +46 -0
- package/src/components/Flex/Flex.docs.mdx +4 -4
- package/src/components/Flex/Flex.props.ts +3 -2
- package/src/components/Flex/Flex.stories.tsx +1 -1
- package/src/components/Grid/Grid.docs.mdx +12 -12
- package/src/components/Grid/Grid.props.ts +2 -2
- package/src/components/Grid/Grid.stories.tsx +2 -2
- package/src/components/IconContainer/IconContainer.docs.mdx +90 -0
- package/src/components/IconContainer/IconContainer.props.ts +17 -0
- package/src/components/IconContainer/IconContainer.stories.tsx +130 -0
- package/src/components/IconContainer/IconContainer.tsx +180 -0
- package/src/components/IconContainer/index.tsx +2 -0
- package/src/components/Icons/CircleIcon.tsx +9 -11
- package/src/components/Input/Input.docs.mdx +3 -3
- package/src/components/Input/Input.props.ts +0 -20
- package/src/components/Input/Input.stories.tsx +0 -6
- package/src/components/Input/Input.tsx +2 -49
- package/src/components/Input/InputField.tsx +0 -7
- package/src/components/Link/Link.props.ts +3 -0
- package/src/components/Link/Link.tsx +12 -6
- package/src/components/List/List.docs.mdx +24 -23
- package/src/components/Modal/Modal.tsx +18 -0
- package/src/components/Radio/Radio.docs.mdx +96 -124
- package/src/components/Radio/Radio.props.ts +3 -1
- package/src/components/Radio/Radio.stories.tsx +47 -0
- package/src/components/Radio/Radio.tsx +10 -7
- package/src/components/Radio/RadioImage.tsx +9 -0
- package/src/components/Radio/RadioTileRoot.tsx +1 -1
- package/src/components/Radio/index.ts +3 -2
- package/src/components/SectionHeader/SectionHeader.tsx +1 -0
- package/src/components/Select/Select.docs.mdx +6 -6
- package/src/components/Select/Select.stories.tsx +7 -7
- package/src/components/Select/SelectOption.tsx +4 -10
- package/src/components/Tabs/Tab.props.ts +16 -0
- package/src/components/Tabs/Tab.tsx +113 -0
- package/src/components/Tabs/TabPanel.props.ts +10 -0
- package/src/components/Tabs/TabPanel.tsx +46 -0
- package/src/components/Tabs/Tabs.context.ts +26 -0
- package/src/components/Tabs/Tabs.docs.mdx +214 -0
- package/src/components/Tabs/Tabs.props.ts +21 -0
- package/src/components/Tabs/Tabs.stories.tsx +270 -0
- package/src/components/Tabs/Tabs.tsx +139 -0
- package/src/components/Tabs/TabsList.props.ts +8 -0
- package/src/components/Tabs/TabsList.tsx +194 -0
- package/src/components/Tabs/index.ts +8 -0
- package/src/components/UnstyledIconButton/UnstyledIconButton.props.ts +2 -1
- package/src/components/UnstyledIconButton/UnstyledIconButton.tsx +9 -3
- package/src/components/index.ts +4 -0
- package/src/core/themes.ts +57 -1
- package/src/tokens/color.ts +44 -40
- package/src/tokens/components/dark/alert.ts +13 -0
- package/src/tokens/components/dark/button.ts +1 -0
- package/src/tokens/components/dark/checkbox.ts +4 -1
- package/src/tokens/components/dark/icon-button.ts +10 -3
- package/src/tokens/components/dark/index.ts +1 -0
- package/src/tokens/components/dark/link.ts +5 -0
- package/src/tokens/components/dark/progress-bar.ts +41 -0
- package/src/tokens/components/dark/radio.ts +1 -1
- package/src/tokens/components/dark/tabs.ts +2 -0
- package/src/tokens/components/light/alert.ts +13 -0
- package/src/tokens/components/light/badge.ts +1 -1
- package/src/tokens/components/light/button.ts +1 -0
- package/src/tokens/components/light/checkbox.ts +6 -3
- package/src/tokens/components/light/icon-button.ts +8 -1
- package/src/tokens/components/light/index.ts +1 -0
- package/src/tokens/components/light/link.ts +5 -0
- package/src/tokens/components/light/progress-bar.ts +41 -0
- package/src/tokens/components/light/radio.ts +3 -3
- package/src/tokens/components/light/tabs.ts +2 -0
- package/src/tokens/index.ts +1 -0
- package/src/tokens/layout.ts +24 -15
- package/src/tokens/motion.ts +23 -0
- package/src/tokens/primitive.ts +19 -0
- package/src/tokens/semantic-dark.ts +26 -24
- package/src/tokens/semantic-light.ts +18 -16
- package/src/types/values.ts +3 -1
- package/src/utils/formatThousands.ts +14 -0
- package/src/utils/index.ts +1 -0
- package/docs/assets/react-native-pig.png +0 -0
- package/docs/components/AdvancedRadioExample.tsx +0 -126
package/build/tokens/color.js
CHANGED
|
@@ -228,55 +228,55 @@ export const light = {
|
|
|
228
228
|
danger: {
|
|
229
229
|
border: '#de2612',
|
|
230
230
|
foreground: {
|
|
231
|
-
default: '#
|
|
231
|
+
default: '#101010',
|
|
232
232
|
subtle: '#de2612',
|
|
233
233
|
},
|
|
234
234
|
surface: {
|
|
235
|
-
default: '#
|
|
236
|
-
subtle: '#
|
|
235
|
+
default: '#ff634a',
|
|
236
|
+
subtle: '#ffa89d',
|
|
237
237
|
},
|
|
238
238
|
},
|
|
239
239
|
functional: {
|
|
240
|
-
border: '#
|
|
240
|
+
border: '#5b5b5b',
|
|
241
241
|
foreground: {
|
|
242
|
-
default: '#
|
|
243
|
-
subtle: '#
|
|
242
|
+
default: '#101010',
|
|
243
|
+
subtle: '#5b5b5b',
|
|
244
244
|
},
|
|
245
245
|
surface: {
|
|
246
|
-
default: '#
|
|
246
|
+
default: '#919191',
|
|
247
247
|
subtle: '#d3d3d3',
|
|
248
248
|
},
|
|
249
249
|
},
|
|
250
250
|
info: {
|
|
251
251
|
border: '#1c6cd4',
|
|
252
252
|
foreground: {
|
|
253
|
-
default: '#
|
|
253
|
+
default: '#101010',
|
|
254
254
|
subtle: '#1c6cd4',
|
|
255
255
|
},
|
|
256
256
|
surface: {
|
|
257
|
-
default: '#
|
|
257
|
+
default: '#6bb0ff',
|
|
258
258
|
subtle: '#bcddff',
|
|
259
259
|
},
|
|
260
260
|
},
|
|
261
261
|
positive: {
|
|
262
262
|
border: '#0f834a',
|
|
263
263
|
foreground: {
|
|
264
|
-
default: '#
|
|
264
|
+
default: '#101010',
|
|
265
265
|
subtle: '#0f834a',
|
|
266
266
|
},
|
|
267
267
|
surface: {
|
|
268
|
-
default: '#
|
|
268
|
+
default: '#36bf7d',
|
|
269
269
|
subtle: '#a2e2c3',
|
|
270
270
|
},
|
|
271
271
|
},
|
|
272
272
|
warning: {
|
|
273
273
|
border: '#be5400',
|
|
274
274
|
foreground: {
|
|
275
|
-
default: '#
|
|
275
|
+
default: '#101010',
|
|
276
276
|
subtle: '#be5400',
|
|
277
277
|
},
|
|
278
278
|
surface: {
|
|
279
|
-
default: '#
|
|
279
|
+
default: '#ff8010',
|
|
280
280
|
subtle: '#ffcca8',
|
|
281
281
|
},
|
|
282
282
|
},
|
|
@@ -349,14 +349,14 @@ export const light = {
|
|
|
349
349
|
},
|
|
350
350
|
functional: {
|
|
351
351
|
border: {
|
|
352
|
+
inverted: '#f7f7f7',
|
|
352
353
|
strong: '#101010',
|
|
353
354
|
subtle: '#101010',
|
|
354
|
-
inverted: '#f7f7f7',
|
|
355
355
|
},
|
|
356
356
|
foreground: {
|
|
357
|
+
inverted: '#f7f7f7',
|
|
357
358
|
strong: '#fcfbf2',
|
|
358
359
|
subtle: '#101010',
|
|
359
|
-
inverted: '#f7f7f7',
|
|
360
360
|
},
|
|
361
361
|
surface: {
|
|
362
362
|
strong: {
|
|
@@ -454,14 +454,16 @@ export const light = {
|
|
|
454
454
|
},
|
|
455
455
|
},
|
|
456
456
|
text: {
|
|
457
|
+
affirmative: '#0f834a',
|
|
458
|
+
brand: '#7a42c8',
|
|
457
459
|
inverted: '#fcfbf2',
|
|
458
460
|
primary: '#101010',
|
|
459
|
-
secondary: '#
|
|
461
|
+
secondary: '#5b5b5b',
|
|
460
462
|
},
|
|
461
463
|
};
|
|
462
464
|
export const dark = {
|
|
463
465
|
background: {
|
|
464
|
-
brand: '#
|
|
466
|
+
brand: '#7a42c8',
|
|
465
467
|
primary: '#191917',
|
|
466
468
|
secondary: '#232323',
|
|
467
469
|
},
|
|
@@ -473,56 +475,56 @@ export const dark = {
|
|
|
473
475
|
danger: {
|
|
474
476
|
border: '#ff7964',
|
|
475
477
|
foreground: {
|
|
476
|
-
default: '#
|
|
478
|
+
default: '#101010',
|
|
477
479
|
subtle: '#ff7964',
|
|
478
480
|
},
|
|
479
481
|
surface: {
|
|
480
|
-
default: '#
|
|
481
|
-
subtle: '#
|
|
482
|
+
default: '#ff634a',
|
|
483
|
+
subtle: '#ffa89d',
|
|
482
484
|
},
|
|
483
485
|
},
|
|
484
486
|
functional: {
|
|
485
487
|
border: '#b2afae',
|
|
486
488
|
foreground: {
|
|
487
|
-
default: '#
|
|
489
|
+
default: '#101010',
|
|
488
490
|
subtle: '#b2afae',
|
|
489
491
|
},
|
|
490
492
|
surface: {
|
|
491
|
-
default: '#
|
|
492
|
-
subtle: '#
|
|
493
|
+
default: '#919191',
|
|
494
|
+
subtle: '#d3d3d3',
|
|
493
495
|
},
|
|
494
496
|
},
|
|
495
497
|
info: {
|
|
496
498
|
border: '#6bb0ff',
|
|
497
499
|
foreground: {
|
|
498
|
-
default: '#
|
|
500
|
+
default: '#101010',
|
|
499
501
|
subtle: '#6bb0ff',
|
|
500
502
|
},
|
|
501
503
|
surface: {
|
|
502
|
-
default: '#
|
|
503
|
-
subtle: '#
|
|
504
|
+
default: '#6bb0ff',
|
|
505
|
+
subtle: '#bcddff',
|
|
504
506
|
},
|
|
505
507
|
},
|
|
506
508
|
positive: {
|
|
507
509
|
border: '#58ca93',
|
|
508
510
|
foreground: {
|
|
509
|
-
default: '#
|
|
511
|
+
default: '#101010',
|
|
510
512
|
subtle: '#58ca93',
|
|
511
513
|
},
|
|
512
514
|
surface: {
|
|
513
|
-
default: '#
|
|
514
|
-
subtle: '#
|
|
515
|
+
default: '#36bf7d',
|
|
516
|
+
subtle: '#a2e2c3',
|
|
515
517
|
},
|
|
516
518
|
},
|
|
517
519
|
warning: {
|
|
518
520
|
border: '#ff9639',
|
|
519
521
|
foreground: {
|
|
520
|
-
default: '#
|
|
522
|
+
default: '#101010',
|
|
521
523
|
subtle: '#ff9639',
|
|
522
524
|
},
|
|
523
525
|
surface: {
|
|
524
|
-
default: '#
|
|
525
|
-
subtle: '#
|
|
526
|
+
default: '#ff8010',
|
|
527
|
+
subtle: '#ffcca8',
|
|
526
528
|
},
|
|
527
529
|
},
|
|
528
530
|
},
|
|
@@ -537,7 +539,7 @@ export const dark = {
|
|
|
537
539
|
interactive: {
|
|
538
540
|
affirmative: {
|
|
539
541
|
border: {
|
|
540
|
-
strong: '#
|
|
542
|
+
strong: '#101010',
|
|
541
543
|
subtle: '#58ca93',
|
|
542
544
|
},
|
|
543
545
|
foreground: {
|
|
@@ -573,7 +575,7 @@ export const dark = {
|
|
|
573
575
|
},
|
|
574
576
|
destructive: {
|
|
575
577
|
border: {
|
|
576
|
-
strong: '#
|
|
578
|
+
strong: '#101010',
|
|
577
579
|
subtle: '#ff7964',
|
|
578
580
|
},
|
|
579
581
|
foreground: {
|
|
@@ -594,14 +596,14 @@ export const dark = {
|
|
|
594
596
|
},
|
|
595
597
|
functional: {
|
|
596
598
|
border: {
|
|
599
|
+
inverted: '#f7f7f7',
|
|
597
600
|
strong: '#ebebeb',
|
|
598
601
|
subtle: '#ebebeb',
|
|
599
|
-
inverted: '#f7f7f7',
|
|
600
602
|
},
|
|
601
603
|
foreground: {
|
|
604
|
+
inverted: '#f7f7f7',
|
|
602
605
|
strong: '#fcfbf2',
|
|
603
606
|
subtle: '#ebebeb',
|
|
604
|
-
inverted: '#f7f7f7',
|
|
605
607
|
},
|
|
606
608
|
surface: {
|
|
607
609
|
strong: {
|
|
@@ -613,15 +615,15 @@ export const dark = {
|
|
|
613
615
|
active: '#4c4c4c',
|
|
614
616
|
hover: '#3a3837',
|
|
615
617
|
inverted: {
|
|
616
|
-
active: '#
|
|
617
|
-
hover: '#
|
|
618
|
+
active: '#3a3837',
|
|
619
|
+
hover: '#3f3f3f',
|
|
618
620
|
},
|
|
619
621
|
},
|
|
620
622
|
},
|
|
621
623
|
},
|
|
622
624
|
highlight: {
|
|
623
625
|
border: {
|
|
624
|
-
strong: '#
|
|
626
|
+
strong: '#101010',
|
|
625
627
|
},
|
|
626
628
|
foreground: {
|
|
627
629
|
strong: '#101010',
|
|
@@ -699,7 +701,9 @@ export const dark = {
|
|
|
699
701
|
},
|
|
700
702
|
},
|
|
701
703
|
text: {
|
|
702
|
-
|
|
704
|
+
affirmative: '#58ca93',
|
|
705
|
+
brand: '#af90de',
|
|
706
|
+
inverted: '#fcfbf2',
|
|
703
707
|
primary: '#ebebeb',
|
|
704
708
|
secondary: '#b2afae',
|
|
705
709
|
},
|
|
@@ -5,7 +5,20 @@ declare const _default: {
|
|
|
5
5
|
readonly borderRadius: 8;
|
|
6
6
|
readonly borderWidth: 2;
|
|
7
7
|
readonly contentGap: 4;
|
|
8
|
+
readonly focus: "#101010";
|
|
8
9
|
readonly gap: 8;
|
|
10
|
+
readonly iconButton: {
|
|
11
|
+
readonly unstyled: {
|
|
12
|
+
readonly foregroundColor: "#101010";
|
|
13
|
+
readonly foregroundColorActive: "#3f3f3f";
|
|
14
|
+
readonly foregroundColorHover: "#3a3837";
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
readonly link: {
|
|
18
|
+
readonly color: "#101010";
|
|
19
|
+
readonly colorActive: "#3f3f3f";
|
|
20
|
+
readonly colorHover: "#3a3837";
|
|
21
|
+
};
|
|
9
22
|
readonly padding: 14;
|
|
10
23
|
};
|
|
11
24
|
export default _default;
|
|
@@ -5,6 +5,19 @@ export default {
|
|
|
5
5
|
borderRadius: 8,
|
|
6
6
|
borderWidth: 2,
|
|
7
7
|
contentGap: 4,
|
|
8
|
+
focus: '#101010',
|
|
8
9
|
gap: 8,
|
|
10
|
+
iconButton: {
|
|
11
|
+
unstyled: {
|
|
12
|
+
foregroundColor: '#101010',
|
|
13
|
+
foregroundColorActive: '#3f3f3f',
|
|
14
|
+
foregroundColorHover: '#3a3837',
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
link: {
|
|
18
|
+
color: '#101010',
|
|
19
|
+
colorActive: '#3f3f3f',
|
|
20
|
+
colorHover: '#3a3837',
|
|
21
|
+
},
|
|
9
22
|
padding: 14,
|
|
10
23
|
};
|
|
@@ -6,12 +6,15 @@ declare const _default: {
|
|
|
6
6
|
readonly borderWidth: 2;
|
|
7
7
|
readonly checked: {
|
|
8
8
|
readonly backgroundColor: "#ebebeb";
|
|
9
|
+
readonly icon: {
|
|
10
|
+
readonly color: "#101010";
|
|
11
|
+
};
|
|
9
12
|
};
|
|
10
13
|
readonly gap: 8;
|
|
11
14
|
readonly group: {
|
|
12
15
|
readonly gap: 16;
|
|
13
16
|
readonly stack: {
|
|
14
|
-
readonly gap:
|
|
17
|
+
readonly gap: 20;
|
|
15
18
|
};
|
|
16
19
|
};
|
|
17
20
|
readonly outlineColorActive: "#4c473d";
|
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
* Do not edit directly, this file was auto-generated.
|
|
3
3
|
*/
|
|
4
4
|
declare const _default: {
|
|
5
|
+
readonly iconButton: {
|
|
6
|
+
readonly unstyled: {
|
|
7
|
+
readonly foregroundColor: "#101010";
|
|
8
|
+
readonly foregroundColorActive: "#3f3f3f";
|
|
9
|
+
readonly foregroundColorHover: "#3a3837";
|
|
10
|
+
};
|
|
11
|
+
};
|
|
5
12
|
readonly borderRadius: 8;
|
|
6
13
|
readonly md: {
|
|
7
14
|
readonly height: 48;
|
|
@@ -20,9 +27,9 @@ declare const _default: {
|
|
|
20
27
|
readonly foregroundColorActive: "#b2afae";
|
|
21
28
|
readonly foregroundColorHover: "#d3d3d3";
|
|
22
29
|
readonly inverted: {
|
|
23
|
-
readonly foregroundColor: "#
|
|
24
|
-
readonly foregroundColorActive: "#
|
|
25
|
-
readonly foregroundColorHover: "#
|
|
30
|
+
readonly foregroundColor: "#f7f7f7";
|
|
31
|
+
readonly foregroundColorActive: "#b2afae";
|
|
32
|
+
readonly foregroundColorHover: "#d3d3d3";
|
|
26
33
|
};
|
|
27
34
|
readonly md: {
|
|
28
35
|
readonly height: 24;
|
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
* Do not edit directly, this file was auto-generated.
|
|
3
3
|
*/
|
|
4
4
|
export default {
|
|
5
|
+
iconButton: {
|
|
6
|
+
unstyled: {
|
|
7
|
+
foregroundColor: '#101010',
|
|
8
|
+
foregroundColorActive: '#3f3f3f',
|
|
9
|
+
foregroundColorHover: '#3a3837',
|
|
10
|
+
},
|
|
11
|
+
},
|
|
5
12
|
borderRadius: 8,
|
|
6
13
|
md: {
|
|
7
14
|
height: 48,
|
|
@@ -20,9 +27,9 @@ export default {
|
|
|
20
27
|
foregroundColorActive: '#b2afae',
|
|
21
28
|
foregroundColorHover: '#d3d3d3',
|
|
22
29
|
inverted: {
|
|
23
|
-
foregroundColor: '#
|
|
24
|
-
foregroundColorActive: '#
|
|
25
|
-
foregroundColorHover: '#
|
|
30
|
+
foregroundColor: '#f7f7f7',
|
|
31
|
+
foregroundColorActive: '#b2afae',
|
|
32
|
+
foregroundColorHover: '#d3d3d3',
|
|
26
33
|
},
|
|
27
34
|
md: {
|
|
28
35
|
height: 24,
|
|
@@ -33,6 +33,7 @@ export { default as overlay } from './overlay';
|
|
|
33
33
|
export { default as pagination } from './pagination';
|
|
34
34
|
export { default as parts } from './parts';
|
|
35
35
|
export { default as pill } from './pill';
|
|
36
|
+
export { default as progressBar } from './progress-bar';
|
|
36
37
|
export { default as progressStepper } from './progress-stepper';
|
|
37
38
|
export { default as radio } from './radio';
|
|
38
39
|
export { default as sectionHeader } from './section-header';
|
|
@@ -33,6 +33,7 @@ export { default as overlay } from './overlay';
|
|
|
33
33
|
export { default as pagination } from './pagination';
|
|
34
34
|
export { default as parts } from './parts';
|
|
35
35
|
export { default as pill } from './pill';
|
|
36
|
+
export { default as progressBar } from './progress-bar';
|
|
36
37
|
export { default as progressStepper } from './progress-stepper';
|
|
37
38
|
export { default as radio } from './radio';
|
|
38
39
|
export { default as sectionHeader } from './section-header';
|
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
* Do not edit directly, this file was auto-generated.
|
|
3
3
|
*/
|
|
4
4
|
declare const _default: {
|
|
5
|
+
readonly link: {
|
|
6
|
+
readonly color: "#101010";
|
|
7
|
+
readonly colorActive: "#3f3f3f";
|
|
8
|
+
readonly colorHover: "#3a3837";
|
|
9
|
+
};
|
|
5
10
|
readonly color: "#ebebeb";
|
|
6
11
|
readonly colorActive: "#b2afae";
|
|
7
12
|
readonly colorHover: "#d3d3d3";
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
declare const _default: {
|
|
5
|
+
readonly barColor: "#4c473d";
|
|
6
|
+
readonly circular: {
|
|
7
|
+
readonly md: {
|
|
8
|
+
readonly bar: {
|
|
9
|
+
readonly width: 12;
|
|
10
|
+
};
|
|
11
|
+
readonly gap: 0;
|
|
12
|
+
readonly height: 140;
|
|
13
|
+
readonly label: {
|
|
14
|
+
readonly fontFamily: "DM Sans";
|
|
15
|
+
readonly fontSize: 24;
|
|
16
|
+
readonly fontWeight: 400;
|
|
17
|
+
readonly lineHeight: 24;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
readonly sm: {
|
|
21
|
+
readonly barWidth: 8;
|
|
22
|
+
readonly height: 80;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
readonly linear: {
|
|
26
|
+
readonly bar: {
|
|
27
|
+
readonly borderRadius: 9999;
|
|
28
|
+
readonly height: 12;
|
|
29
|
+
};
|
|
30
|
+
readonly gap: 8;
|
|
31
|
+
readonly label: {
|
|
32
|
+
readonly gap: 8;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
readonly progress: {
|
|
36
|
+
readonly dangerColor: "#ff634a";
|
|
37
|
+
readonly defaultColor: "#c6b5e2";
|
|
38
|
+
readonly successColor: "#36bf7d";
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
export default _default;
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Do not edit directly, this file was auto-generated.
|
|
3
|
+
*/
|
|
4
|
+
export default {
|
|
5
|
+
barColor: '#4c473d',
|
|
6
|
+
circular: {
|
|
7
|
+
md: {
|
|
8
|
+
bar: {
|
|
9
|
+
width: 12,
|
|
10
|
+
},
|
|
11
|
+
gap: 0,
|
|
12
|
+
height: 140,
|
|
13
|
+
label: {
|
|
14
|
+
fontFamily: 'DM Sans',
|
|
15
|
+
fontSize: 24,
|
|
16
|
+
fontWeight: 400,
|
|
17
|
+
lineHeight: 24,
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
sm: {
|
|
21
|
+
barWidth: 8,
|
|
22
|
+
height: 80,
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
linear: {
|
|
26
|
+
bar: {
|
|
27
|
+
borderRadius: 9999,
|
|
28
|
+
height: 12,
|
|
29
|
+
},
|
|
30
|
+
gap: 8,
|
|
31
|
+
label: {
|
|
32
|
+
gap: 8,
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
progress: {
|
|
36
|
+
dangerColor: '#ff634a',
|
|
37
|
+
defaultColor: '#c6b5e2',
|
|
38
|
+
successColor: '#36bf7d',
|
|
39
|
+
},
|
|
40
|
+
};
|
|
@@ -5,7 +5,20 @@ declare const _default: {
|
|
|
5
5
|
readonly borderRadius: 8;
|
|
6
6
|
readonly borderWidth: 2;
|
|
7
7
|
readonly contentGap: 4;
|
|
8
|
+
readonly focus: "#101010";
|
|
8
9
|
readonly gap: 8;
|
|
10
|
+
readonly iconButton: {
|
|
11
|
+
readonly unstyled: {
|
|
12
|
+
readonly foregroundColor: "#101010";
|
|
13
|
+
readonly foregroundColorActive: "#3f3f3f";
|
|
14
|
+
readonly foregroundColorHover: "#3a3837";
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
readonly link: {
|
|
18
|
+
readonly color: "#101010";
|
|
19
|
+
readonly colorActive: "#3f3f3f";
|
|
20
|
+
readonly colorHover: "#3a3837";
|
|
21
|
+
};
|
|
9
22
|
readonly padding: 14;
|
|
10
23
|
};
|
|
11
24
|
export default _default;
|
|
@@ -5,6 +5,19 @@ export default {
|
|
|
5
5
|
borderRadius: 8,
|
|
6
6
|
borderWidth: 2,
|
|
7
7
|
contentGap: 4,
|
|
8
|
+
focus: '#101010',
|
|
8
9
|
gap: 8,
|
|
10
|
+
iconButton: {
|
|
11
|
+
unstyled: {
|
|
12
|
+
foregroundColor: '#101010',
|
|
13
|
+
foregroundColorActive: '#3f3f3f',
|
|
14
|
+
foregroundColorHover: '#3a3837',
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
link: {
|
|
18
|
+
color: '#101010',
|
|
19
|
+
colorActive: '#3f3f3f',
|
|
20
|
+
colorHover: '#3a3837',
|
|
21
|
+
},
|
|
9
22
|
padding: 14,
|
|
10
23
|
};
|
|
@@ -6,12 +6,15 @@ declare const _default: {
|
|
|
6
6
|
readonly borderWidth: 2;
|
|
7
7
|
readonly checked: {
|
|
8
8
|
readonly backgroundColor: "#101010";
|
|
9
|
+
readonly icon: {
|
|
10
|
+
readonly color: "#fcfbf2";
|
|
11
|
+
};
|
|
9
12
|
};
|
|
10
|
-
readonly gap:
|
|
13
|
+
readonly gap: 12;
|
|
11
14
|
readonly group: {
|
|
12
15
|
readonly gap: 16;
|
|
13
16
|
readonly stack: {
|
|
14
|
-
readonly gap:
|
|
17
|
+
readonly gap: 20;
|
|
15
18
|
};
|
|
16
19
|
};
|
|
17
20
|
readonly outlineColorActive: "#d4d2c0";
|
|
@@ -21,7 +24,7 @@ declare const _default: {
|
|
|
21
24
|
readonly borderRadius: 8;
|
|
22
25
|
readonly borderWidth: 1;
|
|
23
26
|
readonly borderWidthSelected: 2;
|
|
24
|
-
readonly gap:
|
|
27
|
+
readonly gap: 12;
|
|
25
28
|
readonly group: {
|
|
26
29
|
readonly gap: 6;
|
|
27
30
|
readonly stack: {
|