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,485 @@
1
+ export declare const typography: {
2
+ form: {
3
+ label: {
4
+ default: {
5
+ textAlign: string;
6
+ fontSize: string;
7
+ fontWeight: number;
8
+ textDecoration: string;
9
+ color: string;
10
+ };
11
+ };
12
+ input: {
13
+ label: {
14
+ textAlign: string;
15
+ fontSize: string;
16
+ fontWeight: number;
17
+ textDecoration: string;
18
+ color: string;
19
+ };
20
+ placeholder: {
21
+ normal: {
22
+ textAlign: string;
23
+ fontStyle: string;
24
+ fontSize: string;
25
+ fontWeight: number;
26
+ textDecoration: string;
27
+ color: string;
28
+ };
29
+ };
30
+ value: {
31
+ normal: {
32
+ textAlign: string;
33
+ fontSize: string;
34
+ fontWeight: number;
35
+ lineHeight: string;
36
+ textDecoration: string;
37
+ color: string;
38
+ };
39
+ };
40
+ };
41
+ button: {
42
+ secondary: {
43
+ normal: {
44
+ textAlign: string;
45
+ fontSize: string;
46
+ fontWeight: number;
47
+ textDecoration: string;
48
+ color: string;
49
+ };
50
+ large: {
51
+ textAlign: string;
52
+ fontSize: string;
53
+ fontWeight: number;
54
+ textDecoration: string;
55
+ color: string;
56
+ };
57
+ small: {
58
+ textAlign: string;
59
+ fontSize: string;
60
+ fontWeight: number;
61
+ textDecoration: string;
62
+ color: string;
63
+ };
64
+ xsmall: {
65
+ textAlign: string;
66
+ fontSize: string;
67
+ fontWeight: number;
68
+ textDecoration: string;
69
+ color: string;
70
+ };
71
+ };
72
+ };
73
+ };
74
+ global: {
75
+ mainMenu: {
76
+ subItem: {
77
+ default: {
78
+ textAlign: string;
79
+ fontSize: string;
80
+ fontWeight: number;
81
+ textDecoration: string;
82
+ color: string;
83
+ };
84
+ hover: {
85
+ textAlign: string;
86
+ fontSize: string;
87
+ fontWeight: number;
88
+ textDecoration: string;
89
+ color: string;
90
+ };
91
+ };
92
+ subheader: {
93
+ textAlign: string;
94
+ fontSize: string;
95
+ fontWeight: number;
96
+ textTransform: string;
97
+ letterSpacing: string;
98
+ textDecoration: string;
99
+ color: string;
100
+ };
101
+ identity: {
102
+ textAlign: string;
103
+ fontSize: string;
104
+ fontWeight: number;
105
+ textDecoration: string;
106
+ color: string;
107
+ };
108
+ menuItem: {
109
+ active: {
110
+ textAlign: string;
111
+ fontSize: string;
112
+ fontWeight: number;
113
+ textDecoration: string;
114
+ color: string;
115
+ };
116
+ default: {
117
+ textAlign: string;
118
+ fontSize: string;
119
+ fontWeight: number;
120
+ textDecoration: string;
121
+ color: string;
122
+ };
123
+ hover: {
124
+ textAlign: string;
125
+ fontSize: string;
126
+ fontWeight: number;
127
+ textDecoration: string;
128
+ color: string;
129
+ };
130
+ };
131
+ hidePrompt: {
132
+ textAlign: string;
133
+ fontSize: string;
134
+ fontWeight: number;
135
+ textDecoration: string;
136
+ color: string;
137
+ };
138
+ "sub-MenuItem": {
139
+ default: {
140
+ textAlign: string;
141
+ fontSize: string;
142
+ fontWeight: number;
143
+ textDecoration: string;
144
+ color: string;
145
+ };
146
+ active: {
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
+ };
162
+ topBar: {
163
+ search: {
164
+ value: {
165
+ textAlign: string;
166
+ fontSize: string;
167
+ fontWeight: number;
168
+ textDecoration: string;
169
+ color: string;
170
+ };
171
+ };
172
+ };
173
+ };
174
+ pageHeader: {
175
+ introduction: {
176
+ textAlign: string;
177
+ fontSize: string;
178
+ fontWeight: number;
179
+ lineHeight: string;
180
+ textDecoration: string;
181
+ color: string;
182
+ };
183
+ mainTitle: {
184
+ textAlign: string;
185
+ fontSize: string;
186
+ fontWeight: number;
187
+ textDecoration: string;
188
+ color: string;
189
+ };
190
+ areaTitle: {
191
+ textAlign: string;
192
+ fontSize: string;
193
+ fontWeight: number;
194
+ textDecoration: string;
195
+ color: string;
196
+ };
197
+ };
198
+ styleGuide: {
199
+ guideTitle: {
200
+ textAlign: string;
201
+ fontSize: string;
202
+ fontWeight: number;
203
+ textDecoration: string;
204
+ color: string;
205
+ textTransform: string;
206
+ letterSpacing: string;
207
+ };
208
+ guideNotes: {
209
+ textAlign: string;
210
+ fontStyle: string;
211
+ fontSize: string;
212
+ fontWeight: number;
213
+ lineHeight: string;
214
+ paragraphSpacing: string;
215
+ textDecoration: string;
216
+ color: string;
217
+ };
218
+ itemName: {
219
+ textAlign: string;
220
+ fontSize: string;
221
+ fontWeight: number;
222
+ textDecoration: string;
223
+ color: string;
224
+ };
225
+ guideAreaSubtitle: {
226
+ textAlign: string;
227
+ fontSize: string;
228
+ fontWeight: number;
229
+ textTransform: string;
230
+ textDecoration: string;
231
+ color: string;
232
+ };
233
+ guideAreaTitle: {
234
+ textAlign: string;
235
+ fontSize: string;
236
+ fontWeight: number;
237
+ textTransform: string;
238
+ textDecoration: string;
239
+ color: string;
240
+ };
241
+ };
242
+ active: {
243
+ textAlign: string;
244
+ fontSize: string;
245
+ fontWeight: number;
246
+ textDecoration: string;
247
+ color: string;
248
+ };
249
+ filters: {
250
+ filterButton: {
251
+ default: {
252
+ textAlign: string;
253
+ fontSize: string;
254
+ fontWeight: number;
255
+ textDecoration: string;
256
+ color: string;
257
+ };
258
+ active: {
259
+ textAlign: string;
260
+ fontSize: string;
261
+ fontWeight: number;
262
+ textDecoration: string;
263
+ color: string;
264
+ };
265
+ hover: {
266
+ textAlign: string;
267
+ fontSize: string;
268
+ fontWeight: number;
269
+ textDecoration: string;
270
+ color: string;
271
+ };
272
+ };
273
+ searchInput: {
274
+ placeholder: {
275
+ textAlign: string;
276
+ fontStyle: string;
277
+ fontSize: string;
278
+ fontWeight: number;
279
+ textDecoration: string;
280
+ color: string;
281
+ };
282
+ value: {
283
+ textAlign: string;
284
+ fontSize: string;
285
+ fontWeight: number;
286
+ textDecoration: string;
287
+ color: string;
288
+ };
289
+ };
290
+ };
291
+ table: {
292
+ columnData: {
293
+ firstColumn: {
294
+ textAlign: string;
295
+ fontSize: string;
296
+ fontWeight: number;
297
+ textDecoration: string;
298
+ color: string;
299
+ };
300
+ lowImportance: {
301
+ left: {
302
+ textAlign: string;
303
+ fontStyle: string;
304
+ fontSize: string;
305
+ fontWeight: number;
306
+ textDecoration: string;
307
+ color: string;
308
+ };
309
+ center: {
310
+ textAlign: string;
311
+ fontStyle: string;
312
+ fontSize: string;
313
+ fontWeight: number;
314
+ textDecoration: string;
315
+ color: string;
316
+ };
317
+ right: {
318
+ textAlign: string;
319
+ fontStyle: string;
320
+ fontSize: string;
321
+ fontWeight: number;
322
+ textDecoration: string;
323
+ color: string;
324
+ };
325
+ };
326
+ highImportance: {
327
+ left: {
328
+ textAlign: string;
329
+ fontSize: string;
330
+ fontWeight: number;
331
+ textDecoration: string;
332
+ color: string;
333
+ };
334
+ right: {
335
+ textAlign: string;
336
+ fontSize: string;
337
+ fontWeight: number;
338
+ textDecoration: string;
339
+ color: string;
340
+ };
341
+ center: {
342
+ textAlign: string;
343
+ fontSize: string;
344
+ fontWeight: number;
345
+ textDecoration: string;
346
+ color: string;
347
+ };
348
+ };
349
+ normalImportance: {
350
+ right: {
351
+ textAlign: string;
352
+ fontSize: string;
353
+ fontWeight: number;
354
+ textDecoration: string;
355
+ color: string;
356
+ };
357
+ center: {
358
+ textAlign: string;
359
+ fontSize: string;
360
+ fontWeight: number;
361
+ textDecoration: string;
362
+ color: string;
363
+ };
364
+ left: {
365
+ textAlign: string;
366
+ fontSize: string;
367
+ fontWeight: number;
368
+ textDecoration: string;
369
+ color: string;
370
+ };
371
+ };
372
+ unit: {
373
+ textAlign: string;
374
+ fontStyle: string;
375
+ fontSize: string;
376
+ fontWeight: number;
377
+ textDecoration: string;
378
+ color: string;
379
+ };
380
+ };
381
+ header: {
382
+ right: {
383
+ textAlign: string;
384
+ fontSize: string;
385
+ fontWeight: number;
386
+ letterSpacing: string;
387
+ textDecoration: string;
388
+ color: string;
389
+ };
390
+ left: {
391
+ textAlign: string;
392
+ fontSize: string;
393
+ fontWeight: number;
394
+ letterSpacing: string;
395
+ textDecoration: string;
396
+ color: string;
397
+ };
398
+ center: {
399
+ textAlign: string;
400
+ fontSize: string;
401
+ fontWeight: number;
402
+ letterSpacing: string;
403
+ textDecoration: string;
404
+ color: string;
405
+ };
406
+ };
407
+ subHeader: {
408
+ right: {
409
+ textAlign: string;
410
+ fontSize: string;
411
+ fontWeight: number;
412
+ letterSpacing: string;
413
+ textDecoration: string;
414
+ color: string;
415
+ };
416
+ left: {
417
+ textAlign: string;
418
+ fontSize: string;
419
+ fontWeight: number;
420
+ letterSpacing: string;
421
+ textDecoration: string;
422
+ color: string;
423
+ };
424
+ center: {
425
+ textAlign: string;
426
+ fontSize: string;
427
+ fontWeight: number;
428
+ letterSpacing: string;
429
+ textDecoration: string;
430
+ color: string;
431
+ };
432
+ };
433
+ };
434
+ tables: {
435
+ groupName: {
436
+ textAlign: string;
437
+ fontSize: string;
438
+ fontWeight: number;
439
+ letterSpacing: string;
440
+ textDecoration: string;
441
+ color: string;
442
+ };
443
+ };
444
+ meta: {
445
+ tagList: {
446
+ item: {
447
+ normal: {
448
+ textAlign: string;
449
+ fontSize: string;
450
+ fontWeight: number;
451
+ textDecoration: string;
452
+ color: string;
453
+ };
454
+ };
455
+ };
456
+ };
457
+ searchBar: {
458
+ placeholder: {
459
+ textAlign: string;
460
+ fontStyle: string;
461
+ fontSize: string;
462
+ fontWeight: number;
463
+ textDecoration: string;
464
+ color: string;
465
+ };
466
+ };
467
+ modal: {
468
+ basicContent: {
469
+ textAlign: string;
470
+ fontSize: string;
471
+ fontWeight: number;
472
+ lineHeight: string;
473
+ textDecoration: string;
474
+ color: string;
475
+ };
476
+ title: {
477
+ textAlign: string;
478
+ fontSize: string;
479
+ fontWeight: number;
480
+ textShadow: string;
481
+ textDecoration: string;
482
+ color: string;
483
+ };
484
+ };
485
+ };
@@ -0,0 +1,41 @@
1
+ export declare const colors: {
2
+ pureBase: string;
3
+ pureTop: string;
4
+ divider: string;
5
+ icons: {
6
+ inverse: string;
7
+ mono: string;
8
+ dimmed: string;
9
+ subtle: string;
10
+ primary: string;
11
+ danger: string;
12
+ };
13
+ menu: {
14
+ active: string;
15
+ hover: string;
16
+ default: string;
17
+ indicator: string;
18
+ passive: string;
19
+ };
20
+ feedback: {
21
+ error: string;
22
+ info: string;
23
+ neutral: string;
24
+ success: string;
25
+ warning: string;
26
+ };
27
+ status: {
28
+ caution: string;
29
+ danger: string;
30
+ folder: string;
31
+ highlight: string;
32
+ good: string;
33
+ neutral: string;
34
+ };
35
+ transparent: string;
36
+ input: {
37
+ border: {
38
+ default: string;
39
+ };
40
+ };
41
+ };
@@ -0,0 +1,139 @@
1
+ export declare const custom: {
2
+ lines: {
3
+ primary: {
4
+ label: {
5
+ fill: string;
6
+ };
7
+ contrastLine: {
8
+ stroke: string;
9
+ };
10
+ highlightLine: {
11
+ stroke: string;
12
+ };
13
+ grabHandle: {
14
+ fill: string;
15
+ stroke: string;
16
+ };
17
+ point: {
18
+ fill: string;
19
+ };
20
+ grabHandleContrast: {
21
+ stroke: string;
22
+ };
23
+ grabHandleText: {
24
+ fill: string;
25
+ };
26
+ handleBase: {
27
+ fill: string;
28
+ };
29
+ handleRingLayer: {
30
+ stroke: string;
31
+ };
32
+ handleReactiveFill: {
33
+ fill: string;
34
+ };
35
+ handleReactiveRing: {
36
+ stroke: string;
37
+ };
38
+ handleContrastLayer: {
39
+ stroke: string;
40
+ };
41
+ stopStart: {
42
+ stopColor: string;
43
+ };
44
+ stopEnd: {
45
+ stopColor: string;
46
+ };
47
+ };
48
+ secondary: {
49
+ label: {
50
+ fill: string;
51
+ };
52
+ contrastLine: {
53
+ stroke: string;
54
+ };
55
+ highlightLine: {
56
+ stroke: string;
57
+ };
58
+ grabHandle: {
59
+ fill: string;
60
+ stroke: string;
61
+ };
62
+ point: {
63
+ fill: string;
64
+ };
65
+ grabHandleContrast: {
66
+ stroke: string;
67
+ };
68
+ grabHandleText: {
69
+ fill: string;
70
+ };
71
+ handleBase: {
72
+ fill: string;
73
+ };
74
+ handleRingLayer: {
75
+ stroke: string;
76
+ };
77
+ handleReactiveFill: {
78
+ fill: string;
79
+ };
80
+ handleReactiveRing: {
81
+ stroke: string;
82
+ };
83
+ handleContrastLayer: {
84
+ stroke: string;
85
+ };
86
+ stopStart: {
87
+ stopColor: string;
88
+ };
89
+ stopEnd: {
90
+ stopColor: string;
91
+ };
92
+ };
93
+ danger: {
94
+ label: {
95
+ fill: string;
96
+ };
97
+ contrastLine: {
98
+ stroke: string;
99
+ };
100
+ highlightLine: {
101
+ stroke: string;
102
+ };
103
+ grabHandle: {
104
+ fill: string;
105
+ stroke: string;
106
+ };
107
+ point: {
108
+ fill: string;
109
+ };
110
+ grabHandleText: {
111
+ fill: string;
112
+ };
113
+ grabHandleContrast: {
114
+ stroke: string;
115
+ };
116
+ handleBase: {
117
+ fill: string;
118
+ };
119
+ handleRingLayer: {
120
+ stroke: string;
121
+ };
122
+ handleReactiveFill: {
123
+ fill: string;
124
+ };
125
+ handleReactiveRing: {
126
+ stroke: string;
127
+ };
128
+ handleContrastLayer: {
129
+ stroke: string;
130
+ };
131
+ stopStart: {
132
+ stopColor: string;
133
+ };
134
+ stopEnd: {
135
+ stopColor: string;
136
+ };
137
+ };
138
+ };
139
+ };