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,1051 @@
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
+ form: {
72
+ label: {
73
+ default: {
74
+ textAlign: string;
75
+ fontSize: string;
76
+ fontWeight: number;
77
+ textDecoration: string;
78
+ color: string;
79
+ };
80
+ };
81
+ input: {
82
+ label: {
83
+ textAlign: string;
84
+ fontSize: string;
85
+ fontWeight: number;
86
+ textDecoration: string;
87
+ color: string;
88
+ };
89
+ placeholder: {
90
+ normal: {
91
+ textAlign: string;
92
+ fontStyle: string;
93
+ fontSize: string;
94
+ fontWeight: number;
95
+ textDecoration: string;
96
+ color: string;
97
+ };
98
+ };
99
+ value: {
100
+ normal: {
101
+ textAlign: string;
102
+ fontSize: string;
103
+ fontWeight: number;
104
+ lineHeight: string;
105
+ textDecoration: string;
106
+ color: string;
107
+ };
108
+ };
109
+ };
110
+ button: {
111
+ secondary: {
112
+ normal: {
113
+ textAlign: string;
114
+ fontSize: string;
115
+ fontWeight: number;
116
+ textDecoration: string;
117
+ color: string;
118
+ };
119
+ large: {
120
+ textAlign: string;
121
+ fontSize: string;
122
+ fontWeight: number;
123
+ textDecoration: string;
124
+ color: string;
125
+ };
126
+ small: {
127
+ textAlign: string;
128
+ fontSize: string;
129
+ fontWeight: number;
130
+ textDecoration: string;
131
+ color: string;
132
+ };
133
+ xsmall: {
134
+ textAlign: string;
135
+ fontSize: string;
136
+ fontWeight: number;
137
+ textDecoration: string;
138
+ color: string;
139
+ };
140
+ };
141
+ };
142
+ };
143
+ global: {
144
+ mainMenu: {
145
+ subItem: {
146
+ default: {
147
+ textAlign: string;
148
+ fontSize: string;
149
+ fontWeight: number;
150
+ textDecoration: string;
151
+ color: string;
152
+ };
153
+ hover: {
154
+ textAlign: string;
155
+ fontSize: string;
156
+ fontWeight: number;
157
+ textDecoration: string;
158
+ color: string;
159
+ };
160
+ };
161
+ subheader: {
162
+ textAlign: string;
163
+ fontSize: string;
164
+ fontWeight: number;
165
+ textTransform: string;
166
+ letterSpacing: string;
167
+ textDecoration: string;
168
+ color: string;
169
+ };
170
+ identity: {
171
+ textAlign: string;
172
+ fontSize: string;
173
+ fontWeight: number;
174
+ textDecoration: string;
175
+ color: string;
176
+ };
177
+ menuItem: {
178
+ active: {
179
+ textAlign: string;
180
+ fontSize: string;
181
+ fontWeight: number;
182
+ textDecoration: string;
183
+ color: string;
184
+ };
185
+ default: {
186
+ textAlign: string;
187
+ fontSize: string;
188
+ fontWeight: number;
189
+ textDecoration: string;
190
+ color: string;
191
+ };
192
+ hover: {
193
+ textAlign: string;
194
+ fontSize: string;
195
+ fontWeight: number;
196
+ textDecoration: string;
197
+ color: string;
198
+ };
199
+ };
200
+ hidePrompt: {
201
+ textAlign: string;
202
+ fontSize: string;
203
+ fontWeight: number;
204
+ textDecoration: string;
205
+ color: string;
206
+ };
207
+ "sub-MenuItem": {
208
+ default: {
209
+ textAlign: string;
210
+ fontSize: string;
211
+ fontWeight: number;
212
+ textDecoration: string;
213
+ color: string;
214
+ };
215
+ active: {
216
+ textAlign: string;
217
+ fontSize: string;
218
+ fontWeight: number;
219
+ textDecoration: string;
220
+ color: string;
221
+ };
222
+ hover: {
223
+ textAlign: string;
224
+ fontSize: string;
225
+ fontWeight: number;
226
+ textDecoration: string;
227
+ color: string;
228
+ };
229
+ };
230
+ };
231
+ topBar: {
232
+ search: {
233
+ value: {
234
+ textAlign: string;
235
+ fontSize: string;
236
+ fontWeight: number;
237
+ textDecoration: string;
238
+ color: string;
239
+ };
240
+ };
241
+ };
242
+ };
243
+ pageHeader: {
244
+ introduction: {
245
+ textAlign: string;
246
+ fontSize: string;
247
+ fontWeight: number;
248
+ lineHeight: string;
249
+ textDecoration: string;
250
+ color: string;
251
+ };
252
+ mainTitle: {
253
+ textAlign: string;
254
+ fontSize: string;
255
+ fontWeight: number;
256
+ textDecoration: string;
257
+ color: string;
258
+ };
259
+ areaTitle: {
260
+ textAlign: string;
261
+ fontSize: string;
262
+ fontWeight: number;
263
+ textDecoration: string;
264
+ color: string;
265
+ };
266
+ };
267
+ styleGuide: {
268
+ guideTitle: {
269
+ textAlign: string;
270
+ fontSize: string;
271
+ fontWeight: number;
272
+ textDecoration: string;
273
+ color: string;
274
+ textTransform: string;
275
+ letterSpacing: string;
276
+ };
277
+ guideNotes: {
278
+ textAlign: string;
279
+ fontStyle: string;
280
+ fontSize: string;
281
+ fontWeight: number;
282
+ lineHeight: string;
283
+ paragraphSpacing: string;
284
+ textDecoration: string;
285
+ color: string;
286
+ };
287
+ itemName: {
288
+ textAlign: string;
289
+ fontSize: string;
290
+ fontWeight: number;
291
+ textDecoration: string;
292
+ color: string;
293
+ };
294
+ guideAreaSubtitle: {
295
+ textAlign: string;
296
+ fontSize: string;
297
+ fontWeight: number;
298
+ textTransform: string;
299
+ textDecoration: string;
300
+ color: string;
301
+ };
302
+ guideAreaTitle: {
303
+ textAlign: string;
304
+ fontSize: string;
305
+ fontWeight: number;
306
+ textTransform: string;
307
+ textDecoration: string;
308
+ color: string;
309
+ };
310
+ };
311
+ active: {
312
+ textAlign: string;
313
+ fontSize: string;
314
+ fontWeight: number;
315
+ textDecoration: string;
316
+ color: string;
317
+ };
318
+ filters: {
319
+ filterButton: {
320
+ default: {
321
+ textAlign: string;
322
+ fontSize: string;
323
+ fontWeight: number;
324
+ textDecoration: string;
325
+ color: string;
326
+ };
327
+ active: {
328
+ textAlign: string;
329
+ fontSize: string;
330
+ fontWeight: number;
331
+ textDecoration: string;
332
+ color: string;
333
+ };
334
+ hover: {
335
+ textAlign: string;
336
+ fontSize: string;
337
+ fontWeight: number;
338
+ textDecoration: string;
339
+ color: string;
340
+ };
341
+ };
342
+ searchInput: {
343
+ placeholder: {
344
+ textAlign: string;
345
+ fontStyle: string;
346
+ fontSize: string;
347
+ fontWeight: number;
348
+ textDecoration: string;
349
+ color: string;
350
+ };
351
+ value: {
352
+ textAlign: string;
353
+ fontSize: string;
354
+ fontWeight: number;
355
+ textDecoration: string;
356
+ color: string;
357
+ };
358
+ };
359
+ };
360
+ table: {
361
+ columnData: {
362
+ firstColumn: {
363
+ textAlign: string;
364
+ fontSize: string;
365
+ fontWeight: number;
366
+ textDecoration: string;
367
+ color: string;
368
+ };
369
+ lowImportance: {
370
+ left: {
371
+ textAlign: string;
372
+ fontStyle: string;
373
+ fontSize: string;
374
+ fontWeight: number;
375
+ textDecoration: string;
376
+ color: string;
377
+ };
378
+ center: {
379
+ textAlign: string;
380
+ fontStyle: string;
381
+ fontSize: string;
382
+ fontWeight: number;
383
+ textDecoration: string;
384
+ color: string;
385
+ };
386
+ right: {
387
+ textAlign: string;
388
+ fontStyle: string;
389
+ fontSize: string;
390
+ fontWeight: number;
391
+ textDecoration: string;
392
+ color: string;
393
+ };
394
+ };
395
+ highImportance: {
396
+ left: {
397
+ textAlign: string;
398
+ fontSize: string;
399
+ fontWeight: number;
400
+ textDecoration: string;
401
+ color: string;
402
+ };
403
+ right: {
404
+ textAlign: string;
405
+ fontSize: string;
406
+ fontWeight: number;
407
+ textDecoration: string;
408
+ color: string;
409
+ };
410
+ center: {
411
+ textAlign: string;
412
+ fontSize: string;
413
+ fontWeight: number;
414
+ textDecoration: string;
415
+ color: string;
416
+ };
417
+ };
418
+ normalImportance: {
419
+ right: {
420
+ textAlign: string;
421
+ fontSize: string;
422
+ fontWeight: number;
423
+ textDecoration: string;
424
+ color: string;
425
+ };
426
+ center: {
427
+ textAlign: string;
428
+ fontSize: string;
429
+ fontWeight: number;
430
+ textDecoration: string;
431
+ color: string;
432
+ };
433
+ left: {
434
+ textAlign: string;
435
+ fontSize: string;
436
+ fontWeight: number;
437
+ textDecoration: string;
438
+ color: string;
439
+ };
440
+ };
441
+ unit: {
442
+ textAlign: string;
443
+ fontStyle: string;
444
+ fontSize: string;
445
+ fontWeight: number;
446
+ textDecoration: string;
447
+ color: string;
448
+ };
449
+ };
450
+ header: {
451
+ right: {
452
+ textAlign: string;
453
+ fontSize: string;
454
+ fontWeight: number;
455
+ letterSpacing: string;
456
+ textDecoration: string;
457
+ color: string;
458
+ };
459
+ left: {
460
+ textAlign: string;
461
+ fontSize: string;
462
+ fontWeight: number;
463
+ letterSpacing: string;
464
+ textDecoration: string;
465
+ color: string;
466
+ };
467
+ center: {
468
+ textAlign: string;
469
+ fontSize: string;
470
+ fontWeight: number;
471
+ letterSpacing: string;
472
+ textDecoration: string;
473
+ color: string;
474
+ };
475
+ };
476
+ subHeader: {
477
+ right: {
478
+ textAlign: string;
479
+ fontSize: string;
480
+ fontWeight: number;
481
+ letterSpacing: string;
482
+ textDecoration: string;
483
+ color: string;
484
+ };
485
+ left: {
486
+ textAlign: string;
487
+ fontSize: string;
488
+ fontWeight: number;
489
+ letterSpacing: string;
490
+ textDecoration: string;
491
+ color: string;
492
+ };
493
+ center: {
494
+ textAlign: string;
495
+ fontSize: string;
496
+ fontWeight: number;
497
+ letterSpacing: string;
498
+ textDecoration: string;
499
+ color: string;
500
+ };
501
+ };
502
+ };
503
+ tables: {
504
+ groupName: {
505
+ textAlign: string;
506
+ fontSize: string;
507
+ fontWeight: number;
508
+ letterSpacing: string;
509
+ textDecoration: string;
510
+ color: string;
511
+ };
512
+ };
513
+ meta: {
514
+ tagList: {
515
+ item: {
516
+ normal: {
517
+ textAlign: string;
518
+ fontSize: string;
519
+ fontWeight: number;
520
+ textDecoration: string;
521
+ color: string;
522
+ };
523
+ };
524
+ };
525
+ };
526
+ searchBar: {
527
+ placeholder: {
528
+ textAlign: string;
529
+ fontStyle: string;
530
+ fontSize: string;
531
+ fontWeight: number;
532
+ textDecoration: string;
533
+ color: string;
534
+ };
535
+ };
536
+ modal: {
537
+ basicContent: {
538
+ textAlign: string;
539
+ fontSize: string;
540
+ fontWeight: number;
541
+ lineHeight: string;
542
+ textDecoration: string;
543
+ color: string;
544
+ };
545
+ title: {
546
+ textAlign: string;
547
+ fontSize: string;
548
+ fontWeight: number;
549
+ textShadow: string;
550
+ textDecoration: string;
551
+ color: string;
552
+ };
553
+ };
554
+ };
555
+ colors: {
556
+ divider: string;
557
+ menu: {
558
+ active: string;
559
+ hover: string;
560
+ default: string;
561
+ };
562
+ icons: {
563
+ subtle: string;
564
+ dimmed: string;
565
+ inverse: string;
566
+ mono: string;
567
+ danger: string;
568
+ primary: string;
569
+ };
570
+ status: {
571
+ good: string;
572
+ };
573
+ input: {
574
+ border: {
575
+ default: string;
576
+ };
577
+ };
578
+ };
579
+ styles: {
580
+ global: {
581
+ mainMenu: {
582
+ background: {
583
+ boxShadow: string;
584
+ backgroundColor: string;
585
+ };
586
+ footerBackground: {
587
+ backgroundColor: string;
588
+ };
589
+ lines: {
590
+ backgroundColor: string;
591
+ };
592
+ iconBackground: {
593
+ default: {
594
+ backgroundColor: string;
595
+ };
596
+ hover: {
597
+ backgroundColor: string;
598
+ };
599
+ active: {
600
+ backgroundColor: string;
601
+ };
602
+ };
603
+ desktop: {
604
+ open: {};
605
+ };
606
+ };
607
+ drawer: {
608
+ background: {
609
+ boxShadow: string;
610
+ backgroundColor: string;
611
+ };
612
+ };
613
+ topBar: {
614
+ lines: {
615
+ backgroundColor: string;
616
+ };
617
+ };
618
+ background: {
619
+ backgroundColor: string;
620
+ backgroundImage: string;
621
+ };
622
+ };
623
+ general: {
624
+ divider: {
625
+ backgroundColor: string;
626
+ };
627
+ };
628
+ tables: {
629
+ loadingOverlay: {
630
+ backgroundColor: string;
631
+ backgroundImage: string;
632
+ };
633
+ rows: {
634
+ divider: {
635
+ backgroundColor: string;
636
+ };
637
+ };
638
+ header: {
639
+ groupLine: {
640
+ backgroundColor: string;
641
+ };
642
+ divider: {
643
+ backgroundColor: string;
644
+ };
645
+ sortable: {
646
+ default: {
647
+ backgroundColor: string;
648
+ };
649
+ hover: {
650
+ backgroundColor: string;
651
+ };
652
+ };
653
+ };
654
+ };
655
+ filters: {
656
+ filterButton: {
657
+ hover: {
658
+ boxShadow: string;
659
+ backgroundColor: string;
660
+ borderColor: string;
661
+ border: string;
662
+ textColor: string;
663
+ };
664
+ default: {
665
+ boxShadow: string;
666
+ backgroundColor: string;
667
+ borderColor: string;
668
+ border: string;
669
+ textColor: string;
670
+ };
671
+ active: {
672
+ boxShadow: string;
673
+ backgroundColor: string;
674
+ borderColor: string;
675
+ border: string;
676
+ textColor: string;
677
+ };
678
+ };
679
+ searchInput: {
680
+ default: {
681
+ boxShadow: string;
682
+ backgroundColor: string;
683
+ borderColor: string;
684
+ border: string;
685
+ };
686
+ focused: {
687
+ boxShadow: string;
688
+ backgroundColor: string;
689
+ borderColor: string;
690
+ border: string;
691
+ };
692
+ };
693
+ dropdownContainer: {
694
+ topBorder: {
695
+ backgroundColor: string;
696
+ };
697
+ background: {
698
+ boxShadow: string;
699
+ backgroundColor: string;
700
+ borderColor: string;
701
+ border: string;
702
+ };
703
+ };
704
+ };
705
+ form: {
706
+ checkbox: {
707
+ unchecked: {
708
+ disabled: {
709
+ backgroundColor: string;
710
+ borderColor: string;
711
+ border: string;
712
+ };
713
+ default: {
714
+ borderColor: string;
715
+ border: string;
716
+ };
717
+ };
718
+ checked: {
719
+ default: {
720
+ boxShadow: string;
721
+ backgroundColor: string;
722
+ };
723
+ disabled: {
724
+ boxShadow: string;
725
+ backgroundColor: string;
726
+ };
727
+ };
728
+ };
729
+ button: {
730
+ secondary: {
731
+ hover: {
732
+ backgroundColor: string;
733
+ };
734
+ disabled: {
735
+ backgroundColor: string;
736
+ };
737
+ actionArea: {
738
+ backgroundColor: string;
739
+ };
740
+ default: {
741
+ backgroundColor: string;
742
+ };
743
+ divider: {
744
+ backgroundColor: string;
745
+ };
746
+ active: {
747
+ backgroundColor: string;
748
+ };
749
+ };
750
+ danger: {
751
+ disabled: {
752
+ backgroundColor: string;
753
+ };
754
+ divider: {
755
+ backgroundColor: string;
756
+ };
757
+ };
758
+ };
759
+ input: {
760
+ default: {
761
+ normal: {
762
+ backgroundColor: string;
763
+ borderColor: string;
764
+ border: string;
765
+ };
766
+ focused: {
767
+ backgroundColor: string;
768
+ borderColor: string;
769
+ border: string;
770
+ boxShadow: string;
771
+ };
772
+ };
773
+ required: {
774
+ normal: {
775
+ backgroundColor: string;
776
+ borderColor: string;
777
+ border: string;
778
+ };
779
+ focused: {
780
+ boxShadow: string;
781
+ backgroundColor: string;
782
+ borderColor: string;
783
+ border: string;
784
+ };
785
+ };
786
+ processing: {
787
+ focused: {
788
+ boxShadow: string;
789
+ backgroundColor: string;
790
+ borderColor: string;
791
+ border: string;
792
+ };
793
+ normal: {
794
+ backgroundColor: string;
795
+ borderColor: string;
796
+ border: string;
797
+ };
798
+ };
799
+ disabled: {
800
+ normal: {
801
+ backgroundColor: string;
802
+ borderColor: string;
803
+ border: string;
804
+ };
805
+ };
806
+ valid: {
807
+ normal: {
808
+ backgroundColor: string;
809
+ borderColor: string;
810
+ border: string;
811
+ };
812
+ focused: {
813
+ boxShadow: string;
814
+ backgroundColor: string;
815
+ borderColor: string;
816
+ border: string;
817
+ };
818
+ };
819
+ invalid: {
820
+ normal: {
821
+ backgroundColor: string;
822
+ borderColor: string;
823
+ border: string;
824
+ };
825
+ focused: {
826
+ boxShadow: string;
827
+ backgroundColor: string;
828
+ borderColor: string;
829
+ border: string;
830
+ };
831
+ };
832
+ };
833
+ };
834
+ indicators: {
835
+ spinner: {
836
+ secondary: {
837
+ top: {
838
+ borderColor: string;
839
+ border: string;
840
+ };
841
+ base: {
842
+ borderColor: string;
843
+ border: string;
844
+ };
845
+ };
846
+ simple: {
847
+ base: {
848
+ borderColor: string;
849
+ border: string;
850
+ };
851
+ top: {
852
+ borderColor: string;
853
+ border: string;
854
+ };
855
+ };
856
+ primary: {
857
+ base: {
858
+ borderColor: string;
859
+ border: string;
860
+ };
861
+ top: {
862
+ borderColor: string;
863
+ border: string;
864
+ };
865
+ };
866
+ };
867
+ };
868
+ modal: {
869
+ container: {
870
+ boxShadow: string;
871
+ backgroundColor: string;
872
+ borderColor: string;
873
+ border: string;
874
+ };
875
+ overlay: {
876
+ backgroundColor: string;
877
+ };
878
+ };
879
+ };
880
+ animation: {
881
+ easing: {
882
+ primary: {
883
+ inOut: string;
884
+ out: string;
885
+ in: string;
886
+ };
887
+ };
888
+ speed: {
889
+ faster: string;
890
+ fast: string;
891
+ normal: string;
892
+ slow: string;
893
+ slower: string;
894
+ slowest: string;
895
+ };
896
+ };
897
+ custom: {
898
+ lines: {
899
+ primary: {
900
+ label: {
901
+ fill: string;
902
+ };
903
+ contrastLine: {
904
+ stroke: string;
905
+ };
906
+ highlightLine: {
907
+ stroke: string;
908
+ };
909
+ grabHandle: {
910
+ fill: string;
911
+ stroke: string;
912
+ };
913
+ point: {
914
+ fill: string;
915
+ };
916
+ grabHandleContrast: {
917
+ stroke: string;
918
+ };
919
+ grabHandleText: {
920
+ fill: string;
921
+ };
922
+ handleBase: {
923
+ fill: string;
924
+ };
925
+ handleRingLayer: {
926
+ stroke: string;
927
+ };
928
+ handleReactiveFill: {
929
+ fill: string;
930
+ };
931
+ handleReactiveRing: {
932
+ stroke: string;
933
+ };
934
+ handleContrastLayer: {
935
+ stroke: string;
936
+ };
937
+ stopStart: {
938
+ stopColor: string;
939
+ };
940
+ stopEnd: {
941
+ stopColor: string;
942
+ };
943
+ };
944
+ secondary: {
945
+ label: {
946
+ fill: string;
947
+ };
948
+ contrastLine: {
949
+ stroke: string;
950
+ };
951
+ highlightLine: {
952
+ stroke: string;
953
+ };
954
+ grabHandle: {
955
+ fill: string;
956
+ stroke: string;
957
+ };
958
+ point: {
959
+ fill: string;
960
+ };
961
+ grabHandleContrast: {
962
+ stroke: string;
963
+ };
964
+ grabHandleText: {
965
+ fill: string;
966
+ };
967
+ handleBase: {
968
+ fill: string;
969
+ };
970
+ handleRingLayer: {
971
+ stroke: string;
972
+ };
973
+ handleReactiveFill: {
974
+ fill: string;
975
+ };
976
+ handleReactiveRing: {
977
+ stroke: string;
978
+ };
979
+ handleContrastLayer: {
980
+ stroke: string;
981
+ };
982
+ stopStart: {
983
+ stopColor: string;
984
+ };
985
+ stopEnd: {
986
+ stopColor: string;
987
+ };
988
+ };
989
+ danger: {
990
+ label: {
991
+ fill: string;
992
+ };
993
+ contrastLine: {
994
+ stroke: string;
995
+ };
996
+ highlightLine: {
997
+ stroke: string;
998
+ };
999
+ grabHandle: {
1000
+ fill: string;
1001
+ stroke: string;
1002
+ };
1003
+ point: {
1004
+ fill: string;
1005
+ };
1006
+ grabHandleText: {
1007
+ fill: string;
1008
+ };
1009
+ grabHandleContrast: {
1010
+ stroke: string;
1011
+ };
1012
+ handleBase: {
1013
+ fill: string;
1014
+ };
1015
+ handleRingLayer: {
1016
+ stroke: string;
1017
+ };
1018
+ handleReactiveFill: {
1019
+ fill: string;
1020
+ };
1021
+ handleReactiveRing: {
1022
+ stroke: string;
1023
+ };
1024
+ handleContrastLayer: {
1025
+ stroke: string;
1026
+ };
1027
+ stopStart: {
1028
+ stopColor: string;
1029
+ };
1030
+ stopEnd: {
1031
+ stopColor: string;
1032
+ };
1033
+ };
1034
+ };
1035
+ };
1036
+ deviceSize: {
1037
+ small: number;
1038
+ medium: number;
1039
+ large: number;
1040
+ xlarge: number;
1041
+ xxlarge: number;
1042
+ };
1043
+ deviceMediaQuery: {
1044
+ small: string;
1045
+ medium: string;
1046
+ large: string;
1047
+ xlarge: string;
1048
+ xxlarge: string;
1049
+ };
1050
+ };
1051
+ export default _default;