adminforth 2.5.3 → 2.6.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 (82) hide show
  1. package/commands/createApp/templates/index.ts.hbs +7 -0
  2. package/commands/createCustomComponent/configLoader.js +3 -0
  3. package/dist/dataConnectors/baseConnector.d.ts.map +1 -1
  4. package/dist/dataConnectors/baseConnector.js +16 -3
  5. package/dist/dataConnectors/baseConnector.js.map +1 -1
  6. package/dist/dataConnectors/mongo.d.ts.map +1 -1
  7. package/dist/dataConnectors/mongo.js +13 -6
  8. package/dist/dataConnectors/mongo.js.map +1 -1
  9. package/dist/index.d.ts +1 -0
  10. package/dist/index.d.ts.map +1 -1
  11. package/dist/index.js +19 -8
  12. package/dist/index.js.map +1 -1
  13. package/dist/modules/codeInjector.d.ts.map +1 -1
  14. package/dist/modules/codeInjector.js +20 -3
  15. package/dist/modules/codeInjector.js.map +1 -1
  16. package/dist/modules/configValidator.d.ts.map +1 -1
  17. package/dist/modules/configValidator.js +48 -1
  18. package/dist/modules/configValidator.js.map +1 -1
  19. package/dist/modules/restApi.d.ts.map +1 -1
  20. package/dist/modules/restApi.js +145 -25
  21. package/dist/modules/restApi.js.map +1 -1
  22. package/dist/modules/styles.d.ts +450 -13
  23. package/dist/modules/styles.d.ts.map +1 -1
  24. package/dist/modules/styles.js +506 -31
  25. package/dist/modules/styles.js.map +1 -1
  26. package/dist/modules/utils.d.ts +1 -0
  27. package/dist/modules/utils.d.ts.map +1 -1
  28. package/dist/modules/utils.js +9 -0
  29. package/dist/modules/utils.js.map +1 -1
  30. package/dist/spa/index.html +1 -1
  31. package/dist/spa/src/App.vue +21 -11
  32. package/dist/spa/src/afcl/Button.vue +3 -3
  33. package/dist/spa/src/afcl/Checkbox.vue +21 -13
  34. package/dist/spa/src/afcl/CountryFlag.vue +4 -1
  35. package/dist/spa/src/{components/CustomDatePicker.vue → afcl/DatePicker.vue} +95 -9
  36. package/dist/spa/src/afcl/Dialog.vue +6 -6
  37. package/dist/spa/src/afcl/Dropzone.vue +10 -10
  38. package/dist/spa/src/afcl/Input.vue +4 -4
  39. package/dist/spa/src/afcl/ProgressBar.vue +7 -7
  40. package/dist/spa/src/afcl/Select.vue +51 -21
  41. package/dist/spa/src/afcl/Skeleton.vue +6 -6
  42. package/dist/spa/src/afcl/Table.vue +11 -11
  43. package/dist/spa/src/afcl/Toggle.vue +32 -0
  44. package/dist/spa/src/afcl/Tooltip.vue +1 -1
  45. package/dist/spa/src/afcl/VerticalTabs.vue +3 -3
  46. package/dist/spa/src/afcl/index.ts +2 -1
  47. package/dist/spa/src/components/AcceptModal.vue +6 -6
  48. package/dist/spa/src/components/Breadcrumbs.vue +5 -5
  49. package/dist/spa/src/components/ColumnValueInput.vue +28 -9
  50. package/dist/spa/src/components/ColumnValueInputWrapper.vue +2 -1
  51. package/dist/spa/src/components/CustomDateRangePicker.vue +9 -8
  52. package/dist/spa/src/components/CustomRangePicker.vue +32 -3
  53. package/dist/spa/src/components/Filters.vue +76 -31
  54. package/dist/spa/src/components/GroupsTable.vue +7 -7
  55. package/dist/spa/src/components/ResourceForm.vue +61 -26
  56. package/dist/spa/src/components/ResourceListTable.vue +28 -29
  57. package/dist/spa/src/components/ResourceListTableVirtual.vue +25 -27
  58. package/dist/spa/src/components/ShowTable.vue +8 -6
  59. package/dist/spa/src/components/SingleSkeletLoader.vue +6 -6
  60. package/dist/spa/src/components/SkeleteLoader.vue +1 -1
  61. package/dist/spa/src/components/ThreeDotsMenu.vue +5 -5
  62. package/dist/spa/src/components/Toast.vue +2 -7
  63. package/dist/spa/src/components/ValueRenderer.vue +4 -4
  64. package/dist/spa/src/controls/BoolToggle.vue +34 -0
  65. package/dist/spa/src/spa_types/core.ts +7 -0
  66. package/dist/spa/src/stores/core.ts +1 -1
  67. package/dist/spa/src/types/Back.ts +71 -10
  68. package/dist/spa/src/types/Common.ts +12 -7
  69. package/dist/spa/src/utils.ts +209 -0
  70. package/dist/spa/src/views/CreateView.vue +4 -4
  71. package/dist/spa/src/views/EditView.vue +3 -3
  72. package/dist/spa/src/views/ListView.vue +13 -18
  73. package/dist/spa/src/views/LoginView.vue +22 -24
  74. package/dist/spa/src/views/ResourceParent.vue +1 -1
  75. package/dist/spa/src/views/ShowView.vue +3 -3
  76. package/dist/types/Back.d.ts +55 -8
  77. package/dist/types/Back.d.ts.map +1 -1
  78. package/dist/types/Back.js.map +1 -1
  79. package/dist/types/Common.d.ts +11 -6
  80. package/dist/types/Common.d.ts.map +1 -1
  81. package/dist/types/Common.js.map +1 -1
  82. package/package.json +1 -1
@@ -23,26 +23,239 @@ export declare const styles: () => {
23
23
  lightSidebarIcons: string;
24
24
  lightSidebarIconsHover: string;
25
25
  lightSidebarHeading: string;
26
+ /***************************************************************
27
+ * *
28
+ * Light Views *
29
+ * *
30
+ ***************************************************************/
31
+ lightForm: string;
32
+ lightFormBorder: string;
33
+ lightFormHeading: string;
34
+ lightFormFieldTextColor: string;
35
+ lightListSkeletLoader: string;
26
36
  lightList: string;
27
37
  lightListTable: string;
28
38
  lightListTableHeading: string;
29
39
  lightListTableHeadingText: string;
30
40
  lightListTableText: string;
31
41
  lightListTableRowHover: string;
32
- lightListBreadcrumbsText: string;
33
42
  lightListBorder: string;
34
- lightForm: string;
35
- lightFormBorder: string;
36
- lightFormHeading: string;
37
- lightButtons: string;
43
+ lightListTablePaginationBackgoround: string;
44
+ lightListTablePaginationBackgoroundHover: string;
45
+ lightListTablePaginationBorder: string;
46
+ lightListTablePaginationFocusRing: string;
47
+ lightListTablePaginationText: string;
48
+ lightListTablePaginationCurrentPageText: string;
49
+ lightListTablePaginationTextHover: string;
50
+ lightListTablePaginationHelpText: string;
51
+ lightListViewButtonBackground: string;
52
+ lightListViewButtonBackgroundHover: string;
53
+ lightListViewButtonText: string;
54
+ lightListViewButtonTextHover: string;
55
+ lightListViewButtonFocusRing: string;
56
+ lightListViewButtonBorder: string;
57
+ lightShowTableHeadingBackground: string;
58
+ lightShowTableHeadingText: string;
59
+ lightShowTableUnderHeadingBackground: string;
60
+ lightShowTableUnderHeadingText: string;
61
+ lightShowTablesBodyBackground: string;
62
+ lightShowTableBodyText: string;
63
+ lightShowTableBodyBorder: string;
64
+ lightShowViewButtonBackground: string;
65
+ lightShowViewButtonBackgroundHover: string;
66
+ lightShowViewButtonText: string;
67
+ lightShowViewButtonTextHover: string;
68
+ lightShowViewButtonFocusRing: string;
69
+ lightShowViewButtonBorder: string;
70
+ lightCreateViewButtonBackground: string;
71
+ lightCreateViewButtonBackgroundHover: string;
72
+ lightCreateViewButtonText: string;
73
+ lightCreateViewButtonTextHover: string;
74
+ lightCreateViewButtonFocusRing: string;
75
+ lightCreateViewButtonBorder: string;
76
+ lightCreateViewSaveButtonText: string;
77
+ lightCreateViewSaveButtonTextHover: string;
78
+ lightEditViewButtonBackground: string;
79
+ lightEditViewButtonBackgroundHover: string;
80
+ lightEditViewButtonText: string;
81
+ lightEditViewButtonTextHover: string;
82
+ lightEditViewButtonFocusRing: string;
83
+ lightEditViewButtonBorder: string;
84
+ lightEditViewSaveButtonText: string;
85
+ lightEditViewSaveButtonTextHover: string;
86
+ lightLoginViewBackground: string;
87
+ lightLoginViewTextColor: string;
88
+ lightLoginViewSubTextColor: string;
89
+ lightLoginViewPromptBackground: string;
90
+ lightLoginViewPromptText: string;
91
+ /***************************************************************
92
+ * *
93
+ * AdminForth light components *
94
+ * *
95
+ ***************************************************************/
96
+ lightButtonsBackground: string;
38
97
  lightButtonsBorder: string;
39
98
  lightButtonsText: string;
40
99
  lightButtonsHover: string;
41
100
  lightButtonsBorderHover: string;
42
- lightButtonsActive: string;
43
- lightButtonsDisabled: string;
44
- lightButtonsDisabledText: string;
45
- lightButtonsIcon: string;
101
+ lightButtonFocusRing: string;
102
+ lightDropdownButtonsBackground: string;
103
+ lightDropownButtonsBorder: string;
104
+ lightDropdownButtonsText: string;
105
+ lightDropdownButtonsPlaceholderText: string;
106
+ lightDropdownOptionsBackground: string;
107
+ lightDropdownOptionsHoverBackground: string;
108
+ lightDropdownPicked: string;
109
+ lightDropdownOptionsText: string;
110
+ lightDropdownMultipleSelectBackground: string;
111
+ lightDropdownMultipleSelectText: string;
112
+ lightDropdownMultipleSelectIcon: string;
113
+ lightDropdownMultipleSelectIconHover: string;
114
+ lightDropdownMultipleSelectIconFocus: string;
115
+ lightDropdownMultipleSelectIconFocusBackground: string;
116
+ lightCheckboxBgUnchecked: string;
117
+ lightCheckboxBgChecked: string;
118
+ lightCheckboxIconColor: string;
119
+ lightCheckboxBorderColor: string;
120
+ lightFocusRing: string;
121
+ lightTextLabel: string;
122
+ lightToggleBgUnactive: string;
123
+ lightToggleBgActive: string;
124
+ lightToggleCircle: string;
125
+ lightToggleRing: string;
126
+ lightToggleText: string;
127
+ lightToggleBorderUnactive: string;
128
+ lightToggleBorderActive: string;
129
+ lightInputBackground: string;
130
+ lightInputPlaceholderText: string;
131
+ lightInputText: string;
132
+ lightInputBorder: string;
133
+ lightInputBackgroundHover: string;
134
+ lightInputTextHover: string;
135
+ lightInputBorderHover: string;
136
+ lightInputFocusRing: string;
137
+ lightInputFocusBorder: string;
138
+ lightInputIconColor: string;
139
+ lightInputErrorColor: string;
140
+ lightRequiredIconColor: string;
141
+ lightDatePickerButtonBackground: string;
142
+ lightDatePickerButtonText: string;
143
+ lightDatePickerPlaceHolder: string;
144
+ lightDatePickerButtonBorder: string;
145
+ lightDatePickerIcon: string;
146
+ lightDatePickerExpandText: string;
147
+ lightDatePickerCalendarBackground: string;
148
+ lightDatePickerCalendarText: string;
149
+ lightDatePickerCalendarArrowButtonBackground: string;
150
+ lightDatePickerCalendarArrowButtonBackgroundHover: string;
151
+ lightDatePickerCalendarArrowButtonFocusRing: string;
152
+ lightDatePickerCalendarDaysOfWeekText: string;
153
+ lightDatePickerCalendarDateButtonText: string;
154
+ lightDatePickerCalendarDateButtonBackgroundHover: string;
155
+ lightDatePickerCalendarDateActiveButtonBackground: string;
156
+ lightDatePickerCalendarDateActiveButtonText: string;
157
+ lightTooltipBackground: string;
158
+ lightTooltipText: string;
159
+ lightVerticalTabsText: string;
160
+ lightVerticalTabsTextHover: string;
161
+ lightVerticalTabsBackground: string;
162
+ lightVerticalTabsBackgroundHover: string;
163
+ lightVerticalTabsTextActive: string;
164
+ lightVerticalTabsBackgroundActive: string;
165
+ lightVerticalTabsSlotText: string;
166
+ lightDialogBackgorund: string;
167
+ lightDialogBreakLine: string;
168
+ lightDialogHeaderText: string;
169
+ lightDialogCloseButton: string;
170
+ lightDialogCloseButtonHover: string;
171
+ lightDialogCloseButtonHoverBackground: string;
172
+ lightDialogBodyText: string;
173
+ lightDropzoneBackground: string;
174
+ lightDropzoneBackgroundHover: string;
175
+ lightDropzoneBorder: string;
176
+ lightDropzoneBorderHover: string;
177
+ lightDropzoneBorderDragging: string;
178
+ lightDropzoneBackgroundDragging: string;
179
+ lightDropzoneIcon: string;
180
+ lightDropzoneText: string;
181
+ lightTableBackground: string;
182
+ lightTableHeadingText: string;
183
+ lightTableHeadingBackground: string;
184
+ lightTableBorder: string;
185
+ lightTableText: string;
186
+ lightTableEvenBackground: string;
187
+ lightTableOddBackground: string;
188
+ lightTablePaginationText: string;
189
+ lightTablePaginationNumeration: string;
190
+ lightUnactivePaginationButtonBackground: string;
191
+ lightUnactivePaginationButtonText: string;
192
+ lightUnactivePaginationButtonBorder: string;
193
+ lightUnactivePaginationButtonHoverBackground: string;
194
+ lightUnactivePaginationButtonHoverText: string;
195
+ lightActivePaginationButtonBackground: string;
196
+ lightActivePaginationButtonText: string;
197
+ lightProgressBarUnfilledColor: string;
198
+ lightProgressBarFilledColor: string;
199
+ lightProgressBarText: string;
200
+ lightSkeletonBackgroundColor: string;
201
+ lightSkeletonIconColor: string;
202
+ lightAcceptModalBackground: string;
203
+ lightAcceptModalCloseIcon: string;
204
+ lightAcceptModalCloseIconHover: string;
205
+ lightAcceptModalCloseIconHoverBackground: string;
206
+ lightAcceptModalWarningIcon: string;
207
+ lightAcceptModalText: string;
208
+ lightAcceptModalConfirmButtonBackground: string;
209
+ lightAcceptModalConfirmButtonBackgroundHover: string;
210
+ lightAcceptModalConfirmButtonText: string;
211
+ lightAcceptModalConfirmButtonFocus: string;
212
+ lightAcceptModalCancelButtonBackground: string;
213
+ lightAcceptModalCancelButtonBackgroundHover: string;
214
+ lightAcceptModalCancelButtonText: string;
215
+ lightAcceptModalCancelButtonFocus: string;
216
+ lightAcceptModalCancelButtonBorder: string;
217
+ lightBreadcrumbsHomepageText: string;
218
+ lightBreadcrumbsHomepageTextHover: string;
219
+ lightBreadcrumbsArrowIcon: string;
220
+ lightBreadcrumbsText: string;
221
+ lightRangePickerButtonBackground: string;
222
+ lightRangePickerButtonBackgroundHover: string;
223
+ lightRangePickerButtonBorder: string;
224
+ lightRangePickerButtonText: string;
225
+ lightRangePickerButtonTextHover: string;
226
+ lightRangePickerFocusRing: string;
227
+ lightRangePickerInputBackground: string;
228
+ lightRangePickerInputBorder: string;
229
+ lightRangePickerInputText: string;
230
+ lightRangePickerInputPlaceholder: string;
231
+ lightFiltersBackgroung: string;
232
+ lightFiltersHeaderText: string;
233
+ lightFiltersCloseIcon: string;
234
+ lightFiltersCloseIconHover: string;
235
+ lightFiltersCloseIconHoverBackground: string;
236
+ lightFiltersClearAllButtonBackground: string;
237
+ lightFiltersClearAllButtonBackgroundHover: string;
238
+ lightFiltersClearAllButtonBorder: string;
239
+ lightFiltersClearAllButtonText: string;
240
+ lightFiltersClearAllButtonTextHover: string;
241
+ lightFiltersClearAllButtonFocus: string;
242
+ lightThreeDotsMenuIconBackground: string;
243
+ lightThreeDotsMenuIconBackgroundHover: string;
244
+ lightThreeDotsMenuIconBackgroundBorder: string;
245
+ lightThreeDotsMenuIconDots: string;
246
+ lightThreeDotsMenuIconDotsHover: string;
247
+ lightThreeDotsMenuIconFocus: string;
248
+ lightThreeDotsMenuBodyBackground: string;
249
+ lightThreeDotsMenuBodyBackgroundHover: string;
250
+ lightThreeDotsMenuBodyText: string;
251
+ lightThreeDotsMenuBodyTextHover: string;
252
+ lightToastBackground: string;
253
+ lightToastCloseIcon: string;
254
+ lightToastCloseIconHover: string;
255
+ lightToastCloseIconBackground: string;
256
+ lightToastCloseIconBackgroundHover: string;
257
+ lightToastCloseIconFocusRing: string;
258
+ lightToastText: string;
46
259
  darkHtml: string;
47
260
  darkPrimary: string;
48
261
  darkPrimaryContrast: string;
@@ -66,17 +279,241 @@ export declare const styles: () => {
66
279
  darkSidebarIcons: string;
67
280
  darkSidebarIconsHover: string;
68
281
  darkSidebarHeading: string;
282
+ /***************************************************************
283
+ * *
284
+ * Dark Views *
285
+ * *
286
+ ***************************************************************/
287
+ darkForm: string;
288
+ darkFormBorder: string;
289
+ darkFormHeading: string;
290
+ darkFormFieldTextColor: string;
291
+ darkListSkeletLoader: string;
69
292
  darkList: string;
70
293
  darkListTable: string;
71
294
  darkListTableHeading: string;
72
295
  darkListTableHeadingText: string;
73
296
  darkListTableText: string;
74
297
  darkListTableRowHover: string;
75
- darkListBreadcrumbsText: string;
76
298
  darkListBorder: string;
77
- darkForm: string;
78
- darkFormBorder: string;
79
- darkFormHeading: string;
299
+ darkListTablePaginationBackgoround: string;
300
+ darkListTablePaginationBackgoroundHover: string;
301
+ darkListTablePaginationBorder: string;
302
+ darkListTablePaginationFocusRing: string;
303
+ darkListTablePaginationText: string;
304
+ darkListTablePaginationCurrentPageText: string;
305
+ darkListTablePaginationTextHover: string;
306
+ darkListTablePaginationHelpText: string;
307
+ darkListViewButtonBackground: string;
308
+ darkListViewButtonBackgroundHover: string;
309
+ darkListViewButtonText: string;
310
+ darkListViewButtonTextHover: string;
311
+ darkListViewButtonFocusRing: string;
312
+ darkListViewButtonBorder: string;
313
+ darkShowTableHeadingBackground: string;
314
+ darkShowTableHeadingText: string;
315
+ darkShowTableUnderHeadingBackground: string;
316
+ darkShowTableUnderHeadingText: string;
317
+ darkShowTablesBodyBackground: string;
318
+ darkShowTableBodyText: string;
319
+ darkShowTableBodyBorder: string;
320
+ darkShowViewButtonBackground: string;
321
+ darkShowViewButtonBackgroundHover: string;
322
+ darkShowViewButtonText: string;
323
+ darkShowViewButtonTextHover: string;
324
+ darkShowViewButtonFocusRing: string;
325
+ darkShowViewButtonBorder: string;
326
+ darkCreateViewButtonBackground: string;
327
+ darkCreateViewButtonBackgroundHover: string;
328
+ darkCreateViewButtonText: string;
329
+ darkCreateViewButtonTextHover: string;
330
+ darkCreateViewButtonFocusRing: string;
331
+ darkCreateViewButtonBorder: string;
332
+ darkCreateViewSaveButtonText: string;
333
+ darkCreateViewSaveButtonTextHover: string;
334
+ darkEditViewButtonBackground: string;
335
+ darkEditViewButtonBackgroundHover: string;
336
+ darkEditViewButtonText: string;
337
+ darkEditViewButtonTextHover: string;
338
+ darkEditViewButtonFocusRing: string;
339
+ darkEditViewButtonBorder: string;
340
+ darkEditViewSaveButtonText: string;
341
+ darkEditViewSaveButtonTextHover: string;
342
+ darkLoginViewBackground: string;
343
+ darkLoginViewTextColor: string;
344
+ darkLoginViewSubTextColor: string;
345
+ darkLoginViewPromptBackground: string;
346
+ darkLoginViewPromptText: string;
347
+ /***************************************************************
348
+ * *
349
+ * AdminForth dark components *
350
+ * *
351
+ ***************************************************************/
352
+ darkButtonsBackground: string;
353
+ darkButtonsBorder: string;
354
+ darkButtonsText: string;
355
+ darkButtonsHover: string;
356
+ darkButtonsBorderHover: string;
357
+ darkButtonFocusRing: string;
358
+ darkDropdownButtonsBackground: string;
359
+ darkDropdownButtonsBorder: string;
360
+ darkDropdownButtonsText: string;
361
+ darkDropdownButtonsPlaceholderText: string;
362
+ darkDropdownOptionsBackground: string;
363
+ darkDropdownOptionsHoverBackground: string;
364
+ darkDropdownPicked: string;
365
+ darkDropdownOptionsText: string;
366
+ darkDropdownMultipleSelectBackground: string;
367
+ darkDropdownMultipleSelectText: string;
368
+ darkDropdownMultipleSelectIcon: string;
369
+ darkDropdownMultipleSelectIconHover: string;
370
+ darkDropdownMultipleSelectIconFocus: string;
371
+ darkDropdownMultipleSelectIconFocusBackground: string;
372
+ darkCheckboxBgUnchecked: string;
373
+ darkCheckboxBgChecked: string;
374
+ darkCheckboxIconColor: string;
375
+ darkCheckboxBorderColor: string;
376
+ darkFocusRing: string;
377
+ darkTextLabel: string;
378
+ darkToggleBgUnactive: string;
379
+ darkToggleBgActive: string;
380
+ darkToggleCircleUnactive: string;
381
+ darkToggleCircleActive: string;
382
+ darkToggleRing: string;
383
+ darkToggleText: string;
384
+ darkToggleBorderUnactive: string;
385
+ darkToggleBorderActive: string;
386
+ darkInputBackground: string;
387
+ darkInputPlaceholderText: string;
388
+ darkInputText: string;
389
+ darkInputBorder: string;
390
+ darkInputHover: string;
391
+ darkInputTextHover: string;
392
+ darkInputBorderHover: string;
393
+ darkInputFocusRing: string;
394
+ darkInputFocusBorder: string;
395
+ darkInputIconColor: string;
396
+ darkInputErrorColor: string;
397
+ darkRequiredIconColor: string;
398
+ darkDatePickerButtonBackground: string;
399
+ darkDatePickerButtonText: string;
400
+ darkDatePickerPlaceHolder: string;
401
+ darkDatePickerButtonBorder: string;
402
+ darkDatePickerIcon: string;
403
+ darkDatePickerExpandText: string;
404
+ darkDatePickerCalendarBackground: string;
405
+ darkDatePickerCalendarMainText: string;
406
+ darkDatePickerCalendarArrowButtonBackground: string;
407
+ darkDatePickerCalendarArrowButtonBackgroundHover: string;
408
+ darkDatePickerCalendarArrowButtonFocusRing: string;
409
+ darkDatePickerCalendarDaysOfWeekText: string;
410
+ darkDatePickerCalendarDateButtonText: string;
411
+ darkDatePickerCalendarDateActiveButtonBackground: string;
412
+ darkDatePickerCalendarDateButtonBackgroundHover: string;
413
+ darkDatePickerCalendarDateActiveButtonText: string;
414
+ darkTooltipBackground: string;
415
+ darkTooltipText: string;
416
+ darkVerticalTabsText: string;
417
+ darkVerticalTabsTextHover: string;
418
+ darkVerticalTabsBackground: string;
419
+ darkVerticalTabsBackgroundHover: string;
420
+ darkVerticalTabsTextActive: string;
421
+ darkVerticalTabsBackgroundActive: string;
422
+ darkVerticalTabsSlotText: string;
423
+ darkDialogBackgorund: string;
424
+ darkDialogBreakLine: string;
425
+ darkDialogHeaderText: string;
426
+ darkDialogCloseButton: string;
427
+ darkDialogCloseButtonHover: string;
428
+ darkDialogCloseButtonHoverBackground: string;
429
+ darkDialogBodyText: string;
430
+ darkDropzoneBackground: string;
431
+ darkDropzoneBackgroundHover: string;
432
+ darkDropzoneBackgroundDragging: string;
433
+ darkDropzoneBorder: string;
434
+ darkDropzoneBorderHover: string;
435
+ darkDropzoneBorderDragging: string;
436
+ darkDropzoneIcon: string;
437
+ darkDropzoneText: string;
438
+ darkTableBackground: string;
439
+ darkTableHeadingText: string;
440
+ darkTableHeadingBackground: string;
441
+ darkTableBorder: string;
442
+ darkTableText: string;
443
+ darkTableEvenBackground: string;
444
+ darkTableOddBackground: string;
445
+ darkTablePaginationText: string;
446
+ darkTablePaginationNumeration: string;
447
+ darkUnactivePaginationButtonBackground: string;
448
+ darkUnactivePaginationButtonText: string;
449
+ darkUnactivePaginationButtonBorder: string;
450
+ darkUnactivePaginationButtonHoverBackground: string;
451
+ darkUnactivePaginationButtonHoverText: string;
452
+ darkActivePaginationButtonBackground: string;
453
+ darkActivePaginationButtonText: string;
454
+ darkProgressBarUnfilledColor: string;
455
+ darkProgressBarFilledColor: string;
456
+ darkProgressBarText: string;
457
+ darkSkeletonBackgroundColor: string;
458
+ darkSkeletonIconColor: string;
459
+ darkAcceptModalBackground: string;
460
+ darkAcceptModalCloseIcon: string;
461
+ darkAcceptModalCloseIconHover: string;
462
+ darkAcceptModalCloseIconHoverBackground: string;
463
+ darkAcceptModalWarningIcon: string;
464
+ darkAcceptModalText: string;
465
+ darkAcceptModalConfirmButtonBackground: string;
466
+ darkAcceptModalConfirmButtonBackgroundHover: string;
467
+ darkAcceptModalConfirmButtonText: string;
468
+ darkAcceptModalConfirmButtonFocus: string;
469
+ darkAcceptModalCancelButtonBackground: string;
470
+ darkAcceptModalCancelButtonBackgroundHover: string;
471
+ darkAcceptModalCancelButtonText: string;
472
+ darkAcceptModalCancelButtonTextHover: string;
473
+ darkAcceptModalCancelButtonFocus: string;
474
+ darkAcceptModalCancelButtonBorder: string;
475
+ darkBreadcrumbsHomepageText: string;
476
+ darkBreadcrumbsHomepageTextHover: string;
477
+ darkBreadcrumbsArrowIcon: string;
478
+ darkBreadcrumbsText: string;
479
+ darkRangePickerButtonBackground: string;
480
+ darkRangePickerButtonBackgroundHover: string;
481
+ darkRangePickerButtonBorder: string;
482
+ darkRangePickerButtonText: string;
483
+ darkRangePickerButtonTextHover: string;
484
+ darkRangePickerFocusRing: string;
485
+ darkRangePickerInputBackground: string;
486
+ darkRangePickerInputBorder: string;
487
+ darkRangePickerInputText: string;
488
+ darkRangePickerInputPlaceholder: string;
489
+ darkFiltersBackgroung: string;
490
+ darkFiltersHeaderText: string;
491
+ darkFiltersCloseIcon: string;
492
+ darkFiltersCloseIconHover: string;
493
+ darkFiltersCloseIconHoverBackground: string;
494
+ darkFiltersClearAllButtonBackground: string;
495
+ darkFiltersClearAllButtonBackgroundHover: string;
496
+ darkFiltersClearAllButtonBorder: string;
497
+ darkFiltersClearAllButtonText: string;
498
+ darkFiltersClearAllButtonTextHover: string;
499
+ darkFiltersClearAllButtonFocus: string;
500
+ darkThreeDotsMenuIconBackground: string;
501
+ darkThreeDotsMenuIconBackgroundHover: string;
502
+ darkThreeDotsMenuIconBackgroundBorder: string;
503
+ darkThreeDotsMenuIconDots: string;
504
+ darkThreeDotsMenuIconDotsHover: string;
505
+ darkThreeDotsMenuIconFocus: string;
506
+ darkThreeDotsMenuBodyBackground: string;
507
+ darkThreeDotsMenuBodyBackgroundHover: string;
508
+ darkThreeDotsMenuBodyText: string;
509
+ darkThreeDotsMenuBodyTextHover: string;
510
+ darkToastBackground: string;
511
+ darkToastCloseIcon: string;
512
+ darkToastCloseIconHover: string;
513
+ darkToastCloseIconBackground: string;
514
+ darkToastCloseIconBackgroundHover: string;
515
+ darkToastCloseIconFocusRing: string;
516
+ darkToastText: string;
80
517
  };
81
518
  boxShadow: {
82
519
  customLight: string;
@@ -1 +1 @@
1
- {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../modules/styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwHjB,CAAC"}
1
+ {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../modules/styles.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;QA8Bf;;;;wEAIgE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAoGhE;;;;wEAIgE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QA+NhE;;;;wEAIgE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAkGhE;;;;wEAIgE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAgNlE,CAAC"}