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,794 @@
1
+ export declare const typography: {
2
+ pageHeader: {
3
+ introduction: {
4
+ textAlign: string;
5
+ fontStyle: string;
6
+ fontSize: string;
7
+ fontWeight: number;
8
+ lineHeight: string;
9
+ textDecoration: string;
10
+ color: string;
11
+ };
12
+ areaTitle: {
13
+ textAlign: string;
14
+ fontSize: string;
15
+ fontWeight: number;
16
+ textDecoration: string;
17
+ color: string;
18
+ };
19
+ mainTitle: {
20
+ textAlign: string;
21
+ fontSize: string;
22
+ fontWeight: number;
23
+ textDecoration: string;
24
+ color: string;
25
+ };
26
+ };
27
+ form: {
28
+ label: {
29
+ meta: {
30
+ textAlign: string;
31
+ fontSize: string;
32
+ fontWeight: number;
33
+ textDecoration: string;
34
+ color: string;
35
+ };
36
+ default: {
37
+ textAlign: string;
38
+ fontSize: string;
39
+ fontWeight: number;
40
+ textDecoration: string;
41
+ color: string;
42
+ };
43
+ disabled: {
44
+ textAlign: string;
45
+ fontSize: string;
46
+ fontWeight: number;
47
+ textDecoration: string;
48
+ color: string;
49
+ };
50
+ failure: {
51
+ textAlign: string;
52
+ fontSize: string;
53
+ fontWeight: number;
54
+ textDecoration: string;
55
+ color: string;
56
+ };
57
+ "meta(Selected)": {
58
+ textAlign: string;
59
+ fontSize: string;
60
+ fontWeight: number;
61
+ textDecoration: string;
62
+ color: string;
63
+ };
64
+ };
65
+ tip: {
66
+ textAlign: string;
67
+ fontStyle: string;
68
+ fontSize: string;
69
+ fontWeight: number;
70
+ lineHeight: string;
71
+ textDecoration: string;
72
+ color: string;
73
+ };
74
+ button: {
75
+ secondary: {
76
+ normal: {
77
+ textAlign: string;
78
+ fontSize: string;
79
+ fontWeight: number;
80
+ textDecoration: string;
81
+ color: string;
82
+ };
83
+ large: {
84
+ textAlign: string;
85
+ fontSize: string;
86
+ fontWeight: number;
87
+ textDecoration: string;
88
+ color: string;
89
+ };
90
+ small: {
91
+ textAlign: string;
92
+ fontSize: string;
93
+ fontWeight: number;
94
+ textDecoration: string;
95
+ color: string;
96
+ };
97
+ xsmall: {
98
+ textAlign: string;
99
+ fontSize: string;
100
+ fontWeight: number;
101
+ textDecoration: string;
102
+ color: string;
103
+ };
104
+ };
105
+ primary: {
106
+ large: {
107
+ textAlign: string;
108
+ fontSize: string;
109
+ fontWeight: number;
110
+ textDecoration: string;
111
+ color: string;
112
+ };
113
+ normal: {
114
+ textAlign: string;
115
+ fontSize: string;
116
+ fontWeight: number;
117
+ textDecoration: string;
118
+ color: string;
119
+ };
120
+ small: {
121
+ textAlign: string;
122
+ fontSize: string;
123
+ fontWeight: number;
124
+ textDecoration: string;
125
+ color: string;
126
+ };
127
+ xsmall: {
128
+ textAlign: string;
129
+ fontSize: string;
130
+ fontWeight: number;
131
+ textDecoration: string;
132
+ color: string;
133
+ };
134
+ };
135
+ danger: {
136
+ large: {
137
+ textAlign: string;
138
+ fontSize: string;
139
+ fontWeight: number;
140
+ textDecoration: string;
141
+ color: string;
142
+ };
143
+ normal: {
144
+ textAlign: string;
145
+ fontSize: string;
146
+ fontWeight: number;
147
+ textDecoration: string;
148
+ color: string;
149
+ };
150
+ small: {
151
+ textAlign: string;
152
+ fontSize: string;
153
+ fontWeight: number;
154
+ textDecoration: string;
155
+ color: string;
156
+ };
157
+ xsmall: {
158
+ textAlign: string;
159
+ fontSize: string;
160
+ fontWeight: number;
161
+ textDecoration: string;
162
+ color: string;
163
+ };
164
+ };
165
+ };
166
+ input: {
167
+ label: {
168
+ textAlign: string;
169
+ fontSize: string;
170
+ fontWeight: number;
171
+ textDecoration: string;
172
+ color: string;
173
+ };
174
+ placeholder: {
175
+ normal: {
176
+ textAlign: string;
177
+ fontStyle: string;
178
+ fontSize: string;
179
+ fontWeight: number;
180
+ textDecoration: string;
181
+ color: string;
182
+ };
183
+ compact: {
184
+ textAlign: string;
185
+ fontStyle: string;
186
+ fontSize: string;
187
+ fontWeight: number;
188
+ lineHeight: string;
189
+ textDecoration: string;
190
+ color: string;
191
+ };
192
+ };
193
+ value: {
194
+ normal: {
195
+ textAlign: string;
196
+ fontSize: string;
197
+ fontWeight: number;
198
+ lineHeight: string;
199
+ textDecoration: string;
200
+ color: string;
201
+ };
202
+ compact: {
203
+ textAlign: string;
204
+ fontSize: string;
205
+ fontWeight: number;
206
+ lineHeight: string;
207
+ textDecoration: string;
208
+ color: string;
209
+ };
210
+ };
211
+ };
212
+ labelInformation: {
213
+ textAlign: string;
214
+ fontStyle: string;
215
+ fontSize: string;
216
+ fontWeight: number;
217
+ lineHeight: string;
218
+ textDecoration: string;
219
+ color: string;
220
+ };
221
+ select: {
222
+ option: {
223
+ textAlign: string;
224
+ fontSize: string;
225
+ fontWeight: number;
226
+ lineHeight: string;
227
+ textDecoration: string;
228
+ color: string;
229
+ };
230
+ selectedValue: {
231
+ textAlign: string;
232
+ fontSize: string;
233
+ fontWeight: number;
234
+ lineHeight: string;
235
+ textDecoration: string;
236
+ color: string;
237
+ };
238
+ "option(Hover)": {
239
+ textAlign: string;
240
+ fontSize: string;
241
+ fontWeight: number;
242
+ lineHeight: string;
243
+ textDecoration: string;
244
+ color: string;
245
+ };
246
+ };
247
+ feedback: {
248
+ message: {
249
+ textAlign: string;
250
+ fontStyle: string;
251
+ fontSize: string;
252
+ fontWeight: number;
253
+ lineHeight: string;
254
+ textDecoration: string;
255
+ color: string;
256
+ };
257
+ };
258
+ };
259
+ global: {
260
+ mainMenu: {
261
+ menuItem: {
262
+ default: {
263
+ textAlign: string;
264
+ fontSize: string;
265
+ fontWeight: number;
266
+ textDecoration: string;
267
+ color: string;
268
+ };
269
+ active: {
270
+ textAlign: string;
271
+ fontSize: string;
272
+ fontWeight: number;
273
+ textDecoration: string;
274
+ color: string;
275
+ };
276
+ hover: {
277
+ textAlign: string;
278
+ fontSize: string;
279
+ fontWeight: number;
280
+ textDecoration: string;
281
+ color: string;
282
+ };
283
+ };
284
+ subheader: {
285
+ textAlign: string;
286
+ fontSize: string;
287
+ fontWeight: number;
288
+ textTransform: string;
289
+ letterSpacing: string;
290
+ textDecoration: string;
291
+ color: string;
292
+ };
293
+ hidePrompt: {
294
+ textAlign: string;
295
+ fontSize: string;
296
+ fontWeight: number;
297
+ textDecoration: string;
298
+ color: string;
299
+ };
300
+ subItem: {
301
+ default: {
302
+ textAlign: string;
303
+ fontSize: string;
304
+ fontWeight: number;
305
+ textDecoration: string;
306
+ color: string;
307
+ };
308
+ active: {
309
+ textAlign: string;
310
+ fontSize: string;
311
+ fontWeight: number;
312
+ textDecoration: string;
313
+ color: string;
314
+ };
315
+ hover: {
316
+ textAlign: string;
317
+ fontSize: string;
318
+ fontWeight: number;
319
+ textDecoration: string;
320
+ color: string;
321
+ };
322
+ };
323
+ identity: {
324
+ textAlign: string;
325
+ fontSize: string;
326
+ fontWeight: number;
327
+ textDecoration: string;
328
+ color: string;
329
+ };
330
+ };
331
+ topBar: {
332
+ search: {
333
+ value: {
334
+ textAlign: string;
335
+ fontSize: string;
336
+ fontWeight: number;
337
+ textDecoration: string;
338
+ color: string;
339
+ };
340
+ placeholder: {
341
+ textAlign: string;
342
+ fontStyle: string;
343
+ fontSize: string;
344
+ fontWeight: number;
345
+ textDecoration: string;
346
+ color: string;
347
+ };
348
+ };
349
+ };
350
+ };
351
+ content: {
352
+ "section-H2": {
353
+ textAlign: string;
354
+ fontSize: string;
355
+ fontWeight: number;
356
+ textDecoration: string;
357
+ color: string;
358
+ };
359
+ sectionH3: {
360
+ textAlign: string;
361
+ fontSize: string;
362
+ fontWeight: number;
363
+ textDecoration: string;
364
+ color: string;
365
+ };
366
+ actionParagraph: {
367
+ textAlign: string;
368
+ fontSize: string;
369
+ fontWeight: number;
370
+ lineHeight: string;
371
+ textDecoration: string;
372
+ color: string;
373
+ };
374
+ hyperlink: {
375
+ hover: {
376
+ textAlign: string;
377
+ fontStyle: string;
378
+ fontSize: string;
379
+ fontWeight: number;
380
+ lineHeight: string;
381
+ textDecoration: string;
382
+ color: string;
383
+ };
384
+ base: {
385
+ textAlign: string;
386
+ fontStyle: string;
387
+ fontSize: string;
388
+ fontWeight: number;
389
+ lineHeight: string;
390
+ textDecoration: string;
391
+ color: string;
392
+ };
393
+ };
394
+ };
395
+ feedbackBar: {
396
+ message: {
397
+ textAlign: string;
398
+ fontSize: string;
399
+ fontWeight: number;
400
+ lineHeight: string;
401
+ letterSpacing: string;
402
+ textDecoration: string;
403
+ color: string;
404
+ };
405
+ };
406
+ searchBar: {
407
+ placeholder: {
408
+ textAlign: string;
409
+ fontStyle: string;
410
+ fontSize: string;
411
+ fontWeight: number;
412
+ textDecoration: string;
413
+ color: string;
414
+ };
415
+ value: {
416
+ textAlign: string;
417
+ fontSize: string;
418
+ fontWeight: number;
419
+ textDecoration: string;
420
+ color: string;
421
+ };
422
+ };
423
+ meta: {
424
+ tagList: {
425
+ emptyStates: {
426
+ normal: {
427
+ textAlign: string;
428
+ fontStyle: string;
429
+ fontSize: string;
430
+ fontWeight: number;
431
+ textDecoration: string;
432
+ color: string;
433
+ };
434
+ small: {
435
+ textAlign: string;
436
+ fontStyle: string;
437
+ fontSize: string;
438
+ fontWeight: number;
439
+ textDecoration: string;
440
+ color: string;
441
+ };
442
+ };
443
+ item: {
444
+ normal: {
445
+ textAlign: string;
446
+ fontSize: string;
447
+ fontWeight: number;
448
+ textDecoration: string;
449
+ color: string;
450
+ };
451
+ small: {
452
+ textAlign: string;
453
+ fontSize: string;
454
+ fontWeight: number;
455
+ textDecoration: string;
456
+ color: string;
457
+ };
458
+ };
459
+ };
460
+ };
461
+ table: {
462
+ columnData: {
463
+ normalImportance: {
464
+ right: {
465
+ textAlign: string;
466
+ fontSize: string;
467
+ fontWeight: number;
468
+ textDecoration: string;
469
+ color: string;
470
+ };
471
+ left: {
472
+ textAlign: string;
473
+ fontSize: string;
474
+ fontWeight: number;
475
+ textDecoration: string;
476
+ color: string;
477
+ };
478
+ center: {
479
+ textAlign: string;
480
+ fontSize: string;
481
+ fontWeight: number;
482
+ textDecoration: string;
483
+ color: string;
484
+ };
485
+ };
486
+ highImportance: {
487
+ right: {
488
+ textAlign: string;
489
+ fontSize: string;
490
+ fontWeight: number;
491
+ textDecoration: string;
492
+ color: string;
493
+ };
494
+ center: {
495
+ textAlign: string;
496
+ fontSize: string;
497
+ fontWeight: number;
498
+ textDecoration: string;
499
+ color: string;
500
+ };
501
+ left: {
502
+ textAlign: string;
503
+ fontSize: string;
504
+ fontWeight: number;
505
+ textDecoration: string;
506
+ color: string;
507
+ };
508
+ };
509
+ firstColumn: {
510
+ textAlign: string;
511
+ fontSize: string;
512
+ fontWeight: number;
513
+ textDecoration: string;
514
+ color: string;
515
+ };
516
+ lowImportance: {
517
+ right: {
518
+ textAlign: string;
519
+ fontStyle: string;
520
+ fontSize: string;
521
+ fontWeight: number;
522
+ textDecoration: string;
523
+ color: string;
524
+ };
525
+ center: {
526
+ textAlign: string;
527
+ fontStyle: string;
528
+ fontSize: string;
529
+ fontWeight: number;
530
+ textDecoration: string;
531
+ color: string;
532
+ };
533
+ left: {
534
+ textAlign: string;
535
+ fontStyle: string;
536
+ fontSize: string;
537
+ fontWeight: number;
538
+ textDecoration: string;
539
+ color: string;
540
+ };
541
+ };
542
+ unit: {
543
+ textAlign: string;
544
+ fontStyle: string;
545
+ fontSize: string;
546
+ fontWeight: number;
547
+ textDecoration: string;
548
+ color: string;
549
+ };
550
+ };
551
+ header: {
552
+ center: {
553
+ textAlign: string;
554
+ fontSize: string;
555
+ fontWeight: number;
556
+ letterSpacing: string;
557
+ textDecoration: string;
558
+ color: string;
559
+ };
560
+ left: {
561
+ textAlign: string;
562
+ fontSize: string;
563
+ fontWeight: number;
564
+ letterSpacing: string;
565
+ textDecoration: string;
566
+ color: string;
567
+ };
568
+ right: {
569
+ textAlign: string;
570
+ fontSize: string;
571
+ fontWeight: number;
572
+ letterSpacing: string;
573
+ textDecoration: string;
574
+ color: string;
575
+ };
576
+ };
577
+ subHeader: {
578
+ center: {
579
+ textAlign: string;
580
+ fontSize: string;
581
+ fontWeight: number;
582
+ letterSpacing: string;
583
+ textDecoration: string;
584
+ color: string;
585
+ };
586
+ left: {
587
+ textAlign: string;
588
+ fontSize: string;
589
+ fontWeight: number;
590
+ letterSpacing: string;
591
+ textDecoration: string;
592
+ color: string;
593
+ };
594
+ right: {
595
+ textAlign: string;
596
+ fontSize: string;
597
+ fontWeight: number;
598
+ letterSpacing: string;
599
+ textDecoration: string;
600
+ color: string;
601
+ };
602
+ };
603
+ };
604
+ filters: {
605
+ datepicker: {
606
+ metaHeader: {
607
+ default: {
608
+ textAlign: string;
609
+ fontSize: string;
610
+ fontWeight: number;
611
+ textDecoration: string;
612
+ color: string;
613
+ };
614
+ active: {
615
+ textAlign: string;
616
+ fontSize: string;
617
+ fontWeight: number;
618
+ textDecoration: string;
619
+ color: string;
620
+ };
621
+ };
622
+ calendar: {
623
+ active: {
624
+ textAlign: string;
625
+ fontSize: string;
626
+ fontWeight: number;
627
+ textDecoration: string;
628
+ color: string;
629
+ };
630
+ otherMonth: {
631
+ textAlign: string;
632
+ fontSize: string;
633
+ fontWeight: number;
634
+ textDecoration: string;
635
+ color: string;
636
+ };
637
+ default: {
638
+ textAlign: string;
639
+ fontSize: string;
640
+ fontWeight: number;
641
+ textDecoration: string;
642
+ color: string;
643
+ };
644
+ header: {
645
+ textAlign: string;
646
+ fontSize: string;
647
+ fontWeight: number;
648
+ textDecoration: string;
649
+ color: string;
650
+ };
651
+ };
652
+ monthLink: {
653
+ default: {
654
+ textAlign: string;
655
+ fontSize: string;
656
+ fontWeight: number;
657
+ lineHeight: string;
658
+ textTransform: string;
659
+ letterSpacing: string;
660
+ textDecoration: string;
661
+ color: string;
662
+ };
663
+ hover: {
664
+ textAlign: string;
665
+ fontSize: string;
666
+ fontWeight: number;
667
+ lineHeight: string;
668
+ textTransform: string;
669
+ letterSpacing: string;
670
+ textDecoration: string;
671
+ color: string;
672
+ };
673
+ };
674
+ focusedMonth: {
675
+ textAlign: string;
676
+ fontSize: string;
677
+ fontWeight: number;
678
+ lineHeight: string;
679
+ letterSpacing: string;
680
+ textDecoration: string;
681
+ color: string;
682
+ };
683
+ focusedYear: {
684
+ textAlign: string;
685
+ fontSize: string;
686
+ fontWeight: number;
687
+ lineHeight: string;
688
+ textTransform: string;
689
+ letterSpacing: string;
690
+ textDecoration: string;
691
+ color: string;
692
+ };
693
+ };
694
+ value: {
695
+ textAlign: string;
696
+ fontSize: string;
697
+ fontWeight: number;
698
+ letterSpacing: string;
699
+ textDecoration: string;
700
+ color: string;
701
+ };
702
+ subOption: {
703
+ label: {
704
+ textAlign: string;
705
+ fontSize: string;
706
+ fontWeight: number;
707
+ textDecoration: string;
708
+ color: string;
709
+ };
710
+ value: {
711
+ textAlign: string;
712
+ fontSize: string;
713
+ fontWeight: number;
714
+ textDecoration: string;
715
+ color: string;
716
+ };
717
+ };
718
+ presetAction: {
719
+ textAlign: string;
720
+ fontSize: string;
721
+ fontWeight: number;
722
+ textDecoration: string;
723
+ color: string;
724
+ };
725
+ filterButton: {
726
+ default: {
727
+ textAlign: string;
728
+ fontSize: string;
729
+ fontWeight: number;
730
+ textDecoration: string;
731
+ color: string;
732
+ };
733
+ active: {
734
+ textAlign: string;
735
+ fontSize: string;
736
+ fontWeight: number;
737
+ textDecoration: string;
738
+ color: string;
739
+ };
740
+ hover: {
741
+ textAlign: string;
742
+ fontSize: string;
743
+ fontWeight: number;
744
+ textDecoration: string;
745
+ color: string;
746
+ };
747
+ };
748
+ searchInput: {
749
+ placeholder: {
750
+ textAlign: string;
751
+ fontStyle: string;
752
+ fontSize: string;
753
+ fontWeight: number;
754
+ textDecoration: string;
755
+ color: string;
756
+ };
757
+ value: {
758
+ textAlign: string;
759
+ fontSize: string;
760
+ fontWeight: number;
761
+ textDecoration: string;
762
+ color: string;
763
+ };
764
+ };
765
+ };
766
+ tables: {
767
+ groupName: {
768
+ textAlign: string;
769
+ fontSize: string;
770
+ fontWeight: number;
771
+ letterSpacing: string;
772
+ textDecoration: string;
773
+ color: string;
774
+ };
775
+ };
776
+ modal: {
777
+ title: {
778
+ textAlign: string;
779
+ fontSize: string;
780
+ fontWeight: number;
781
+ textShadow: string;
782
+ textDecoration: string;
783
+ color: string;
784
+ };
785
+ basicContent: {
786
+ textAlign: string;
787
+ fontSize: string;
788
+ fontWeight: number;
789
+ lineHeight: string;
790
+ textDecoration: string;
791
+ color: string;
792
+ };
793
+ };
794
+ };