@foi/design-system 0.0.0 → 0.0.2
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/components/atoms/Button/Button.d.ts +10 -0
- package/dist/components/atoms/Button/Button.emotion.d.ts +2 -0
- package/dist/components/atoms/Button/Button.interface.d.ts +29 -0
- package/dist/components/atoms/Button/index.d.ts +3 -0
- package/dist/components/atoms/Checkbox/Checkbox.d.ts +7 -0
- package/dist/components/atoms/Checkbox/Checkbox.emotion.d.ts +2 -0
- package/dist/components/atoms/Checkbox/Checkbox.interface.d.ts +64 -0
- package/dist/components/atoms/Checkbox/index.d.ts +4 -0
- package/dist/components/atoms/DatePicker/DatePicker.d.ts +17 -0
- package/dist/components/atoms/DatePicker/DatePicker.emotion.d.ts +2 -0
- package/dist/components/atoms/DatePicker/DatePicker.interface.d.ts +105 -0
- package/dist/components/atoms/DatePicker/DatePicker.utils.d.ts +50 -0
- package/dist/components/atoms/DatePicker/DatePickerMenu/DatePickerMenu.d.ts +14 -0
- package/dist/components/atoms/DatePicker/DatePickerMenu/DatePickerMenu.emotion.d.ts +2 -0
- package/dist/components/atoms/DatePicker/DatePickerMenu/DatePickerMenu.interface.d.ts +46 -0
- package/dist/components/atoms/DatePicker/DatePickerMenu/index.d.ts +4 -0
- package/dist/components/atoms/DatePicker/index.d.ts +4 -0
- package/dist/components/atoms/IconButton/IconButton.d.ts +9 -0
- package/dist/components/atoms/IconButton/IconButton.emotion.d.ts +2 -0
- package/dist/components/atoms/IconButton/IconButton.interface.d.ts +21 -0
- package/dist/components/atoms/IconButton/index.d.ts +3 -0
- package/dist/components/atoms/Input/Input.d.ts +11 -0
- package/dist/components/atoms/Input/Input.emotion.d.ts +2 -0
- package/dist/components/atoms/Input/Input.interface.d.ts +55 -0
- package/dist/components/atoms/Input/index.d.ts +4 -0
- package/dist/components/atoms/Radio/Radio.d.ts +12 -0
- package/dist/components/atoms/Radio/Radio.emotion.d.ts +2 -0
- package/dist/components/atoms/Radio/Radio.interface.d.ts +51 -0
- package/dist/components/atoms/Radio/RadioGroup.context.d.ts +15 -0
- package/dist/components/atoms/Radio/index.d.ts +3 -0
- package/dist/components/atoms/Select/Select.d.ts +11 -0
- package/dist/components/atoms/Select/Select.emotion.d.ts +2 -0
- package/dist/components/atoms/Select/Select.interface.d.ts +55 -0
- package/dist/components/atoms/Select/SelectMenu/SelectMenu.d.ts +9 -0
- package/dist/components/atoms/Select/SelectMenu/SelectMenu.emotion.d.ts +2 -0
- package/dist/components/atoms/Select/SelectMenu/SelectMenu.interface.d.ts +33 -0
- package/dist/components/atoms/Select/SelectMenu/index.d.ts +4 -0
- package/dist/components/atoms/Select/index.d.ts +4 -0
- package/dist/components/atoms/Slider/Slider.d.ts +13 -0
- package/dist/components/atoms/Slider/Slider.emotion.d.ts +2 -0
- package/dist/components/atoms/Slider/Slider.interface.d.ts +59 -0
- package/dist/components/atoms/Slider/index.d.ts +4 -0
- package/dist/components/atoms/Switch/Switch.d.ts +11 -0
- package/dist/components/atoms/Switch/Switch.emotion.d.ts +2 -0
- package/dist/components/atoms/Switch/Switch.interface.d.ts +27 -0
- package/dist/components/atoms/Switch/index.d.ts +4 -0
- package/dist/components/molecules/CheckboxGroup/CheckboxGroup.context.d.ts +13 -0
- package/dist/components/molecules/CheckboxGroup/CheckboxGroup.d.ts +23 -0
- package/dist/components/molecules/CheckboxGroup/CheckboxGroup.emotion.d.ts +2 -0
- package/dist/components/molecules/CheckboxGroup/CheckboxGroup.interface.d.ts +38 -0
- package/dist/components/molecules/CheckboxGroup/index.d.ts +4 -0
- package/dist/components/molecules/CheckboxTree/CheckboxTree.context.d.ts +13 -0
- package/dist/components/molecules/CheckboxTree/CheckboxTree.d.ts +23 -0
- package/dist/components/molecules/CheckboxTree/CheckboxTree.emotion.d.ts +2 -0
- package/dist/components/molecules/CheckboxTree/CheckboxTree.interface.d.ts +42 -0
- package/dist/components/molecules/CheckboxTree/index.d.ts +4 -0
- package/dist/components/molecules/RadioGroup/RadioGroup.d.ts +19 -0
- package/dist/components/molecules/RadioGroup/RadioGroup.emotion.d.ts +2 -0
- package/dist/components/molecules/RadioGroup/RadioGroup.interface.d.ts +38 -0
- package/dist/components/molecules/RadioGroup/index.d.ts +4 -0
- package/dist/hocs/MarginPage/index.d.ts +6 -0
- package/dist/hocs/OutsideEvent/index.d.ts +7 -0
- package/dist/hocs/ScrollToTop/index.d.ts +2 -0
- package/dist/hocs/ThemeProvider/ThemeProvider.d.ts +4 -0
- package/dist/hocs/ThemeProvider/ThemeProvider.interface.d.ts +29 -0
- package/dist/hocs/ThemeProvider/components/Button.d.ts +36 -0
- package/dist/hocs/ThemeProvider/components/Checkbox.d.ts +60 -0
- package/dist/hocs/ThemeProvider/components/CheckboxGroup.d.ts +20 -0
- package/dist/hocs/ThemeProvider/components/CheckboxTree.d.ts +20 -0
- package/dist/hocs/ThemeProvider/components/DatePicker.d.ts +60 -0
- package/dist/hocs/ThemeProvider/components/DatePickerMenu.d.ts +36 -0
- package/dist/hocs/ThemeProvider/components/IconButton.d.ts +36 -0
- package/dist/hocs/ThemeProvider/components/Input.d.ts +60 -0
- package/dist/hocs/ThemeProvider/components/Radio.d.ts +60 -0
- package/dist/hocs/ThemeProvider/components/RadioGroup.d.ts +20 -0
- package/dist/hocs/ThemeProvider/components/Select.d.ts +60 -0
- package/dist/hocs/ThemeProvider/components/SelectMenu.d.ts +32 -0
- package/dist/hocs/ThemeProvider/components/Slider.d.ts +36 -0
- package/dist/hocs/ThemeProvider/components/Switch.d.ts +40 -0
- package/dist/hocs/ThemeProvider/components/index.d.ts +13 -0
- package/dist/hocs/ThemeProvider/createComponentStyles.d.ts +2 -0
- package/dist/hocs/ThemeProvider/fonts/index.d.ts +6 -0
- package/dist/hocs/ThemeProvider/index.d.ts +1 -0
- package/dist/hocs/ThemeProvider/interfaces/Components.interface.d.ts +16 -0
- package/dist/hocs/ThemeProvider/interfaces/Events.interface.d.ts +16 -0
- package/dist/hocs/ThemeProvider/interfaces/Styles.interface.d.ts +54 -0
- package/dist/hocs/ThemeProvider/interfaces/Typography.interface.d.ts +10 -0
- package/dist/hocs/ThemeProvider/interfaces/index.d.ts +4 -0
- package/dist/hocs/ThemeProvider/useThemeProvider.hook.d.ts +10 -0
- package/dist/hocs/ThemeProvider/useThemeProvider.store.d.ts +2 -0
- package/dist/hooks/useOnClickOutside.d.ts +10 -0
- package/dist/hooks/useStateCallback.d.ts +1 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.mjs +2728 -3254
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/Option.d.ts +10 -0
- package/dist/interfaces/index.d.ts +1 -0
- package/dist/theme/dark/colors.d.ts +31 -0
- package/dist/theme/dark/components/Button.d.ts +35 -0
- package/dist/theme/dark/components/Checkbox.d.ts +64 -0
- package/dist/theme/dark/components/CheckboxGroup.d.ts +18 -0
- package/dist/theme/dark/components/CheckboxTree.d.ts +17 -0
- package/dist/theme/dark/components/DatePicker.d.ts +58 -0
- package/dist/theme/dark/components/DatePickerMenu.d.ts +31 -0
- package/dist/theme/dark/components/IconButton.d.ts +30 -0
- package/dist/theme/dark/components/Input.d.ts +58 -0
- package/dist/theme/dark/components/Radio.d.ts +61 -0
- package/dist/theme/dark/components/RadioGroup.d.ts +18 -0
- package/dist/theme/dark/components/Select.d.ts +58 -0
- package/dist/theme/dark/components/SelectMenu.d.ts +30 -0
- package/dist/theme/dark/components/Slider.d.ts +46 -0
- package/dist/theme/dark/components/Switch.d.ts +55 -0
- package/dist/theme/dark/components/index.d.ts +540 -0
- package/dist/theme/dark/fonts.d.ts +6 -0
- package/dist/theme/dark/index.d.ts +547 -0
- package/dist/theme/index.d.ts +549 -0
- package/dist/utilities/emotion/styles.d.ts +2 -0
- package/package.json +81 -81
|
@@ -0,0 +1,549 @@
|
|
|
1
|
+
import { darkTheme } from './dark';
|
|
2
|
+
export declare const themeProvider: readonly [{
|
|
3
|
+
readonly name: "dark";
|
|
4
|
+
readonly components: {
|
|
5
|
+
DATEPICKERMENU: {
|
|
6
|
+
readonly ROOT: {
|
|
7
|
+
readonly 'background-color': string;
|
|
8
|
+
readonly 'border-radius': "4px";
|
|
9
|
+
};
|
|
10
|
+
readonly EVENTS: {
|
|
11
|
+
readonly ENABLED: {
|
|
12
|
+
readonly 'color-primary': string;
|
|
13
|
+
readonly 'color-secondary': string;
|
|
14
|
+
readonly 'background-color': string;
|
|
15
|
+
};
|
|
16
|
+
readonly VALUE: {
|
|
17
|
+
readonly 'background-color': string;
|
|
18
|
+
};
|
|
19
|
+
readonly HOVER: {
|
|
20
|
+
readonly 'background-color': string;
|
|
21
|
+
};
|
|
22
|
+
readonly ACTIVE: {
|
|
23
|
+
readonly 'background-color': string;
|
|
24
|
+
};
|
|
25
|
+
readonly FOCUS: {
|
|
26
|
+
readonly 'outline-color': string;
|
|
27
|
+
readonly 'outline-width': "1px";
|
|
28
|
+
readonly 'outline-style': "solid";
|
|
29
|
+
readonly 'outline-offset': "2px";
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
DATEPICKER: {
|
|
34
|
+
readonly ROOT: {
|
|
35
|
+
readonly 'border-radius': "4px";
|
|
36
|
+
};
|
|
37
|
+
readonly EVENTS: {
|
|
38
|
+
readonly ENABLED: {
|
|
39
|
+
readonly 'background-color': "transparent";
|
|
40
|
+
readonly 'color-primary': string;
|
|
41
|
+
readonly 'color-secondary': string;
|
|
42
|
+
readonly 'color-tertiary': string;
|
|
43
|
+
readonly 'border-color': string;
|
|
44
|
+
readonly 'border-width': "2px";
|
|
45
|
+
readonly 'border-style': "solid";
|
|
46
|
+
};
|
|
47
|
+
readonly VALUE: {
|
|
48
|
+
readonly 'border-color': string;
|
|
49
|
+
};
|
|
50
|
+
readonly HOVER: {
|
|
51
|
+
readonly 'border-color': string;
|
|
52
|
+
};
|
|
53
|
+
readonly ACTIVE: {
|
|
54
|
+
readonly 'border-color': string;
|
|
55
|
+
};
|
|
56
|
+
readonly FOCUS: {
|
|
57
|
+
readonly 'border-color': string;
|
|
58
|
+
};
|
|
59
|
+
readonly ERROR: {
|
|
60
|
+
readonly 'background-color': "transparent";
|
|
61
|
+
readonly 'color-primary': string;
|
|
62
|
+
readonly 'color-secondary': string;
|
|
63
|
+
readonly 'color-tertiary': string;
|
|
64
|
+
readonly 'border-color': string;
|
|
65
|
+
};
|
|
66
|
+
readonly ERROR_VALUE: {
|
|
67
|
+
readonly 'border-color': string;
|
|
68
|
+
};
|
|
69
|
+
readonly ERROR_HOVER: {
|
|
70
|
+
readonly 'border-color': string;
|
|
71
|
+
};
|
|
72
|
+
readonly ERROR_ACTIVE: {
|
|
73
|
+
readonly 'border-color': string;
|
|
74
|
+
};
|
|
75
|
+
readonly ERROR_FOCUS: {
|
|
76
|
+
readonly 'border-color': string;
|
|
77
|
+
};
|
|
78
|
+
readonly DISABLED: {
|
|
79
|
+
readonly 'background-color': "transparent";
|
|
80
|
+
readonly 'color-primary': string;
|
|
81
|
+
readonly 'color-secondary': string;
|
|
82
|
+
readonly 'color-tertiary': string;
|
|
83
|
+
readonly 'border-color': string;
|
|
84
|
+
};
|
|
85
|
+
readonly DISABLED_VALUE: {};
|
|
86
|
+
};
|
|
87
|
+
};
|
|
88
|
+
RADIOGROUP: {
|
|
89
|
+
readonly EVENTS: {
|
|
90
|
+
readonly ENABLED: {
|
|
91
|
+
readonly 'color-primary': string;
|
|
92
|
+
readonly 'color-secondary': string;
|
|
93
|
+
};
|
|
94
|
+
readonly ERROR: {
|
|
95
|
+
readonly 'color-primary': string;
|
|
96
|
+
readonly 'color-secondary': string;
|
|
97
|
+
};
|
|
98
|
+
readonly DISABLED: {
|
|
99
|
+
readonly 'color-secondary': string;
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
RADIO: {
|
|
104
|
+
readonly ROOT: {
|
|
105
|
+
readonly 'border-radius': "4px";
|
|
106
|
+
};
|
|
107
|
+
readonly EVENTS: {
|
|
108
|
+
readonly ENABLED: {
|
|
109
|
+
readonly 'color-primary': string;
|
|
110
|
+
readonly 'color-secondary': string;
|
|
111
|
+
readonly 'icon-color': string;
|
|
112
|
+
readonly 'background-color': "transparent";
|
|
113
|
+
readonly 'border-color': string;
|
|
114
|
+
readonly 'border-width': "2px";
|
|
115
|
+
readonly 'border-style': "solid";
|
|
116
|
+
};
|
|
117
|
+
readonly VALUE: {
|
|
118
|
+
readonly 'icon-color': string;
|
|
119
|
+
readonly 'border-color': string;
|
|
120
|
+
};
|
|
121
|
+
readonly HOVER: {
|
|
122
|
+
readonly 'shadow-color': string;
|
|
123
|
+
};
|
|
124
|
+
readonly ACTIVE: {
|
|
125
|
+
readonly 'shadow-color': string;
|
|
126
|
+
};
|
|
127
|
+
readonly FOCUS: {
|
|
128
|
+
readonly 'outline-color': string;
|
|
129
|
+
readonly 'outline-width': "1px";
|
|
130
|
+
readonly 'outline-style': "solid";
|
|
131
|
+
readonly 'outline-offset': "2px";
|
|
132
|
+
};
|
|
133
|
+
readonly ERROR: {
|
|
134
|
+
readonly 'background-color': "transparent";
|
|
135
|
+
readonly 'color-secondary': string;
|
|
136
|
+
readonly 'border-color': string;
|
|
137
|
+
};
|
|
138
|
+
readonly ERROR_VALUE: {
|
|
139
|
+
readonly 'icon-color': string;
|
|
140
|
+
readonly 'background-color': string;
|
|
141
|
+
};
|
|
142
|
+
readonly ERROR_HOVER: {
|
|
143
|
+
readonly 'shadow-color': string;
|
|
144
|
+
};
|
|
145
|
+
readonly ERROR_ACTIVE: {
|
|
146
|
+
readonly 'shadow-color': string;
|
|
147
|
+
};
|
|
148
|
+
readonly ERROR_FOCUS: {
|
|
149
|
+
readonly 'outline-color': string;
|
|
150
|
+
};
|
|
151
|
+
readonly DISABLED: {
|
|
152
|
+
readonly 'background-color': "transparent";
|
|
153
|
+
readonly 'color-secondary': string;
|
|
154
|
+
readonly 'border-color': string;
|
|
155
|
+
};
|
|
156
|
+
readonly DISABLED_VALUE: {
|
|
157
|
+
readonly 'icon-color': string;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
};
|
|
161
|
+
SLIDER: {
|
|
162
|
+
readonly EVENTS: {
|
|
163
|
+
readonly ENABLED: {
|
|
164
|
+
readonly 'icon-color': string;
|
|
165
|
+
readonly 'icon-background-color': string;
|
|
166
|
+
readonly 'background-color': string;
|
|
167
|
+
readonly 'border-color': string;
|
|
168
|
+
readonly 'border-width': "2px";
|
|
169
|
+
readonly 'border-style': "solid";
|
|
170
|
+
};
|
|
171
|
+
readonly VALUE: {
|
|
172
|
+
readonly 'background-color': string;
|
|
173
|
+
};
|
|
174
|
+
readonly HOVER: {
|
|
175
|
+
readonly 'background-color': string;
|
|
176
|
+
};
|
|
177
|
+
readonly ACTIVE: {
|
|
178
|
+
readonly 'background-color': string;
|
|
179
|
+
};
|
|
180
|
+
readonly FOCUS: {
|
|
181
|
+
readonly 'outline-color': string;
|
|
182
|
+
readonly 'outline-width': "1px";
|
|
183
|
+
readonly 'outline-style': "solid";
|
|
184
|
+
readonly 'outline-offset': "2px";
|
|
185
|
+
};
|
|
186
|
+
readonly DISABLED: {
|
|
187
|
+
readonly 'icon-color': string;
|
|
188
|
+
readonly 'icon-background-color': string;
|
|
189
|
+
readonly 'background-color': string;
|
|
190
|
+
readonly 'border-color': string;
|
|
191
|
+
readonly 'border-width': "2px";
|
|
192
|
+
readonly 'border-style': "solid";
|
|
193
|
+
};
|
|
194
|
+
readonly DISABLED_VALUE: {
|
|
195
|
+
readonly 'icon-color': string;
|
|
196
|
+
readonly 'icon-background-color': string;
|
|
197
|
+
readonly 'background-color': string;
|
|
198
|
+
readonly 'border-color': string;
|
|
199
|
+
readonly 'border-width': "2px";
|
|
200
|
+
readonly 'border-style': "solid";
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
SWITCH: {
|
|
205
|
+
readonly ROOT: {
|
|
206
|
+
readonly 'border-radius': "12px";
|
|
207
|
+
};
|
|
208
|
+
readonly EVENTS: {
|
|
209
|
+
readonly ENABLED: {
|
|
210
|
+
readonly 'color-primary': string;
|
|
211
|
+
readonly 'color-secondary': string;
|
|
212
|
+
readonly 'icon-color': string;
|
|
213
|
+
readonly 'icon-background-color': string;
|
|
214
|
+
readonly 'background-color': "transparent";
|
|
215
|
+
readonly 'border-color': string;
|
|
216
|
+
readonly 'border-width': "2px";
|
|
217
|
+
readonly 'border-style': "solid";
|
|
218
|
+
};
|
|
219
|
+
readonly VALUE: {
|
|
220
|
+
readonly 'icon-color': string;
|
|
221
|
+
readonly 'icon-background-color': string;
|
|
222
|
+
readonly 'background-color': string;
|
|
223
|
+
readonly 'border-color': string;
|
|
224
|
+
};
|
|
225
|
+
readonly HOVER: {
|
|
226
|
+
readonly 'shadow-color': string;
|
|
227
|
+
};
|
|
228
|
+
readonly ACTIVE: {
|
|
229
|
+
readonly 'shadow-color': string;
|
|
230
|
+
};
|
|
231
|
+
readonly FOCUS: {
|
|
232
|
+
readonly 'outline-color': string;
|
|
233
|
+
readonly 'outline-width': "1px";
|
|
234
|
+
readonly 'outline-style': "solid";
|
|
235
|
+
readonly 'outline-offset': "2px";
|
|
236
|
+
};
|
|
237
|
+
readonly DISABLED: {
|
|
238
|
+
readonly 'icon-color': string;
|
|
239
|
+
readonly 'icon-background-color': string;
|
|
240
|
+
readonly 'background-color': "transparent";
|
|
241
|
+
readonly 'color-secondary': string;
|
|
242
|
+
readonly 'border-color': string;
|
|
243
|
+
readonly 'border-width': "2px";
|
|
244
|
+
readonly 'border-style': "solid";
|
|
245
|
+
};
|
|
246
|
+
readonly DISABLED_VALUE: {
|
|
247
|
+
readonly 'icon-color': string;
|
|
248
|
+
readonly 'icon-background-color': string;
|
|
249
|
+
readonly 'background-color': string;
|
|
250
|
+
readonly 'border-color': string;
|
|
251
|
+
readonly 'border-width': "2px";
|
|
252
|
+
readonly 'border-style': "solid";
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
SELECTMENU: {
|
|
257
|
+
readonly ROOT: {
|
|
258
|
+
readonly 'background-color': string;
|
|
259
|
+
readonly 'border-radius': "4px";
|
|
260
|
+
readonly top: "4px";
|
|
261
|
+
};
|
|
262
|
+
readonly EVENTS: {
|
|
263
|
+
readonly ENABLED: {
|
|
264
|
+
readonly 'background-color': "transparent";
|
|
265
|
+
readonly 'color-primary': string;
|
|
266
|
+
readonly 'color-secondary': string;
|
|
267
|
+
readonly 'color-tertiary': string;
|
|
268
|
+
};
|
|
269
|
+
readonly VALUE: {
|
|
270
|
+
readonly 'background-color': string;
|
|
271
|
+
};
|
|
272
|
+
readonly HOVER: {
|
|
273
|
+
readonly 'background-color': string;
|
|
274
|
+
};
|
|
275
|
+
readonly ACTIVE: {
|
|
276
|
+
readonly 'background-color': string;
|
|
277
|
+
};
|
|
278
|
+
readonly FOCUS: {
|
|
279
|
+
readonly 'background-color': string;
|
|
280
|
+
};
|
|
281
|
+
};
|
|
282
|
+
};
|
|
283
|
+
SELECT: {
|
|
284
|
+
readonly ROOT: {
|
|
285
|
+
readonly 'border-radius': "4px";
|
|
286
|
+
};
|
|
287
|
+
readonly EVENTS: {
|
|
288
|
+
readonly ENABLED: {
|
|
289
|
+
readonly 'background-color': "transparent";
|
|
290
|
+
readonly 'color-primary': string;
|
|
291
|
+
readonly 'color-secondary': string;
|
|
292
|
+
readonly 'color-tertiary': string;
|
|
293
|
+
readonly 'border-color': string;
|
|
294
|
+
readonly 'border-width': "2px";
|
|
295
|
+
readonly 'border-style': "solid";
|
|
296
|
+
};
|
|
297
|
+
readonly VALUE: {
|
|
298
|
+
readonly 'border-color': string;
|
|
299
|
+
};
|
|
300
|
+
readonly HOVER: {
|
|
301
|
+
readonly 'border-color': string;
|
|
302
|
+
};
|
|
303
|
+
readonly ACTIVE: {
|
|
304
|
+
readonly 'border-color': string;
|
|
305
|
+
};
|
|
306
|
+
readonly FOCUS: {
|
|
307
|
+
readonly 'border-color': string;
|
|
308
|
+
};
|
|
309
|
+
readonly ERROR: {
|
|
310
|
+
readonly 'background-color': "transparent";
|
|
311
|
+
readonly 'color-primary': string;
|
|
312
|
+
readonly 'color-secondary': string;
|
|
313
|
+
readonly 'color-tertiary': string;
|
|
314
|
+
readonly 'border-color': string;
|
|
315
|
+
};
|
|
316
|
+
readonly ERROR_VALUE: {
|
|
317
|
+
readonly 'border-color': string;
|
|
318
|
+
};
|
|
319
|
+
readonly ERROR_HOVER: {
|
|
320
|
+
readonly 'border-color': string;
|
|
321
|
+
};
|
|
322
|
+
readonly ERROR_ACTIVE: {
|
|
323
|
+
readonly 'border-color': string;
|
|
324
|
+
};
|
|
325
|
+
readonly ERROR_FOCUS: {
|
|
326
|
+
readonly 'border-color': string;
|
|
327
|
+
};
|
|
328
|
+
readonly DISABLED: {
|
|
329
|
+
readonly 'background-color': "transparent";
|
|
330
|
+
readonly 'color-primary': string;
|
|
331
|
+
readonly 'color-secondary': string;
|
|
332
|
+
readonly 'color-tertiary': string;
|
|
333
|
+
readonly 'border-color': string;
|
|
334
|
+
};
|
|
335
|
+
readonly DISABLED_VALUE: {};
|
|
336
|
+
};
|
|
337
|
+
};
|
|
338
|
+
CHECKBOXTREE: {
|
|
339
|
+
readonly EVENTS: {
|
|
340
|
+
readonly ENABLED: {
|
|
341
|
+
readonly 'color-primary': string;
|
|
342
|
+
readonly 'color-secondary': string;
|
|
343
|
+
};
|
|
344
|
+
readonly ERROR: {
|
|
345
|
+
readonly 'color-secondary': string;
|
|
346
|
+
};
|
|
347
|
+
readonly DISABLED: {
|
|
348
|
+
readonly 'color-secondary': string;
|
|
349
|
+
};
|
|
350
|
+
};
|
|
351
|
+
};
|
|
352
|
+
CHECKBOXGROUP: {
|
|
353
|
+
readonly EVENTS: {
|
|
354
|
+
readonly ENABLED: {
|
|
355
|
+
readonly 'color-primary': string;
|
|
356
|
+
readonly 'color-secondary': string;
|
|
357
|
+
};
|
|
358
|
+
readonly ERROR: {
|
|
359
|
+
readonly 'color-primary': string;
|
|
360
|
+
readonly 'color-secondary': string;
|
|
361
|
+
};
|
|
362
|
+
readonly DISABLED: {
|
|
363
|
+
readonly 'color-secondary': string;
|
|
364
|
+
};
|
|
365
|
+
};
|
|
366
|
+
};
|
|
367
|
+
CHECKBOX: {
|
|
368
|
+
readonly ROOT: {
|
|
369
|
+
readonly 'border-radius': "4px";
|
|
370
|
+
};
|
|
371
|
+
readonly EVENTS: {
|
|
372
|
+
readonly ENABLED: {
|
|
373
|
+
readonly 'color-primary': string;
|
|
374
|
+
readonly 'color-secondary': string;
|
|
375
|
+
readonly 'icon-color': string;
|
|
376
|
+
readonly 'background-color': "transparent";
|
|
377
|
+
readonly 'border-color': string;
|
|
378
|
+
readonly 'border-width': "2px";
|
|
379
|
+
readonly 'border-style': "solid";
|
|
380
|
+
};
|
|
381
|
+
readonly VALUE: {
|
|
382
|
+
readonly 'icon-color': string;
|
|
383
|
+
readonly 'background-color': string;
|
|
384
|
+
readonly 'border-color': string;
|
|
385
|
+
};
|
|
386
|
+
readonly HOVER: {
|
|
387
|
+
readonly 'shadow-color': string;
|
|
388
|
+
};
|
|
389
|
+
readonly ACTIVE: {
|
|
390
|
+
readonly 'shadow-color': string;
|
|
391
|
+
};
|
|
392
|
+
readonly FOCUS: {
|
|
393
|
+
readonly 'outline-color': string;
|
|
394
|
+
readonly 'outline-width': "1px";
|
|
395
|
+
readonly 'outline-style': "solid";
|
|
396
|
+
readonly 'outline-offset': "2px";
|
|
397
|
+
};
|
|
398
|
+
readonly ERROR: {
|
|
399
|
+
readonly 'background-color': "transparent";
|
|
400
|
+
readonly 'color-secondary': string;
|
|
401
|
+
readonly 'border-color': string;
|
|
402
|
+
};
|
|
403
|
+
readonly ERROR_VALUE: {
|
|
404
|
+
readonly 'icon-color': string;
|
|
405
|
+
readonly 'background-color': string;
|
|
406
|
+
readonly 'border-color': string;
|
|
407
|
+
};
|
|
408
|
+
readonly ERROR_HOVER: {
|
|
409
|
+
readonly 'shadow-color': string;
|
|
410
|
+
};
|
|
411
|
+
readonly ERROR_ACTIVE: {
|
|
412
|
+
readonly 'shadow-color': string;
|
|
413
|
+
};
|
|
414
|
+
readonly ERROR_FOCUS: {
|
|
415
|
+
readonly 'outline-color': string;
|
|
416
|
+
};
|
|
417
|
+
readonly DISABLED: {
|
|
418
|
+
readonly 'background-color': "transparent";
|
|
419
|
+
readonly 'color-secondary': string;
|
|
420
|
+
readonly 'border-color': string;
|
|
421
|
+
};
|
|
422
|
+
readonly DISABLED_VALUE: {
|
|
423
|
+
readonly 'icon-color': string;
|
|
424
|
+
readonly 'background-color': string;
|
|
425
|
+
};
|
|
426
|
+
};
|
|
427
|
+
};
|
|
428
|
+
BUTTON: {
|
|
429
|
+
readonly ROOT: {
|
|
430
|
+
readonly 'border-radius': "4px";
|
|
431
|
+
};
|
|
432
|
+
readonly EVENTS: {
|
|
433
|
+
readonly ENABLED: {
|
|
434
|
+
readonly 'background-color': string;
|
|
435
|
+
readonly 'color-primary': string;
|
|
436
|
+
readonly 'border-style': "none";
|
|
437
|
+
};
|
|
438
|
+
readonly HOVER: {
|
|
439
|
+
readonly 'background-color': string;
|
|
440
|
+
};
|
|
441
|
+
readonly ACTIVE: {
|
|
442
|
+
readonly 'background-color': string;
|
|
443
|
+
};
|
|
444
|
+
readonly FOCUS: {
|
|
445
|
+
readonly 'outline-color': string;
|
|
446
|
+
readonly 'outline-width': "1px";
|
|
447
|
+
readonly 'outline-style': "solid";
|
|
448
|
+
readonly 'outline-offset': "2px";
|
|
449
|
+
};
|
|
450
|
+
readonly DISABLED: {
|
|
451
|
+
readonly 'background-color': string;
|
|
452
|
+
readonly 'color-primary': string;
|
|
453
|
+
};
|
|
454
|
+
readonly LOADING: {
|
|
455
|
+
readonly 'background-color': string;
|
|
456
|
+
readonly 'color-primary': string;
|
|
457
|
+
};
|
|
458
|
+
};
|
|
459
|
+
};
|
|
460
|
+
ICONBUTTON: {
|
|
461
|
+
readonly ROOT: {
|
|
462
|
+
readonly 'border-radius': "4px";
|
|
463
|
+
};
|
|
464
|
+
readonly EVENTS: {
|
|
465
|
+
readonly ENABLED: {
|
|
466
|
+
readonly 'icon-color': string;
|
|
467
|
+
readonly 'background-color': "transparent";
|
|
468
|
+
readonly 'border-style': "none";
|
|
469
|
+
};
|
|
470
|
+
readonly HOVER: {
|
|
471
|
+
readonly 'shadow-color': string;
|
|
472
|
+
};
|
|
473
|
+
readonly ACTIVE: {
|
|
474
|
+
readonly 'shadow-color': string;
|
|
475
|
+
};
|
|
476
|
+
readonly FOCUS: {
|
|
477
|
+
readonly 'outline-color': string;
|
|
478
|
+
readonly 'outline-width': "1px";
|
|
479
|
+
readonly 'outline-style': "solid";
|
|
480
|
+
readonly 'outline-offset': "2px";
|
|
481
|
+
};
|
|
482
|
+
readonly DISABLED: {
|
|
483
|
+
readonly 'icon-color': string;
|
|
484
|
+
};
|
|
485
|
+
};
|
|
486
|
+
};
|
|
487
|
+
INPUT: {
|
|
488
|
+
readonly ROOT: {
|
|
489
|
+
readonly 'border-radius': "4px";
|
|
490
|
+
};
|
|
491
|
+
readonly EVENTS: {
|
|
492
|
+
readonly ENABLED: {
|
|
493
|
+
readonly 'background-color': "transparent";
|
|
494
|
+
readonly 'color-primary': string;
|
|
495
|
+
readonly 'color-secondary': string;
|
|
496
|
+
readonly 'color-tertiary': string;
|
|
497
|
+
readonly 'border-color': string;
|
|
498
|
+
readonly 'border-width': "2px";
|
|
499
|
+
readonly 'border-style': "solid";
|
|
500
|
+
};
|
|
501
|
+
readonly VALUE: {
|
|
502
|
+
readonly 'border-color': string;
|
|
503
|
+
};
|
|
504
|
+
readonly HOVER: {
|
|
505
|
+
readonly 'border-color': string;
|
|
506
|
+
};
|
|
507
|
+
readonly ACTIVE: {
|
|
508
|
+
readonly 'border-color': string;
|
|
509
|
+
};
|
|
510
|
+
readonly FOCUS: {
|
|
511
|
+
readonly 'border-color': string;
|
|
512
|
+
};
|
|
513
|
+
readonly ERROR: {
|
|
514
|
+
readonly 'background-color': "transparent";
|
|
515
|
+
readonly 'color-primary': string;
|
|
516
|
+
readonly 'color-secondary': string;
|
|
517
|
+
readonly 'color-tertiary': string;
|
|
518
|
+
readonly 'border-color': string;
|
|
519
|
+
};
|
|
520
|
+
readonly ERROR_VALUE: {
|
|
521
|
+
readonly 'border-color': string;
|
|
522
|
+
};
|
|
523
|
+
readonly ERROR_HOVER: {
|
|
524
|
+
readonly 'border-color': string;
|
|
525
|
+
};
|
|
526
|
+
readonly ERROR_ACTIVE: {
|
|
527
|
+
readonly 'border-color': string;
|
|
528
|
+
};
|
|
529
|
+
readonly ERROR_FOCUS: {
|
|
530
|
+
readonly 'border-color': string;
|
|
531
|
+
};
|
|
532
|
+
readonly DISABLED: {
|
|
533
|
+
readonly 'background-color': "transparent";
|
|
534
|
+
readonly 'color-primary': string;
|
|
535
|
+
readonly 'color-secondary': string;
|
|
536
|
+
readonly 'color-tertiary': string;
|
|
537
|
+
readonly 'border-color': string;
|
|
538
|
+
};
|
|
539
|
+
readonly DISABLED_VALUE: {};
|
|
540
|
+
};
|
|
541
|
+
};
|
|
542
|
+
};
|
|
543
|
+
readonly fonts: {
|
|
544
|
+
'fontfamily-primary': string;
|
|
545
|
+
'fontfamily-secondary': string;
|
|
546
|
+
'fontfamily-tertiary': string;
|
|
547
|
+
};
|
|
548
|
+
}];
|
|
549
|
+
export { darkTheme };
|