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