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