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,301 @@
1
+ export declare const styles: {
2
+ global: {
3
+ mainMenu: {
4
+ background: {
5
+ boxShadow: string;
6
+ backgroundColor: string;
7
+ };
8
+ footerBackground: {
9
+ backgroundColor: string;
10
+ };
11
+ lines: {
12
+ backgroundColor: string;
13
+ };
14
+ iconBackground: {
15
+ default: {
16
+ backgroundColor: string;
17
+ };
18
+ hover: {
19
+ backgroundColor: string;
20
+ };
21
+ active: {
22
+ backgroundColor: string;
23
+ };
24
+ };
25
+ desktop: {
26
+ open: {};
27
+ };
28
+ };
29
+ drawer: {
30
+ background: {
31
+ boxShadow: string;
32
+ backgroundColor: string;
33
+ };
34
+ };
35
+ topBar: {
36
+ lines: {
37
+ backgroundColor: string;
38
+ };
39
+ };
40
+ background: {
41
+ backgroundColor: string;
42
+ backgroundImage: string;
43
+ };
44
+ };
45
+ general: {
46
+ divider: {
47
+ backgroundColor: string;
48
+ };
49
+ };
50
+ tables: {
51
+ loadingOverlay: {
52
+ backgroundColor: string;
53
+ backgroundImage: string;
54
+ };
55
+ rows: {
56
+ divider: {
57
+ backgroundColor: string;
58
+ };
59
+ };
60
+ header: {
61
+ groupLine: {
62
+ backgroundColor: string;
63
+ };
64
+ divider: {
65
+ backgroundColor: string;
66
+ };
67
+ sortable: {
68
+ default: {
69
+ backgroundColor: string;
70
+ };
71
+ hover: {
72
+ backgroundColor: string;
73
+ };
74
+ };
75
+ };
76
+ };
77
+ filters: {
78
+ filterButton: {
79
+ hover: {
80
+ boxShadow: string;
81
+ backgroundColor: string;
82
+ borderColor: string;
83
+ border: string;
84
+ textColor: string;
85
+ };
86
+ default: {
87
+ boxShadow: string;
88
+ backgroundColor: string;
89
+ borderColor: string;
90
+ border: string;
91
+ textColor: string;
92
+ };
93
+ active: {
94
+ boxShadow: string;
95
+ backgroundColor: string;
96
+ borderColor: string;
97
+ border: string;
98
+ textColor: string;
99
+ };
100
+ };
101
+ searchInput: {
102
+ default: {
103
+ boxShadow: string;
104
+ backgroundColor: string;
105
+ borderColor: string;
106
+ border: string;
107
+ };
108
+ focused: {
109
+ boxShadow: string;
110
+ backgroundColor: string;
111
+ borderColor: string;
112
+ border: string;
113
+ };
114
+ };
115
+ dropdownContainer: {
116
+ topBorder: {
117
+ backgroundColor: string;
118
+ };
119
+ background: {
120
+ boxShadow: string;
121
+ backgroundColor: string;
122
+ borderColor: string;
123
+ border: string;
124
+ };
125
+ };
126
+ };
127
+ form: {
128
+ checkbox: {
129
+ unchecked: {
130
+ disabled: {
131
+ backgroundColor: string;
132
+ borderColor: string;
133
+ border: string;
134
+ };
135
+ default: {
136
+ borderColor: string;
137
+ border: string;
138
+ };
139
+ };
140
+ checked: {
141
+ default: {
142
+ boxShadow: string;
143
+ backgroundColor: string;
144
+ };
145
+ disabled: {
146
+ boxShadow: string;
147
+ backgroundColor: string;
148
+ };
149
+ };
150
+ };
151
+ button: {
152
+ secondary: {
153
+ hover: {
154
+ backgroundColor: string;
155
+ };
156
+ disabled: {
157
+ backgroundColor: string;
158
+ };
159
+ actionArea: {
160
+ backgroundColor: string;
161
+ };
162
+ default: {
163
+ backgroundColor: string;
164
+ };
165
+ divider: {
166
+ backgroundColor: string;
167
+ };
168
+ active: {
169
+ backgroundColor: string;
170
+ };
171
+ };
172
+ danger: {
173
+ disabled: {
174
+ backgroundColor: string;
175
+ };
176
+ divider: {
177
+ backgroundColor: string;
178
+ };
179
+ };
180
+ };
181
+ input: {
182
+ default: {
183
+ normal: {
184
+ backgroundColor: string;
185
+ borderColor: string;
186
+ border: string;
187
+ };
188
+ focused: {
189
+ backgroundColor: string;
190
+ borderColor: string;
191
+ border: string;
192
+ boxShadow: string;
193
+ };
194
+ };
195
+ required: {
196
+ normal: {
197
+ backgroundColor: string;
198
+ borderColor: string;
199
+ border: string;
200
+ };
201
+ focused: {
202
+ boxShadow: string;
203
+ backgroundColor: string;
204
+ borderColor: string;
205
+ border: string;
206
+ };
207
+ };
208
+ processing: {
209
+ focused: {
210
+ boxShadow: string;
211
+ backgroundColor: string;
212
+ borderColor: string;
213
+ border: string;
214
+ };
215
+ normal: {
216
+ backgroundColor: string;
217
+ borderColor: string;
218
+ border: string;
219
+ };
220
+ };
221
+ disabled: {
222
+ normal: {
223
+ backgroundColor: string;
224
+ borderColor: string;
225
+ border: string;
226
+ };
227
+ };
228
+ valid: {
229
+ normal: {
230
+ backgroundColor: string;
231
+ borderColor: string;
232
+ border: string;
233
+ };
234
+ focused: {
235
+ boxShadow: string;
236
+ backgroundColor: string;
237
+ borderColor: string;
238
+ border: string;
239
+ };
240
+ };
241
+ invalid: {
242
+ normal: {
243
+ backgroundColor: string;
244
+ borderColor: string;
245
+ border: string;
246
+ };
247
+ focused: {
248
+ boxShadow: string;
249
+ backgroundColor: string;
250
+ borderColor: string;
251
+ border: string;
252
+ };
253
+ };
254
+ };
255
+ };
256
+ indicators: {
257
+ spinner: {
258
+ secondary: {
259
+ top: {
260
+ borderColor: string;
261
+ border: string;
262
+ };
263
+ base: {
264
+ borderColor: string;
265
+ border: string;
266
+ };
267
+ };
268
+ simple: {
269
+ base: {
270
+ borderColor: string;
271
+ border: string;
272
+ };
273
+ top: {
274
+ borderColor: string;
275
+ border: string;
276
+ };
277
+ };
278
+ primary: {
279
+ base: {
280
+ borderColor: string;
281
+ border: string;
282
+ };
283
+ top: {
284
+ borderColor: string;
285
+ border: string;
286
+ };
287
+ };
288
+ };
289
+ };
290
+ modal: {
291
+ container: {
292
+ boxShadow: string;
293
+ backgroundColor: string;
294
+ borderColor: string;
295
+ border: string;
296
+ };
297
+ overlay: {
298
+ backgroundColor: string;
299
+ };
300
+ };
301
+ };