@vellira-ui/tokens 2.19.6 → 2.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/tokens.css +485 -205
- package/dist/dark/components/button.d.ts +198 -37
- package/dist/dark/components/button.d.ts.map +1 -1
- package/dist/dark/components/button.js +161 -9
- package/dist/dark/components/checkbox.d.ts +2 -2
- package/dist/dark/components/checkbox.js +1 -1
- package/dist/dark/components/dropdown.d.ts +2 -2
- package/dist/dark/components/formField.d.ts +4 -4
- package/dist/dark/components/input.d.ts +2 -2
- package/dist/dark/components/menu.d.ts +1 -1
- package/dist/dark/components/modal.d.ts +1 -1
- package/dist/dark/components/radio.d.ts +2 -2
- package/dist/dark/components/radio.js +1 -1
- package/dist/dark/components/select.d.ts +3 -3
- package/dist/dark/components/select.js +1 -1
- package/dist/dark/components/tabs.d.ts +2 -2
- package/dist/dark/semantic/action.d.ts +37 -19
- package/dist/dark/semantic/action.d.ts.map +1 -1
- package/dist/dark/semantic/action.js +37 -19
- package/dist/dark/semantic/status.d.ts +3 -3
- package/dist/dark/semantic/surface.d.ts +1 -0
- package/dist/dark/semantic/surface.d.ts.map +1 -1
- package/dist/dark/semantic/surface.js +1 -0
- package/dist/dark/semantic/text.d.ts +1 -1
- package/dist/dark/semantic/text.js +1 -1
- package/dist/dark/theme.d.ts +14 -12
- package/dist/dark/theme.d.ts.map +1 -1
- package/dist/generated/token-types.d.ts +6 -6
- package/dist/generated/token-types.d.ts.map +1 -1
- package/dist/generated/token-types.js +484 -108
- package/dist/highContrast/components/button.d.ts +198 -37
- package/dist/highContrast/components/button.d.ts.map +1 -1
- package/dist/highContrast/components/button.js +162 -10
- package/dist/highContrast/components/checkbox.d.ts +2 -2
- package/dist/highContrast/components/formField.d.ts +1 -1
- package/dist/highContrast/components/menu.d.ts +1 -1
- package/dist/highContrast/components/radio.d.ts +2 -2
- package/dist/highContrast/components/tabs.d.ts +1 -1
- package/dist/highContrast/semantic/action.d.ts +30 -13
- package/dist/highContrast/semantic/action.d.ts.map +1 -1
- package/dist/highContrast/semantic/action.js +30 -13
- package/dist/highContrast/semantic/control.d.ts +2 -2
- package/dist/highContrast/semantic/skeleton.d.ts +1 -1
- package/dist/highContrast/semantic/status.d.ts +3 -3
- package/dist/highContrast/semantic/surface.d.ts +1 -0
- package/dist/highContrast/semantic/surface.d.ts.map +1 -1
- package/dist/highContrast/semantic/surface.js +1 -0
- package/dist/highContrast/theme.d.ts +14 -12
- package/dist/highContrast/theme.d.ts.map +1 -1
- package/dist/light/components/button.d.ts +198 -37
- package/dist/light/components/button.d.ts.map +1 -1
- package/dist/light/components/button.js +162 -10
- package/dist/light/components/formField.d.ts +1 -1
- package/dist/light/semantic/action.d.ts +21 -4
- package/dist/light/semantic/action.d.ts.map +1 -1
- package/dist/light/semantic/action.js +17 -0
- package/dist/light/semantic/status.d.ts +3 -3
- package/dist/light/semantic/surface.d.ts +1 -0
- package/dist/light/semantic/surface.d.ts.map +1 -1
- package/dist/light/semantic/surface.js +1 -0
- package/dist/light/semantic/text.d.ts +1 -1
- package/dist/light/semantic/text.d.ts.map +1 -1
- package/dist/light/semantic/text.js +2 -3
- package/dist/light/theme.d.ts +14 -12
- package/dist/light/theme.d.ts.map +1 -1
- package/dist/primitives/colors.d.ts +14 -12
- package/dist/primitives/colors.d.ts.map +1 -1
- package/dist/primitives/colors.js +14 -12
- package/package.json +1 -1
|
@@ -1,58 +1,219 @@
|
|
|
1
1
|
export declare const button: {
|
|
2
2
|
readonly primary: {
|
|
3
|
-
readonly
|
|
4
|
-
readonly
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
readonly solid: {
|
|
4
|
+
readonly default: {
|
|
5
|
+
readonly bg: "#6D5BD0";
|
|
6
|
+
readonly fg: "#FFFFFF";
|
|
7
|
+
readonly border: "#6D5BD0";
|
|
8
|
+
};
|
|
9
|
+
readonly hover: {
|
|
10
|
+
readonly bg: "#8B7CF6";
|
|
11
|
+
readonly fg: "#FFFFFF";
|
|
12
|
+
readonly border: "#8B7CF6";
|
|
13
|
+
};
|
|
14
|
+
readonly pressed: {
|
|
15
|
+
readonly bg: "#6D5BD0";
|
|
16
|
+
readonly fg: "#FFFFFF";
|
|
17
|
+
readonly border: "#6D5BD0";
|
|
18
|
+
};
|
|
7
19
|
};
|
|
8
|
-
readonly
|
|
9
|
-
readonly
|
|
10
|
-
|
|
11
|
-
|
|
20
|
+
readonly outline: {
|
|
21
|
+
readonly default: {
|
|
22
|
+
readonly fg: "#A78BFA";
|
|
23
|
+
readonly border: "#A78BFA";
|
|
24
|
+
readonly bg: string;
|
|
25
|
+
};
|
|
26
|
+
readonly hover: {
|
|
27
|
+
readonly fg: "#8B7CF6";
|
|
28
|
+
readonly border: "#8B7CF6";
|
|
29
|
+
readonly bg: string;
|
|
30
|
+
};
|
|
31
|
+
readonly pressed: {
|
|
32
|
+
readonly fg: "#6D5BD0";
|
|
33
|
+
readonly border: "#6D5BD0";
|
|
34
|
+
readonly bg: string;
|
|
35
|
+
};
|
|
12
36
|
};
|
|
13
|
-
readonly
|
|
14
|
-
readonly
|
|
15
|
-
|
|
16
|
-
|
|
37
|
+
readonly ghost: {
|
|
38
|
+
readonly default: {
|
|
39
|
+
readonly fg: "#A78BFA";
|
|
40
|
+
readonly border: "transparent";
|
|
41
|
+
readonly bg: string;
|
|
42
|
+
};
|
|
43
|
+
readonly hover: {
|
|
44
|
+
readonly fg: "#8B7CF6";
|
|
45
|
+
readonly border: "transparent";
|
|
46
|
+
readonly bg: string;
|
|
47
|
+
};
|
|
48
|
+
readonly pressed: {
|
|
49
|
+
readonly fg: "#6D5BD0";
|
|
50
|
+
readonly border: "transparent";
|
|
51
|
+
readonly bg: string;
|
|
52
|
+
};
|
|
17
53
|
};
|
|
18
54
|
};
|
|
19
55
|
readonly secondary: {
|
|
20
|
-
readonly
|
|
21
|
-
readonly
|
|
22
|
-
|
|
23
|
-
|
|
56
|
+
readonly solid: {
|
|
57
|
+
readonly default: {
|
|
58
|
+
readonly bg: "#9EA2EA";
|
|
59
|
+
readonly fg: "#000000";
|
|
60
|
+
readonly border: "#9EA2EA";
|
|
61
|
+
};
|
|
62
|
+
readonly hover: {
|
|
63
|
+
readonly bg: "#7B80D8";
|
|
64
|
+
readonly fg: "#000000";
|
|
65
|
+
readonly border: "#7B80D8";
|
|
66
|
+
};
|
|
67
|
+
readonly pressed: {
|
|
68
|
+
readonly bg: "#4C4F8F";
|
|
69
|
+
readonly fg: "#000000";
|
|
70
|
+
readonly border: "#4C4F8F";
|
|
71
|
+
};
|
|
24
72
|
};
|
|
25
|
-
readonly
|
|
26
|
-
readonly
|
|
27
|
-
|
|
28
|
-
|
|
73
|
+
readonly outline: {
|
|
74
|
+
readonly default: {
|
|
75
|
+
readonly fg: "#9EA2EA";
|
|
76
|
+
readonly border: "#9EA2EA";
|
|
77
|
+
readonly bg: string;
|
|
78
|
+
};
|
|
79
|
+
readonly hover: {
|
|
80
|
+
readonly fg: "#7B80D8";
|
|
81
|
+
readonly border: "#7B80D8";
|
|
82
|
+
readonly bg: string;
|
|
83
|
+
};
|
|
84
|
+
readonly pressed: {
|
|
85
|
+
readonly fg: "#4C4F8F";
|
|
86
|
+
readonly border: "#4C4F8F";
|
|
87
|
+
readonly bg: string;
|
|
88
|
+
};
|
|
29
89
|
};
|
|
30
|
-
readonly
|
|
31
|
-
readonly
|
|
32
|
-
|
|
33
|
-
|
|
90
|
+
readonly ghost: {
|
|
91
|
+
readonly default: {
|
|
92
|
+
readonly fg: "#9EA2EA";
|
|
93
|
+
readonly border: "transparent";
|
|
94
|
+
readonly bg: string;
|
|
95
|
+
};
|
|
96
|
+
readonly hover: {
|
|
97
|
+
readonly fg: "#7B80D8";
|
|
98
|
+
readonly border: "transparent";
|
|
99
|
+
readonly bg: string;
|
|
100
|
+
};
|
|
101
|
+
readonly pressed: {
|
|
102
|
+
readonly fg: "#4C4F8F";
|
|
103
|
+
readonly border: "transparent";
|
|
104
|
+
readonly bg: string;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
readonly close: {
|
|
109
|
+
readonly solid: {
|
|
110
|
+
readonly default: {
|
|
111
|
+
readonly bg: "#E8E2F3";
|
|
112
|
+
readonly fg: "#000000";
|
|
113
|
+
readonly border: "#E8E2F3";
|
|
114
|
+
};
|
|
115
|
+
readonly hover: {
|
|
116
|
+
readonly bg: "#C4D0DD";
|
|
117
|
+
readonly fg: "#000000";
|
|
118
|
+
readonly border: "#C4D0DD";
|
|
119
|
+
};
|
|
120
|
+
readonly pressed: {
|
|
121
|
+
readonly bg: "#D8E4F2";
|
|
122
|
+
readonly fg: "#000000";
|
|
123
|
+
readonly border: "#D8E4F2";
|
|
124
|
+
};
|
|
125
|
+
};
|
|
126
|
+
readonly outline: {
|
|
127
|
+
readonly default: {
|
|
128
|
+
readonly fg: "#E8E2F3";
|
|
129
|
+
readonly border: "#E8E2F3";
|
|
130
|
+
readonly bg: string;
|
|
131
|
+
};
|
|
132
|
+
readonly hover: {
|
|
133
|
+
readonly fg: "#C4D0DD";
|
|
134
|
+
readonly border: "#C4D0DD";
|
|
135
|
+
readonly bg: string;
|
|
136
|
+
};
|
|
137
|
+
readonly pressed: {
|
|
138
|
+
readonly fg: "#D8E4F2";
|
|
139
|
+
readonly border: "#D8E4F2";
|
|
140
|
+
readonly bg: string;
|
|
141
|
+
};
|
|
142
|
+
};
|
|
143
|
+
readonly ghost: {
|
|
144
|
+
readonly default: {
|
|
145
|
+
readonly fg: "#E8E2F3";
|
|
146
|
+
readonly border: "transparent";
|
|
147
|
+
readonly bg: string;
|
|
148
|
+
};
|
|
149
|
+
readonly hover: {
|
|
150
|
+
readonly fg: "#C4D0DD";
|
|
151
|
+
readonly border: "transparent";
|
|
152
|
+
readonly bg: string;
|
|
153
|
+
};
|
|
154
|
+
readonly pressed: {
|
|
155
|
+
readonly fg: "#D8E4F2";
|
|
156
|
+
readonly border: "transparent";
|
|
157
|
+
readonly bg: string;
|
|
158
|
+
};
|
|
34
159
|
};
|
|
35
160
|
};
|
|
36
161
|
readonly danger: {
|
|
37
|
-
readonly
|
|
38
|
-
readonly
|
|
39
|
-
|
|
40
|
-
|
|
162
|
+
readonly solid: {
|
|
163
|
+
readonly default: {
|
|
164
|
+
readonly bg: "#E11D48";
|
|
165
|
+
readonly fg: "#FFFFFF";
|
|
166
|
+
readonly border: "#E11D48";
|
|
167
|
+
};
|
|
168
|
+
readonly hover: {
|
|
169
|
+
readonly bg: "#DC2626";
|
|
170
|
+
readonly fg: "#FFFFFF";
|
|
171
|
+
readonly border: "#DC2626";
|
|
172
|
+
};
|
|
173
|
+
readonly pressed: {
|
|
174
|
+
readonly bg: "#B91C1C";
|
|
175
|
+
readonly fg: "#FFFFFF";
|
|
176
|
+
readonly border: "#B91C1C";
|
|
177
|
+
};
|
|
41
178
|
};
|
|
42
|
-
readonly
|
|
43
|
-
readonly
|
|
44
|
-
|
|
45
|
-
|
|
179
|
+
readonly outline: {
|
|
180
|
+
readonly default: {
|
|
181
|
+
readonly fg: "#FB7185";
|
|
182
|
+
readonly border: "#FB7185";
|
|
183
|
+
readonly bg: string;
|
|
184
|
+
};
|
|
185
|
+
readonly hover: {
|
|
186
|
+
readonly fg: "#DC2626";
|
|
187
|
+
readonly border: "#DC2626";
|
|
188
|
+
readonly bg: string;
|
|
189
|
+
};
|
|
190
|
+
readonly pressed: {
|
|
191
|
+
readonly fg: "#B91C1C";
|
|
192
|
+
readonly border: "#B91C1C";
|
|
193
|
+
readonly bg: string;
|
|
194
|
+
};
|
|
46
195
|
};
|
|
47
|
-
readonly
|
|
48
|
-
readonly
|
|
49
|
-
|
|
50
|
-
|
|
196
|
+
readonly ghost: {
|
|
197
|
+
readonly default: {
|
|
198
|
+
readonly fg: "#FB7185";
|
|
199
|
+
readonly border: "transparent";
|
|
200
|
+
readonly bg: string;
|
|
201
|
+
};
|
|
202
|
+
readonly hover: {
|
|
203
|
+
readonly fg: "#DC2626";
|
|
204
|
+
readonly border: "transparent";
|
|
205
|
+
readonly bg: string;
|
|
206
|
+
};
|
|
207
|
+
readonly pressed: {
|
|
208
|
+
readonly fg: "#B91C1C";
|
|
209
|
+
readonly border: "transparent";
|
|
210
|
+
readonly bg: string;
|
|
211
|
+
};
|
|
51
212
|
};
|
|
52
213
|
};
|
|
53
214
|
readonly disabled: {
|
|
54
215
|
readonly bg: "#29253A";
|
|
55
|
-
readonly fg: "#
|
|
216
|
+
readonly fg: "#746F86";
|
|
56
217
|
readonly border: "#3A334D";
|
|
57
218
|
};
|
|
58
219
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/dark/components/button.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/dark/components/button.ts"],"names":[],"mappings":"AASA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8KT,CAAC"}
|
|
@@ -2,21 +2,173 @@ import { action } from '../semantic/action.js';
|
|
|
2
2
|
import { border } from '../semantic/border.js';
|
|
3
3
|
import { surface } from '../semantic/surface.js';
|
|
4
4
|
import { text } from '../semantic/text.js';
|
|
5
|
+
const transparent = {
|
|
6
|
+
bg: 'transparent',
|
|
7
|
+
};
|
|
5
8
|
export const button = {
|
|
6
9
|
primary: {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
+
solid: {
|
|
11
|
+
default: action.primary.default,
|
|
12
|
+
hover: action.primary.hover,
|
|
13
|
+
pressed: action.primary.active,
|
|
14
|
+
},
|
|
15
|
+
outline: {
|
|
16
|
+
default: {
|
|
17
|
+
...transparent,
|
|
18
|
+
fg: action.primary.muted.bg,
|
|
19
|
+
border: action.primary.muted.border,
|
|
20
|
+
},
|
|
21
|
+
hover: {
|
|
22
|
+
...transparent,
|
|
23
|
+
fg: action.primary.hover.bg,
|
|
24
|
+
border: action.primary.hover.border,
|
|
25
|
+
},
|
|
26
|
+
pressed: {
|
|
27
|
+
...transparent,
|
|
28
|
+
fg: action.primary.active.bg,
|
|
29
|
+
border: action.primary.active.border,
|
|
30
|
+
},
|
|
31
|
+
},
|
|
32
|
+
ghost: {
|
|
33
|
+
default: {
|
|
34
|
+
...transparent,
|
|
35
|
+
fg: action.primary.muted.bg,
|
|
36
|
+
border: 'transparent',
|
|
37
|
+
},
|
|
38
|
+
hover: {
|
|
39
|
+
...transparent,
|
|
40
|
+
fg: action.primary.hover.bg,
|
|
41
|
+
border: 'transparent',
|
|
42
|
+
},
|
|
43
|
+
pressed: {
|
|
44
|
+
...transparent,
|
|
45
|
+
fg: action.primary.active.bg,
|
|
46
|
+
border: 'transparent',
|
|
47
|
+
},
|
|
48
|
+
},
|
|
10
49
|
},
|
|
11
50
|
secondary: {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
51
|
+
solid: {
|
|
52
|
+
default: action.secondary.default,
|
|
53
|
+
hover: action.secondary.hover,
|
|
54
|
+
pressed: action.secondary.active,
|
|
55
|
+
},
|
|
56
|
+
outline: {
|
|
57
|
+
default: {
|
|
58
|
+
...transparent,
|
|
59
|
+
fg: action.secondary.default.bg,
|
|
60
|
+
border: action.secondary.default.border,
|
|
61
|
+
},
|
|
62
|
+
hover: {
|
|
63
|
+
...transparent,
|
|
64
|
+
fg: action.secondary.hover.bg,
|
|
65
|
+
border: action.secondary.hover.border,
|
|
66
|
+
},
|
|
67
|
+
pressed: {
|
|
68
|
+
...transparent,
|
|
69
|
+
fg: action.secondary.active.bg,
|
|
70
|
+
border: action.secondary.active.border,
|
|
71
|
+
},
|
|
72
|
+
},
|
|
73
|
+
ghost: {
|
|
74
|
+
default: {
|
|
75
|
+
...transparent,
|
|
76
|
+
fg: action.secondary.default.bg,
|
|
77
|
+
border: 'transparent',
|
|
78
|
+
},
|
|
79
|
+
hover: {
|
|
80
|
+
...transparent,
|
|
81
|
+
fg: action.secondary.hover.bg,
|
|
82
|
+
border: 'transparent',
|
|
83
|
+
},
|
|
84
|
+
pressed: {
|
|
85
|
+
...transparent,
|
|
86
|
+
fg: action.secondary.active.bg,
|
|
87
|
+
border: 'transparent',
|
|
88
|
+
},
|
|
89
|
+
},
|
|
90
|
+
},
|
|
91
|
+
close: {
|
|
92
|
+
solid: {
|
|
93
|
+
default: action.close.default,
|
|
94
|
+
hover: action.close.hover,
|
|
95
|
+
pressed: action.close.active,
|
|
96
|
+
},
|
|
97
|
+
outline: {
|
|
98
|
+
default: {
|
|
99
|
+
...transparent,
|
|
100
|
+
fg: action.close.default.bg,
|
|
101
|
+
border: action.close.default.border,
|
|
102
|
+
},
|
|
103
|
+
hover: {
|
|
104
|
+
...transparent,
|
|
105
|
+
fg: action.close.hover.bg,
|
|
106
|
+
border: action.close.hover.border,
|
|
107
|
+
},
|
|
108
|
+
pressed: {
|
|
109
|
+
...transparent,
|
|
110
|
+
fg: action.close.active.bg,
|
|
111
|
+
border: action.close.active.border,
|
|
112
|
+
},
|
|
113
|
+
},
|
|
114
|
+
ghost: {
|
|
115
|
+
default: {
|
|
116
|
+
...transparent,
|
|
117
|
+
fg: action.close.default.bg,
|
|
118
|
+
border: 'transparent',
|
|
119
|
+
},
|
|
120
|
+
hover: {
|
|
121
|
+
...transparent,
|
|
122
|
+
fg: action.close.hover.bg,
|
|
123
|
+
border: 'transparent',
|
|
124
|
+
},
|
|
125
|
+
pressed: {
|
|
126
|
+
...transparent,
|
|
127
|
+
fg: action.close.active.bg,
|
|
128
|
+
border: 'transparent',
|
|
129
|
+
},
|
|
130
|
+
},
|
|
15
131
|
},
|
|
16
132
|
danger: {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
133
|
+
solid: {
|
|
134
|
+
default: action.danger.default,
|
|
135
|
+
hover: action.danger.hover,
|
|
136
|
+
pressed: action.danger.active,
|
|
137
|
+
},
|
|
138
|
+
outline: {
|
|
139
|
+
default: {
|
|
140
|
+
...transparent,
|
|
141
|
+
fg: action.danger.subtle.bg,
|
|
142
|
+
border: action.danger.subtle.border,
|
|
143
|
+
},
|
|
144
|
+
hover: {
|
|
145
|
+
...transparent,
|
|
146
|
+
fg: action.danger.hover.bg,
|
|
147
|
+
border: action.danger.hover.border,
|
|
148
|
+
},
|
|
149
|
+
pressed: {
|
|
150
|
+
...transparent,
|
|
151
|
+
fg: action.danger.active.bg,
|
|
152
|
+
border: action.danger.active.border,
|
|
153
|
+
},
|
|
154
|
+
},
|
|
155
|
+
ghost: {
|
|
156
|
+
default: {
|
|
157
|
+
...transparent,
|
|
158
|
+
fg: action.danger.subtle.bg,
|
|
159
|
+
border: 'transparent',
|
|
160
|
+
},
|
|
161
|
+
hover: {
|
|
162
|
+
...transparent,
|
|
163
|
+
fg: action.danger.hover.bg,
|
|
164
|
+
border: 'transparent',
|
|
165
|
+
},
|
|
166
|
+
pressed: {
|
|
167
|
+
...transparent,
|
|
168
|
+
fg: action.danger.active.bg,
|
|
169
|
+
border: 'transparent',
|
|
170
|
+
},
|
|
171
|
+
},
|
|
20
172
|
},
|
|
21
173
|
disabled: {
|
|
22
174
|
bg: surface.subtle,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const checkbox: {
|
|
2
2
|
readonly default: {
|
|
3
|
-
readonly bg: "#
|
|
3
|
+
readonly bg: "#312C44";
|
|
4
4
|
readonly fg: "#FFFFFF";
|
|
5
5
|
readonly border: "#746F86";
|
|
6
6
|
};
|
|
@@ -31,7 +31,7 @@ export declare const checkbox: {
|
|
|
31
31
|
};
|
|
32
32
|
readonly disabled: {
|
|
33
33
|
readonly bg: "#29253A";
|
|
34
|
-
readonly fg: "#
|
|
34
|
+
readonly fg: "#746F86";
|
|
35
35
|
readonly border: "#3A334D";
|
|
36
36
|
};
|
|
37
37
|
readonly error: {
|
|
@@ -19,7 +19,7 @@ export declare const dropdown: {
|
|
|
19
19
|
};
|
|
20
20
|
readonly disabled: {
|
|
21
21
|
readonly bg: "#29253A";
|
|
22
|
-
readonly fg: "#
|
|
22
|
+
readonly fg: "#746F86";
|
|
23
23
|
readonly border: "#3A334D";
|
|
24
24
|
};
|
|
25
25
|
};
|
|
@@ -47,7 +47,7 @@ export declare const dropdown: {
|
|
|
47
47
|
};
|
|
48
48
|
readonly disabled: {
|
|
49
49
|
readonly bg: "transparent";
|
|
50
|
-
readonly fg: "#
|
|
50
|
+
readonly fg: "#746F86";
|
|
51
51
|
};
|
|
52
52
|
readonly danger: {
|
|
53
53
|
readonly default: {
|
|
@@ -19,16 +19,16 @@ export declare const formField: {
|
|
|
19
19
|
readonly fg: "#FFFF99";
|
|
20
20
|
};
|
|
21
21
|
readonly info: {
|
|
22
|
-
readonly fg: "#
|
|
22
|
+
readonly fg: "#3399FF";
|
|
23
23
|
};
|
|
24
24
|
};
|
|
25
25
|
readonly requiredMark: {
|
|
26
26
|
readonly fg: "#FB7185";
|
|
27
27
|
};
|
|
28
28
|
readonly disabled: {
|
|
29
|
-
readonly labelFg: "#
|
|
30
|
-
readonly descriptionFg: "#
|
|
31
|
-
readonly helperTextFg: "#
|
|
29
|
+
readonly labelFg: "#746F86";
|
|
30
|
+
readonly descriptionFg: "#746F86";
|
|
31
|
+
readonly helperTextFg: "#746F86";
|
|
32
32
|
};
|
|
33
33
|
};
|
|
34
34
|
//# sourceMappingURL=formField.d.ts.map
|
|
@@ -20,9 +20,9 @@ export declare const input: {
|
|
|
20
20
|
};
|
|
21
21
|
readonly disabled: {
|
|
22
22
|
readonly bg: "#29253A";
|
|
23
|
-
readonly fg: "#
|
|
23
|
+
readonly fg: "#746F86";
|
|
24
24
|
readonly border: "#3A334D";
|
|
25
|
-
readonly placeholder: "#
|
|
25
|
+
readonly placeholder: "#746F86";
|
|
26
26
|
};
|
|
27
27
|
readonly error: {
|
|
28
28
|
readonly border: "#FF8A8A";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export declare const radio: {
|
|
2
2
|
readonly default: {
|
|
3
|
-
readonly bg: "#
|
|
3
|
+
readonly bg: "#312C44";
|
|
4
4
|
readonly fg: "#F4F1FB";
|
|
5
5
|
readonly border: "#746F86";
|
|
6
6
|
};
|
|
@@ -31,7 +31,7 @@ export declare const radio: {
|
|
|
31
31
|
};
|
|
32
32
|
readonly disabled: {
|
|
33
33
|
readonly bg: "#29253A";
|
|
34
|
-
readonly fg: "#
|
|
34
|
+
readonly fg: "#746F86";
|
|
35
35
|
readonly border: "#3A334D";
|
|
36
36
|
};
|
|
37
37
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const select: {
|
|
2
2
|
readonly trigger: {
|
|
3
3
|
readonly default: {
|
|
4
|
-
readonly bg: "
|
|
4
|
+
readonly bg: "transparent";
|
|
5
5
|
readonly fg: "#FFFFFF";
|
|
6
6
|
readonly border: "#746F86";
|
|
7
7
|
};
|
|
@@ -18,7 +18,7 @@ export declare const select: {
|
|
|
18
18
|
};
|
|
19
19
|
readonly disabled: {
|
|
20
20
|
readonly bg: "#29253A";
|
|
21
|
-
readonly fg: "#
|
|
21
|
+
readonly fg: "#746F86";
|
|
22
22
|
readonly border: "#3A334D";
|
|
23
23
|
};
|
|
24
24
|
readonly placeholder: {
|
|
@@ -55,7 +55,7 @@ export declare const select: {
|
|
|
55
55
|
};
|
|
56
56
|
readonly disabled: {
|
|
57
57
|
readonly bg: "transparent";
|
|
58
|
-
readonly fg: "#
|
|
58
|
+
readonly fg: "#746F86";
|
|
59
59
|
readonly border: "#3A334D";
|
|
60
60
|
};
|
|
61
61
|
};
|
|
@@ -23,7 +23,7 @@ export declare const tabs: {
|
|
|
23
23
|
};
|
|
24
24
|
readonly disabled: {
|
|
25
25
|
readonly bg: "transparent";
|
|
26
|
-
readonly fg: "#
|
|
26
|
+
readonly fg: "#746F86";
|
|
27
27
|
readonly border: "transparent";
|
|
28
28
|
};
|
|
29
29
|
};
|
|
@@ -45,7 +45,7 @@ export declare const tabs: {
|
|
|
45
45
|
};
|
|
46
46
|
readonly disabled: {
|
|
47
47
|
readonly bg: "transparent";
|
|
48
|
-
readonly fg: "#
|
|
48
|
+
readonly fg: "#746F86";
|
|
49
49
|
readonly border: "transparent";
|
|
50
50
|
};
|
|
51
51
|
};
|