scorer-ui-kit 2.0.3 → 2.0.4

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 (178) hide show
  1. package/dist/Alerts/atom/AlertBar.d.ts +16 -0
  2. package/dist/Alerts/atom/Notification.d.ts +22 -0
  3. package/dist/Alerts/index.d.ts +5 -0
  4. package/dist/CameraPanels/atoms/MediaStream.d.ts +14 -0
  5. package/dist/CameraPanels/atoms/PanelMetaData.d.ts +11 -0
  6. package/dist/CameraPanels/index.d.ts +6 -0
  7. package/dist/CameraPanels/molecules/CameraPanel.d.ts +14 -0
  8. package/dist/CameraPanels/organisms/CameraPanels.d.ts +7 -0
  9. package/dist/Filters/FilterTypes.d.ts +51 -0
  10. package/dist/Filters/atoms/DateTimeBlock.d.ts +12 -0
  11. package/dist/Filters/atoms/FilterButton.d.ts +10 -0
  12. package/dist/Filters/atoms/FilterDropHandler.d.ts +13 -0
  13. package/dist/Filters/atoms/FilterDropdownContainer.d.ts +7 -0
  14. package/dist/Filters/atoms/LoadingBox.d.ts +6 -0
  15. package/dist/Filters/index.d.ts +11 -0
  16. package/dist/Filters/molecules/DatePicker.d.ts +22 -0
  17. package/dist/Filters/molecules/DropdownDatePicker.d.ts +13 -0
  18. package/dist/Filters/molecules/FilterDropdown.d.ts +21 -0
  19. package/dist/Filters/molecules/FilterInputs.d.ts +12 -0
  20. package/dist/Filters/molecules/FiltersResults.d.ts +21 -0
  21. package/dist/Filters/molecules/SortDropdown.d.ts +16 -0
  22. package/dist/Filters/organisms/FilterBar.d.ts +21 -0
  23. package/dist/Form/Form.d.ts +7 -0
  24. package/dist/Form/atoms/Button.d.ts +9 -0
  25. package/dist/Form/atoms/ButtonWithIcon.d.ts +8 -0
  26. package/dist/Form/atoms/ButtonWithLoading.d.ts +8 -0
  27. package/dist/Form/atoms/Checkbox.d.ts +15 -0
  28. package/dist/Form/atoms/CropArea.d.ts +7 -0
  29. package/dist/Form/atoms/DropArea.d.ts +8 -0
  30. package/dist/Form/atoms/FilterOption.d.ts +12 -0
  31. package/dist/Form/atoms/IconButton.d.ts +8 -0
  32. package/dist/Form/atoms/Input.d.ts +12 -0
  33. package/dist/Form/atoms/InputFileButton.d.ts +11 -0
  34. package/dist/Form/atoms/Label.d.ts +12 -0
  35. package/dist/Form/atoms/RadioButton.d.ts +8 -0
  36. package/dist/Form/atoms/SelectField.d.ts +16 -0
  37. package/dist/Form/atoms/SliderInput.d.ts +22 -0
  38. package/dist/Form/atoms/SmallInput.d.ts +10 -0
  39. package/dist/Form/atoms/Switch.d.ts +19 -0
  40. package/dist/Form/atoms/TextArea.d.ts +9 -0
  41. package/dist/Form/index.d.ts +38 -0
  42. package/dist/Form/molecules/ActionButtons.d.ts +9 -0
  43. package/dist/Form/molecules/CropTool.d.ts +18 -0
  44. package/dist/Form/molecules/DurationSlider.d.ts +11 -0
  45. package/dist/Form/molecules/PasswordField.d.ts +11 -0
  46. package/dist/Form/molecules/PercentageSlider.d.ts +15 -0
  47. package/dist/Form/molecules/TextAreaField.d.ts +11 -0
  48. package/dist/Form/molecules/TextField.d.ts +12 -0
  49. package/dist/Form/organisms/AreaUploadManager.d.ts +13 -0
  50. package/dist/Form/organisms/AvatarUploader.d.ts +19 -0
  51. package/dist/Global/atoms/CloseButton.d.ts +8 -0
  52. package/dist/Global/atoms/ContextItem.d.ts +16 -0
  53. package/dist/Global/atoms/DrawerBottomMenu.d.ts +9 -0
  54. package/dist/Global/atoms/Layout.d.ts +13 -0
  55. package/dist/Global/atoms/MobileLogoLink.d.ts +8 -0
  56. package/dist/Global/atoms/MobileNavbarContent.d.ts +6 -0
  57. package/dist/Global/atoms/NavigationItem.d.ts +15 -0
  58. package/dist/Global/atoms/NotificationItem.d.ts +4 -0
  59. package/dist/Global/index.d.ts +81 -0
  60. package/dist/Global/molecules/MobileUserMenu.d.ts +7 -0
  61. package/dist/Global/molecules/NotificationsHistory.d.ts +4 -0
  62. package/dist/Global/molecules/Sidebar.d.ts +17 -0
  63. package/dist/Global/molecules/TopBar.d.ts +4 -0
  64. package/dist/Global/molecules/UserMenu.d.ts +7 -0
  65. package/dist/Global/organisms/MainMenu.d.ts +4 -0
  66. package/dist/Global/organisms/MobileMenu.d.ts +7 -0
  67. package/dist/Global/organisms/MobileNavbar.d.ts +9 -0
  68. package/dist/Global/templates/GlobalUI.d.ts +10 -0
  69. package/dist/Icons/Icon.d.ts +14 -0
  70. package/dist/Icons/StatusIcon.d.ts +9 -0
  71. package/dist/Indicators/Spinner.d.ts +8 -0
  72. package/dist/LineUI/Contexts.d.ts +8 -0
  73. package/dist/LineUI/Control.d.ts +5 -0
  74. package/dist/LineUI/HandleUnit.d.ts +23 -0
  75. package/dist/LineUI/LineReducer.d.ts +41 -0
  76. package/dist/LineUI/LineSet.d.ts +14 -0
  77. package/dist/LineUI/LineUI.d.ts +14 -0
  78. package/dist/LineUI/LineUIRTC.d.ts +18 -0
  79. package/dist/LineUI/LineUIVideo.d.ts +18 -0
  80. package/dist/LineUI/LineUnit.d.ts +20 -0
  81. package/dist/LineUI/index.d.ts +61 -0
  82. package/dist/Misc/atoms/ActionsBar.d.ts +16 -0
  83. package/dist/Misc/atoms/BasicSearchInput.d.ts +13 -0
  84. package/dist/Misc/atoms/BigIconsSummary.d.ts +9 -0
  85. package/dist/Misc/atoms/MediaBox.d.ts +21 -0
  86. package/dist/Misc/atoms/Tag.d.ts +14 -0
  87. package/dist/Misc/index.d.ts +9 -0
  88. package/dist/Misc/molecules/DebouncedSearcher.d.ts +8 -0
  89. package/dist/Misc/molecules/TagList.d.ts +8 -0
  90. package/dist/Modals/ConfirmationModal.d.ts +14 -0
  91. package/dist/Modals/Modal.d.ts +13 -0
  92. package/dist/Modals/index.d.ts +3 -0
  93. package/dist/PTZControl/atoms/Down.d.ts +5 -0
  94. package/dist/PTZControl/atoms/Left.d.ts +5 -0
  95. package/dist/PTZControl/atoms/Right.d.ts +5 -0
  96. package/dist/PTZControl/atoms/Up.d.ts +5 -0
  97. package/dist/PTZControl/atoms/ZoomIn.d.ts +5 -0
  98. package/dist/PTZControl/atoms/ZoomOut.d.ts +5 -0
  99. package/dist/PTZControl/index.d.ts +5 -0
  100. package/dist/PTZControl/molecules/Base.d.ts +5 -0
  101. package/dist/PTZControl/molecules/ZoomBase.d.ts +5 -0
  102. package/dist/PTZControl/organisms/Controls.d.ts +6 -0
  103. package/dist/PTZControl/state/PTZProvider.d.ts +30 -0
  104. package/dist/PTZControl/state/PTZReducer.d.ts +56 -0
  105. package/dist/PTZControl/state/usePTZ.d.ts +26 -0
  106. package/dist/Pages/atoms/IntroductionText.d.ts +5 -0
  107. package/dist/Pages/atoms/PageTitle.d.ts +11 -0
  108. package/dist/Pages/index.d.ts +5 -0
  109. package/dist/Pages/molecules/MultilineContent.d.ts +9 -0
  110. package/dist/Pages/molecules/PageHeader.d.ts +12 -0
  111. package/dist/Tables/atoms/TableHeaderTitle.d.ts +12 -0
  112. package/dist/Tables/atoms/TableRowThumbnail.d.ts +14 -0
  113. package/dist/Tables/atoms/TypeTableCell.d.ts +16 -0
  114. package/dist/Tables/atoms/TypeTableDeviceStatus.d.ts +8 -0
  115. package/dist/Tables/atoms/TypeTableRow.d.ts +14 -0
  116. package/dist/Tables/index.d.ts +55 -0
  117. package/dist/Tables/molecules/EditCell.d.ts +12 -0
  118. package/dist/Tables/molecules/TypeTableHeader.d.ts +18 -0
  119. package/dist/Tables/organisms/TypeTable.d.ts +21 -0
  120. package/dist/Tabs/TabContent.d.ts +7 -0
  121. package/dist/Tabs/TabList.d.ts +8 -0
  122. package/dist/Tabs/Tabs.d.ts +9 -0
  123. package/dist/Tabs/atoms/MobileTab.d.ts +11 -0
  124. package/dist/Tabs/atoms/Tab.d.ts +7 -0
  125. package/dist/Tabs/atoms/TabWithIcon.d.ts +9 -0
  126. package/dist/Tabs/index.d.ts +8 -0
  127. package/dist/Tabs/molecules/TabsWithIconBar.d.ts +12 -0
  128. package/dist/WebRTCClient.d.ts +13 -0
  129. package/dist/common/index.d.ts +5 -0
  130. package/dist/context/ModalContext.d.ts +10 -0
  131. package/dist/context/NotificationContext.d.ts +11 -0
  132. package/dist/context/index.d.ts +3 -0
  133. package/dist/fonts/index.d.ts +2 -0
  134. package/dist/helpers/cropToolHelpers.d.ts +50 -0
  135. package/dist/helpers/index.d.ts +19 -0
  136. package/dist/hooks/index.d.ts +13 -0
  137. package/dist/hooks/useBreakpoints.d.ts +15 -0
  138. package/dist/hooks/useClickOutside.d.ts +2 -0
  139. package/dist/hooks/useCopyToClipboard.d.ts +3 -0
  140. package/dist/hooks/useInterval.d.ts +1 -0
  141. package/dist/hooks/useMediaModal.d.ts +10 -0
  142. package/dist/hooks/useMediaQuery.d.ts +4 -0
  143. package/dist/hooks/useMenu.d.ts +14 -0
  144. package/dist/hooks/useModal.d.ts +19 -0
  145. package/dist/hooks/useNotification.d.ts +1 -0
  146. package/dist/hooks/usePoll.d.ts +1 -0
  147. package/dist/hooks/useTitle.d.ts +1 -0
  148. package/dist/hooks/useTo.d.ts +1 -0
  149. package/dist/index.d.ts +31 -0
  150. package/dist/index.js +14564 -0
  151. package/dist/index.js.map +1 -0
  152. package/dist/index.modern.js +14449 -0
  153. package/dist/index.modern.js.map +1 -0
  154. package/dist/index.test.d.ts +1 -0
  155. package/dist/svg/AvatarPlaceholder.d.ts +3 -0
  156. package/dist/svg/Invalid.d.ts +3 -0
  157. package/dist/svg/LogoMark.d.ts +3 -0
  158. package/dist/svg/LogoText.d.ts +3 -0
  159. package/dist/svg/PasswordHide.d.ts +3 -0
  160. package/dist/svg/PasswordShow.d.ts +3 -0
  161. package/dist/svg/Required.d.ts +3 -0
  162. package/dist/svg/Success.d.ts +3 -0
  163. package/dist/svg/checkmark.d.ts +3 -0
  164. package/dist/svg/index.d.ts +9 -0
  165. package/dist/svg/input.d.ts +2 -0
  166. package/dist/themes/common.d.ts +99 -0
  167. package/dist/themes/dark/colors.d.ts +24 -0
  168. package/dist/themes/dark/custom.d.ts +139 -0
  169. package/dist/themes/dark/dark.d.ts +1051 -0
  170. package/dist/themes/dark/styles.d.ts +301 -0
  171. package/dist/themes/dark/typography.d.ts +485 -0
  172. package/dist/themes/light/colors.d.ts +41 -0
  173. package/dist/themes/light/custom.d.ts +139 -0
  174. package/dist/themes/light/light.d.ts +1612 -0
  175. package/dist/themes/light/styles.d.ts +536 -0
  176. package/dist/themes/light/typography.d.ts +794 -0
  177. package/dist/themes/themeFallbackHelper.d.ts +5 -0
  178. package/package.json +1 -1
@@ -0,0 +1,536 @@
1
+ export declare const styles: {
2
+ generic: {
3
+ transparent: {};
4
+ };
5
+ form: {
6
+ input: {
7
+ default: {
8
+ normal: {
9
+ backgroundColor: string;
10
+ borderColor: string;
11
+ border: string;
12
+ };
13
+ focused: {
14
+ boxShadow: string;
15
+ backgroundColor: string;
16
+ borderColor: string;
17
+ border: string;
18
+ };
19
+ };
20
+ disabled: {
21
+ normal: {
22
+ backgroundColor: string;
23
+ borderColor: string;
24
+ border: string;
25
+ };
26
+ };
27
+ subdivision: {
28
+ backgroundColor: string;
29
+ };
30
+ required: {
31
+ focused: {
32
+ boxShadow: string;
33
+ backgroundColor: string;
34
+ borderColor: string;
35
+ border: string;
36
+ };
37
+ normal: {
38
+ borderColor: string;
39
+ border: string;
40
+ };
41
+ };
42
+ valid: {
43
+ focused: {
44
+ boxShadow: string;
45
+ backgroundColor: string;
46
+ borderColor: string;
47
+ border: string;
48
+ };
49
+ normal: {
50
+ borderColor: string;
51
+ border: string;
52
+ };
53
+ };
54
+ invalid: {
55
+ focused: {
56
+ boxShadow: string;
57
+ backgroundColor: string;
58
+ borderColor: string;
59
+ border: string;
60
+ };
61
+ normal: {
62
+ borderColor: string;
63
+ border: string;
64
+ };
65
+ };
66
+ processing: {
67
+ focused: {
68
+ boxShadow: string;
69
+ backgroundColor: string;
70
+ borderColor: string;
71
+ border: string;
72
+ };
73
+ normal: {
74
+ backgroundColor: string;
75
+ borderColor: string;
76
+ border: string;
77
+ };
78
+ };
79
+ seperatedValues: {
80
+ background: {
81
+ backgroundColor: string;
82
+ backgroundImage: string;
83
+ };
84
+ hoverHighlight: {
85
+ backgroundColor: string;
86
+ };
87
+ };
88
+ };
89
+ button: {
90
+ primary: {
91
+ default: {
92
+ backgroundColor: string;
93
+ backgroundImage: string;
94
+ };
95
+ hover: {
96
+ backgroundColor: string;
97
+ };
98
+ active: {
99
+ backgroundColor: string;
100
+ };
101
+ divider: {
102
+ backgroundColor: string;
103
+ };
104
+ disabled: {
105
+ backgroundColor: string;
106
+ backgroundImage: string;
107
+ };
108
+ actionArea: {
109
+ backgroundColor: string;
110
+ backgroundImage: string;
111
+ };
112
+ };
113
+ secondary: {
114
+ default: {
115
+ backgroundColor: string;
116
+ };
117
+ hover: {
118
+ backgroundColor: string;
119
+ };
120
+ active: {
121
+ backgroundColor: string;
122
+ };
123
+ disabled: {
124
+ backgroundColor: string;
125
+ };
126
+ divider: {
127
+ backgroundColor: string;
128
+ };
129
+ actionArea: {
130
+ backgroundColor: string;
131
+ };
132
+ };
133
+ danger: {
134
+ default: {
135
+ backgroundColor: string;
136
+ backgroundImage: string;
137
+ };
138
+ hover: {
139
+ backgroundColor: string;
140
+ };
141
+ active: {
142
+ backgroundColor: string;
143
+ };
144
+ disabled: {
145
+ backgroundColor: string;
146
+ };
147
+ divider: {
148
+ backgroundColor: string;
149
+ };
150
+ actionArea: {
151
+ backgroundColor: string;
152
+ backgroundImage: string;
153
+ };
154
+ };
155
+ };
156
+ switch: {
157
+ off: {
158
+ default: {
159
+ outer: {
160
+ backgroundColor: string;
161
+ backgroundImage: string;
162
+ borderColor: string;
163
+ border: string;
164
+ };
165
+ inner: {
166
+ backgroundColor: string;
167
+ backgroundImage: string;
168
+ };
169
+ };
170
+ disabled: {
171
+ outer: {
172
+ backgroundColor: string;
173
+ backgroundImage: string;
174
+ borderColor: string;
175
+ border: string;
176
+ };
177
+ inner: {
178
+ backgroundColor: string;
179
+ };
180
+ };
181
+ loading: {
182
+ outer: {
183
+ backgroundColor: string;
184
+ backgroundImage: string;
185
+ borderColor: string;
186
+ border: string;
187
+ };
188
+ };
189
+ };
190
+ on: {
191
+ default: {
192
+ outer: {
193
+ backgroundColor: string;
194
+ backgroundImage: string;
195
+ borderColor: string;
196
+ border: string;
197
+ };
198
+ inner: {
199
+ backgroundColor: string;
200
+ };
201
+ };
202
+ disabled: {
203
+ outer: {
204
+ backgroundColor: string;
205
+ backgroundImage: string;
206
+ borderColor: string;
207
+ border: string;
208
+ };
209
+ inner: {
210
+ backgroundColor: string;
211
+ };
212
+ };
213
+ loading: {
214
+ outer: {
215
+ backgroundColor: string;
216
+ backgroundImage: string;
217
+ borderColor: string;
218
+ border: string;
219
+ };
220
+ };
221
+ };
222
+ failure: {
223
+ default: {
224
+ outer: {
225
+ backgroundColor: string;
226
+ backgroundImage: string;
227
+ borderColor: string;
228
+ border: string;
229
+ };
230
+ inner: {
231
+ backgroundColor: string;
232
+ };
233
+ };
234
+ loading: {
235
+ outer: {
236
+ backgroundColor: string;
237
+ backgroundImage: string;
238
+ borderColor: string;
239
+ border: string;
240
+ };
241
+ inner: {
242
+ backgroundColor: string;
243
+ };
244
+ };
245
+ };
246
+ danger: {
247
+ default: {
248
+ outer: {
249
+ backgroundColor: string;
250
+ backgroundImage: string;
251
+ borderColor: string;
252
+ border: string;
253
+ };
254
+ inner: {
255
+ backgroundColor: string;
256
+ };
257
+ };
258
+ loading: {
259
+ outer: {
260
+ backgroundColor: string;
261
+ backgroundImage: string;
262
+ borderColor: string;
263
+ border: string;
264
+ };
265
+ };
266
+ disabled: {
267
+ outer: {
268
+ backgroundColor: string;
269
+ backgroundImage: string;
270
+ borderColor: string;
271
+ border: string;
272
+ };
273
+ inner: {
274
+ backgroundColor: string;
275
+ };
276
+ };
277
+ };
278
+ locked: {
279
+ default: {
280
+ outer: {
281
+ backgroundColor: string;
282
+ backgroundImage: string;
283
+ borderColor: string;
284
+ border: string;
285
+ };
286
+ inner: {
287
+ backgroundColor: string;
288
+ };
289
+ };
290
+ };
291
+ };
292
+ checkbox: {
293
+ unchecked: {
294
+ disabled: {
295
+ backgroundColor: string;
296
+ borderColor: string;
297
+ border: string;
298
+ };
299
+ default: {
300
+ borderColor: string;
301
+ border: string;
302
+ };
303
+ hover: {
304
+ borderColor: string;
305
+ border: string;
306
+ };
307
+ };
308
+ checked: {
309
+ disabled: {
310
+ boxShadow: string;
311
+ backgroundColor: string;
312
+ };
313
+ default: {
314
+ boxShadow: string;
315
+ backgroundColor: string;
316
+ };
317
+ hover: {
318
+ boxShadow: string;
319
+ backgroundColor: string;
320
+ };
321
+ };
322
+ indeterminate: {
323
+ hover: {
324
+ boxShadow: string;
325
+ backgroundColor: string;
326
+ };
327
+ default: {
328
+ boxShadow: string;
329
+ backgroundColor: string;
330
+ };
331
+ };
332
+ };
333
+ };
334
+ global: {
335
+ mainMenu: {
336
+ iconBackground: {
337
+ active: {
338
+ backgroundColor: string;
339
+ };
340
+ hover: {
341
+ backgroundColor: string;
342
+ };
343
+ default: {
344
+ backgroundColor: string;
345
+ };
346
+ };
347
+ background: {
348
+ boxShadow: string;
349
+ backgroundColor: string;
350
+ };
351
+ lines: {
352
+ backgroundColor: string;
353
+ };
354
+ footerBackground: {
355
+ backgroundColor: string;
356
+ };
357
+ };
358
+ background: {
359
+ backgroundColor: string;
360
+ backgroundImage: string;
361
+ };
362
+ drawer: {
363
+ background: {
364
+ boxShadow: string;
365
+ backgroundColor: string;
366
+ };
367
+ };
368
+ topBar: {
369
+ lines: {
370
+ backgroundColor: string;
371
+ };
372
+ };
373
+ };
374
+ indicators: {
375
+ spinner: {
376
+ danger: {
377
+ base: {
378
+ borderColor: string;
379
+ border: string;
380
+ };
381
+ top: {
382
+ borderColor: string;
383
+ border: string;
384
+ };
385
+ };
386
+ secondary: {
387
+ top: {
388
+ borderColor: string;
389
+ border: string;
390
+ };
391
+ base: {
392
+ borderColor: string;
393
+ border: string;
394
+ };
395
+ };
396
+ primary: {
397
+ top: {
398
+ borderColor: string;
399
+ border: string;
400
+ };
401
+ base: {
402
+ borderColor: string;
403
+ border: string;
404
+ };
405
+ };
406
+ simple: {
407
+ top: {
408
+ borderColor: string;
409
+ border: string;
410
+ };
411
+ base: {
412
+ borderColor: string;
413
+ border: string;
414
+ };
415
+ };
416
+ };
417
+ };
418
+ filters: {
419
+ dropdownContainer: {
420
+ background: {
421
+ boxShadow: string;
422
+ backgroundColor: string;
423
+ borderColor: string;
424
+ border: string;
425
+ };
426
+ topBorder: {
427
+ backgroundColor: string;
428
+ };
429
+ };
430
+ filterButton: {
431
+ default: {
432
+ boxShadow: string;
433
+ backgroundColor: string;
434
+ borderColor: string;
435
+ border: string;
436
+ textColor: string;
437
+ };
438
+ active: {
439
+ boxShadow: string;
440
+ backgroundColor: string;
441
+ borderColor: string;
442
+ border: string;
443
+ textColor: string;
444
+ };
445
+ hover: {
446
+ boxShadow: string;
447
+ backgroundColor: string;
448
+ borderColor: string;
449
+ border: string;
450
+ textColor: string;
451
+ };
452
+ };
453
+ searchInput: {
454
+ default: {
455
+ boxShadow: string;
456
+ backgroundColor: string;
457
+ borderColor: string;
458
+ border: string;
459
+ };
460
+ focused: {
461
+ boxShadow: string;
462
+ backgroundColor: string;
463
+ borderColor: string;
464
+ border: string;
465
+ };
466
+ };
467
+ };
468
+ tables: {
469
+ loadingOverlay: {
470
+ backgroundColor: string;
471
+ backgroundImage: string;
472
+ };
473
+ rows: {
474
+ divider: {
475
+ backgroundColor: string;
476
+ };
477
+ };
478
+ header: {
479
+ groupLine: {
480
+ backgroundColor: string;
481
+ };
482
+ divider: {
483
+ backgroundColor: string;
484
+ };
485
+ sortable: {
486
+ hover: {
487
+ backgroundColor: string;
488
+ };
489
+ default: {
490
+ backgroundColor: string;
491
+ };
492
+ };
493
+ };
494
+ };
495
+ general: {
496
+ divider: {
497
+ backgroundColor: string;
498
+ };
499
+ };
500
+ feedbackBar: {
501
+ neutral: {
502
+ backgroundColor: string;
503
+ };
504
+ error: {
505
+ backgroundColor: string;
506
+ };
507
+ info: {
508
+ backgroundColor: string;
509
+ };
510
+ success: {
511
+ backgroundColor: string;
512
+ };
513
+ warning: {
514
+ backgroundColor: string;
515
+ };
516
+ };
517
+ filterButton: {
518
+ active: {
519
+ boxShadow: string;
520
+ backgroundColor: string;
521
+ borderColor: string;
522
+ border: string;
523
+ };
524
+ };
525
+ modal: {
526
+ overlay: {
527
+ backgroundColor: string;
528
+ };
529
+ container: {
530
+ boxShadow: string;
531
+ backgroundColor: string;
532
+ borderColor: string;
533
+ border: string;
534
+ };
535
+ };
536
+ };