adminforth 2.4.0-next.12 → 2.4.0-next.121

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