@utilitywarehouse/hearth-react-native 0.2.0 → 0.3.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/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-lint.log +1 -1
- package/CHANGELOG.md +22 -0
- package/build/components/Badge/Badge.js +101 -14
- package/build/components/Badge/Badge.props.d.ts +2 -2
- package/build/components/Badge/BadgeIcon.js +5 -79
- package/build/components/Badge/BadgeText.js +7 -81
- 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/Card/Card.props.d.ts +2 -2
- 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/Modal/Modal.js +17 -1
- package/build/components/SectionHeader/SectionHeader.js +1 -0
- 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/index.d.ts +4 -0
- package/build/components/index.js +4 -0
- package/build/core/themes.d.ts +416 -148
- package/build/core/themes.js +57 -1
- package/build/tokens/color.d.ts +76 -68
- package/build/tokens/color.js +38 -34
- 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 +1 -1
- package/build/tokens/components/dark/checkbox.js +1 -1
- package/build/tokens/components/dark/icon-button.d.ts +3 -3
- package/build/tokens/components/dark/icon-button.js +3 -3
- 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/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 +3 -3
- package/build/tokens/components/light/checkbox.js +3 -3
- package/build/tokens/components/light/icon-button.d.ts +1 -1
- package/build/tokens/components/light/icon-button.js +1 -1
- 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/layout.d.ts +48 -30
- package/build/tokens/layout.js +24 -15
- package/build/tokens/semantic-dark.d.ts +21 -19
- package/build/tokens/semantic-dark.js +21 -19
- package/build/tokens/semantic-light.d.ts +17 -15
- package/build/tokens/semantic-light.js +17 -15
- 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/components/AllComponents.web.tsx +97 -8
- package/docs/components/NextPrevPage.tsx +11 -3
- package/docs/components/UsageWrap.tsx +2 -2
- package/docs/heplers/addReactNativePrefix.ts +8 -0
- package/docs/heplers/index.ts +1 -0
- package/docs/theme-tokens.mdx +42 -0
- package/package.json +2 -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 +5 -79
- package/src/components/Badge/BadgeText.tsx +7 -81
- package/src/components/Button/ButtonGroupRoot.tsx +12 -2
- package/src/components/Card/Card.docs.mdx +1 -1
- package/src/components/Card/Card.props.ts +2 -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/Modal/Modal.tsx +18 -0
- package/src/components/SectionHeader/SectionHeader.tsx +1 -0
- 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/index.ts +4 -0
- package/src/core/themes.ts +57 -1
- package/src/tokens/color.ts +38 -34
- package/src/tokens/components/dark/button.ts +1 -0
- package/src/tokens/components/dark/checkbox.ts +1 -1
- package/src/tokens/components/dark/icon-button.ts +3 -3
- package/src/tokens/components/dark/radio.ts +1 -1
- package/src/tokens/components/dark/tabs.ts +2 -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 +3 -3
- package/src/tokens/components/light/icon-button.ts +1 -1
- package/src/tokens/components/light/radio.ts +3 -3
- package/src/tokens/components/light/tabs.ts +2 -0
- package/src/tokens/layout.ts +24 -15
- package/src/tokens/semantic-dark.ts +21 -19
- package/src/tokens/semantic-light.ts +17 -15
- package/src/types/values.ts +3 -1
- package/src/utils/formatThousands.ts +14 -0
- package/src/utils/index.ts +1 -0
|
@@ -20,9 +20,9 @@ declare const _default: {
|
|
|
20
20
|
readonly foregroundColorActive: "#b2afae";
|
|
21
21
|
readonly foregroundColorHover: "#d3d3d3";
|
|
22
22
|
readonly inverted: {
|
|
23
|
-
readonly foregroundColor: "#
|
|
24
|
-
readonly foregroundColorActive: "#
|
|
25
|
-
readonly foregroundColorHover: "#
|
|
23
|
+
readonly foregroundColor: "#f7f7f7";
|
|
24
|
+
readonly foregroundColorActive: "#b2afae";
|
|
25
|
+
readonly foregroundColorHover: "#d3d3d3";
|
|
26
26
|
};
|
|
27
27
|
readonly md: {
|
|
28
28
|
readonly height: 24;
|
|
@@ -20,9 +20,9 @@ export default {
|
|
|
20
20
|
foregroundColorActive: '#b2afae',
|
|
21
21
|
foregroundColorHover: '#d3d3d3',
|
|
22
22
|
inverted: {
|
|
23
|
-
foregroundColor: '#
|
|
24
|
-
foregroundColorActive: '#
|
|
25
|
-
foregroundColorHover: '#
|
|
23
|
+
foregroundColor: '#f7f7f7',
|
|
24
|
+
foregroundColorActive: '#b2afae',
|
|
25
|
+
foregroundColorHover: '#d3d3d3',
|
|
26
26
|
},
|
|
27
27
|
md: {
|
|
28
28
|
height: 24,
|
|
@@ -7,11 +7,11 @@ declare const _default: {
|
|
|
7
7
|
readonly checked: {
|
|
8
8
|
readonly backgroundColor: "#101010";
|
|
9
9
|
};
|
|
10
|
-
readonly gap:
|
|
10
|
+
readonly gap: 12;
|
|
11
11
|
readonly group: {
|
|
12
12
|
readonly gap: 16;
|
|
13
13
|
readonly stack: {
|
|
14
|
-
readonly gap:
|
|
14
|
+
readonly gap: 20;
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
17
|
readonly outlineColorActive: "#d4d2c0";
|
|
@@ -21,7 +21,7 @@ declare const _default: {
|
|
|
21
21
|
readonly borderRadius: 8;
|
|
22
22
|
readonly borderWidth: 1;
|
|
23
23
|
readonly borderWidthSelected: 2;
|
|
24
|
-
readonly gap:
|
|
24
|
+
readonly gap: 12;
|
|
25
25
|
readonly group: {
|
|
26
26
|
readonly gap: 6;
|
|
27
27
|
readonly stack: {
|
|
@@ -7,11 +7,11 @@ export default {
|
|
|
7
7
|
checked: {
|
|
8
8
|
backgroundColor: '#101010',
|
|
9
9
|
},
|
|
10
|
-
gap:
|
|
10
|
+
gap: 12,
|
|
11
11
|
group: {
|
|
12
12
|
gap: 16,
|
|
13
13
|
stack: {
|
|
14
|
-
gap:
|
|
14
|
+
gap: 20,
|
|
15
15
|
},
|
|
16
16
|
},
|
|
17
17
|
outlineColorActive: '#d4d2c0',
|
|
@@ -21,7 +21,7 @@ export default {
|
|
|
21
21
|
borderRadius: 8,
|
|
22
22
|
borderWidth: 1,
|
|
23
23
|
borderWidthSelected: 2,
|
|
24
|
-
gap:
|
|
24
|
+
gap: 12,
|
|
25
25
|
group: {
|
|
26
26
|
gap: 6,
|
|
27
27
|
stack: {
|
|
@@ -21,7 +21,7 @@ declare const _default: {
|
|
|
21
21
|
readonly foregroundColorHover: "#3a3837";
|
|
22
22
|
readonly inverted: {
|
|
23
23
|
readonly foregroundColor: "#f7f7f7";
|
|
24
|
-
readonly foregroundColorActive: "#
|
|
24
|
+
readonly foregroundColorActive: "#b2afae";
|
|
25
25
|
readonly foregroundColorHover: "#d3d3d3";
|
|
26
26
|
};
|
|
27
27
|
readonly md: {
|
|
@@ -7,11 +7,11 @@ declare const _default: {
|
|
|
7
7
|
readonly checked: {
|
|
8
8
|
readonly color: "#101010";
|
|
9
9
|
};
|
|
10
|
-
readonly gap:
|
|
10
|
+
readonly gap: 12;
|
|
11
11
|
readonly group: {
|
|
12
12
|
readonly gap: 16;
|
|
13
13
|
readonly stack: {
|
|
14
|
-
readonly gap:
|
|
14
|
+
readonly gap: 20;
|
|
15
15
|
};
|
|
16
16
|
};
|
|
17
17
|
readonly outlineColorActive: "#d4d2c0";
|
|
@@ -23,7 +23,7 @@ declare const _default: {
|
|
|
23
23
|
readonly borderWidthSelected: 2;
|
|
24
24
|
readonly gap: 8;
|
|
25
25
|
readonly group: {
|
|
26
|
-
readonly gap:
|
|
26
|
+
readonly gap: 12;
|
|
27
27
|
readonly stack: {
|
|
28
28
|
readonly gap: 12;
|
|
29
29
|
};
|
|
@@ -7,11 +7,11 @@ export default {
|
|
|
7
7
|
checked: {
|
|
8
8
|
color: '#101010',
|
|
9
9
|
},
|
|
10
|
-
gap:
|
|
10
|
+
gap: 12,
|
|
11
11
|
group: {
|
|
12
12
|
gap: 16,
|
|
13
13
|
stack: {
|
|
14
|
-
gap:
|
|
14
|
+
gap: 20,
|
|
15
15
|
},
|
|
16
16
|
},
|
|
17
17
|
outlineColorActive: '#d4d2c0',
|
|
@@ -23,7 +23,7 @@ export default {
|
|
|
23
23
|
borderWidthSelected: 2,
|
|
24
24
|
gap: 8,
|
|
25
25
|
group: {
|
|
26
|
-
gap:
|
|
26
|
+
gap: 12,
|
|
27
27
|
stack: {
|
|
28
28
|
gap: 12,
|
|
29
29
|
},
|
package/build/tokens/layout.d.ts
CHANGED
|
@@ -20,11 +20,14 @@ export declare const mobile: {
|
|
|
20
20
|
readonly margin: 16;
|
|
21
21
|
};
|
|
22
22
|
readonly spacing: {
|
|
23
|
-
readonly
|
|
24
|
-
readonly
|
|
25
|
-
readonly
|
|
26
|
-
readonly
|
|
27
|
-
readonly
|
|
23
|
+
readonly '2xl': 28;
|
|
24
|
+
readonly '2xs': 2;
|
|
25
|
+
readonly lg: 16;
|
|
26
|
+
readonly md: 12;
|
|
27
|
+
readonly none: 0;
|
|
28
|
+
readonly sm: 8;
|
|
29
|
+
readonly xl: 20;
|
|
30
|
+
readonly xs: 4;
|
|
28
31
|
};
|
|
29
32
|
};
|
|
30
33
|
export declare const tablet: {
|
|
@@ -46,11 +49,14 @@ export declare const tablet: {
|
|
|
46
49
|
readonly margin: 32;
|
|
47
50
|
};
|
|
48
51
|
readonly spacing: {
|
|
49
|
-
readonly
|
|
50
|
-
readonly
|
|
51
|
-
readonly
|
|
52
|
-
readonly
|
|
53
|
-
readonly
|
|
52
|
+
readonly '2xl': 28;
|
|
53
|
+
readonly '2xs': 2;
|
|
54
|
+
readonly lg: 16;
|
|
55
|
+
readonly md: 12;
|
|
56
|
+
readonly none: 0;
|
|
57
|
+
readonly sm: 8;
|
|
58
|
+
readonly xl: 24;
|
|
59
|
+
readonly xs: 4;
|
|
54
60
|
};
|
|
55
61
|
};
|
|
56
62
|
export declare const desktop: {
|
|
@@ -72,11 +78,14 @@ export declare const desktop: {
|
|
|
72
78
|
readonly margin: 32;
|
|
73
79
|
};
|
|
74
80
|
readonly spacing: {
|
|
75
|
-
readonly
|
|
76
|
-
readonly
|
|
77
|
-
readonly
|
|
78
|
-
readonly
|
|
79
|
-
readonly
|
|
81
|
+
readonly '2xl': 40;
|
|
82
|
+
readonly '2xs': 2;
|
|
83
|
+
readonly lg: 16;
|
|
84
|
+
readonly md: 12;
|
|
85
|
+
readonly none: 0;
|
|
86
|
+
readonly sm: 8;
|
|
87
|
+
readonly xl: 24;
|
|
88
|
+
readonly xs: 4;
|
|
80
89
|
};
|
|
81
90
|
};
|
|
82
91
|
declare const layout: {
|
|
@@ -99,11 +108,14 @@ declare const layout: {
|
|
|
99
108
|
readonly margin: 16;
|
|
100
109
|
};
|
|
101
110
|
readonly spacing: {
|
|
102
|
-
readonly
|
|
103
|
-
readonly
|
|
104
|
-
readonly
|
|
105
|
-
readonly
|
|
106
|
-
readonly
|
|
111
|
+
readonly '2xl': 28;
|
|
112
|
+
readonly '2xs': 2;
|
|
113
|
+
readonly lg: 16;
|
|
114
|
+
readonly md: 12;
|
|
115
|
+
readonly none: 0;
|
|
116
|
+
readonly sm: 8;
|
|
117
|
+
readonly xl: 20;
|
|
118
|
+
readonly xs: 4;
|
|
107
119
|
};
|
|
108
120
|
};
|
|
109
121
|
readonly tablet: {
|
|
@@ -125,11 +137,14 @@ declare const layout: {
|
|
|
125
137
|
readonly margin: 32;
|
|
126
138
|
};
|
|
127
139
|
readonly spacing: {
|
|
128
|
-
readonly
|
|
129
|
-
readonly
|
|
130
|
-
readonly
|
|
131
|
-
readonly
|
|
132
|
-
readonly
|
|
140
|
+
readonly '2xl': 28;
|
|
141
|
+
readonly '2xs': 2;
|
|
142
|
+
readonly lg: 16;
|
|
143
|
+
readonly md: 12;
|
|
144
|
+
readonly none: 0;
|
|
145
|
+
readonly sm: 8;
|
|
146
|
+
readonly xl: 24;
|
|
147
|
+
readonly xs: 4;
|
|
133
148
|
};
|
|
134
149
|
};
|
|
135
150
|
readonly desktop: {
|
|
@@ -151,11 +166,14 @@ declare const layout: {
|
|
|
151
166
|
readonly margin: 32;
|
|
152
167
|
};
|
|
153
168
|
readonly spacing: {
|
|
154
|
-
readonly
|
|
155
|
-
readonly
|
|
156
|
-
readonly
|
|
157
|
-
readonly
|
|
158
|
-
readonly
|
|
169
|
+
readonly '2xl': 40;
|
|
170
|
+
readonly '2xs': 2;
|
|
171
|
+
readonly lg: 16;
|
|
172
|
+
readonly md: 12;
|
|
173
|
+
readonly none: 0;
|
|
174
|
+
readonly sm: 8;
|
|
175
|
+
readonly xl: 24;
|
|
176
|
+
readonly xs: 4;
|
|
159
177
|
};
|
|
160
178
|
};
|
|
161
179
|
};
|
package/build/tokens/layout.js
CHANGED
|
@@ -20,11 +20,14 @@ export const mobile = {
|
|
|
20
20
|
margin: 16,
|
|
21
21
|
},
|
|
22
22
|
spacing: {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
23
|
+
'2xl': 28,
|
|
24
|
+
'2xs': 2,
|
|
25
|
+
lg: 16,
|
|
26
|
+
md: 12,
|
|
27
|
+
none: 0,
|
|
28
|
+
sm: 8,
|
|
29
|
+
xl: 20,
|
|
30
|
+
xs: 4,
|
|
28
31
|
},
|
|
29
32
|
};
|
|
30
33
|
export const tablet = {
|
|
@@ -46,11 +49,14 @@ export const tablet = {
|
|
|
46
49
|
margin: 32,
|
|
47
50
|
},
|
|
48
51
|
spacing: {
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
'2xl': 28,
|
|
53
|
+
'2xs': 2,
|
|
54
|
+
lg: 16,
|
|
55
|
+
md: 12,
|
|
56
|
+
none: 0,
|
|
57
|
+
sm: 8,
|
|
58
|
+
xl: 24,
|
|
59
|
+
xs: 4,
|
|
54
60
|
},
|
|
55
61
|
};
|
|
56
62
|
export const desktop = {
|
|
@@ -72,11 +78,14 @@ export const desktop = {
|
|
|
72
78
|
margin: 32,
|
|
73
79
|
},
|
|
74
80
|
spacing: {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
81
|
+
'2xl': 40,
|
|
82
|
+
'2xs': 2,
|
|
83
|
+
lg: 16,
|
|
84
|
+
md: 12,
|
|
85
|
+
none: 0,
|
|
86
|
+
sm: 8,
|
|
87
|
+
xl: 24,
|
|
88
|
+
xs: 4,
|
|
80
89
|
},
|
|
81
90
|
};
|
|
82
91
|
const layout = { mobile, tablet, desktop };
|
|
@@ -15,56 +15,56 @@ declare const _default: {
|
|
|
15
15
|
readonly danger: {
|
|
16
16
|
readonly border: "#ff7964";
|
|
17
17
|
readonly foreground: {
|
|
18
|
-
readonly default: "#
|
|
18
|
+
readonly default: "#101010";
|
|
19
19
|
readonly subtle: "#ff7964";
|
|
20
20
|
};
|
|
21
21
|
readonly surface: {
|
|
22
|
-
readonly default: "#
|
|
23
|
-
readonly subtle: "#
|
|
22
|
+
readonly default: "#ff634a";
|
|
23
|
+
readonly subtle: "#ffa89d";
|
|
24
24
|
};
|
|
25
25
|
};
|
|
26
26
|
readonly functional: {
|
|
27
27
|
readonly border: "#b2afae";
|
|
28
28
|
readonly foreground: {
|
|
29
|
-
readonly default: "#
|
|
29
|
+
readonly default: "#101010";
|
|
30
30
|
readonly subtle: "#b2afae";
|
|
31
31
|
};
|
|
32
32
|
readonly surface: {
|
|
33
|
-
readonly default: "#
|
|
34
|
-
readonly subtle: "#
|
|
33
|
+
readonly default: "#919191";
|
|
34
|
+
readonly subtle: "#d3d3d3";
|
|
35
35
|
};
|
|
36
36
|
};
|
|
37
37
|
readonly info: {
|
|
38
38
|
readonly border: "#6bb0ff";
|
|
39
39
|
readonly foreground: {
|
|
40
|
-
readonly default: "#
|
|
40
|
+
readonly default: "#101010";
|
|
41
41
|
readonly subtle: "#6bb0ff";
|
|
42
42
|
};
|
|
43
43
|
readonly surface: {
|
|
44
|
-
readonly default: "#
|
|
45
|
-
readonly subtle: "#
|
|
44
|
+
readonly default: "#6bb0ff";
|
|
45
|
+
readonly subtle: "#bcddff";
|
|
46
46
|
};
|
|
47
47
|
};
|
|
48
48
|
readonly positive: {
|
|
49
49
|
readonly border: "#58ca93";
|
|
50
50
|
readonly foreground: {
|
|
51
|
-
readonly default: "#
|
|
51
|
+
readonly default: "#101010";
|
|
52
52
|
readonly subtle: "#58ca93";
|
|
53
53
|
};
|
|
54
54
|
readonly surface: {
|
|
55
|
-
readonly default: "#
|
|
56
|
-
readonly subtle: "#
|
|
55
|
+
readonly default: "#36bf7d";
|
|
56
|
+
readonly subtle: "#a2e2c3";
|
|
57
57
|
};
|
|
58
58
|
};
|
|
59
59
|
readonly warning: {
|
|
60
60
|
readonly border: "#ff9639";
|
|
61
61
|
readonly foreground: {
|
|
62
|
-
readonly default: "#
|
|
62
|
+
readonly default: "#101010";
|
|
63
63
|
readonly subtle: "#ff9639";
|
|
64
64
|
};
|
|
65
65
|
readonly surface: {
|
|
66
|
-
readonly default: "#
|
|
67
|
-
readonly subtle: "#
|
|
66
|
+
readonly default: "#ff8010";
|
|
67
|
+
readonly subtle: "#ffcca8";
|
|
68
68
|
};
|
|
69
69
|
};
|
|
70
70
|
};
|
|
@@ -136,14 +136,14 @@ declare const _default: {
|
|
|
136
136
|
};
|
|
137
137
|
readonly functional: {
|
|
138
138
|
readonly border: {
|
|
139
|
+
readonly inverted: "#f7f7f7";
|
|
139
140
|
readonly strong: "#ebebeb";
|
|
140
141
|
readonly subtle: "#ebebeb";
|
|
141
|
-
readonly inverted: "#f7f7f7";
|
|
142
142
|
};
|
|
143
143
|
readonly foreground: {
|
|
144
|
+
readonly inverted: "#f7f7f7";
|
|
144
145
|
readonly strong: "#fcfbf2";
|
|
145
146
|
readonly subtle: "#ebebeb";
|
|
146
|
-
readonly inverted: "#f7f7f7";
|
|
147
147
|
};
|
|
148
148
|
readonly surface: {
|
|
149
149
|
readonly strong: {
|
|
@@ -155,8 +155,8 @@ declare const _default: {
|
|
|
155
155
|
readonly active: "#4c4c4c";
|
|
156
156
|
readonly hover: "#3a3837";
|
|
157
157
|
readonly inverted: {
|
|
158
|
-
readonly active: "#
|
|
159
|
-
readonly hover: "#
|
|
158
|
+
readonly active: "#3a3837";
|
|
159
|
+
readonly hover: "#3f3f3f";
|
|
160
160
|
};
|
|
161
161
|
};
|
|
162
162
|
};
|
|
@@ -244,6 +244,8 @@ declare const _default: {
|
|
|
244
244
|
};
|
|
245
245
|
};
|
|
246
246
|
readonly text: {
|
|
247
|
+
readonly affirmative: "#58ca93";
|
|
248
|
+
readonly brand: "#af90de";
|
|
247
249
|
readonly inverted: "#191917";
|
|
248
250
|
readonly primary: "#ebebeb";
|
|
249
251
|
readonly secondary: "#b2afae";
|