@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/core/themes.d.ts
CHANGED
|
@@ -27,6 +27,42 @@ export declare const lightTheme: {
|
|
|
27
27
|
readonly '4/6': "66.666%";
|
|
28
28
|
readonly '5/6': "83.333%";
|
|
29
29
|
readonly full: DimensionValue;
|
|
30
|
+
readonly none: 0;
|
|
31
|
+
readonly '2xs': {
|
|
32
|
+
readonly base: 2;
|
|
33
|
+
readonly md: 2;
|
|
34
|
+
readonly lg: 2;
|
|
35
|
+
};
|
|
36
|
+
readonly xs: {
|
|
37
|
+
readonly base: 4;
|
|
38
|
+
readonly md: 4;
|
|
39
|
+
readonly lg: 4;
|
|
40
|
+
};
|
|
41
|
+
readonly sm: {
|
|
42
|
+
readonly base: 8;
|
|
43
|
+
readonly md: 8;
|
|
44
|
+
readonly lg: 8;
|
|
45
|
+
};
|
|
46
|
+
readonly md: {
|
|
47
|
+
readonly base: 12;
|
|
48
|
+
readonly md: 12;
|
|
49
|
+
readonly lg: 12;
|
|
50
|
+
};
|
|
51
|
+
readonly lg: {
|
|
52
|
+
readonly base: 16;
|
|
53
|
+
readonly md: 16;
|
|
54
|
+
readonly lg: 16;
|
|
55
|
+
};
|
|
56
|
+
readonly xl: {
|
|
57
|
+
readonly base: 20;
|
|
58
|
+
readonly md: 24;
|
|
59
|
+
readonly lg: 24;
|
|
60
|
+
};
|
|
61
|
+
readonly '2xl': {
|
|
62
|
+
readonly base: 28;
|
|
63
|
+
readonly md: 28;
|
|
64
|
+
readonly lg: 40;
|
|
65
|
+
};
|
|
30
66
|
readonly '0': 0;
|
|
31
67
|
readonly '25': 2;
|
|
32
68
|
readonly '50': 4;
|
|
@@ -441,11 +477,14 @@ export declare const lightTheme: {
|
|
|
441
477
|
readonly margin: 16;
|
|
442
478
|
};
|
|
443
479
|
readonly spacing: {
|
|
444
|
-
readonly
|
|
445
|
-
readonly
|
|
446
|
-
readonly
|
|
447
|
-
readonly
|
|
448
|
-
readonly
|
|
480
|
+
readonly '2xl': 28;
|
|
481
|
+
readonly '2xs': 2;
|
|
482
|
+
readonly lg: 16;
|
|
483
|
+
readonly md: 12;
|
|
484
|
+
readonly none: 0;
|
|
485
|
+
readonly sm: 8;
|
|
486
|
+
readonly xl: 20;
|
|
487
|
+
readonly xs: 4;
|
|
449
488
|
};
|
|
450
489
|
};
|
|
451
490
|
readonly tablet: {
|
|
@@ -467,11 +506,14 @@ export declare const lightTheme: {
|
|
|
467
506
|
readonly margin: 32;
|
|
468
507
|
};
|
|
469
508
|
readonly spacing: {
|
|
470
|
-
readonly
|
|
471
|
-
readonly
|
|
472
|
-
readonly
|
|
473
|
-
readonly
|
|
474
|
-
readonly
|
|
509
|
+
readonly '2xl': 28;
|
|
510
|
+
readonly '2xs': 2;
|
|
511
|
+
readonly lg: 16;
|
|
512
|
+
readonly md: 12;
|
|
513
|
+
readonly none: 0;
|
|
514
|
+
readonly sm: 8;
|
|
515
|
+
readonly xl: 24;
|
|
516
|
+
readonly xs: 4;
|
|
475
517
|
};
|
|
476
518
|
};
|
|
477
519
|
readonly desktop: {
|
|
@@ -493,11 +535,14 @@ export declare const lightTheme: {
|
|
|
493
535
|
readonly margin: 32;
|
|
494
536
|
};
|
|
495
537
|
readonly spacing: {
|
|
496
|
-
readonly
|
|
497
|
-
readonly
|
|
498
|
-
readonly
|
|
499
|
-
readonly
|
|
500
|
-
readonly
|
|
538
|
+
readonly '2xl': 40;
|
|
539
|
+
readonly '2xs': 2;
|
|
540
|
+
readonly lg: 16;
|
|
541
|
+
readonly md: 12;
|
|
542
|
+
readonly none: 0;
|
|
543
|
+
readonly sm: 8;
|
|
544
|
+
readonly xl: 24;
|
|
545
|
+
readonly xs: 4;
|
|
501
546
|
};
|
|
502
547
|
};
|
|
503
548
|
};
|
|
@@ -664,36 +709,56 @@ export declare const lightTheme: {
|
|
|
664
709
|
};
|
|
665
710
|
};
|
|
666
711
|
readonly space: {
|
|
667
|
-
readonly none: {
|
|
712
|
+
readonly none: {
|
|
713
|
+
readonly gap: {
|
|
714
|
+
readonly base: 0;
|
|
715
|
+
readonly md: 0;
|
|
716
|
+
readonly lg: 0;
|
|
717
|
+
};
|
|
718
|
+
};
|
|
719
|
+
readonly '2xs': {
|
|
720
|
+
readonly gap: {
|
|
721
|
+
readonly base: 2;
|
|
722
|
+
readonly md: 2;
|
|
723
|
+
readonly lg: 2;
|
|
724
|
+
};
|
|
725
|
+
};
|
|
668
726
|
readonly xs: {
|
|
727
|
+
readonly gap: {
|
|
728
|
+
readonly base: 4;
|
|
729
|
+
readonly md: 4;
|
|
730
|
+
readonly lg: 4;
|
|
731
|
+
};
|
|
732
|
+
};
|
|
733
|
+
readonly sm: {
|
|
669
734
|
readonly gap: {
|
|
670
735
|
readonly base: 8;
|
|
671
736
|
readonly md: 8;
|
|
672
737
|
readonly lg: 8;
|
|
673
738
|
};
|
|
674
739
|
};
|
|
675
|
-
readonly
|
|
740
|
+
readonly md: {
|
|
676
741
|
readonly gap: {
|
|
677
742
|
readonly base: 12;
|
|
678
743
|
readonly md: 12;
|
|
679
744
|
readonly lg: 12;
|
|
680
745
|
};
|
|
681
746
|
};
|
|
682
|
-
readonly
|
|
747
|
+
readonly lg: {
|
|
683
748
|
readonly gap: {
|
|
684
749
|
readonly base: 16;
|
|
685
750
|
readonly md: 16;
|
|
686
751
|
readonly lg: 16;
|
|
687
752
|
};
|
|
688
753
|
};
|
|
689
|
-
readonly
|
|
754
|
+
readonly xl: {
|
|
690
755
|
readonly gap: {
|
|
691
756
|
readonly base: 20;
|
|
692
757
|
readonly md: 24;
|
|
693
758
|
readonly lg: 24;
|
|
694
759
|
};
|
|
695
760
|
};
|
|
696
|
-
readonly
|
|
761
|
+
readonly '2xl': {
|
|
697
762
|
readonly gap: {
|
|
698
763
|
readonly base: 28;
|
|
699
764
|
readonly md: 28;
|
|
@@ -722,55 +787,55 @@ export declare const lightTheme: {
|
|
|
722
787
|
readonly danger: {
|
|
723
788
|
readonly border: "#de2612";
|
|
724
789
|
readonly foreground: {
|
|
725
|
-
readonly default: "#
|
|
790
|
+
readonly default: "#101010";
|
|
726
791
|
readonly subtle: "#de2612";
|
|
727
792
|
};
|
|
728
793
|
readonly surface: {
|
|
729
|
-
readonly default: "#
|
|
730
|
-
readonly subtle: "#
|
|
794
|
+
readonly default: "#ff634a";
|
|
795
|
+
readonly subtle: "#ffa89d";
|
|
731
796
|
};
|
|
732
797
|
};
|
|
733
798
|
readonly functional: {
|
|
734
|
-
readonly border: "#
|
|
799
|
+
readonly border: "#5b5b5b";
|
|
735
800
|
readonly foreground: {
|
|
736
|
-
readonly default: "#
|
|
737
|
-
readonly subtle: "#
|
|
801
|
+
readonly default: "#101010";
|
|
802
|
+
readonly subtle: "#5b5b5b";
|
|
738
803
|
};
|
|
739
804
|
readonly surface: {
|
|
740
|
-
readonly default: "#
|
|
805
|
+
readonly default: "#919191";
|
|
741
806
|
readonly subtle: "#d3d3d3";
|
|
742
807
|
};
|
|
743
808
|
};
|
|
744
809
|
readonly info: {
|
|
745
810
|
readonly border: "#1c6cd4";
|
|
746
811
|
readonly foreground: {
|
|
747
|
-
readonly default: "#
|
|
812
|
+
readonly default: "#101010";
|
|
748
813
|
readonly subtle: "#1c6cd4";
|
|
749
814
|
};
|
|
750
815
|
readonly surface: {
|
|
751
|
-
readonly default: "#
|
|
816
|
+
readonly default: "#6bb0ff";
|
|
752
817
|
readonly subtle: "#bcddff";
|
|
753
818
|
};
|
|
754
819
|
};
|
|
755
820
|
readonly positive: {
|
|
756
821
|
readonly border: "#0f834a";
|
|
757
822
|
readonly foreground: {
|
|
758
|
-
readonly default: "#
|
|
823
|
+
readonly default: "#101010";
|
|
759
824
|
readonly subtle: "#0f834a";
|
|
760
825
|
};
|
|
761
826
|
readonly surface: {
|
|
762
|
-
readonly default: "#
|
|
827
|
+
readonly default: "#36bf7d";
|
|
763
828
|
readonly subtle: "#a2e2c3";
|
|
764
829
|
};
|
|
765
830
|
};
|
|
766
831
|
readonly warning: {
|
|
767
832
|
readonly border: "#be5400";
|
|
768
833
|
readonly foreground: {
|
|
769
|
-
readonly default: "#
|
|
834
|
+
readonly default: "#101010";
|
|
770
835
|
readonly subtle: "#be5400";
|
|
771
836
|
};
|
|
772
837
|
readonly surface: {
|
|
773
|
-
readonly default: "#
|
|
838
|
+
readonly default: "#ff8010";
|
|
774
839
|
readonly subtle: "#ffcca8";
|
|
775
840
|
};
|
|
776
841
|
};
|
|
@@ -843,14 +908,14 @@ export declare const lightTheme: {
|
|
|
843
908
|
};
|
|
844
909
|
readonly functional: {
|
|
845
910
|
readonly border: {
|
|
911
|
+
readonly inverted: "#f7f7f7";
|
|
846
912
|
readonly strong: "#101010";
|
|
847
913
|
readonly subtle: "#101010";
|
|
848
|
-
readonly inverted: "#f7f7f7";
|
|
849
914
|
};
|
|
850
915
|
readonly foreground: {
|
|
916
|
+
readonly inverted: "#f7f7f7";
|
|
851
917
|
readonly strong: "#fcfbf2";
|
|
852
918
|
readonly subtle: "#101010";
|
|
853
|
-
readonly inverted: "#f7f7f7";
|
|
854
919
|
};
|
|
855
920
|
readonly surface: {
|
|
856
921
|
readonly strong: {
|
|
@@ -948,9 +1013,11 @@ export declare const lightTheme: {
|
|
|
948
1013
|
};
|
|
949
1014
|
};
|
|
950
1015
|
readonly text: {
|
|
1016
|
+
readonly affirmative: "#0f834a";
|
|
1017
|
+
readonly brand: "#7a42c8";
|
|
951
1018
|
readonly inverted: "#fcfbf2";
|
|
952
1019
|
readonly primary: "#101010";
|
|
953
|
-
readonly secondary: "#
|
|
1020
|
+
readonly secondary: "#5b5b5b";
|
|
954
1021
|
};
|
|
955
1022
|
readonly blue: {
|
|
956
1023
|
readonly '0': "#f8fbff";
|
|
@@ -1195,6 +1262,42 @@ export declare const darkTheme: {
|
|
|
1195
1262
|
readonly '4/6': "66.666%";
|
|
1196
1263
|
readonly '5/6': "83.333%";
|
|
1197
1264
|
readonly full: DimensionValue;
|
|
1265
|
+
readonly none: 0;
|
|
1266
|
+
readonly '2xs': {
|
|
1267
|
+
readonly base: 2;
|
|
1268
|
+
readonly md: 2;
|
|
1269
|
+
readonly lg: 2;
|
|
1270
|
+
};
|
|
1271
|
+
readonly xs: {
|
|
1272
|
+
readonly base: 4;
|
|
1273
|
+
readonly md: 4;
|
|
1274
|
+
readonly lg: 4;
|
|
1275
|
+
};
|
|
1276
|
+
readonly sm: {
|
|
1277
|
+
readonly base: 8;
|
|
1278
|
+
readonly md: 8;
|
|
1279
|
+
readonly lg: 8;
|
|
1280
|
+
};
|
|
1281
|
+
readonly md: {
|
|
1282
|
+
readonly base: 12;
|
|
1283
|
+
readonly md: 12;
|
|
1284
|
+
readonly lg: 12;
|
|
1285
|
+
};
|
|
1286
|
+
readonly lg: {
|
|
1287
|
+
readonly base: 16;
|
|
1288
|
+
readonly md: 16;
|
|
1289
|
+
readonly lg: 16;
|
|
1290
|
+
};
|
|
1291
|
+
readonly xl: {
|
|
1292
|
+
readonly base: 20;
|
|
1293
|
+
readonly md: 24;
|
|
1294
|
+
readonly lg: 24;
|
|
1295
|
+
};
|
|
1296
|
+
readonly '2xl': {
|
|
1297
|
+
readonly base: 28;
|
|
1298
|
+
readonly md: 28;
|
|
1299
|
+
readonly lg: 40;
|
|
1300
|
+
};
|
|
1198
1301
|
readonly '0': 0;
|
|
1199
1302
|
readonly '25': 2;
|
|
1200
1303
|
readonly '50': 4;
|
|
@@ -1609,11 +1712,14 @@ export declare const darkTheme: {
|
|
|
1609
1712
|
readonly margin: 16;
|
|
1610
1713
|
};
|
|
1611
1714
|
readonly spacing: {
|
|
1612
|
-
readonly
|
|
1613
|
-
readonly
|
|
1614
|
-
readonly
|
|
1615
|
-
readonly
|
|
1616
|
-
readonly
|
|
1715
|
+
readonly '2xl': 28;
|
|
1716
|
+
readonly '2xs': 2;
|
|
1717
|
+
readonly lg: 16;
|
|
1718
|
+
readonly md: 12;
|
|
1719
|
+
readonly none: 0;
|
|
1720
|
+
readonly sm: 8;
|
|
1721
|
+
readonly xl: 20;
|
|
1722
|
+
readonly xs: 4;
|
|
1617
1723
|
};
|
|
1618
1724
|
};
|
|
1619
1725
|
readonly tablet: {
|
|
@@ -1635,11 +1741,14 @@ export declare const darkTheme: {
|
|
|
1635
1741
|
readonly margin: 32;
|
|
1636
1742
|
};
|
|
1637
1743
|
readonly spacing: {
|
|
1638
|
-
readonly
|
|
1639
|
-
readonly
|
|
1640
|
-
readonly
|
|
1641
|
-
readonly
|
|
1642
|
-
readonly
|
|
1744
|
+
readonly '2xl': 28;
|
|
1745
|
+
readonly '2xs': 2;
|
|
1746
|
+
readonly lg: 16;
|
|
1747
|
+
readonly md: 12;
|
|
1748
|
+
readonly none: 0;
|
|
1749
|
+
readonly sm: 8;
|
|
1750
|
+
readonly xl: 24;
|
|
1751
|
+
readonly xs: 4;
|
|
1643
1752
|
};
|
|
1644
1753
|
};
|
|
1645
1754
|
readonly desktop: {
|
|
@@ -1661,11 +1770,14 @@ export declare const darkTheme: {
|
|
|
1661
1770
|
readonly margin: 32;
|
|
1662
1771
|
};
|
|
1663
1772
|
readonly spacing: {
|
|
1664
|
-
readonly
|
|
1665
|
-
readonly
|
|
1666
|
-
readonly
|
|
1667
|
-
readonly
|
|
1668
|
-
readonly
|
|
1773
|
+
readonly '2xl': 40;
|
|
1774
|
+
readonly '2xs': 2;
|
|
1775
|
+
readonly lg: 16;
|
|
1776
|
+
readonly md: 12;
|
|
1777
|
+
readonly none: 0;
|
|
1778
|
+
readonly sm: 8;
|
|
1779
|
+
readonly xl: 24;
|
|
1780
|
+
readonly xs: 4;
|
|
1669
1781
|
};
|
|
1670
1782
|
};
|
|
1671
1783
|
};
|
|
@@ -1832,36 +1944,56 @@ export declare const darkTheme: {
|
|
|
1832
1944
|
};
|
|
1833
1945
|
};
|
|
1834
1946
|
readonly space: {
|
|
1835
|
-
readonly none: {
|
|
1947
|
+
readonly none: {
|
|
1948
|
+
readonly gap: {
|
|
1949
|
+
readonly base: 0;
|
|
1950
|
+
readonly md: 0;
|
|
1951
|
+
readonly lg: 0;
|
|
1952
|
+
};
|
|
1953
|
+
};
|
|
1954
|
+
readonly '2xs': {
|
|
1955
|
+
readonly gap: {
|
|
1956
|
+
readonly base: 2;
|
|
1957
|
+
readonly md: 2;
|
|
1958
|
+
readonly lg: 2;
|
|
1959
|
+
};
|
|
1960
|
+
};
|
|
1836
1961
|
readonly xs: {
|
|
1962
|
+
readonly gap: {
|
|
1963
|
+
readonly base: 4;
|
|
1964
|
+
readonly md: 4;
|
|
1965
|
+
readonly lg: 4;
|
|
1966
|
+
};
|
|
1967
|
+
};
|
|
1968
|
+
readonly sm: {
|
|
1837
1969
|
readonly gap: {
|
|
1838
1970
|
readonly base: 8;
|
|
1839
1971
|
readonly md: 8;
|
|
1840
1972
|
readonly lg: 8;
|
|
1841
1973
|
};
|
|
1842
1974
|
};
|
|
1843
|
-
readonly
|
|
1975
|
+
readonly md: {
|
|
1844
1976
|
readonly gap: {
|
|
1845
1977
|
readonly base: 12;
|
|
1846
1978
|
readonly md: 12;
|
|
1847
1979
|
readonly lg: 12;
|
|
1848
1980
|
};
|
|
1849
1981
|
};
|
|
1850
|
-
readonly
|
|
1982
|
+
readonly lg: {
|
|
1851
1983
|
readonly gap: {
|
|
1852
1984
|
readonly base: 16;
|
|
1853
1985
|
readonly md: 16;
|
|
1854
1986
|
readonly lg: 16;
|
|
1855
1987
|
};
|
|
1856
1988
|
};
|
|
1857
|
-
readonly
|
|
1989
|
+
readonly xl: {
|
|
1858
1990
|
readonly gap: {
|
|
1859
1991
|
readonly base: 20;
|
|
1860
1992
|
readonly md: 24;
|
|
1861
1993
|
readonly lg: 24;
|
|
1862
1994
|
};
|
|
1863
1995
|
};
|
|
1864
|
-
readonly
|
|
1996
|
+
readonly '2xl': {
|
|
1865
1997
|
readonly gap: {
|
|
1866
1998
|
readonly base: 28;
|
|
1867
1999
|
readonly md: 28;
|
|
@@ -1878,7 +2010,7 @@ export declare const darkTheme: {
|
|
|
1878
2010
|
readonly white: "#ffffff";
|
|
1879
2011
|
readonly black: "#000000";
|
|
1880
2012
|
readonly background: {
|
|
1881
|
-
readonly brand: "#
|
|
2013
|
+
readonly brand: "#7a42c8";
|
|
1882
2014
|
readonly primary: "#191917";
|
|
1883
2015
|
readonly secondary: "#232323";
|
|
1884
2016
|
};
|
|
@@ -1890,56 +2022,56 @@ export declare const darkTheme: {
|
|
|
1890
2022
|
readonly danger: {
|
|
1891
2023
|
readonly border: "#ff7964";
|
|
1892
2024
|
readonly foreground: {
|
|
1893
|
-
readonly default: "#
|
|
2025
|
+
readonly default: "#101010";
|
|
1894
2026
|
readonly subtle: "#ff7964";
|
|
1895
2027
|
};
|
|
1896
2028
|
readonly surface: {
|
|
1897
|
-
readonly default: "#
|
|
1898
|
-
readonly subtle: "#
|
|
2029
|
+
readonly default: "#ff634a";
|
|
2030
|
+
readonly subtle: "#ffa89d";
|
|
1899
2031
|
};
|
|
1900
2032
|
};
|
|
1901
2033
|
readonly functional: {
|
|
1902
2034
|
readonly border: "#b2afae";
|
|
1903
2035
|
readonly foreground: {
|
|
1904
|
-
readonly default: "#
|
|
2036
|
+
readonly default: "#101010";
|
|
1905
2037
|
readonly subtle: "#b2afae";
|
|
1906
2038
|
};
|
|
1907
2039
|
readonly surface: {
|
|
1908
|
-
readonly default: "#
|
|
1909
|
-
readonly subtle: "#
|
|
2040
|
+
readonly default: "#919191";
|
|
2041
|
+
readonly subtle: "#d3d3d3";
|
|
1910
2042
|
};
|
|
1911
2043
|
};
|
|
1912
2044
|
readonly info: {
|
|
1913
2045
|
readonly border: "#6bb0ff";
|
|
1914
2046
|
readonly foreground: {
|
|
1915
|
-
readonly default: "#
|
|
2047
|
+
readonly default: "#101010";
|
|
1916
2048
|
readonly subtle: "#6bb0ff";
|
|
1917
2049
|
};
|
|
1918
2050
|
readonly surface: {
|
|
1919
|
-
readonly default: "#
|
|
1920
|
-
readonly subtle: "#
|
|
2051
|
+
readonly default: "#6bb0ff";
|
|
2052
|
+
readonly subtle: "#bcddff";
|
|
1921
2053
|
};
|
|
1922
2054
|
};
|
|
1923
2055
|
readonly positive: {
|
|
1924
2056
|
readonly border: "#58ca93";
|
|
1925
2057
|
readonly foreground: {
|
|
1926
|
-
readonly default: "#
|
|
2058
|
+
readonly default: "#101010";
|
|
1927
2059
|
readonly subtle: "#58ca93";
|
|
1928
2060
|
};
|
|
1929
2061
|
readonly surface: {
|
|
1930
|
-
readonly default: "#
|
|
1931
|
-
readonly subtle: "#
|
|
2062
|
+
readonly default: "#36bf7d";
|
|
2063
|
+
readonly subtle: "#a2e2c3";
|
|
1932
2064
|
};
|
|
1933
2065
|
};
|
|
1934
2066
|
readonly warning: {
|
|
1935
2067
|
readonly border: "#ff9639";
|
|
1936
2068
|
readonly foreground: {
|
|
1937
|
-
readonly default: "#
|
|
2069
|
+
readonly default: "#101010";
|
|
1938
2070
|
readonly subtle: "#ff9639";
|
|
1939
2071
|
};
|
|
1940
2072
|
readonly surface: {
|
|
1941
|
-
readonly default: "#
|
|
1942
|
-
readonly subtle: "#
|
|
2073
|
+
readonly default: "#ff8010";
|
|
2074
|
+
readonly subtle: "#ffcca8";
|
|
1943
2075
|
};
|
|
1944
2076
|
};
|
|
1945
2077
|
};
|
|
@@ -1954,7 +2086,7 @@ export declare const darkTheme: {
|
|
|
1954
2086
|
readonly interactive: {
|
|
1955
2087
|
readonly affirmative: {
|
|
1956
2088
|
readonly border: {
|
|
1957
|
-
readonly strong: "#
|
|
2089
|
+
readonly strong: "#101010";
|
|
1958
2090
|
readonly subtle: "#58ca93";
|
|
1959
2091
|
};
|
|
1960
2092
|
readonly foreground: {
|
|
@@ -1990,7 +2122,7 @@ export declare const darkTheme: {
|
|
|
1990
2122
|
};
|
|
1991
2123
|
readonly destructive: {
|
|
1992
2124
|
readonly border: {
|
|
1993
|
-
readonly strong: "#
|
|
2125
|
+
readonly strong: "#101010";
|
|
1994
2126
|
readonly subtle: "#ff7964";
|
|
1995
2127
|
};
|
|
1996
2128
|
readonly foreground: {
|
|
@@ -2011,14 +2143,14 @@ export declare const darkTheme: {
|
|
|
2011
2143
|
};
|
|
2012
2144
|
readonly functional: {
|
|
2013
2145
|
readonly border: {
|
|
2146
|
+
readonly inverted: "#f7f7f7";
|
|
2014
2147
|
readonly strong: "#ebebeb";
|
|
2015
2148
|
readonly subtle: "#ebebeb";
|
|
2016
|
-
readonly inverted: "#f7f7f7";
|
|
2017
2149
|
};
|
|
2018
2150
|
readonly foreground: {
|
|
2151
|
+
readonly inverted: "#f7f7f7";
|
|
2019
2152
|
readonly strong: "#fcfbf2";
|
|
2020
2153
|
readonly subtle: "#ebebeb";
|
|
2021
|
-
readonly inverted: "#f7f7f7";
|
|
2022
2154
|
};
|
|
2023
2155
|
readonly surface: {
|
|
2024
2156
|
readonly strong: {
|
|
@@ -2030,15 +2162,15 @@ export declare const darkTheme: {
|
|
|
2030
2162
|
readonly active: "#4c4c4c";
|
|
2031
2163
|
readonly hover: "#3a3837";
|
|
2032
2164
|
readonly inverted: {
|
|
2033
|
-
readonly active: "#
|
|
2034
|
-
readonly hover: "#
|
|
2165
|
+
readonly active: "#3a3837";
|
|
2166
|
+
readonly hover: "#3f3f3f";
|
|
2035
2167
|
};
|
|
2036
2168
|
};
|
|
2037
2169
|
};
|
|
2038
2170
|
};
|
|
2039
2171
|
readonly highlight: {
|
|
2040
2172
|
readonly border: {
|
|
2041
|
-
readonly strong: "#
|
|
2173
|
+
readonly strong: "#101010";
|
|
2042
2174
|
};
|
|
2043
2175
|
readonly foreground: {
|
|
2044
2176
|
readonly strong: "#101010";
|
|
@@ -2116,7 +2248,9 @@ export declare const darkTheme: {
|
|
|
2116
2248
|
};
|
|
2117
2249
|
};
|
|
2118
2250
|
readonly text: {
|
|
2119
|
-
readonly
|
|
2251
|
+
readonly affirmative: "#58ca93";
|
|
2252
|
+
readonly brand: "#af90de";
|
|
2253
|
+
readonly inverted: "#fcfbf2";
|
|
2120
2254
|
readonly primary: "#ebebeb";
|
|
2121
2255
|
readonly secondary: "#b2afae";
|
|
2122
2256
|
};
|
|
@@ -2364,6 +2498,42 @@ export declare const themes: {
|
|
|
2364
2498
|
readonly '4/6': "66.666%";
|
|
2365
2499
|
readonly '5/6': "83.333%";
|
|
2366
2500
|
readonly full: DimensionValue;
|
|
2501
|
+
readonly none: 0;
|
|
2502
|
+
readonly '2xs': {
|
|
2503
|
+
readonly base: 2;
|
|
2504
|
+
readonly md: 2;
|
|
2505
|
+
readonly lg: 2;
|
|
2506
|
+
};
|
|
2507
|
+
readonly xs: {
|
|
2508
|
+
readonly base: 4;
|
|
2509
|
+
readonly md: 4;
|
|
2510
|
+
readonly lg: 4;
|
|
2511
|
+
};
|
|
2512
|
+
readonly sm: {
|
|
2513
|
+
readonly base: 8;
|
|
2514
|
+
readonly md: 8;
|
|
2515
|
+
readonly lg: 8;
|
|
2516
|
+
};
|
|
2517
|
+
readonly md: {
|
|
2518
|
+
readonly base: 12;
|
|
2519
|
+
readonly md: 12;
|
|
2520
|
+
readonly lg: 12;
|
|
2521
|
+
};
|
|
2522
|
+
readonly lg: {
|
|
2523
|
+
readonly base: 16;
|
|
2524
|
+
readonly md: 16;
|
|
2525
|
+
readonly lg: 16;
|
|
2526
|
+
};
|
|
2527
|
+
readonly xl: {
|
|
2528
|
+
readonly base: 20;
|
|
2529
|
+
readonly md: 24;
|
|
2530
|
+
readonly lg: 24;
|
|
2531
|
+
};
|
|
2532
|
+
readonly '2xl': {
|
|
2533
|
+
readonly base: 28;
|
|
2534
|
+
readonly md: 28;
|
|
2535
|
+
readonly lg: 40;
|
|
2536
|
+
};
|
|
2367
2537
|
readonly '0': 0;
|
|
2368
2538
|
readonly '25': 2;
|
|
2369
2539
|
readonly '50': 4;
|
|
@@ -2778,11 +2948,14 @@ export declare const themes: {
|
|
|
2778
2948
|
readonly margin: 16;
|
|
2779
2949
|
};
|
|
2780
2950
|
readonly spacing: {
|
|
2781
|
-
readonly
|
|
2782
|
-
readonly
|
|
2783
|
-
readonly
|
|
2784
|
-
readonly
|
|
2785
|
-
readonly
|
|
2951
|
+
readonly '2xl': 28;
|
|
2952
|
+
readonly '2xs': 2;
|
|
2953
|
+
readonly lg: 16;
|
|
2954
|
+
readonly md: 12;
|
|
2955
|
+
readonly none: 0;
|
|
2956
|
+
readonly sm: 8;
|
|
2957
|
+
readonly xl: 20;
|
|
2958
|
+
readonly xs: 4;
|
|
2786
2959
|
};
|
|
2787
2960
|
};
|
|
2788
2961
|
readonly tablet: {
|
|
@@ -2804,11 +2977,14 @@ export declare const themes: {
|
|
|
2804
2977
|
readonly margin: 32;
|
|
2805
2978
|
};
|
|
2806
2979
|
readonly spacing: {
|
|
2807
|
-
readonly
|
|
2808
|
-
readonly
|
|
2809
|
-
readonly
|
|
2810
|
-
readonly
|
|
2811
|
-
readonly
|
|
2980
|
+
readonly '2xl': 28;
|
|
2981
|
+
readonly '2xs': 2;
|
|
2982
|
+
readonly lg: 16;
|
|
2983
|
+
readonly md: 12;
|
|
2984
|
+
readonly none: 0;
|
|
2985
|
+
readonly sm: 8;
|
|
2986
|
+
readonly xl: 24;
|
|
2987
|
+
readonly xs: 4;
|
|
2812
2988
|
};
|
|
2813
2989
|
};
|
|
2814
2990
|
readonly desktop: {
|
|
@@ -2830,11 +3006,14 @@ export declare const themes: {
|
|
|
2830
3006
|
readonly margin: 32;
|
|
2831
3007
|
};
|
|
2832
3008
|
readonly spacing: {
|
|
2833
|
-
readonly
|
|
2834
|
-
readonly
|
|
2835
|
-
readonly
|
|
2836
|
-
readonly
|
|
2837
|
-
readonly
|
|
3009
|
+
readonly '2xl': 40;
|
|
3010
|
+
readonly '2xs': 2;
|
|
3011
|
+
readonly lg: 16;
|
|
3012
|
+
readonly md: 12;
|
|
3013
|
+
readonly none: 0;
|
|
3014
|
+
readonly sm: 8;
|
|
3015
|
+
readonly xl: 24;
|
|
3016
|
+
readonly xs: 4;
|
|
2838
3017
|
};
|
|
2839
3018
|
};
|
|
2840
3019
|
};
|
|
@@ -3001,36 +3180,56 @@ export declare const themes: {
|
|
|
3001
3180
|
};
|
|
3002
3181
|
};
|
|
3003
3182
|
readonly space: {
|
|
3004
|
-
readonly none: {
|
|
3183
|
+
readonly none: {
|
|
3184
|
+
readonly gap: {
|
|
3185
|
+
readonly base: 0;
|
|
3186
|
+
readonly md: 0;
|
|
3187
|
+
readonly lg: 0;
|
|
3188
|
+
};
|
|
3189
|
+
};
|
|
3190
|
+
readonly '2xs': {
|
|
3191
|
+
readonly gap: {
|
|
3192
|
+
readonly base: 2;
|
|
3193
|
+
readonly md: 2;
|
|
3194
|
+
readonly lg: 2;
|
|
3195
|
+
};
|
|
3196
|
+
};
|
|
3005
3197
|
readonly xs: {
|
|
3198
|
+
readonly gap: {
|
|
3199
|
+
readonly base: 4;
|
|
3200
|
+
readonly md: 4;
|
|
3201
|
+
readonly lg: 4;
|
|
3202
|
+
};
|
|
3203
|
+
};
|
|
3204
|
+
readonly sm: {
|
|
3006
3205
|
readonly gap: {
|
|
3007
3206
|
readonly base: 8;
|
|
3008
3207
|
readonly md: 8;
|
|
3009
3208
|
readonly lg: 8;
|
|
3010
3209
|
};
|
|
3011
3210
|
};
|
|
3012
|
-
readonly
|
|
3211
|
+
readonly md: {
|
|
3013
3212
|
readonly gap: {
|
|
3014
3213
|
readonly base: 12;
|
|
3015
3214
|
readonly md: 12;
|
|
3016
3215
|
readonly lg: 12;
|
|
3017
3216
|
};
|
|
3018
3217
|
};
|
|
3019
|
-
readonly
|
|
3218
|
+
readonly lg: {
|
|
3020
3219
|
readonly gap: {
|
|
3021
3220
|
readonly base: 16;
|
|
3022
3221
|
readonly md: 16;
|
|
3023
3222
|
readonly lg: 16;
|
|
3024
3223
|
};
|
|
3025
3224
|
};
|
|
3026
|
-
readonly
|
|
3225
|
+
readonly xl: {
|
|
3027
3226
|
readonly gap: {
|
|
3028
3227
|
readonly base: 20;
|
|
3029
3228
|
readonly md: 24;
|
|
3030
3229
|
readonly lg: 24;
|
|
3031
3230
|
};
|
|
3032
3231
|
};
|
|
3033
|
-
readonly
|
|
3232
|
+
readonly '2xl': {
|
|
3034
3233
|
readonly gap: {
|
|
3035
3234
|
readonly base: 28;
|
|
3036
3235
|
readonly md: 28;
|
|
@@ -3059,55 +3258,55 @@ export declare const themes: {
|
|
|
3059
3258
|
readonly danger: {
|
|
3060
3259
|
readonly border: "#de2612";
|
|
3061
3260
|
readonly foreground: {
|
|
3062
|
-
readonly default: "#
|
|
3261
|
+
readonly default: "#101010";
|
|
3063
3262
|
readonly subtle: "#de2612";
|
|
3064
3263
|
};
|
|
3065
3264
|
readonly surface: {
|
|
3066
|
-
readonly default: "#
|
|
3067
|
-
readonly subtle: "#
|
|
3265
|
+
readonly default: "#ff634a";
|
|
3266
|
+
readonly subtle: "#ffa89d";
|
|
3068
3267
|
};
|
|
3069
3268
|
};
|
|
3070
3269
|
readonly functional: {
|
|
3071
|
-
readonly border: "#
|
|
3270
|
+
readonly border: "#5b5b5b";
|
|
3072
3271
|
readonly foreground: {
|
|
3073
|
-
readonly default: "#
|
|
3074
|
-
readonly subtle: "#
|
|
3272
|
+
readonly default: "#101010";
|
|
3273
|
+
readonly subtle: "#5b5b5b";
|
|
3075
3274
|
};
|
|
3076
3275
|
readonly surface: {
|
|
3077
|
-
readonly default: "#
|
|
3276
|
+
readonly default: "#919191";
|
|
3078
3277
|
readonly subtle: "#d3d3d3";
|
|
3079
3278
|
};
|
|
3080
3279
|
};
|
|
3081
3280
|
readonly info: {
|
|
3082
3281
|
readonly border: "#1c6cd4";
|
|
3083
3282
|
readonly foreground: {
|
|
3084
|
-
readonly default: "#
|
|
3283
|
+
readonly default: "#101010";
|
|
3085
3284
|
readonly subtle: "#1c6cd4";
|
|
3086
3285
|
};
|
|
3087
3286
|
readonly surface: {
|
|
3088
|
-
readonly default: "#
|
|
3287
|
+
readonly default: "#6bb0ff";
|
|
3089
3288
|
readonly subtle: "#bcddff";
|
|
3090
3289
|
};
|
|
3091
3290
|
};
|
|
3092
3291
|
readonly positive: {
|
|
3093
3292
|
readonly border: "#0f834a";
|
|
3094
3293
|
readonly foreground: {
|
|
3095
|
-
readonly default: "#
|
|
3294
|
+
readonly default: "#101010";
|
|
3096
3295
|
readonly subtle: "#0f834a";
|
|
3097
3296
|
};
|
|
3098
3297
|
readonly surface: {
|
|
3099
|
-
readonly default: "#
|
|
3298
|
+
readonly default: "#36bf7d";
|
|
3100
3299
|
readonly subtle: "#a2e2c3";
|
|
3101
3300
|
};
|
|
3102
3301
|
};
|
|
3103
3302
|
readonly warning: {
|
|
3104
3303
|
readonly border: "#be5400";
|
|
3105
3304
|
readonly foreground: {
|
|
3106
|
-
readonly default: "#
|
|
3305
|
+
readonly default: "#101010";
|
|
3107
3306
|
readonly subtle: "#be5400";
|
|
3108
3307
|
};
|
|
3109
3308
|
readonly surface: {
|
|
3110
|
-
readonly default: "#
|
|
3309
|
+
readonly default: "#ff8010";
|
|
3111
3310
|
readonly subtle: "#ffcca8";
|
|
3112
3311
|
};
|
|
3113
3312
|
};
|
|
@@ -3180,14 +3379,14 @@ export declare const themes: {
|
|
|
3180
3379
|
};
|
|
3181
3380
|
readonly functional: {
|
|
3182
3381
|
readonly border: {
|
|
3382
|
+
readonly inverted: "#f7f7f7";
|
|
3183
3383
|
readonly strong: "#101010";
|
|
3184
3384
|
readonly subtle: "#101010";
|
|
3185
|
-
readonly inverted: "#f7f7f7";
|
|
3186
3385
|
};
|
|
3187
3386
|
readonly foreground: {
|
|
3387
|
+
readonly inverted: "#f7f7f7";
|
|
3188
3388
|
readonly strong: "#fcfbf2";
|
|
3189
3389
|
readonly subtle: "#101010";
|
|
3190
|
-
readonly inverted: "#f7f7f7";
|
|
3191
3390
|
};
|
|
3192
3391
|
readonly surface: {
|
|
3193
3392
|
readonly strong: {
|
|
@@ -3285,9 +3484,11 @@ export declare const themes: {
|
|
|
3285
3484
|
};
|
|
3286
3485
|
};
|
|
3287
3486
|
readonly text: {
|
|
3487
|
+
readonly affirmative: "#0f834a";
|
|
3488
|
+
readonly brand: "#7a42c8";
|
|
3288
3489
|
readonly inverted: "#fcfbf2";
|
|
3289
3490
|
readonly primary: "#101010";
|
|
3290
|
-
readonly secondary: "#
|
|
3491
|
+
readonly secondary: "#5b5b5b";
|
|
3291
3492
|
};
|
|
3292
3493
|
readonly blue: {
|
|
3293
3494
|
readonly '0': "#f8fbff";
|
|
@@ -3532,6 +3733,42 @@ export declare const themes: {
|
|
|
3532
3733
|
readonly '4/6': "66.666%";
|
|
3533
3734
|
readonly '5/6': "83.333%";
|
|
3534
3735
|
readonly full: DimensionValue;
|
|
3736
|
+
readonly none: 0;
|
|
3737
|
+
readonly '2xs': {
|
|
3738
|
+
readonly base: 2;
|
|
3739
|
+
readonly md: 2;
|
|
3740
|
+
readonly lg: 2;
|
|
3741
|
+
};
|
|
3742
|
+
readonly xs: {
|
|
3743
|
+
readonly base: 4;
|
|
3744
|
+
readonly md: 4;
|
|
3745
|
+
readonly lg: 4;
|
|
3746
|
+
};
|
|
3747
|
+
readonly sm: {
|
|
3748
|
+
readonly base: 8;
|
|
3749
|
+
readonly md: 8;
|
|
3750
|
+
readonly lg: 8;
|
|
3751
|
+
};
|
|
3752
|
+
readonly md: {
|
|
3753
|
+
readonly base: 12;
|
|
3754
|
+
readonly md: 12;
|
|
3755
|
+
readonly lg: 12;
|
|
3756
|
+
};
|
|
3757
|
+
readonly lg: {
|
|
3758
|
+
readonly base: 16;
|
|
3759
|
+
readonly md: 16;
|
|
3760
|
+
readonly lg: 16;
|
|
3761
|
+
};
|
|
3762
|
+
readonly xl: {
|
|
3763
|
+
readonly base: 20;
|
|
3764
|
+
readonly md: 24;
|
|
3765
|
+
readonly lg: 24;
|
|
3766
|
+
};
|
|
3767
|
+
readonly '2xl': {
|
|
3768
|
+
readonly base: 28;
|
|
3769
|
+
readonly md: 28;
|
|
3770
|
+
readonly lg: 40;
|
|
3771
|
+
};
|
|
3535
3772
|
readonly '0': 0;
|
|
3536
3773
|
readonly '25': 2;
|
|
3537
3774
|
readonly '50': 4;
|
|
@@ -3946,11 +4183,14 @@ export declare const themes: {
|
|
|
3946
4183
|
readonly margin: 16;
|
|
3947
4184
|
};
|
|
3948
4185
|
readonly spacing: {
|
|
3949
|
-
readonly
|
|
3950
|
-
readonly
|
|
3951
|
-
readonly
|
|
3952
|
-
readonly
|
|
3953
|
-
readonly
|
|
4186
|
+
readonly '2xl': 28;
|
|
4187
|
+
readonly '2xs': 2;
|
|
4188
|
+
readonly lg: 16;
|
|
4189
|
+
readonly md: 12;
|
|
4190
|
+
readonly none: 0;
|
|
4191
|
+
readonly sm: 8;
|
|
4192
|
+
readonly xl: 20;
|
|
4193
|
+
readonly xs: 4;
|
|
3954
4194
|
};
|
|
3955
4195
|
};
|
|
3956
4196
|
readonly tablet: {
|
|
@@ -3972,11 +4212,14 @@ export declare const themes: {
|
|
|
3972
4212
|
readonly margin: 32;
|
|
3973
4213
|
};
|
|
3974
4214
|
readonly spacing: {
|
|
3975
|
-
readonly
|
|
3976
|
-
readonly
|
|
3977
|
-
readonly
|
|
3978
|
-
readonly
|
|
3979
|
-
readonly
|
|
4215
|
+
readonly '2xl': 28;
|
|
4216
|
+
readonly '2xs': 2;
|
|
4217
|
+
readonly lg: 16;
|
|
4218
|
+
readonly md: 12;
|
|
4219
|
+
readonly none: 0;
|
|
4220
|
+
readonly sm: 8;
|
|
4221
|
+
readonly xl: 24;
|
|
4222
|
+
readonly xs: 4;
|
|
3980
4223
|
};
|
|
3981
4224
|
};
|
|
3982
4225
|
readonly desktop: {
|
|
@@ -3998,11 +4241,14 @@ export declare const themes: {
|
|
|
3998
4241
|
readonly margin: 32;
|
|
3999
4242
|
};
|
|
4000
4243
|
readonly spacing: {
|
|
4001
|
-
readonly
|
|
4002
|
-
readonly
|
|
4003
|
-
readonly
|
|
4004
|
-
readonly
|
|
4005
|
-
readonly
|
|
4244
|
+
readonly '2xl': 40;
|
|
4245
|
+
readonly '2xs': 2;
|
|
4246
|
+
readonly lg: 16;
|
|
4247
|
+
readonly md: 12;
|
|
4248
|
+
readonly none: 0;
|
|
4249
|
+
readonly sm: 8;
|
|
4250
|
+
readonly xl: 24;
|
|
4251
|
+
readonly xs: 4;
|
|
4006
4252
|
};
|
|
4007
4253
|
};
|
|
4008
4254
|
};
|
|
@@ -4169,36 +4415,56 @@ export declare const themes: {
|
|
|
4169
4415
|
};
|
|
4170
4416
|
};
|
|
4171
4417
|
readonly space: {
|
|
4172
|
-
readonly none: {
|
|
4418
|
+
readonly none: {
|
|
4419
|
+
readonly gap: {
|
|
4420
|
+
readonly base: 0;
|
|
4421
|
+
readonly md: 0;
|
|
4422
|
+
readonly lg: 0;
|
|
4423
|
+
};
|
|
4424
|
+
};
|
|
4425
|
+
readonly '2xs': {
|
|
4426
|
+
readonly gap: {
|
|
4427
|
+
readonly base: 2;
|
|
4428
|
+
readonly md: 2;
|
|
4429
|
+
readonly lg: 2;
|
|
4430
|
+
};
|
|
4431
|
+
};
|
|
4173
4432
|
readonly xs: {
|
|
4433
|
+
readonly gap: {
|
|
4434
|
+
readonly base: 4;
|
|
4435
|
+
readonly md: 4;
|
|
4436
|
+
readonly lg: 4;
|
|
4437
|
+
};
|
|
4438
|
+
};
|
|
4439
|
+
readonly sm: {
|
|
4174
4440
|
readonly gap: {
|
|
4175
4441
|
readonly base: 8;
|
|
4176
4442
|
readonly md: 8;
|
|
4177
4443
|
readonly lg: 8;
|
|
4178
4444
|
};
|
|
4179
4445
|
};
|
|
4180
|
-
readonly
|
|
4446
|
+
readonly md: {
|
|
4181
4447
|
readonly gap: {
|
|
4182
4448
|
readonly base: 12;
|
|
4183
4449
|
readonly md: 12;
|
|
4184
4450
|
readonly lg: 12;
|
|
4185
4451
|
};
|
|
4186
4452
|
};
|
|
4187
|
-
readonly
|
|
4453
|
+
readonly lg: {
|
|
4188
4454
|
readonly gap: {
|
|
4189
4455
|
readonly base: 16;
|
|
4190
4456
|
readonly md: 16;
|
|
4191
4457
|
readonly lg: 16;
|
|
4192
4458
|
};
|
|
4193
4459
|
};
|
|
4194
|
-
readonly
|
|
4460
|
+
readonly xl: {
|
|
4195
4461
|
readonly gap: {
|
|
4196
4462
|
readonly base: 20;
|
|
4197
4463
|
readonly md: 24;
|
|
4198
4464
|
readonly lg: 24;
|
|
4199
4465
|
};
|
|
4200
4466
|
};
|
|
4201
|
-
readonly
|
|
4467
|
+
readonly '2xl': {
|
|
4202
4468
|
readonly gap: {
|
|
4203
4469
|
readonly base: 28;
|
|
4204
4470
|
readonly md: 28;
|
|
@@ -4215,7 +4481,7 @@ export declare const themes: {
|
|
|
4215
4481
|
readonly white: "#ffffff";
|
|
4216
4482
|
readonly black: "#000000";
|
|
4217
4483
|
readonly background: {
|
|
4218
|
-
readonly brand: "#
|
|
4484
|
+
readonly brand: "#7a42c8";
|
|
4219
4485
|
readonly primary: "#191917";
|
|
4220
4486
|
readonly secondary: "#232323";
|
|
4221
4487
|
};
|
|
@@ -4227,56 +4493,56 @@ export declare const themes: {
|
|
|
4227
4493
|
readonly danger: {
|
|
4228
4494
|
readonly border: "#ff7964";
|
|
4229
4495
|
readonly foreground: {
|
|
4230
|
-
readonly default: "#
|
|
4496
|
+
readonly default: "#101010";
|
|
4231
4497
|
readonly subtle: "#ff7964";
|
|
4232
4498
|
};
|
|
4233
4499
|
readonly surface: {
|
|
4234
|
-
readonly default: "#
|
|
4235
|
-
readonly subtle: "#
|
|
4500
|
+
readonly default: "#ff634a";
|
|
4501
|
+
readonly subtle: "#ffa89d";
|
|
4236
4502
|
};
|
|
4237
4503
|
};
|
|
4238
4504
|
readonly functional: {
|
|
4239
4505
|
readonly border: "#b2afae";
|
|
4240
4506
|
readonly foreground: {
|
|
4241
|
-
readonly default: "#
|
|
4507
|
+
readonly default: "#101010";
|
|
4242
4508
|
readonly subtle: "#b2afae";
|
|
4243
4509
|
};
|
|
4244
4510
|
readonly surface: {
|
|
4245
|
-
readonly default: "#
|
|
4246
|
-
readonly subtle: "#
|
|
4511
|
+
readonly default: "#919191";
|
|
4512
|
+
readonly subtle: "#d3d3d3";
|
|
4247
4513
|
};
|
|
4248
4514
|
};
|
|
4249
4515
|
readonly info: {
|
|
4250
4516
|
readonly border: "#6bb0ff";
|
|
4251
4517
|
readonly foreground: {
|
|
4252
|
-
readonly default: "#
|
|
4518
|
+
readonly default: "#101010";
|
|
4253
4519
|
readonly subtle: "#6bb0ff";
|
|
4254
4520
|
};
|
|
4255
4521
|
readonly surface: {
|
|
4256
|
-
readonly default: "#
|
|
4257
|
-
readonly subtle: "#
|
|
4522
|
+
readonly default: "#6bb0ff";
|
|
4523
|
+
readonly subtle: "#bcddff";
|
|
4258
4524
|
};
|
|
4259
4525
|
};
|
|
4260
4526
|
readonly positive: {
|
|
4261
4527
|
readonly border: "#58ca93";
|
|
4262
4528
|
readonly foreground: {
|
|
4263
|
-
readonly default: "#
|
|
4529
|
+
readonly default: "#101010";
|
|
4264
4530
|
readonly subtle: "#58ca93";
|
|
4265
4531
|
};
|
|
4266
4532
|
readonly surface: {
|
|
4267
|
-
readonly default: "#
|
|
4268
|
-
readonly subtle: "#
|
|
4533
|
+
readonly default: "#36bf7d";
|
|
4534
|
+
readonly subtle: "#a2e2c3";
|
|
4269
4535
|
};
|
|
4270
4536
|
};
|
|
4271
4537
|
readonly warning: {
|
|
4272
4538
|
readonly border: "#ff9639";
|
|
4273
4539
|
readonly foreground: {
|
|
4274
|
-
readonly default: "#
|
|
4540
|
+
readonly default: "#101010";
|
|
4275
4541
|
readonly subtle: "#ff9639";
|
|
4276
4542
|
};
|
|
4277
4543
|
readonly surface: {
|
|
4278
|
-
readonly default: "#
|
|
4279
|
-
readonly subtle: "#
|
|
4544
|
+
readonly default: "#ff8010";
|
|
4545
|
+
readonly subtle: "#ffcca8";
|
|
4280
4546
|
};
|
|
4281
4547
|
};
|
|
4282
4548
|
};
|
|
@@ -4291,7 +4557,7 @@ export declare const themes: {
|
|
|
4291
4557
|
readonly interactive: {
|
|
4292
4558
|
readonly affirmative: {
|
|
4293
4559
|
readonly border: {
|
|
4294
|
-
readonly strong: "#
|
|
4560
|
+
readonly strong: "#101010";
|
|
4295
4561
|
readonly subtle: "#58ca93";
|
|
4296
4562
|
};
|
|
4297
4563
|
readonly foreground: {
|
|
@@ -4327,7 +4593,7 @@ export declare const themes: {
|
|
|
4327
4593
|
};
|
|
4328
4594
|
readonly destructive: {
|
|
4329
4595
|
readonly border: {
|
|
4330
|
-
readonly strong: "#
|
|
4596
|
+
readonly strong: "#101010";
|
|
4331
4597
|
readonly subtle: "#ff7964";
|
|
4332
4598
|
};
|
|
4333
4599
|
readonly foreground: {
|
|
@@ -4348,14 +4614,14 @@ export declare const themes: {
|
|
|
4348
4614
|
};
|
|
4349
4615
|
readonly functional: {
|
|
4350
4616
|
readonly border: {
|
|
4617
|
+
readonly inverted: "#f7f7f7";
|
|
4351
4618
|
readonly strong: "#ebebeb";
|
|
4352
4619
|
readonly subtle: "#ebebeb";
|
|
4353
|
-
readonly inverted: "#f7f7f7";
|
|
4354
4620
|
};
|
|
4355
4621
|
readonly foreground: {
|
|
4622
|
+
readonly inverted: "#f7f7f7";
|
|
4356
4623
|
readonly strong: "#fcfbf2";
|
|
4357
4624
|
readonly subtle: "#ebebeb";
|
|
4358
|
-
readonly inverted: "#f7f7f7";
|
|
4359
4625
|
};
|
|
4360
4626
|
readonly surface: {
|
|
4361
4627
|
readonly strong: {
|
|
@@ -4367,15 +4633,15 @@ export declare const themes: {
|
|
|
4367
4633
|
readonly active: "#4c4c4c";
|
|
4368
4634
|
readonly hover: "#3a3837";
|
|
4369
4635
|
readonly inverted: {
|
|
4370
|
-
readonly active: "#
|
|
4371
|
-
readonly hover: "#
|
|
4636
|
+
readonly active: "#3a3837";
|
|
4637
|
+
readonly hover: "#3f3f3f";
|
|
4372
4638
|
};
|
|
4373
4639
|
};
|
|
4374
4640
|
};
|
|
4375
4641
|
};
|
|
4376
4642
|
readonly highlight: {
|
|
4377
4643
|
readonly border: {
|
|
4378
|
-
readonly strong: "#
|
|
4644
|
+
readonly strong: "#101010";
|
|
4379
4645
|
};
|
|
4380
4646
|
readonly foreground: {
|
|
4381
4647
|
readonly strong: "#101010";
|
|
@@ -4453,7 +4719,9 @@ export declare const themes: {
|
|
|
4453
4719
|
};
|
|
4454
4720
|
};
|
|
4455
4721
|
readonly text: {
|
|
4456
|
-
readonly
|
|
4722
|
+
readonly affirmative: "#58ca93";
|
|
4723
|
+
readonly brand: "#af90de";
|
|
4724
|
+
readonly inverted: "#fcfbf2";
|
|
4457
4725
|
readonly primary: "#ebebeb";
|
|
4458
4726
|
readonly secondary: "#b2afae";
|
|
4459
4727
|
};
|