adminforth 2.4.0-next.13 → 2.4.0-next.130

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