@robosystems/core 0.3.0

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 (249) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +252 -0
  3. package/actions/entity-actions.d.ts +8 -0
  4. package/actions/entity-actions.js +16 -0
  5. package/actions/graph-actions.d.ts +3 -0
  6. package/actions/graph-actions.js +13 -0
  7. package/auth-components/AppSwitcher.d.ts +6 -0
  8. package/auth-components/AppSwitcher.js +28 -0
  9. package/auth-components/AuthGuard.d.ts +7 -0
  10. package/auth-components/AuthGuard.js +31 -0
  11. package/auth-components/AuthProvider.d.ts +9 -0
  12. package/auth-components/AuthProvider.js +565 -0
  13. package/auth-components/SessionWarningDialog.d.ts +1 -0
  14. package/auth-components/SessionWarningDialog.js +51 -0
  15. package/auth-components/SignInForm.d.ts +20 -0
  16. package/auth-components/SignInForm.js +139 -0
  17. package/auth-components/SignUpForm.d.ts +15 -0
  18. package/auth-components/SignUpForm.js +167 -0
  19. package/auth-components/TurnstileWidget.d.ts +99 -0
  20. package/auth-components/TurnstileWidget.js +224 -0
  21. package/auth-components/index.d.ts +6 -0
  22. package/auth-components/index.js +6 -0
  23. package/auth-core/cleanup.d.ts +44 -0
  24. package/auth-core/cleanup.js +157 -0
  25. package/auth-core/client.d.ts +121 -0
  26. package/auth-core/client.js +767 -0
  27. package/auth-core/config.d.ts +19 -0
  28. package/auth-core/config.js +56 -0
  29. package/auth-core/hooks.d.ts +19 -0
  30. package/auth-core/hooks.js +63 -0
  31. package/auth-core/index.d.ts +6 -0
  32. package/auth-core/index.js +6 -0
  33. package/auth-core/sso.d.ts +42 -0
  34. package/auth-core/sso.js +281 -0
  35. package/auth-core/token-storage.d.ts +58 -0
  36. package/auth-core/token-storage.js +177 -0
  37. package/auth-core/types.d.ts +145 -0
  38. package/auth-core/types.js +1 -0
  39. package/components/EntitySelector.d.ts +44 -0
  40. package/components/EntitySelector.js +64 -0
  41. package/components/EntitySelectorCore.d.ts +45 -0
  42. package/components/EntitySelectorCore.js +67 -0
  43. package/components/GraphSelectorCore.d.ts +21 -0
  44. package/components/GraphSelectorCore.js +39 -0
  45. package/components/PageLayout.d.ts +8 -0
  46. package/components/PageLayout.js +5 -0
  47. package/components/RepositoryGuard.d.ts +68 -0
  48. package/components/RepositoryGuard.js +91 -0
  49. package/components/console/ConsoleContent.d.ts +4 -0
  50. package/components/console/ConsoleContent.js +612 -0
  51. package/components/console/ConsoleMarkdown.d.ts +11 -0
  52. package/components/console/ConsoleMarkdown.js +49 -0
  53. package/components/console/ProgressiveText.d.ts +6 -0
  54. package/components/console/ProgressiveText.js +21 -0
  55. package/components/console/graphAwareConfig.d.ts +70 -0
  56. package/components/console/graphAwareConfig.js +411 -0
  57. package/components/console/index.d.ts +6 -0
  58. package/components/console/index.js +4 -0
  59. package/components/console/types.d.ts +84 -0
  60. package/components/console/types.js +1 -0
  61. package/components/graph-filters.d.ts +75 -0
  62. package/components/graph-filters.js +111 -0
  63. package/components/index.d.ts +10 -0
  64. package/components/index.js +9 -0
  65. package/components/repositories/ActiveSubscriptions.d.ts +26 -0
  66. package/components/repositories/ActiveSubscriptions.js +103 -0
  67. package/components/repositories/BrowseRepositories.d.ts +11 -0
  68. package/components/repositories/BrowseRepositories.js +184 -0
  69. package/components/repositories/index.d.ts +2 -0
  70. package/components/repositories/index.js +2 -0
  71. package/components/search/SearchContent.d.ts +4 -0
  72. package/components/search/SearchContent.js +168 -0
  73. package/components/search/index.d.ts +2 -0
  74. package/components/search/index.js +1 -0
  75. package/components/search/types.d.ts +15 -0
  76. package/components/search/types.js +1 -0
  77. package/contexts/entity-context.d.ts +28 -0
  78. package/contexts/entity-context.js +89 -0
  79. package/contexts/graph-context.d.ts +27 -0
  80. package/contexts/graph-context.js +128 -0
  81. package/contexts/index.d.ts +5 -0
  82. package/contexts/index.js +5 -0
  83. package/contexts/org-context.d.ts +25 -0
  84. package/contexts/org-context.js +64 -0
  85. package/contexts/service-offerings-context.d.ts +45 -0
  86. package/contexts/service-offerings-context.js +98 -0
  87. package/contexts/sidebar-context.d.ts +18 -0
  88. package/contexts/sidebar-context.js +44 -0
  89. package/hooks/index.d.ts +6 -0
  90. package/hooks/index.js +6 -0
  91. package/hooks/use-api-error.d.ts +3 -0
  92. package/hooks/use-api-error.js +24 -0
  93. package/hooks/use-media-query.d.ts +1 -0
  94. package/hooks/use-media-query.js +21 -0
  95. package/hooks/use-streaming-query.d.ts +22 -0
  96. package/hooks/use-streaming-query.js +142 -0
  97. package/hooks/use-toast.d.ts +37 -0
  98. package/hooks/use-toast.js +117 -0
  99. package/hooks/use-user-limits.d.ts +12 -0
  100. package/hooks/use-user-limits.js +73 -0
  101. package/hooks/use-user.d.ts +11 -0
  102. package/hooks/use-user.js +39 -0
  103. package/index.d.ts +29 -0
  104. package/index.js +77 -0
  105. package/lib/entity-cookie.d.ts +10 -0
  106. package/lib/entity-cookie.js +38 -0
  107. package/lib/graph-cookie.d.ts +11 -0
  108. package/lib/graph-cookie.js +62 -0
  109. package/lib/graph-tiers.d.ts +41 -0
  110. package/lib/graph-tiers.js +107 -0
  111. package/lib/index.d.ts +3 -0
  112. package/lib/index.js +3 -0
  113. package/lib/sidebar-cookie.d.ts +11 -0
  114. package/lib/sidebar-cookie.js +42 -0
  115. package/library/colors.d.ts +4 -0
  116. package/library/colors.js +41 -0
  117. package/library/components/ClassificationPicker.d.ts +8 -0
  118. package/library/components/ClassificationPicker.js +55 -0
  119. package/library/components/ElementBrowser.d.ts +11 -0
  120. package/library/components/ElementBrowser.js +106 -0
  121. package/library/components/ElementDetail.d.ts +7 -0
  122. package/library/components/ElementDetail.js +97 -0
  123. package/library/components/LibraryHierarchy.d.ts +13 -0
  124. package/library/components/LibraryHierarchy.js +380 -0
  125. package/library/components/TaxonomySidebar.d.ts +6 -0
  126. package/library/components/TaxonomySidebar.js +45 -0
  127. package/library/index.d.ts +8 -0
  128. package/library/index.js +7 -0
  129. package/package.json +37 -0
  130. package/research/CoverageCard.d.ts +12 -0
  131. package/research/CoverageCard.js +15 -0
  132. package/research/CoverageGrid.d.ts +6 -0
  133. package/research/CoverageGrid.js +9 -0
  134. package/research/CoverageHistory.d.ts +5 -0
  135. package/research/CoverageHistory.js +7 -0
  136. package/research/ResearchArticle.d.ts +15 -0
  137. package/research/ResearchArticle.js +26 -0
  138. package/research/catalog.d.ts +14 -0
  139. package/research/catalog.js +42 -0
  140. package/research/index.d.ts +6 -0
  141. package/research/index.js +9 -0
  142. package/research/types.d.ts +38 -0
  143. package/research/types.js +4 -0
  144. package/task-monitoring/hooks.d.ts +26 -0
  145. package/task-monitoring/hooks.js +126 -0
  146. package/task-monitoring/index.d.ts +5 -0
  147. package/task-monitoring/index.js +7 -0
  148. package/task-monitoring/operationErrors.d.ts +82 -0
  149. package/task-monitoring/operationErrors.js +251 -0
  150. package/task-monitoring/operationHooks.d.ts +117 -0
  151. package/task-monitoring/operationHooks.js +536 -0
  152. package/task-monitoring/operationMonitor.d.ts +78 -0
  153. package/task-monitoring/operationMonitor.js +200 -0
  154. package/task-monitoring/operationTypes.d.ts +236 -0
  155. package/task-monitoring/operationTypes.js +60 -0
  156. package/task-monitoring/taskMonitor.d.ts +14 -0
  157. package/task-monitoring/taskMonitor.js +132 -0
  158. package/task-monitoring/types.d.ts +31 -0
  159. package/task-monitoring/types.js +1 -0
  160. package/theme/flowbite-theme.d.ts +758 -0
  161. package/theme/flowbite-theme.js +765 -0
  162. package/theme/index.d.ts +1 -0
  163. package/theme/index.js +1 -0
  164. package/types/entity.d.ts +19 -0
  165. package/types/index.d.ts +2 -0
  166. package/types/index.js +1 -0
  167. package/types/user.d.ts +6 -0
  168. package/ui-components/ConfirmModal.d.ts +41 -0
  169. package/ui-components/ConfirmModal.js +19 -0
  170. package/ui-components/EmptyState.d.ts +22 -0
  171. package/ui-components/EmptyState.js +10 -0
  172. package/ui-components/LoadingState.d.ts +27 -0
  173. package/ui-components/LoadingState.js +12 -0
  174. package/ui-components/Logo.d.ts +28 -0
  175. package/ui-components/Logo.js +95 -0
  176. package/ui-components/Spinner.d.ts +37 -0
  177. package/ui-components/Spinner.js +48 -0
  178. package/ui-components/StatCard.d.ts +21 -0
  179. package/ui-components/StatCard.js +10 -0
  180. package/ui-components/api-keys/ApiKeyDisplay.d.ts +13 -0
  181. package/ui-components/api-keys/ApiKeyDisplay.js +7 -0
  182. package/ui-components/api-keys/ApiKeyTable.d.ts +9 -0
  183. package/ui-components/api-keys/ApiKeyTable.js +17 -0
  184. package/ui-components/api-keys/ApiKeysCard.d.ts +6 -0
  185. package/ui-components/api-keys/ApiKeysCard.js +97 -0
  186. package/ui-components/api-keys/CreateApiKeyModal.d.ts +11 -0
  187. package/ui-components/api-keys/CreateApiKeyModal.js +47 -0
  188. package/ui-components/api-keys/SecureApiKeyField.d.ts +13 -0
  189. package/ui-components/api-keys/SecureApiKeyField.js +64 -0
  190. package/ui-components/api-keys/index.d.ts +5 -0
  191. package/ui-components/api-keys/index.js +5 -0
  192. package/ui-components/chat/ChatHeader.d.ts +12 -0
  193. package/ui-components/chat/ChatHeader.js +5 -0
  194. package/ui-components/chat/ChatInputArea.d.ts +16 -0
  195. package/ui-components/chat/ChatInputArea.js +9 -0
  196. package/ui-components/chat/ChatMessage.d.ts +7 -0
  197. package/ui-components/chat/ChatMessage.js +24 -0
  198. package/ui-components/chat/DeepResearchToggle.d.ts +8 -0
  199. package/ui-components/chat/DeepResearchToggle.js +13 -0
  200. package/ui-components/chat/index.d.ts +9 -0
  201. package/ui-components/chat/index.js +8 -0
  202. package/ui-components/chat/types.d.ts +23 -0
  203. package/ui-components/chat/types.js +51 -0
  204. package/ui-components/forms/PasswordRequirements.d.ts +10 -0
  205. package/ui-components/forms/PasswordRequirements.js +15 -0
  206. package/ui-components/forms/SettingsCard.d.ts +11 -0
  207. package/ui-components/forms/SettingsCard.js +5 -0
  208. package/ui-components/forms/SettingsFormField.d.ts +18 -0
  209. package/ui-components/forms/SettingsFormField.js +17 -0
  210. package/ui-components/forms/StatusAlert.d.ts +8 -0
  211. package/ui-components/forms/StatusAlert.js +7 -0
  212. package/ui-components/forms/index.d.ts +4 -0
  213. package/ui-components/forms/index.js +4 -0
  214. package/ui-components/index.d.ts +13 -0
  215. package/ui-components/index.js +18 -0
  216. package/ui-components/layout/CoreNavbar.d.ts +14 -0
  217. package/ui-components/layout/CoreNavbar.js +53 -0
  218. package/ui-components/layout/CoreSidebar.d.ts +28 -0
  219. package/ui-components/layout/CoreSidebar.js +62 -0
  220. package/ui-components/layout/LandingFooter.d.ts +28 -0
  221. package/ui-components/layout/LandingFooter.js +34 -0
  222. package/ui-components/layout/PageContainer.d.ts +8 -0
  223. package/ui-components/layout/PageContainer.js +17 -0
  224. package/ui-components/layout/PageHeader.d.ts +23 -0
  225. package/ui-components/layout/PageHeader.js +12 -0
  226. package/ui-components/layout/SettingsContainer.d.ts +10 -0
  227. package/ui-components/layout/SettingsContainer.js +9 -0
  228. package/ui-components/layout/ThemeToggle.d.ts +4 -0
  229. package/ui-components/layout/ThemeToggle.js +6 -0
  230. package/ui-components/layout/index.d.ts +7 -0
  231. package/ui-components/layout/index.js +7 -0
  232. package/ui-components/settings/GeneralInformationCard.d.ts +12 -0
  233. package/ui-components/settings/GeneralInformationCard.js +72 -0
  234. package/ui-components/settings/PasswordInformationCard.d.ts +10 -0
  235. package/ui-components/settings/PasswordInformationCard.js +167 -0
  236. package/ui-components/settings/SettingsPageHeader.d.ts +7 -0
  237. package/ui-components/settings/SettingsPageHeader.js +6 -0
  238. package/ui-components/settings/index.d.ts +3 -0
  239. package/ui-components/settings/index.js +3 -0
  240. package/ui-components/support/SupportModal.d.ts +15 -0
  241. package/ui-components/support/SupportModal.js +74 -0
  242. package/ui-components/support/index.d.ts +2 -0
  243. package/ui-components/support/index.js +1 -0
  244. package/ui-components/types/index.d.ts +39 -0
  245. package/ui-components/types/index.js +1 -0
  246. package/utils/index.d.ts +31 -0
  247. package/utils/index.js +38 -0
  248. package/utils/turnstile-config.d.ts +11 -0
  249. package/utils/turnstile-config.js +19 -0
@@ -0,0 +1,758 @@
1
+ export declare const customTheme: {
2
+ alert: {
3
+ base: string;
4
+ borderAccent: string;
5
+ color: {
6
+ failure: string;
7
+ success: string;
8
+ warning: string;
9
+ info: string;
10
+ };
11
+ icon: string;
12
+ rounded: string;
13
+ wrapper: string;
14
+ };
15
+ avatar: {
16
+ root: {
17
+ base: string;
18
+ bordered: string;
19
+ rounded: string;
20
+ color: {
21
+ dark: string;
22
+ failure: string;
23
+ gray: string;
24
+ info: string;
25
+ light: string;
26
+ purple: string;
27
+ success: string;
28
+ warning: string;
29
+ pink: string;
30
+ };
31
+ img: {
32
+ base: string;
33
+ off: string;
34
+ on: string;
35
+ placeholder: string;
36
+ };
37
+ size: {
38
+ xs: string;
39
+ sm: string;
40
+ md: string;
41
+ lg: string;
42
+ xl: string;
43
+ };
44
+ stacked: string;
45
+ statusPosition: {
46
+ 'bottom-left': string;
47
+ 'bottom-center': string;
48
+ 'bottom-right': string;
49
+ 'top-left': string;
50
+ 'top-center': string;
51
+ 'top-right': string;
52
+ 'center-right': string;
53
+ center: string;
54
+ 'center-left': string;
55
+ };
56
+ status: {
57
+ away: string;
58
+ base: string;
59
+ busy: string;
60
+ offline: string;
61
+ online: string;
62
+ };
63
+ initials: {
64
+ text: string;
65
+ base: string;
66
+ };
67
+ };
68
+ group: {
69
+ base: string;
70
+ };
71
+ groupCounter: {
72
+ base: string;
73
+ };
74
+ };
75
+ badge: {
76
+ root: {
77
+ base: string;
78
+ color: {
79
+ primary: string;
80
+ secondary: string;
81
+ accent: string;
82
+ failure: string;
83
+ success: string;
84
+ warning: string;
85
+ info: string;
86
+ };
87
+ size: {
88
+ xs: string;
89
+ sm: string;
90
+ };
91
+ };
92
+ icon: {
93
+ off: string;
94
+ on: string;
95
+ size: {
96
+ xs: string;
97
+ sm: string;
98
+ };
99
+ };
100
+ };
101
+ breadcrumb: {
102
+ root: {
103
+ base: string;
104
+ list: string;
105
+ };
106
+ item: {
107
+ base: string;
108
+ chevron: string;
109
+ href: {
110
+ off: string;
111
+ on: string;
112
+ };
113
+ icon: string;
114
+ };
115
+ };
116
+ button: {
117
+ base: string;
118
+ fullSized: string;
119
+ color: {
120
+ primary: string;
121
+ secondary: string;
122
+ accent: string;
123
+ gray: string;
124
+ light: string;
125
+ dark: string;
126
+ failure: string;
127
+ success: string;
128
+ warning: string;
129
+ };
130
+ outlineColor: {
131
+ primary: string;
132
+ secondary: string;
133
+ accent: string;
134
+ gray: string;
135
+ light: string;
136
+ dark: string;
137
+ failure: string;
138
+ success: string;
139
+ warning: string;
140
+ };
141
+ pill: string;
142
+ size: {
143
+ xs: string;
144
+ sm: string;
145
+ md: string;
146
+ lg: string;
147
+ xl: string;
148
+ };
149
+ };
150
+ card: {
151
+ root: {
152
+ base: string;
153
+ children: string;
154
+ horizontal: {
155
+ off: string;
156
+ on: string;
157
+ };
158
+ href: string;
159
+ };
160
+ };
161
+ checkbox: {
162
+ base: string;
163
+ color: {
164
+ default: string;
165
+ dark: string;
166
+ failure: string;
167
+ gray: string;
168
+ info: string;
169
+ light: string;
170
+ purple: string;
171
+ success: string;
172
+ warning: string;
173
+ blue: string;
174
+ cyan: string;
175
+ green: string;
176
+ indigo: string;
177
+ lime: string;
178
+ pink: string;
179
+ red: string;
180
+ teal: string;
181
+ yellow: string;
182
+ };
183
+ };
184
+ drawer: {
185
+ root: {
186
+ base: string;
187
+ backdrop: string;
188
+ edge: string;
189
+ position: {
190
+ top: {
191
+ on: string;
192
+ off: string;
193
+ };
194
+ right: {
195
+ on: string;
196
+ off: string;
197
+ };
198
+ bottom: {
199
+ on: string;
200
+ off: string;
201
+ };
202
+ left: {
203
+ on: string;
204
+ off: string;
205
+ };
206
+ };
207
+ };
208
+ header: {
209
+ inner: {
210
+ closeButton: string;
211
+ closeIcon: string;
212
+ titleIcon: string;
213
+ titleText: string;
214
+ };
215
+ collapsed: {
216
+ on: string;
217
+ off: string;
218
+ };
219
+ };
220
+ items: {
221
+ base: string;
222
+ };
223
+ };
224
+ dropdown: {
225
+ floating: {
226
+ arrow: {
227
+ base: string;
228
+ style: {
229
+ dark: string;
230
+ light: string;
231
+ auto: string;
232
+ };
233
+ placement: string;
234
+ };
235
+ animation: string;
236
+ base: string;
237
+ content: string;
238
+ divider: string;
239
+ header: string;
240
+ hidden: string;
241
+ item: {
242
+ container: string;
243
+ base: string;
244
+ icon: string;
245
+ };
246
+ style: {
247
+ dark: string;
248
+ light: string;
249
+ auto: string;
250
+ };
251
+ target: string;
252
+ };
253
+ content: string;
254
+ inlineWrapper: string;
255
+ };
256
+ label: {
257
+ root: {
258
+ base: string;
259
+ disabled: string;
260
+ colors: {
261
+ default: string;
262
+ info: string;
263
+ failure: string;
264
+ warning: string;
265
+ success: string;
266
+ };
267
+ };
268
+ };
269
+ modal: {
270
+ root: {
271
+ base: string;
272
+ show: {
273
+ on: string;
274
+ off: string;
275
+ };
276
+ sizes: {
277
+ sm: string;
278
+ md: string;
279
+ lg: string;
280
+ xl: string;
281
+ '2xl': string;
282
+ '3xl': string;
283
+ '4xl': string;
284
+ '5xl': string;
285
+ '6xl': string;
286
+ '7xl': string;
287
+ };
288
+ positions: {
289
+ 'top-left': string;
290
+ 'top-center': string;
291
+ 'top-right': string;
292
+ 'center-left': string;
293
+ center: string;
294
+ 'center-right': string;
295
+ 'bottom-right': string;
296
+ 'bottom-center': string;
297
+ 'bottom-left': string;
298
+ };
299
+ };
300
+ content: {
301
+ base: string;
302
+ inner: string;
303
+ };
304
+ body: {
305
+ base: string;
306
+ popup: string;
307
+ };
308
+ header: {
309
+ base: string;
310
+ popup: string;
311
+ title: string;
312
+ close: {
313
+ base: string;
314
+ icon: string;
315
+ };
316
+ };
317
+ footer: {
318
+ base: string;
319
+ popup: string;
320
+ };
321
+ };
322
+ navbar: {
323
+ root: {
324
+ base: string;
325
+ rounded: {
326
+ on: string;
327
+ off: string;
328
+ };
329
+ bordered: {
330
+ on: string;
331
+ off: string;
332
+ };
333
+ inner: {
334
+ base: string;
335
+ fluid: {
336
+ on: string;
337
+ off: string;
338
+ };
339
+ };
340
+ };
341
+ brand: {
342
+ base: string;
343
+ };
344
+ collapse: {
345
+ base: string;
346
+ list: string;
347
+ hidden: {
348
+ on: string;
349
+ off: string;
350
+ };
351
+ };
352
+ link: {
353
+ base: string;
354
+ active: {
355
+ on: string;
356
+ off: string;
357
+ };
358
+ disabled: {
359
+ on: string;
360
+ off: string;
361
+ };
362
+ };
363
+ toggle: {
364
+ base: string;
365
+ icon: string;
366
+ };
367
+ };
368
+ progress: {
369
+ base: string;
370
+ label: string;
371
+ bar: string;
372
+ color: {
373
+ dark: string;
374
+ blue: string;
375
+ red: string;
376
+ green: string;
377
+ yellow: string;
378
+ indigo: string;
379
+ purple: string;
380
+ cyan: string;
381
+ gray: string;
382
+ lime: string;
383
+ pink: string;
384
+ teal: string;
385
+ };
386
+ size: {
387
+ sm: string;
388
+ md: string;
389
+ lg: string;
390
+ xl: string;
391
+ };
392
+ };
393
+ select: {
394
+ base: string;
395
+ addon: string;
396
+ field: {
397
+ base: string;
398
+ icon: {
399
+ base: string;
400
+ svg: string;
401
+ };
402
+ select: {
403
+ base: string;
404
+ withIcon: {
405
+ on: string;
406
+ off: string;
407
+ };
408
+ withAddon: {
409
+ on: string;
410
+ off: string;
411
+ };
412
+ withShadow: {
413
+ on: string;
414
+ off: string;
415
+ };
416
+ sizes: {
417
+ sm: string;
418
+ md: string;
419
+ lg: string;
420
+ };
421
+ colors: {
422
+ gray: string;
423
+ info: string;
424
+ failure: string;
425
+ warning: string;
426
+ success: string;
427
+ };
428
+ };
429
+ };
430
+ };
431
+ sidebar: {
432
+ root: {
433
+ base: string;
434
+ collapsed: {
435
+ on: string;
436
+ off: string;
437
+ };
438
+ inner: string;
439
+ };
440
+ collapse: {
441
+ button: string;
442
+ icon: {
443
+ base: string;
444
+ open: {
445
+ off: string;
446
+ on: string;
447
+ };
448
+ };
449
+ label: {
450
+ base: string;
451
+ icon: {
452
+ base: string;
453
+ open: {
454
+ on: string;
455
+ off: string;
456
+ };
457
+ };
458
+ };
459
+ list: string;
460
+ };
461
+ cta: {
462
+ base: string;
463
+ color: {
464
+ blue: string;
465
+ dark: string;
466
+ failure: string;
467
+ gray: string;
468
+ green: string;
469
+ light: string;
470
+ red: string;
471
+ purple: string;
472
+ success: string;
473
+ yellow: string;
474
+ warning: string;
475
+ };
476
+ };
477
+ item: {
478
+ base: string;
479
+ active: string;
480
+ collapsed: {
481
+ insideCollapse: string;
482
+ noIcon: string;
483
+ };
484
+ content: {
485
+ base: string;
486
+ };
487
+ icon: {
488
+ base: string;
489
+ active: string;
490
+ };
491
+ label: string;
492
+ listItem: string;
493
+ };
494
+ items: {
495
+ base: string;
496
+ };
497
+ itemGroup: {
498
+ base: string;
499
+ };
500
+ logo: {
501
+ base: string;
502
+ collapsed: {
503
+ on: string;
504
+ off: string;
505
+ };
506
+ img: string;
507
+ };
508
+ };
509
+ spinner: {
510
+ base: string;
511
+ color: {
512
+ primary: string;
513
+ secondary: string;
514
+ accent: string;
515
+ failure: string;
516
+ gray: string;
517
+ info: string;
518
+ pink: string;
519
+ purple: string;
520
+ success: string;
521
+ warning: string;
522
+ };
523
+ light: {
524
+ off: {
525
+ base: string;
526
+ color: {
527
+ failure: string;
528
+ gray: string;
529
+ info: string;
530
+ pink: string;
531
+ purple: string;
532
+ success: string;
533
+ warning: string;
534
+ };
535
+ };
536
+ on: {
537
+ base: string;
538
+ color: {
539
+ failure: string;
540
+ gray: string;
541
+ info: string;
542
+ pink: string;
543
+ purple: string;
544
+ success: string;
545
+ warning: string;
546
+ };
547
+ };
548
+ };
549
+ size: {
550
+ xs: string;
551
+ sm: string;
552
+ md: string;
553
+ lg: string;
554
+ xl: string;
555
+ };
556
+ };
557
+ table: {
558
+ root: {
559
+ base: string;
560
+ shadow: string;
561
+ wrapper: string;
562
+ };
563
+ body: {
564
+ base: string;
565
+ cell: {
566
+ base: string;
567
+ };
568
+ };
569
+ head: {
570
+ base: string;
571
+ cell: {
572
+ base: string;
573
+ };
574
+ };
575
+ row: {
576
+ base: string;
577
+ hovered: string;
578
+ striped: string;
579
+ };
580
+ };
581
+ tabs: {
582
+ base: string;
583
+ tablist: {
584
+ base: string;
585
+ variant: {
586
+ default: string;
587
+ underline: string;
588
+ pills: string;
589
+ fullWidth: string;
590
+ };
591
+ tabitem: {
592
+ base: string;
593
+ variant: {
594
+ default: {
595
+ base: string;
596
+ active: {
597
+ on: string;
598
+ off: string;
599
+ };
600
+ };
601
+ underline: {
602
+ base: string;
603
+ active: {
604
+ on: string;
605
+ off: string;
606
+ };
607
+ };
608
+ pills: {
609
+ base: string;
610
+ active: {
611
+ on: string;
612
+ off: string;
613
+ };
614
+ };
615
+ fullWidth: {
616
+ base: string;
617
+ active: {
618
+ on: string;
619
+ off: string;
620
+ };
621
+ };
622
+ };
623
+ icon: string;
624
+ };
625
+ };
626
+ tabitemcontainer: {
627
+ base: string;
628
+ variant: {
629
+ default: string;
630
+ underline: string;
631
+ pills: string;
632
+ fullWidth: string;
633
+ };
634
+ };
635
+ tabpanel: string;
636
+ };
637
+ textarea: {
638
+ base: string;
639
+ colors: {
640
+ gray: string;
641
+ info: string;
642
+ failure: string;
643
+ warning: string;
644
+ success: string;
645
+ };
646
+ withShadow: {
647
+ on: string;
648
+ off: string;
649
+ };
650
+ };
651
+ textInput: {
652
+ addon: string;
653
+ field: {
654
+ base: string;
655
+ icon: {
656
+ base: string;
657
+ svg: string;
658
+ };
659
+ rightIcon: {
660
+ base: string;
661
+ svg: string;
662
+ };
663
+ input: {
664
+ base: string;
665
+ sizes: {
666
+ sm: string;
667
+ md: string;
668
+ lg: string;
669
+ };
670
+ colors: {
671
+ gray: string;
672
+ info: string;
673
+ failure: string;
674
+ warning: string;
675
+ success: string;
676
+ };
677
+ withRightIcon: {
678
+ on: string;
679
+ off: string;
680
+ };
681
+ withIcon: {
682
+ on: string;
683
+ off: string;
684
+ };
685
+ withAddon: {
686
+ on: string;
687
+ off: string;
688
+ };
689
+ withShadow: {
690
+ on: string;
691
+ off: string;
692
+ };
693
+ };
694
+ };
695
+ };
696
+ toggleSwitch: {
697
+ root: {
698
+ base: string;
699
+ active: {
700
+ on: string;
701
+ off: string;
702
+ };
703
+ label: string;
704
+ };
705
+ toggle: {
706
+ base: string;
707
+ checked: {
708
+ on: string;
709
+ off: string;
710
+ color: {
711
+ blue: string;
712
+ dark: string;
713
+ failure: string;
714
+ gray: string;
715
+ green: string;
716
+ light: string;
717
+ red: string;
718
+ purple: string;
719
+ success: string;
720
+ yellow: string;
721
+ warning: string;
722
+ cyan: string;
723
+ lime: string;
724
+ indigo: string;
725
+ default: string;
726
+ pink: string;
727
+ teal: string;
728
+ };
729
+ };
730
+ sizes: {
731
+ sm: string;
732
+ md: string;
733
+ lg: string;
734
+ };
735
+ };
736
+ };
737
+ tooltip: {
738
+ target: string;
739
+ animation: string;
740
+ arrow: {
741
+ base: string;
742
+ style: {
743
+ dark: string;
744
+ light: string;
745
+ auto: string;
746
+ };
747
+ placement: string;
748
+ };
749
+ base: string;
750
+ hidden: string;
751
+ style: {
752
+ dark: string;
753
+ light: string;
754
+ auto: string;
755
+ };
756
+ content: string;
757
+ };
758
+ };