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,1612 @@
1
+ declare const _default: {
2
+ fontFamily: {
3
+ ui: string;
4
+ data: string;
5
+ };
6
+ dimensions: {
7
+ icons: {
8
+ weights: {
9
+ light: number;
10
+ regular: number;
11
+ heavy: number;
12
+ strong: number;
13
+ };
14
+ };
15
+ form: {
16
+ button: {
17
+ xsmall: {
18
+ height: string;
19
+ padding: string;
20
+ iconSize: number;
21
+ };
22
+ small: {
23
+ height: string;
24
+ padding: string;
25
+ iconSize: number;
26
+ };
27
+ normal: {
28
+ height: string;
29
+ padding: string;
30
+ iconSize: number;
31
+ };
32
+ large: {
33
+ height: string;
34
+ padding: string;
35
+ iconSize: number;
36
+ };
37
+ };
38
+ input: {
39
+ height: string;
40
+ };
41
+ switch: {
42
+ outer: {
43
+ width: string;
44
+ height: string;
45
+ borderRadius: string;
46
+ };
47
+ inner: {
48
+ width: string;
49
+ height: string;
50
+ borderRadius: string;
51
+ };
52
+ positions: {
53
+ top: string;
54
+ off: string;
55
+ neutral: string;
56
+ locked: string;
57
+ on: string;
58
+ };
59
+ };
60
+ };
61
+ global: {
62
+ mainMenu: {
63
+ width: {
64
+ open: string;
65
+ closed: string;
66
+ };
67
+ };
68
+ };
69
+ };
70
+ typography: {
71
+ pageHeader: {
72
+ introduction: {
73
+ textAlign: string;
74
+ fontStyle: string;
75
+ fontSize: string;
76
+ fontWeight: number;
77
+ lineHeight: string;
78
+ textDecoration: string;
79
+ color: string;
80
+ };
81
+ areaTitle: {
82
+ textAlign: string;
83
+ fontSize: string;
84
+ fontWeight: number;
85
+ textDecoration: string;
86
+ color: string;
87
+ };
88
+ mainTitle: {
89
+ textAlign: string;
90
+ fontSize: string;
91
+ fontWeight: number;
92
+ textDecoration: string;
93
+ color: string;
94
+ };
95
+ };
96
+ form: {
97
+ label: {
98
+ meta: {
99
+ textAlign: string;
100
+ fontSize: string;
101
+ fontWeight: number;
102
+ textDecoration: string;
103
+ color: string;
104
+ };
105
+ default: {
106
+ textAlign: string;
107
+ fontSize: string;
108
+ fontWeight: number;
109
+ textDecoration: string;
110
+ color: string;
111
+ };
112
+ disabled: {
113
+ textAlign: string;
114
+ fontSize: string;
115
+ fontWeight: number;
116
+ textDecoration: string;
117
+ color: string;
118
+ };
119
+ failure: {
120
+ textAlign: string;
121
+ fontSize: string;
122
+ fontWeight: number;
123
+ textDecoration: string;
124
+ color: string;
125
+ };
126
+ "meta(Selected)": {
127
+ textAlign: string;
128
+ fontSize: string;
129
+ fontWeight: number;
130
+ textDecoration: string;
131
+ color: string;
132
+ };
133
+ };
134
+ tip: {
135
+ textAlign: string;
136
+ fontStyle: string;
137
+ fontSize: string;
138
+ fontWeight: number;
139
+ lineHeight: string;
140
+ textDecoration: string;
141
+ color: string;
142
+ };
143
+ button: {
144
+ secondary: {
145
+ normal: {
146
+ textAlign: string;
147
+ fontSize: string;
148
+ fontWeight: number;
149
+ textDecoration: string;
150
+ color: string;
151
+ };
152
+ large: {
153
+ textAlign: string;
154
+ fontSize: string;
155
+ fontWeight: number;
156
+ textDecoration: string;
157
+ color: string;
158
+ };
159
+ small: {
160
+ textAlign: string;
161
+ fontSize: string;
162
+ fontWeight: number;
163
+ textDecoration: string;
164
+ color: string;
165
+ };
166
+ xsmall: {
167
+ textAlign: string;
168
+ fontSize: string;
169
+ fontWeight: number;
170
+ textDecoration: string;
171
+ color: string;
172
+ };
173
+ };
174
+ primary: {
175
+ large: {
176
+ textAlign: string;
177
+ fontSize: string;
178
+ fontWeight: number;
179
+ textDecoration: string;
180
+ color: string;
181
+ };
182
+ normal: {
183
+ textAlign: string;
184
+ fontSize: string;
185
+ fontWeight: number;
186
+ textDecoration: string;
187
+ color: string;
188
+ };
189
+ small: {
190
+ textAlign: string;
191
+ fontSize: string;
192
+ fontWeight: number;
193
+ textDecoration: string;
194
+ color: string;
195
+ };
196
+ xsmall: {
197
+ textAlign: string;
198
+ fontSize: string;
199
+ fontWeight: number;
200
+ textDecoration: string;
201
+ color: string;
202
+ };
203
+ };
204
+ danger: {
205
+ large: {
206
+ textAlign: string;
207
+ fontSize: string;
208
+ fontWeight: number;
209
+ textDecoration: string;
210
+ color: string;
211
+ };
212
+ normal: {
213
+ textAlign: string;
214
+ fontSize: string;
215
+ fontWeight: number;
216
+ textDecoration: string;
217
+ color: string;
218
+ };
219
+ small: {
220
+ textAlign: string;
221
+ fontSize: string;
222
+ fontWeight: number;
223
+ textDecoration: string;
224
+ color: string;
225
+ };
226
+ xsmall: {
227
+ textAlign: string;
228
+ fontSize: string;
229
+ fontWeight: number;
230
+ textDecoration: string;
231
+ color: string;
232
+ };
233
+ };
234
+ };
235
+ input: {
236
+ label: {
237
+ textAlign: string;
238
+ fontSize: string;
239
+ fontWeight: number;
240
+ textDecoration: string;
241
+ color: string;
242
+ };
243
+ placeholder: {
244
+ normal: {
245
+ textAlign: string;
246
+ fontStyle: string;
247
+ fontSize: string;
248
+ fontWeight: number;
249
+ textDecoration: string;
250
+ color: string;
251
+ };
252
+ compact: {
253
+ textAlign: string;
254
+ fontStyle: string;
255
+ fontSize: string;
256
+ fontWeight: number;
257
+ lineHeight: string;
258
+ textDecoration: string;
259
+ color: string;
260
+ };
261
+ };
262
+ value: {
263
+ normal: {
264
+ textAlign: string;
265
+ fontSize: string;
266
+ fontWeight: number;
267
+ lineHeight: string;
268
+ textDecoration: string;
269
+ color: string;
270
+ };
271
+ compact: {
272
+ textAlign: string;
273
+ fontSize: string;
274
+ fontWeight: number;
275
+ lineHeight: string;
276
+ textDecoration: string;
277
+ color: string;
278
+ };
279
+ };
280
+ };
281
+ labelInformation: {
282
+ textAlign: string;
283
+ fontStyle: string;
284
+ fontSize: string;
285
+ fontWeight: number;
286
+ lineHeight: string;
287
+ textDecoration: string;
288
+ color: string;
289
+ };
290
+ select: {
291
+ option: {
292
+ textAlign: string;
293
+ fontSize: string;
294
+ fontWeight: number;
295
+ lineHeight: string;
296
+ textDecoration: string;
297
+ color: string;
298
+ };
299
+ selectedValue: {
300
+ textAlign: string;
301
+ fontSize: string;
302
+ fontWeight: number;
303
+ lineHeight: string;
304
+ textDecoration: string;
305
+ color: string;
306
+ };
307
+ "option(Hover)": {
308
+ textAlign: string;
309
+ fontSize: string;
310
+ fontWeight: number;
311
+ lineHeight: string;
312
+ textDecoration: string;
313
+ color: string;
314
+ };
315
+ };
316
+ feedback: {
317
+ message: {
318
+ textAlign: string;
319
+ fontStyle: string;
320
+ fontSize: string;
321
+ fontWeight: number;
322
+ lineHeight: string;
323
+ textDecoration: string;
324
+ color: string;
325
+ };
326
+ };
327
+ };
328
+ global: {
329
+ mainMenu: {
330
+ menuItem: {
331
+ default: {
332
+ textAlign: string;
333
+ fontSize: string;
334
+ fontWeight: number;
335
+ textDecoration: string;
336
+ color: string;
337
+ };
338
+ active: {
339
+ textAlign: string;
340
+ fontSize: string;
341
+ fontWeight: number;
342
+ textDecoration: string;
343
+ color: string;
344
+ };
345
+ hover: {
346
+ textAlign: string;
347
+ fontSize: string;
348
+ fontWeight: number;
349
+ textDecoration: string;
350
+ color: string;
351
+ };
352
+ };
353
+ subheader: {
354
+ textAlign: string;
355
+ fontSize: string;
356
+ fontWeight: number;
357
+ textTransform: string;
358
+ letterSpacing: string;
359
+ textDecoration: string;
360
+ color: string;
361
+ };
362
+ hidePrompt: {
363
+ textAlign: string;
364
+ fontSize: string;
365
+ fontWeight: number;
366
+ textDecoration: string;
367
+ color: string;
368
+ };
369
+ subItem: {
370
+ default: {
371
+ textAlign: string;
372
+ fontSize: string;
373
+ fontWeight: number;
374
+ textDecoration: string;
375
+ color: string;
376
+ };
377
+ active: {
378
+ textAlign: string;
379
+ fontSize: string;
380
+ fontWeight: number;
381
+ textDecoration: string;
382
+ color: string;
383
+ };
384
+ hover: {
385
+ textAlign: string;
386
+ fontSize: string;
387
+ fontWeight: number;
388
+ textDecoration: string;
389
+ color: string;
390
+ };
391
+ };
392
+ identity: {
393
+ textAlign: string;
394
+ fontSize: string;
395
+ fontWeight: number;
396
+ textDecoration: string;
397
+ color: string;
398
+ };
399
+ };
400
+ topBar: {
401
+ search: {
402
+ value: {
403
+ textAlign: string;
404
+ fontSize: string;
405
+ fontWeight: number;
406
+ textDecoration: string;
407
+ color: string;
408
+ };
409
+ placeholder: {
410
+ textAlign: string;
411
+ fontStyle: string;
412
+ fontSize: string;
413
+ fontWeight: number;
414
+ textDecoration: string;
415
+ color: string;
416
+ };
417
+ };
418
+ };
419
+ };
420
+ content: {
421
+ "section-H2": {
422
+ textAlign: string;
423
+ fontSize: string;
424
+ fontWeight: number;
425
+ textDecoration: string;
426
+ color: string;
427
+ };
428
+ sectionH3: {
429
+ textAlign: string;
430
+ fontSize: string;
431
+ fontWeight: number;
432
+ textDecoration: string;
433
+ color: string;
434
+ };
435
+ actionParagraph: {
436
+ textAlign: string;
437
+ fontSize: string;
438
+ fontWeight: number;
439
+ lineHeight: string;
440
+ textDecoration: string;
441
+ color: string;
442
+ };
443
+ hyperlink: {
444
+ hover: {
445
+ textAlign: string;
446
+ fontStyle: string;
447
+ fontSize: string;
448
+ fontWeight: number;
449
+ lineHeight: string;
450
+ textDecoration: string;
451
+ color: string;
452
+ };
453
+ base: {
454
+ textAlign: string;
455
+ fontStyle: string;
456
+ fontSize: string;
457
+ fontWeight: number;
458
+ lineHeight: string;
459
+ textDecoration: string;
460
+ color: string;
461
+ };
462
+ };
463
+ };
464
+ feedbackBar: {
465
+ message: {
466
+ textAlign: string;
467
+ fontSize: string;
468
+ fontWeight: number;
469
+ lineHeight: string;
470
+ letterSpacing: string;
471
+ textDecoration: string;
472
+ color: string;
473
+ };
474
+ };
475
+ searchBar: {
476
+ placeholder: {
477
+ textAlign: string;
478
+ fontStyle: string;
479
+ fontSize: string;
480
+ fontWeight: number;
481
+ textDecoration: string;
482
+ color: string;
483
+ };
484
+ value: {
485
+ textAlign: string;
486
+ fontSize: string;
487
+ fontWeight: number;
488
+ textDecoration: string;
489
+ color: string;
490
+ };
491
+ };
492
+ meta: {
493
+ tagList: {
494
+ emptyStates: {
495
+ normal: {
496
+ textAlign: string;
497
+ fontStyle: string;
498
+ fontSize: string;
499
+ fontWeight: number;
500
+ textDecoration: string;
501
+ color: string;
502
+ };
503
+ small: {
504
+ textAlign: string;
505
+ fontStyle: string;
506
+ fontSize: string;
507
+ fontWeight: number;
508
+ textDecoration: string;
509
+ color: string;
510
+ };
511
+ };
512
+ item: {
513
+ normal: {
514
+ textAlign: string;
515
+ fontSize: string;
516
+ fontWeight: number;
517
+ textDecoration: string;
518
+ color: string;
519
+ };
520
+ small: {
521
+ textAlign: string;
522
+ fontSize: string;
523
+ fontWeight: number;
524
+ textDecoration: string;
525
+ color: string;
526
+ };
527
+ };
528
+ };
529
+ };
530
+ table: {
531
+ columnData: {
532
+ normalImportance: {
533
+ right: {
534
+ textAlign: string;
535
+ fontSize: string;
536
+ fontWeight: number;
537
+ textDecoration: string;
538
+ color: string;
539
+ };
540
+ left: {
541
+ textAlign: string;
542
+ fontSize: string;
543
+ fontWeight: number;
544
+ textDecoration: string;
545
+ color: string;
546
+ };
547
+ center: {
548
+ textAlign: string;
549
+ fontSize: string;
550
+ fontWeight: number;
551
+ textDecoration: string;
552
+ color: string;
553
+ };
554
+ };
555
+ highImportance: {
556
+ right: {
557
+ textAlign: string;
558
+ fontSize: string;
559
+ fontWeight: number;
560
+ textDecoration: string;
561
+ color: string;
562
+ };
563
+ center: {
564
+ textAlign: string;
565
+ fontSize: string;
566
+ fontWeight: number;
567
+ textDecoration: string;
568
+ color: string;
569
+ };
570
+ left: {
571
+ textAlign: string;
572
+ fontSize: string;
573
+ fontWeight: number;
574
+ textDecoration: string;
575
+ color: string;
576
+ };
577
+ };
578
+ firstColumn: {
579
+ textAlign: string;
580
+ fontSize: string;
581
+ fontWeight: number;
582
+ textDecoration: string;
583
+ color: string;
584
+ };
585
+ lowImportance: {
586
+ right: {
587
+ textAlign: string;
588
+ fontStyle: string;
589
+ fontSize: string;
590
+ fontWeight: number;
591
+ textDecoration: string;
592
+ color: string;
593
+ };
594
+ center: {
595
+ textAlign: string;
596
+ fontStyle: string;
597
+ fontSize: string;
598
+ fontWeight: number;
599
+ textDecoration: string;
600
+ color: string;
601
+ };
602
+ left: {
603
+ textAlign: string;
604
+ fontStyle: string;
605
+ fontSize: string;
606
+ fontWeight: number;
607
+ textDecoration: string;
608
+ color: string;
609
+ };
610
+ };
611
+ unit: {
612
+ textAlign: string;
613
+ fontStyle: string;
614
+ fontSize: string;
615
+ fontWeight: number;
616
+ textDecoration: string;
617
+ color: string;
618
+ };
619
+ };
620
+ header: {
621
+ center: {
622
+ textAlign: string;
623
+ fontSize: string;
624
+ fontWeight: number;
625
+ letterSpacing: string;
626
+ textDecoration: string;
627
+ color: string;
628
+ };
629
+ left: {
630
+ textAlign: string;
631
+ fontSize: string;
632
+ fontWeight: number;
633
+ letterSpacing: string;
634
+ textDecoration: string;
635
+ color: string;
636
+ };
637
+ right: {
638
+ textAlign: string;
639
+ fontSize: string;
640
+ fontWeight: number;
641
+ letterSpacing: string;
642
+ textDecoration: string;
643
+ color: string;
644
+ };
645
+ };
646
+ subHeader: {
647
+ center: {
648
+ textAlign: string;
649
+ fontSize: string;
650
+ fontWeight: number;
651
+ letterSpacing: string;
652
+ textDecoration: string;
653
+ color: string;
654
+ };
655
+ left: {
656
+ textAlign: string;
657
+ fontSize: string;
658
+ fontWeight: number;
659
+ letterSpacing: string;
660
+ textDecoration: string;
661
+ color: string;
662
+ };
663
+ right: {
664
+ textAlign: string;
665
+ fontSize: string;
666
+ fontWeight: number;
667
+ letterSpacing: string;
668
+ textDecoration: string;
669
+ color: string;
670
+ };
671
+ };
672
+ };
673
+ filters: {
674
+ datepicker: {
675
+ metaHeader: {
676
+ default: {
677
+ textAlign: string;
678
+ fontSize: string;
679
+ fontWeight: number;
680
+ textDecoration: string;
681
+ color: string;
682
+ };
683
+ active: {
684
+ textAlign: string;
685
+ fontSize: string;
686
+ fontWeight: number;
687
+ textDecoration: string;
688
+ color: string;
689
+ };
690
+ };
691
+ calendar: {
692
+ active: {
693
+ textAlign: string;
694
+ fontSize: string;
695
+ fontWeight: number;
696
+ textDecoration: string;
697
+ color: string;
698
+ };
699
+ otherMonth: {
700
+ textAlign: string;
701
+ fontSize: string;
702
+ fontWeight: number;
703
+ textDecoration: string;
704
+ color: string;
705
+ };
706
+ default: {
707
+ textAlign: string;
708
+ fontSize: string;
709
+ fontWeight: number;
710
+ textDecoration: string;
711
+ color: string;
712
+ };
713
+ header: {
714
+ textAlign: string;
715
+ fontSize: string;
716
+ fontWeight: number;
717
+ textDecoration: string;
718
+ color: string;
719
+ };
720
+ };
721
+ monthLink: {
722
+ default: {
723
+ textAlign: string;
724
+ fontSize: string;
725
+ fontWeight: number;
726
+ lineHeight: string;
727
+ textTransform: string;
728
+ letterSpacing: string;
729
+ textDecoration: string;
730
+ color: string;
731
+ };
732
+ hover: {
733
+ textAlign: string;
734
+ fontSize: string;
735
+ fontWeight: number;
736
+ lineHeight: string;
737
+ textTransform: string;
738
+ letterSpacing: string;
739
+ textDecoration: string;
740
+ color: string;
741
+ };
742
+ };
743
+ focusedMonth: {
744
+ textAlign: string;
745
+ fontSize: string;
746
+ fontWeight: number;
747
+ lineHeight: string;
748
+ letterSpacing: string;
749
+ textDecoration: string;
750
+ color: string;
751
+ };
752
+ focusedYear: {
753
+ textAlign: string;
754
+ fontSize: string;
755
+ fontWeight: number;
756
+ lineHeight: string;
757
+ textTransform: string;
758
+ letterSpacing: string;
759
+ textDecoration: string;
760
+ color: string;
761
+ };
762
+ };
763
+ value: {
764
+ textAlign: string;
765
+ fontSize: string;
766
+ fontWeight: number;
767
+ letterSpacing: string;
768
+ textDecoration: string;
769
+ color: string;
770
+ };
771
+ subOption: {
772
+ label: {
773
+ textAlign: string;
774
+ fontSize: string;
775
+ fontWeight: number;
776
+ textDecoration: string;
777
+ color: string;
778
+ };
779
+ value: {
780
+ textAlign: string;
781
+ fontSize: string;
782
+ fontWeight: number;
783
+ textDecoration: string;
784
+ color: string;
785
+ };
786
+ };
787
+ presetAction: {
788
+ textAlign: string;
789
+ fontSize: string;
790
+ fontWeight: number;
791
+ textDecoration: string;
792
+ color: string;
793
+ };
794
+ filterButton: {
795
+ default: {
796
+ textAlign: string;
797
+ fontSize: string;
798
+ fontWeight: number;
799
+ textDecoration: string;
800
+ color: string;
801
+ };
802
+ active: {
803
+ textAlign: string;
804
+ fontSize: string;
805
+ fontWeight: number;
806
+ textDecoration: string;
807
+ color: string;
808
+ };
809
+ hover: {
810
+ textAlign: string;
811
+ fontSize: string;
812
+ fontWeight: number;
813
+ textDecoration: string;
814
+ color: string;
815
+ };
816
+ };
817
+ searchInput: {
818
+ placeholder: {
819
+ textAlign: string;
820
+ fontStyle: string;
821
+ fontSize: string;
822
+ fontWeight: number;
823
+ textDecoration: string;
824
+ color: string;
825
+ };
826
+ value: {
827
+ textAlign: string;
828
+ fontSize: string;
829
+ fontWeight: number;
830
+ textDecoration: string;
831
+ color: string;
832
+ };
833
+ };
834
+ };
835
+ tables: {
836
+ groupName: {
837
+ textAlign: string;
838
+ fontSize: string;
839
+ fontWeight: number;
840
+ letterSpacing: string;
841
+ textDecoration: string;
842
+ color: string;
843
+ };
844
+ };
845
+ modal: {
846
+ title: {
847
+ textAlign: string;
848
+ fontSize: string;
849
+ fontWeight: number;
850
+ textShadow: string;
851
+ textDecoration: string;
852
+ color: string;
853
+ };
854
+ basicContent: {
855
+ textAlign: string;
856
+ fontSize: string;
857
+ fontWeight: number;
858
+ lineHeight: string;
859
+ textDecoration: string;
860
+ color: string;
861
+ };
862
+ };
863
+ };
864
+ colors: {
865
+ pureBase: string;
866
+ pureTop: string;
867
+ divider: string;
868
+ icons: {
869
+ inverse: string;
870
+ mono: string;
871
+ dimmed: string;
872
+ subtle: string;
873
+ primary: string;
874
+ danger: string;
875
+ };
876
+ menu: {
877
+ active: string;
878
+ hover: string;
879
+ default: string;
880
+ indicator: string;
881
+ passive: string;
882
+ };
883
+ feedback: {
884
+ error: string;
885
+ info: string;
886
+ neutral: string;
887
+ success: string;
888
+ warning: string;
889
+ };
890
+ status: {
891
+ caution: string;
892
+ danger: string;
893
+ folder: string;
894
+ highlight: string;
895
+ good: string;
896
+ neutral: string;
897
+ };
898
+ transparent: string;
899
+ input: {
900
+ border: {
901
+ default: string;
902
+ };
903
+ };
904
+ };
905
+ styles: {
906
+ generic: {
907
+ transparent: {};
908
+ };
909
+ form: {
910
+ input: {
911
+ default: {
912
+ normal: {
913
+ backgroundColor: string;
914
+ borderColor: string;
915
+ border: string;
916
+ };
917
+ focused: {
918
+ boxShadow: string;
919
+ backgroundColor: string;
920
+ borderColor: string;
921
+ border: string;
922
+ };
923
+ };
924
+ disabled: {
925
+ normal: {
926
+ backgroundColor: string;
927
+ borderColor: string;
928
+ border: string;
929
+ };
930
+ };
931
+ subdivision: {
932
+ backgroundColor: string;
933
+ };
934
+ required: {
935
+ focused: {
936
+ boxShadow: string;
937
+ backgroundColor: string;
938
+ borderColor: string;
939
+ border: string;
940
+ };
941
+ normal: {
942
+ borderColor: string;
943
+ border: string;
944
+ };
945
+ };
946
+ valid: {
947
+ focused: {
948
+ boxShadow: string;
949
+ backgroundColor: string;
950
+ borderColor: string;
951
+ border: string;
952
+ };
953
+ normal: {
954
+ borderColor: string;
955
+ border: string;
956
+ };
957
+ };
958
+ invalid: {
959
+ focused: {
960
+ boxShadow: string;
961
+ backgroundColor: string;
962
+ borderColor: string;
963
+ border: string;
964
+ };
965
+ normal: {
966
+ borderColor: string;
967
+ border: string;
968
+ };
969
+ };
970
+ processing: {
971
+ focused: {
972
+ boxShadow: string;
973
+ backgroundColor: string;
974
+ borderColor: string;
975
+ border: string;
976
+ };
977
+ normal: {
978
+ backgroundColor: string;
979
+ borderColor: string;
980
+ border: string;
981
+ };
982
+ };
983
+ seperatedValues: {
984
+ background: {
985
+ backgroundColor: string;
986
+ backgroundImage: string;
987
+ };
988
+ hoverHighlight: {
989
+ backgroundColor: string;
990
+ };
991
+ };
992
+ };
993
+ button: {
994
+ primary: {
995
+ default: {
996
+ backgroundColor: string;
997
+ backgroundImage: string;
998
+ };
999
+ hover: {
1000
+ backgroundColor: string;
1001
+ };
1002
+ active: {
1003
+ backgroundColor: string;
1004
+ };
1005
+ divider: {
1006
+ backgroundColor: string;
1007
+ };
1008
+ disabled: {
1009
+ backgroundColor: string;
1010
+ backgroundImage: string;
1011
+ };
1012
+ actionArea: {
1013
+ backgroundColor: string;
1014
+ backgroundImage: string;
1015
+ };
1016
+ };
1017
+ secondary: {
1018
+ default: {
1019
+ backgroundColor: string;
1020
+ };
1021
+ hover: {
1022
+ backgroundColor: string;
1023
+ };
1024
+ active: {
1025
+ backgroundColor: string;
1026
+ };
1027
+ disabled: {
1028
+ backgroundColor: string;
1029
+ };
1030
+ divider: {
1031
+ backgroundColor: string;
1032
+ };
1033
+ actionArea: {
1034
+ backgroundColor: string;
1035
+ };
1036
+ };
1037
+ danger: {
1038
+ default: {
1039
+ backgroundColor: string;
1040
+ backgroundImage: string;
1041
+ };
1042
+ hover: {
1043
+ backgroundColor: string;
1044
+ };
1045
+ active: {
1046
+ backgroundColor: string;
1047
+ };
1048
+ disabled: {
1049
+ backgroundColor: string;
1050
+ };
1051
+ divider: {
1052
+ backgroundColor: string;
1053
+ };
1054
+ actionArea: {
1055
+ backgroundColor: string;
1056
+ backgroundImage: string;
1057
+ };
1058
+ };
1059
+ };
1060
+ switch: {
1061
+ off: {
1062
+ default: {
1063
+ outer: {
1064
+ backgroundColor: string;
1065
+ backgroundImage: string;
1066
+ borderColor: string;
1067
+ border: string;
1068
+ };
1069
+ inner: {
1070
+ backgroundColor: string;
1071
+ backgroundImage: string;
1072
+ };
1073
+ };
1074
+ disabled: {
1075
+ outer: {
1076
+ backgroundColor: string;
1077
+ backgroundImage: string;
1078
+ borderColor: string;
1079
+ border: string;
1080
+ };
1081
+ inner: {
1082
+ backgroundColor: string;
1083
+ };
1084
+ };
1085
+ loading: {
1086
+ outer: {
1087
+ backgroundColor: string;
1088
+ backgroundImage: string;
1089
+ borderColor: string;
1090
+ border: string;
1091
+ };
1092
+ };
1093
+ };
1094
+ on: {
1095
+ default: {
1096
+ outer: {
1097
+ backgroundColor: string;
1098
+ backgroundImage: string;
1099
+ borderColor: string;
1100
+ border: string;
1101
+ };
1102
+ inner: {
1103
+ backgroundColor: string;
1104
+ };
1105
+ };
1106
+ disabled: {
1107
+ outer: {
1108
+ backgroundColor: string;
1109
+ backgroundImage: string;
1110
+ borderColor: string;
1111
+ border: string;
1112
+ };
1113
+ inner: {
1114
+ backgroundColor: string;
1115
+ };
1116
+ };
1117
+ loading: {
1118
+ outer: {
1119
+ backgroundColor: string;
1120
+ backgroundImage: string;
1121
+ borderColor: string;
1122
+ border: string;
1123
+ };
1124
+ };
1125
+ };
1126
+ failure: {
1127
+ default: {
1128
+ outer: {
1129
+ backgroundColor: string;
1130
+ backgroundImage: string;
1131
+ borderColor: string;
1132
+ border: string;
1133
+ };
1134
+ inner: {
1135
+ backgroundColor: string;
1136
+ };
1137
+ };
1138
+ loading: {
1139
+ outer: {
1140
+ backgroundColor: string;
1141
+ backgroundImage: string;
1142
+ borderColor: string;
1143
+ border: string;
1144
+ };
1145
+ inner: {
1146
+ backgroundColor: string;
1147
+ };
1148
+ };
1149
+ };
1150
+ danger: {
1151
+ default: {
1152
+ outer: {
1153
+ backgroundColor: string;
1154
+ backgroundImage: string;
1155
+ borderColor: string;
1156
+ border: string;
1157
+ };
1158
+ inner: {
1159
+ backgroundColor: string;
1160
+ };
1161
+ };
1162
+ loading: {
1163
+ outer: {
1164
+ backgroundColor: string;
1165
+ backgroundImage: string;
1166
+ borderColor: string;
1167
+ border: string;
1168
+ };
1169
+ };
1170
+ disabled: {
1171
+ outer: {
1172
+ backgroundColor: string;
1173
+ backgroundImage: string;
1174
+ borderColor: string;
1175
+ border: string;
1176
+ };
1177
+ inner: {
1178
+ backgroundColor: string;
1179
+ };
1180
+ };
1181
+ };
1182
+ locked: {
1183
+ default: {
1184
+ outer: {
1185
+ backgroundColor: string;
1186
+ backgroundImage: string;
1187
+ borderColor: string;
1188
+ border: string;
1189
+ };
1190
+ inner: {
1191
+ backgroundColor: string;
1192
+ };
1193
+ };
1194
+ };
1195
+ };
1196
+ checkbox: {
1197
+ unchecked: {
1198
+ disabled: {
1199
+ backgroundColor: string;
1200
+ borderColor: string;
1201
+ border: string;
1202
+ };
1203
+ default: {
1204
+ borderColor: string;
1205
+ border: string;
1206
+ };
1207
+ hover: {
1208
+ borderColor: string;
1209
+ border: string;
1210
+ };
1211
+ };
1212
+ checked: {
1213
+ disabled: {
1214
+ boxShadow: string;
1215
+ backgroundColor: string;
1216
+ };
1217
+ default: {
1218
+ boxShadow: string;
1219
+ backgroundColor: string;
1220
+ };
1221
+ hover: {
1222
+ boxShadow: string;
1223
+ backgroundColor: string;
1224
+ };
1225
+ };
1226
+ indeterminate: {
1227
+ hover: {
1228
+ boxShadow: string;
1229
+ backgroundColor: string;
1230
+ };
1231
+ default: {
1232
+ boxShadow: string;
1233
+ backgroundColor: string;
1234
+ };
1235
+ };
1236
+ };
1237
+ };
1238
+ global: {
1239
+ mainMenu: {
1240
+ iconBackground: {
1241
+ active: {
1242
+ backgroundColor: string;
1243
+ };
1244
+ hover: {
1245
+ backgroundColor: string;
1246
+ };
1247
+ default: {
1248
+ backgroundColor: string;
1249
+ };
1250
+ };
1251
+ background: {
1252
+ boxShadow: string;
1253
+ backgroundColor: string;
1254
+ };
1255
+ lines: {
1256
+ backgroundColor: string;
1257
+ };
1258
+ footerBackground: {
1259
+ backgroundColor: string;
1260
+ };
1261
+ };
1262
+ background: {
1263
+ backgroundColor: string;
1264
+ backgroundImage: string;
1265
+ };
1266
+ drawer: {
1267
+ background: {
1268
+ boxShadow: string;
1269
+ backgroundColor: string;
1270
+ };
1271
+ };
1272
+ topBar: {
1273
+ lines: {
1274
+ backgroundColor: string;
1275
+ };
1276
+ };
1277
+ };
1278
+ indicators: {
1279
+ spinner: {
1280
+ danger: {
1281
+ base: {
1282
+ borderColor: string;
1283
+ border: string;
1284
+ };
1285
+ top: {
1286
+ borderColor: string;
1287
+ border: string;
1288
+ };
1289
+ };
1290
+ secondary: {
1291
+ top: {
1292
+ borderColor: string;
1293
+ border: string;
1294
+ };
1295
+ base: {
1296
+ borderColor: string;
1297
+ border: string;
1298
+ };
1299
+ };
1300
+ primary: {
1301
+ top: {
1302
+ borderColor: string;
1303
+ border: string;
1304
+ };
1305
+ base: {
1306
+ borderColor: string;
1307
+ border: string;
1308
+ };
1309
+ };
1310
+ simple: {
1311
+ top: {
1312
+ borderColor: string;
1313
+ border: string;
1314
+ };
1315
+ base: {
1316
+ borderColor: string;
1317
+ border: string;
1318
+ };
1319
+ };
1320
+ };
1321
+ };
1322
+ filters: {
1323
+ dropdownContainer: {
1324
+ background: {
1325
+ boxShadow: string;
1326
+ backgroundColor: string;
1327
+ borderColor: string;
1328
+ border: string;
1329
+ };
1330
+ topBorder: {
1331
+ backgroundColor: string;
1332
+ };
1333
+ };
1334
+ filterButton: {
1335
+ default: {
1336
+ boxShadow: string;
1337
+ backgroundColor: string;
1338
+ borderColor: string;
1339
+ border: string;
1340
+ textColor: string;
1341
+ };
1342
+ active: {
1343
+ boxShadow: string;
1344
+ backgroundColor: string;
1345
+ borderColor: string;
1346
+ border: string;
1347
+ textColor: string;
1348
+ };
1349
+ hover: {
1350
+ boxShadow: string;
1351
+ backgroundColor: string;
1352
+ borderColor: string;
1353
+ border: string;
1354
+ textColor: string;
1355
+ };
1356
+ };
1357
+ searchInput: {
1358
+ default: {
1359
+ boxShadow: string;
1360
+ backgroundColor: string;
1361
+ borderColor: string;
1362
+ border: string;
1363
+ };
1364
+ focused: {
1365
+ boxShadow: string;
1366
+ backgroundColor: string;
1367
+ borderColor: string;
1368
+ border: string;
1369
+ };
1370
+ };
1371
+ };
1372
+ tables: {
1373
+ loadingOverlay: {
1374
+ backgroundColor: string;
1375
+ backgroundImage: string;
1376
+ };
1377
+ rows: {
1378
+ divider: {
1379
+ backgroundColor: string;
1380
+ };
1381
+ };
1382
+ header: {
1383
+ groupLine: {
1384
+ backgroundColor: string;
1385
+ };
1386
+ divider: {
1387
+ backgroundColor: string;
1388
+ };
1389
+ sortable: {
1390
+ hover: {
1391
+ backgroundColor: string;
1392
+ };
1393
+ default: {
1394
+ backgroundColor: string;
1395
+ };
1396
+ };
1397
+ };
1398
+ };
1399
+ general: {
1400
+ divider: {
1401
+ backgroundColor: string;
1402
+ };
1403
+ };
1404
+ feedbackBar: {
1405
+ neutral: {
1406
+ backgroundColor: string;
1407
+ };
1408
+ error: {
1409
+ backgroundColor: string;
1410
+ };
1411
+ info: {
1412
+ backgroundColor: string;
1413
+ };
1414
+ success: {
1415
+ backgroundColor: string;
1416
+ };
1417
+ warning: {
1418
+ backgroundColor: string;
1419
+ };
1420
+ };
1421
+ filterButton: {
1422
+ active: {
1423
+ boxShadow: string;
1424
+ backgroundColor: string;
1425
+ borderColor: string;
1426
+ border: string;
1427
+ };
1428
+ };
1429
+ modal: {
1430
+ overlay: {
1431
+ backgroundColor: string;
1432
+ };
1433
+ container: {
1434
+ boxShadow: string;
1435
+ backgroundColor: string;
1436
+ borderColor: string;
1437
+ border: string;
1438
+ };
1439
+ };
1440
+ };
1441
+ animation: {
1442
+ easing: {
1443
+ primary: {
1444
+ inOut: string;
1445
+ out: string;
1446
+ in: string;
1447
+ };
1448
+ };
1449
+ speed: {
1450
+ faster: string;
1451
+ fast: string;
1452
+ normal: string;
1453
+ slow: string;
1454
+ slower: string;
1455
+ slowest: string;
1456
+ };
1457
+ };
1458
+ custom: {
1459
+ lines: {
1460
+ primary: {
1461
+ label: {
1462
+ fill: string;
1463
+ };
1464
+ contrastLine: {
1465
+ stroke: string;
1466
+ };
1467
+ highlightLine: {
1468
+ stroke: string;
1469
+ };
1470
+ grabHandle: {
1471
+ fill: string;
1472
+ stroke: string;
1473
+ };
1474
+ point: {
1475
+ fill: string;
1476
+ };
1477
+ grabHandleContrast: {
1478
+ stroke: string;
1479
+ };
1480
+ grabHandleText: {
1481
+ fill: string;
1482
+ };
1483
+ handleBase: {
1484
+ fill: string;
1485
+ };
1486
+ handleRingLayer: {
1487
+ stroke: string;
1488
+ };
1489
+ handleReactiveFill: {
1490
+ fill: string;
1491
+ };
1492
+ handleReactiveRing: {
1493
+ stroke: string;
1494
+ };
1495
+ handleContrastLayer: {
1496
+ stroke: string;
1497
+ };
1498
+ stopStart: {
1499
+ stopColor: string;
1500
+ };
1501
+ stopEnd: {
1502
+ stopColor: string;
1503
+ };
1504
+ };
1505
+ secondary: {
1506
+ label: {
1507
+ fill: string;
1508
+ };
1509
+ contrastLine: {
1510
+ stroke: string;
1511
+ };
1512
+ highlightLine: {
1513
+ stroke: string;
1514
+ };
1515
+ grabHandle: {
1516
+ fill: string;
1517
+ stroke: string;
1518
+ };
1519
+ point: {
1520
+ fill: string;
1521
+ };
1522
+ grabHandleContrast: {
1523
+ stroke: string;
1524
+ };
1525
+ grabHandleText: {
1526
+ fill: string;
1527
+ };
1528
+ handleBase: {
1529
+ fill: string;
1530
+ };
1531
+ handleRingLayer: {
1532
+ stroke: string;
1533
+ };
1534
+ handleReactiveFill: {
1535
+ fill: string;
1536
+ };
1537
+ handleReactiveRing: {
1538
+ stroke: string;
1539
+ };
1540
+ handleContrastLayer: {
1541
+ stroke: string;
1542
+ };
1543
+ stopStart: {
1544
+ stopColor: string;
1545
+ };
1546
+ stopEnd: {
1547
+ stopColor: string;
1548
+ };
1549
+ };
1550
+ danger: {
1551
+ label: {
1552
+ fill: string;
1553
+ };
1554
+ contrastLine: {
1555
+ stroke: string;
1556
+ };
1557
+ highlightLine: {
1558
+ stroke: string;
1559
+ };
1560
+ grabHandle: {
1561
+ fill: string;
1562
+ stroke: string;
1563
+ };
1564
+ point: {
1565
+ fill: string;
1566
+ };
1567
+ grabHandleText: {
1568
+ fill: string;
1569
+ };
1570
+ grabHandleContrast: {
1571
+ stroke: string;
1572
+ };
1573
+ handleBase: {
1574
+ fill: string;
1575
+ };
1576
+ handleRingLayer: {
1577
+ stroke: string;
1578
+ };
1579
+ handleReactiveFill: {
1580
+ fill: string;
1581
+ };
1582
+ handleReactiveRing: {
1583
+ stroke: string;
1584
+ };
1585
+ handleContrastLayer: {
1586
+ stroke: string;
1587
+ };
1588
+ stopStart: {
1589
+ stopColor: string;
1590
+ };
1591
+ stopEnd: {
1592
+ stopColor: string;
1593
+ };
1594
+ };
1595
+ };
1596
+ };
1597
+ deviceSize: {
1598
+ small: number;
1599
+ medium: number;
1600
+ large: number;
1601
+ xlarge: number;
1602
+ xxlarge: number;
1603
+ };
1604
+ deviceMediaQuery: {
1605
+ small: string;
1606
+ medium: string;
1607
+ large: string;
1608
+ xlarge: string;
1609
+ xxlarge: string;
1610
+ };
1611
+ };
1612
+ export default _default;