adminforth 2.4.0-next.31 → 2.4.0-next.310
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.
- package/commands/callTsProxy.js +14 -4
- package/commands/createApp/templates/api.ts.hbs +10 -0
- package/commands/createApp/templates/custom/tsconfig.json.hbs +2 -3
- package/commands/createApp/templates/index.ts.hbs +12 -1
- package/commands/createApp/templates/package.json.hbs +1 -1
- package/commands/createApp/templates/prisma.config.ts.hbs +8 -0
- package/commands/createApp/templates/schema.prisma.hbs +0 -1
- package/commands/createApp/utils.js +10 -0
- package/commands/createCustomComponent/configLoader.js +17 -4
- package/commands/createCustomComponent/main.js +13 -7
- package/commands/createCustomComponent/templates/customCrud/beforeActionButtons.vue.hbs +38 -0
- package/commands/createCustomComponent/templates/customCrud/saveButton.vue.hbs +28 -0
- package/commands/createPlugin/templates/custom/tsconfig.json.hbs +2 -5
- package/commands/createPlugin/templates/package.json.hbs +1 -1
- package/commands/generateModels.js +30 -22
- package/dist/auth.d.ts +9 -1
- package/dist/auth.d.ts.map +1 -1
- package/dist/auth.js +21 -2
- package/dist/auth.js.map +1 -1
- package/dist/dataConnectors/baseConnector.d.ts +1 -1
- package/dist/dataConnectors/baseConnector.d.ts.map +1 -1
- package/dist/dataConnectors/baseConnector.js +69 -17
- package/dist/dataConnectors/baseConnector.js.map +1 -1
- package/dist/dataConnectors/clickhouse.d.ts.map +1 -1
- package/dist/dataConnectors/clickhouse.js +15 -0
- package/dist/dataConnectors/clickhouse.js.map +1 -1
- package/dist/dataConnectors/mongo.d.ts.map +1 -1
- package/dist/dataConnectors/mongo.js +50 -15
- package/dist/dataConnectors/mongo.js.map +1 -1
- package/dist/dataConnectors/mysql.d.ts.map +1 -1
- package/dist/dataConnectors/mysql.js +11 -0
- package/dist/dataConnectors/mysql.js.map +1 -1
- package/dist/dataConnectors/postgres.d.ts.map +1 -1
- package/dist/dataConnectors/postgres.js +43 -14
- package/dist/dataConnectors/postgres.js.map +1 -1
- package/dist/dataConnectors/sqlite.d.ts.map +1 -1
- package/dist/dataConnectors/sqlite.js +11 -0
- package/dist/dataConnectors/sqlite.js.map +1 -1
- package/dist/index.d.ts +12 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +45 -22
- package/dist/index.js.map +1 -1
- package/dist/modules/codeInjector.d.ts +2 -0
- package/dist/modules/codeInjector.d.ts.map +1 -1
- package/dist/modules/codeInjector.js +62 -6
- package/dist/modules/codeInjector.js.map +1 -1
- package/dist/modules/configValidator.d.ts +6 -0
- package/dist/modules/configValidator.d.ts.map +1 -1
- package/dist/modules/configValidator.js +202 -25
- package/dist/modules/configValidator.js.map +1 -1
- package/dist/modules/restApi.d.ts +1 -1
- package/dist/modules/restApi.d.ts.map +1 -1
- package/dist/modules/restApi.js +172 -31
- package/dist/modules/restApi.js.map +1 -1
- package/dist/modules/styles.d.ts +499 -13
- package/dist/modules/styles.d.ts.map +1 -1
- package/dist/modules/styles.js +555 -31
- package/dist/modules/styles.js.map +1 -1
- package/dist/modules/utils.d.ts +7 -15
- package/dist/modules/utils.d.ts.map +1 -1
- package/dist/modules/utils.js +45 -68
- package/dist/modules/utils.js.map +1 -1
- package/dist/servers/express.d.ts +5 -0
- package/dist/servers/express.d.ts.map +1 -1
- package/dist/servers/express.js +40 -1
- package/dist/servers/express.js.map +1 -1
- package/dist/spa/index.html +1 -1
- package/dist/spa/package-lock.json +1208 -708
- package/dist/spa/package.json +34 -34
- package/dist/spa/src/App.vue +59 -174
- package/dist/spa/src/adminforth.ts +42 -18
- package/dist/spa/src/afcl/AreaChart.vue +0 -1
- package/dist/spa/src/afcl/BarChart.vue +2 -2
- package/dist/spa/src/afcl/Button.vue +6 -6
- package/dist/spa/src/afcl/ButtonGroup.vue +91 -0
- package/dist/spa/src/afcl/Card.vue +25 -0
- package/dist/spa/src/afcl/Checkbox.vue +21 -13
- package/dist/spa/src/afcl/CountryFlag.vue +4 -1
- package/dist/spa/src/{components/CustomDatePicker.vue → afcl/DatePicker.vue} +95 -9
- package/dist/spa/src/afcl/Dialog.vue +47 -27
- package/dist/spa/src/afcl/Dropzone.vue +127 -48
- package/dist/spa/src/afcl/Input.vue +14 -6
- package/dist/spa/src/afcl/JsonViewer.vue +25 -0
- package/dist/spa/src/afcl/LinkButton.vue +3 -3
- package/dist/spa/src/afcl/PieChart.vue +5 -5
- package/dist/spa/src/afcl/ProgressBar.vue +7 -7
- package/dist/spa/src/afcl/Select.vue +82 -34
- package/dist/spa/src/afcl/Skeleton.vue +6 -6
- package/dist/spa/src/afcl/Table.vue +315 -73
- package/dist/spa/src/afcl/Textarea.vue +31 -0
- package/dist/spa/src/afcl/Toggle.vue +32 -0
- package/dist/spa/src/afcl/Tooltip.vue +28 -18
- package/dist/spa/src/afcl/VerticalTabs.vue +16 -7
- package/dist/spa/src/afcl/index.ts +6 -3
- package/dist/spa/src/components/AcceptModal.vue +48 -14
- package/dist/spa/src/components/Breadcrumbs.vue +5 -5
- package/dist/spa/src/components/CallActionWrapper.vue +15 -0
- package/dist/spa/src/components/ColumnValueInput.vue +38 -18
- package/dist/spa/src/components/ColumnValueInputWrapper.vue +4 -3
- package/dist/spa/src/components/CustomDateRangePicker.vue +9 -8
- package/dist/spa/src/components/CustomRangePicker.vue +37 -21
- package/dist/spa/src/components/ErrorMessage.vue +21 -0
- package/dist/spa/src/components/Filters.vue +195 -132
- package/dist/spa/src/components/GroupsTable.vue +9 -8
- package/dist/spa/src/components/MenuLink.vue +90 -23
- package/dist/spa/src/components/ResourceForm.vue +94 -51
- package/dist/spa/src/components/ResourceListTable.vue +115 -85
- package/dist/spa/src/components/ResourceListTableVirtual.vue +114 -80
- package/dist/spa/src/components/ShowTable.vue +21 -15
- package/dist/spa/src/components/Sidebar.vue +470 -0
- package/dist/spa/src/components/SingleSkeletLoader.vue +6 -6
- package/dist/spa/src/components/SkeleteLoader.vue +3 -3
- package/dist/spa/src/components/ThreeDotsMenu.vue +84 -15
- package/dist/spa/src/components/Toast.vue +40 -29
- package/dist/spa/src/components/UserMenuSettingsButton.vue +69 -0
- package/dist/spa/src/components/ValueRenderer.vue +44 -17
- package/dist/spa/src/controls/BoolToggle.vue +34 -0
- package/dist/spa/src/i18n.ts +5 -3
- package/dist/spa/src/main.ts +1 -1
- package/dist/spa/src/renderers/CompactField.vue +1 -1
- package/dist/spa/src/renderers/CompactUUID.vue +1 -1
- package/dist/spa/src/router/index.ts +8 -0
- package/dist/spa/src/shims-vue.d.ts +5 -0
- package/dist/spa/src/spa_types/core.ts +13 -1
- package/dist/spa/src/stores/core.ts +13 -1
- package/dist/spa/src/stores/filters.ts +33 -2
- package/dist/spa/src/stores/modal.ts +6 -1
- package/dist/spa/src/stores/toast.ts +22 -3
- package/dist/spa/src/types/Back.ts +163 -23
- package/dist/spa/src/types/Common.ts +91 -32
- package/dist/spa/src/types/FrontendAPI.ts +31 -5
- package/dist/spa/src/types/adapters/CaptchaAdapter.ts +34 -0
- package/dist/spa/src/types/adapters/EmailAdapter.ts +2 -2
- package/dist/spa/src/types/adapters/ImageVisionAdapter.ts +30 -0
- package/dist/spa/src/types/adapters/KeyValueAdapter.ts +16 -0
- package/dist/spa/src/types/adapters/index.ts +8 -0
- package/dist/spa/src/utils.ts +291 -11
- package/dist/spa/src/views/CreateView.vue +63 -21
- package/dist/spa/src/views/EditView.vue +55 -22
- package/dist/spa/src/views/ListView.vue +144 -87
- package/dist/spa/src/views/LoginView.vue +26 -35
- package/dist/spa/src/views/ResourceParent.vue +2 -2
- package/dist/spa/src/views/SettingsView.vue +121 -0
- package/dist/spa/src/views/ShowView.vue +83 -53
- package/dist/spa/src/websocket.ts +6 -1
- package/dist/spa/tsconfig.app.json +1 -1
- package/dist/spa/vite.config.ts +45 -2
- package/dist/types/Back.d.ts +146 -14
- package/dist/types/Back.d.ts.map +1 -1
- package/dist/types/Back.js +15 -0
- package/dist/types/Back.js.map +1 -1
- package/dist/types/Common.d.ts +106 -29
- package/dist/types/Common.d.ts.map +1 -1
- package/dist/types/Common.js.map +1 -1
- package/dist/types/FrontendAPI.d.ts +31 -3
- package/dist/types/FrontendAPI.d.ts.map +1 -1
- package/dist/types/FrontendAPI.js.map +1 -1
- package/dist/types/adapters/CaptchaAdapter.d.ts +30 -0
- package/dist/types/adapters/CaptchaAdapter.d.ts.map +1 -0
- package/dist/types/adapters/CaptchaAdapter.js +5 -0
- package/dist/types/adapters/CaptchaAdapter.js.map +1 -0
- package/dist/types/adapters/EmailAdapter.d.ts +1 -1
- package/dist/types/adapters/ImageVisionAdapter.d.ts +25 -0
- package/dist/types/adapters/ImageVisionAdapter.d.ts.map +1 -0
- package/dist/types/adapters/ImageVisionAdapter.js +2 -0
- package/dist/types/adapters/ImageVisionAdapter.js.map +1 -0
- package/dist/types/adapters/KeyValueAdapter.d.ts +10 -0
- package/dist/types/adapters/KeyValueAdapter.d.ts.map +1 -0
- package/dist/types/adapters/KeyValueAdapter.js +2 -0
- package/dist/types/adapters/KeyValueAdapter.js.map +1 -0
- package/dist/types/adapters/index.d.ts +9 -0
- package/dist/types/adapters/index.d.ts.map +1 -0
- package/dist/types/adapters/index.js +2 -0
- package/dist/types/adapters/index.js.map +1 -0
- package/package.json +4 -2
- package/dist/spa/src/types/adapters/index.js +0 -5
package/dist/modules/styles.d.ts
CHANGED
|
@@ -23,26 +23,264 @@ 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
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
101
|
+
lightButtonFocusRing: string;
|
|
102
|
+
lightButtonGroupBackground: string;
|
|
103
|
+
lightButtonGroupBorder: string;
|
|
104
|
+
lightButtonGroupText: string;
|
|
105
|
+
lightButtonGroupFocusRing: string;
|
|
106
|
+
lightButtonGroupBackgroundHover: string;
|
|
107
|
+
lightButtonGroupTextHover: string;
|
|
108
|
+
lightButtonGroupActiveBackground: string;
|
|
109
|
+
lightButtonGroupActiveText: string;
|
|
110
|
+
lightButtonGroupActiveFocusRing: string;
|
|
111
|
+
lightDropdownButtonsBackground: string;
|
|
112
|
+
lightDropownButtonsBorder: string;
|
|
113
|
+
lightDropdownButtonsText: string;
|
|
114
|
+
lightDropdownButtonsPlaceholderText: string;
|
|
115
|
+
lightDropdownOptionsBackground: string;
|
|
116
|
+
lightDropdownOptionsHoverBackground: string;
|
|
117
|
+
lightDropdownPicked: string;
|
|
118
|
+
lightDropdownOptionsText: string;
|
|
119
|
+
lightDropdownMultipleSelectBackground: string;
|
|
120
|
+
lightDropdownMultipleSelectText: string;
|
|
121
|
+
lightDropdownMultipleSelectIcon: string;
|
|
122
|
+
lightDropdownMultipleSelectIconHover: string;
|
|
123
|
+
lightDropdownMultipleSelectIconFocus: string;
|
|
124
|
+
lightDropdownMultipleSelectIconFocusBackground: string;
|
|
125
|
+
lightCheckboxBgUnchecked: string;
|
|
126
|
+
lightCheckboxBgChecked: string;
|
|
127
|
+
lightCheckboxIconColor: string;
|
|
128
|
+
lightCheckboxBorderColor: string;
|
|
129
|
+
lightFocusRing: string;
|
|
130
|
+
lightTextLabel: string;
|
|
131
|
+
lightToggleBgUnactive: string;
|
|
132
|
+
lightToggleBgActive: string;
|
|
133
|
+
lightToggleCircleUnactive: string;
|
|
134
|
+
lightToggleCircleActive: string;
|
|
135
|
+
lightToggleRing: string;
|
|
136
|
+
lightToggleText: string;
|
|
137
|
+
lightToggleBorderUnactive: string;
|
|
138
|
+
lightToggleBorderActive: string;
|
|
139
|
+
lightInputBackground: string;
|
|
140
|
+
lightInputPlaceholderText: string;
|
|
141
|
+
lightInputText: string;
|
|
142
|
+
lightInputBorder: string;
|
|
143
|
+
lightInputBackgroundHover: string;
|
|
144
|
+
lightInputTextHover: string;
|
|
145
|
+
lightInputBorderHover: string;
|
|
146
|
+
lightInputFocusRing: string;
|
|
147
|
+
lightInputFocusBorder: string;
|
|
148
|
+
lightInputIconColor: string;
|
|
149
|
+
lightInputErrorColor: string;
|
|
150
|
+
lightRequiredIconColor: string;
|
|
151
|
+
lightDatePickerButtonBackground: string;
|
|
152
|
+
lightDatePickerButtonText: string;
|
|
153
|
+
lightDatePickerPlaceHolder: string;
|
|
154
|
+
lightDatePickerButtonBorder: string;
|
|
155
|
+
lightDatePickerIcon: string;
|
|
156
|
+
lightDatePickerExpandText: string;
|
|
157
|
+
lightDatePickerCalendarBackground: string;
|
|
158
|
+
lightDatePickerCalendarText: string;
|
|
159
|
+
lightDatePickerCalendarArrowButtonBackground: string;
|
|
160
|
+
lightDatePickerCalendarArrowButtonBackgroundHover: string;
|
|
161
|
+
lightDatePickerCalendarArrowButtonFocusRing: string;
|
|
162
|
+
lightDatePickerCalendarDaysOfWeekText: string;
|
|
163
|
+
lightDatePickerCalendarDateButtonText: string;
|
|
164
|
+
lightDatePickerCalendarDateButtonBackgroundHover: string;
|
|
165
|
+
lightDatePickerCalendarDateActiveButtonBackground: string;
|
|
166
|
+
lightDatePickerCalendarDateActiveButtonText: string;
|
|
167
|
+
lightTooltipBackground: string;
|
|
168
|
+
lightTooltipText: string;
|
|
169
|
+
lightVerticalTabsText: string;
|
|
170
|
+
lightVerticalTabsTextHover: string;
|
|
171
|
+
lightVerticalTabsBackground: string;
|
|
172
|
+
lightVerticalTabsBackgroundHover: string;
|
|
173
|
+
lightVerticalTabsTextActive: string;
|
|
174
|
+
lightVerticalTabsBackgroundActive: string;
|
|
175
|
+
lightVerticalTabsSlotText: string;
|
|
176
|
+
lightDialogBackgorund: string;
|
|
177
|
+
lightDialogBreakLine: string;
|
|
178
|
+
lightDialogHeaderText: string;
|
|
179
|
+
lightDialogCloseButton: string;
|
|
180
|
+
lightDialogCloseButtonHover: string;
|
|
181
|
+
lightDialogCloseButtonHoverBackground: string;
|
|
182
|
+
lightDialogBodyText: string;
|
|
183
|
+
lightDropzoneBackground: string;
|
|
184
|
+
lightDropzoneBackgroundHover: string;
|
|
185
|
+
lightDropzoneBorder: string;
|
|
186
|
+
lightDropzoneBorderHover: string;
|
|
187
|
+
lightDropzoneBorderDragging: string;
|
|
188
|
+
lightDropzoneBackgroundDragging: string;
|
|
189
|
+
lightDropzoneIcon: string;
|
|
190
|
+
lightDropzoneText: string;
|
|
191
|
+
lightTableBackground: string;
|
|
192
|
+
lightTableHeadingText: string;
|
|
193
|
+
lightTableHeadingBackground: string;
|
|
194
|
+
lightTableBorder: string;
|
|
195
|
+
lightTableText: string;
|
|
196
|
+
lightTableEvenBackground: string;
|
|
197
|
+
lightTableOddBackground: string;
|
|
198
|
+
lightTablePaginationText: string;
|
|
199
|
+
lightTablePaginationNumeration: string;
|
|
200
|
+
lightTablePaginationInputBackground: string;
|
|
201
|
+
lightTablePaginationInputBorder: string;
|
|
202
|
+
lightTablePaginationInputText: string;
|
|
203
|
+
lightUnactivePaginationButtonBackground: string;
|
|
204
|
+
lightUnactivePaginationButtonText: string;
|
|
205
|
+
lightUnactivePaginationButtonBorder: string;
|
|
206
|
+
lightUnactivePaginationButtonHoverBackground: string;
|
|
207
|
+
lightUnactivePaginationButtonHoverText: string;
|
|
208
|
+
lightActivePaginationButtonBackground: string;
|
|
209
|
+
lightActivePaginationButtonText: string;
|
|
210
|
+
lightProgressBarUnfilledColor: string;
|
|
211
|
+
lightProgressBarFilledColor: string;
|
|
212
|
+
lightProgressBarText: string;
|
|
213
|
+
lightSkeletonBackgroundColor: string;
|
|
214
|
+
lightSkeletonIconColor: string;
|
|
215
|
+
lightAcceptModalBackground: string;
|
|
216
|
+
lightAcceptModalCloseIcon: string;
|
|
217
|
+
lightAcceptModalCloseIconHover: string;
|
|
218
|
+
lightAcceptModalCloseIconHoverBackground: string;
|
|
219
|
+
lightAcceptModalWarningIcon: string;
|
|
220
|
+
lightAcceptModalText: string;
|
|
221
|
+
lightAcceptModalConfirmButtonBackground: string;
|
|
222
|
+
lightAcceptModalConfirmButtonBackgroundHover: string;
|
|
223
|
+
lightAcceptModalConfirmButtonText: string;
|
|
224
|
+
lightAcceptModalConfirmButtonFocus: string;
|
|
225
|
+
lightAcceptModalCancelButtonBackground: string;
|
|
226
|
+
lightAcceptModalCancelButtonBackgroundHover: string;
|
|
227
|
+
lightAcceptModalCancelButtonText: string;
|
|
228
|
+
lightAcceptModalCancelButtonFocus: string;
|
|
229
|
+
lightAcceptModalCancelButtonBorder: string;
|
|
230
|
+
lightBreadcrumbsHomepageText: string;
|
|
231
|
+
lightBreadcrumbsHomepageTextHover: string;
|
|
232
|
+
lightBreadcrumbsArrowIcon: string;
|
|
233
|
+
lightBreadcrumbsText: string;
|
|
234
|
+
lightRangePickerButtonBackground: string;
|
|
235
|
+
lightRangePickerButtonBackgroundHover: string;
|
|
236
|
+
lightRangePickerButtonBorder: string;
|
|
237
|
+
lightRangePickerButtonText: string;
|
|
238
|
+
lightRangePickerButtonTextHover: string;
|
|
239
|
+
lightRangePickerFocusRing: string;
|
|
240
|
+
lightRangePickerInputBackground: string;
|
|
241
|
+
lightRangePickerInputBorder: string;
|
|
242
|
+
lightRangePickerInputText: string;
|
|
243
|
+
lightRangePickerInputPlaceholder: string;
|
|
244
|
+
lightFiltersBackgroung: string;
|
|
245
|
+
lightFiltersHeaderText: string;
|
|
246
|
+
lightFiltersCloseIcon: string;
|
|
247
|
+
lightFiltersCloseIconHover: string;
|
|
248
|
+
lightFiltersCloseIconHoverBackground: string;
|
|
249
|
+
lightFiltersClearAllButtonBackground: string;
|
|
250
|
+
lightFiltersClearAllButtonBackgroundHover: string;
|
|
251
|
+
lightFiltersClearAllButtonBorder: string;
|
|
252
|
+
lightFiltersClearAllButtonText: string;
|
|
253
|
+
lightFiltersClearAllButtonTextHover: string;
|
|
254
|
+
lightFiltersClearAllButtonFocus: string;
|
|
255
|
+
lightThreeDotsMenuIconBackground: string;
|
|
256
|
+
lightThreeDotsMenuIconBackgroundHover: string;
|
|
257
|
+
lightThreeDotsMenuIconBackgroundBorder: string;
|
|
258
|
+
lightThreeDotsMenuIconDots: string;
|
|
259
|
+
lightThreeDotsMenuIconDotsHover: string;
|
|
260
|
+
lightThreeDotsMenuIconFocus: string;
|
|
261
|
+
lightThreeDotsMenuBodyBackground: string;
|
|
262
|
+
lightThreeDotsMenuBodyBackgroundHover: string;
|
|
263
|
+
lightThreeDotsMenuBodyText: string;
|
|
264
|
+
lightThreeDotsMenuBodyTextHover: string;
|
|
265
|
+
lightToastBackground: string;
|
|
266
|
+
lightToastCloseIcon: string;
|
|
267
|
+
lightToastCloseIconHover: string;
|
|
268
|
+
lightToastCloseIconBackground: string;
|
|
269
|
+
lightToastCloseIconBackgroundHover: string;
|
|
270
|
+
lightToastCloseIconFocusRing: string;
|
|
271
|
+
lightToastText: string;
|
|
272
|
+
lightCardBackground: string;
|
|
273
|
+
lightCardBackgroundHover: string;
|
|
274
|
+
lightCardBorder: string;
|
|
275
|
+
lightCardTitle: string;
|
|
276
|
+
lightCardDescription: string;
|
|
277
|
+
lightUserMenuBackground: string;
|
|
278
|
+
lightUserMenuBorder: string;
|
|
279
|
+
lightUserMenuText: string;
|
|
280
|
+
lightUserMenuItemBackground: string;
|
|
281
|
+
lightUserMenuItemBackgroundHover: string;
|
|
282
|
+
lightUserMenuItemText: string;
|
|
283
|
+
lightUserMenuItemTextHover: string;
|
|
46
284
|
darkHtml: string;
|
|
47
285
|
darkPrimary: string;
|
|
48
286
|
darkPrimaryContrast: string;
|
|
@@ -66,17 +304,265 @@ export declare const styles: () => {
|
|
|
66
304
|
darkSidebarIcons: string;
|
|
67
305
|
darkSidebarIconsHover: string;
|
|
68
306
|
darkSidebarHeading: string;
|
|
307
|
+
/***************************************************************
|
|
308
|
+
* *
|
|
309
|
+
* Dark Views *
|
|
310
|
+
* *
|
|
311
|
+
***************************************************************/
|
|
312
|
+
darkForm: string;
|
|
313
|
+
darkFormBorder: string;
|
|
314
|
+
darkFormHeading: string;
|
|
315
|
+
darkFormFieldTextColor: string;
|
|
316
|
+
darkListSkeletLoader: string;
|
|
69
317
|
darkList: string;
|
|
70
318
|
darkListTable: string;
|
|
71
319
|
darkListTableHeading: string;
|
|
72
320
|
darkListTableHeadingText: string;
|
|
73
321
|
darkListTableText: string;
|
|
74
322
|
darkListTableRowHover: string;
|
|
75
|
-
darkListBreadcrumbsText: string;
|
|
76
323
|
darkListBorder: string;
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
324
|
+
darkListTablePaginationBackgoround: string;
|
|
325
|
+
darkListTablePaginationBackgoroundHover: string;
|
|
326
|
+
darkListTablePaginationBorder: string;
|
|
327
|
+
darkListTablePaginationFocusRing: string;
|
|
328
|
+
darkListTablePaginationText: string;
|
|
329
|
+
darkListTablePaginationCurrentPageText: string;
|
|
330
|
+
darkListTablePaginationTextHover: string;
|
|
331
|
+
darkListTablePaginationHelpText: string;
|
|
332
|
+
darkListViewButtonBackground: string;
|
|
333
|
+
darkListViewButtonBackgroundHover: string;
|
|
334
|
+
darkListViewButtonText: string;
|
|
335
|
+
darkListViewButtonTextHover: string;
|
|
336
|
+
darkListViewButtonFocusRing: string;
|
|
337
|
+
darkListViewButtonBorder: string;
|
|
338
|
+
darkShowTableHeadingBackground: string;
|
|
339
|
+
darkShowTableHeadingText: string;
|
|
340
|
+
darkShowTableUnderHeadingBackground: string;
|
|
341
|
+
darkShowTableUnderHeadingText: string;
|
|
342
|
+
darkShowTablesBodyBackground: string;
|
|
343
|
+
darkShowTableBodyText: string;
|
|
344
|
+
darkShowTableBodyBorder: string;
|
|
345
|
+
darkShowViewButtonBackground: string;
|
|
346
|
+
darkShowViewButtonBackgroundHover: string;
|
|
347
|
+
darkShowViewButtonText: string;
|
|
348
|
+
darkShowViewButtonTextHover: string;
|
|
349
|
+
darkShowViewButtonFocusRing: string;
|
|
350
|
+
darkShowViewButtonBorder: string;
|
|
351
|
+
darkCreateViewButtonBackground: string;
|
|
352
|
+
darkCreateViewButtonBackgroundHover: string;
|
|
353
|
+
darkCreateViewButtonText: string;
|
|
354
|
+
darkCreateViewButtonTextHover: string;
|
|
355
|
+
darkCreateViewButtonFocusRing: string;
|
|
356
|
+
darkCreateViewButtonBorder: string;
|
|
357
|
+
darkCreateViewSaveButtonText: string;
|
|
358
|
+
darkCreateViewSaveButtonTextHover: string;
|
|
359
|
+
darkEditViewButtonBackground: string;
|
|
360
|
+
darkEditViewButtonBackgroundHover: string;
|
|
361
|
+
darkEditViewButtonText: string;
|
|
362
|
+
darkEditViewButtonTextHover: string;
|
|
363
|
+
darkEditViewButtonFocusRing: string;
|
|
364
|
+
darkEditViewButtonBorder: string;
|
|
365
|
+
darkEditViewSaveButtonText: string;
|
|
366
|
+
darkEditViewSaveButtonTextHover: string;
|
|
367
|
+
darkLoginViewBackground: string;
|
|
368
|
+
darkLoginViewTextColor: string;
|
|
369
|
+
darkLoginViewSubTextColor: string;
|
|
370
|
+
darkLoginViewPromptBackground: string;
|
|
371
|
+
darkLoginViewPromptText: string;
|
|
372
|
+
/***************************************************************
|
|
373
|
+
* *
|
|
374
|
+
* AdminForth dark components *
|
|
375
|
+
* *
|
|
376
|
+
***************************************************************/
|
|
377
|
+
darkButtonsBackground: string;
|
|
378
|
+
darkButtonsBorder: string;
|
|
379
|
+
darkButtonsText: string;
|
|
380
|
+
darkButtonsHover: string;
|
|
381
|
+
darkButtonsBorderHover: string;
|
|
382
|
+
darkButtonFocusRing: string;
|
|
383
|
+
darkButtonGroupBackground: string;
|
|
384
|
+
darkButtonGroupBorder: string;
|
|
385
|
+
darkButtonGroupText: string;
|
|
386
|
+
darkButtonGroupFocusRing: string;
|
|
387
|
+
darkButtonGroupBackgroundHover: string;
|
|
388
|
+
darkButtonGroupTextHover: string;
|
|
389
|
+
darkButtonGroupActiveBackground: string;
|
|
390
|
+
darkButtonGroupActiveText: string;
|
|
391
|
+
darkButtonGroupActiveFocusRing: string;
|
|
392
|
+
darkDropdownButtonsBackground: string;
|
|
393
|
+
darkDropdownButtonsBorder: string;
|
|
394
|
+
darkDropdownButtonsText: string;
|
|
395
|
+
darkDropdownButtonsPlaceholderText: string;
|
|
396
|
+
darkDropdownOptionsBackground: string;
|
|
397
|
+
darkDropdownOptionsHoverBackground: string;
|
|
398
|
+
darkDropdownPicked: string;
|
|
399
|
+
darkDropdownOptionsText: string;
|
|
400
|
+
darkDropdownMultipleSelectBackground: string;
|
|
401
|
+
darkDropdownMultipleSelectText: string;
|
|
402
|
+
darkDropdownMultipleSelectIcon: string;
|
|
403
|
+
darkDropdownMultipleSelectIconHover: string;
|
|
404
|
+
darkDropdownMultipleSelectIconFocus: string;
|
|
405
|
+
darkDropdownMultipleSelectIconFocusBackground: string;
|
|
406
|
+
darkCheckboxBgUnchecked: string;
|
|
407
|
+
darkCheckboxBgChecked: string;
|
|
408
|
+
darkCheckboxIconColor: string;
|
|
409
|
+
darkCheckboxBorderColor: string;
|
|
410
|
+
darkFocusRing: string;
|
|
411
|
+
darkTextLabel: string;
|
|
412
|
+
darkToggleBgUnactive: string;
|
|
413
|
+
darkToggleBgActive: string;
|
|
414
|
+
darkToggleCircleUnactive: string;
|
|
415
|
+
darkToggleCircleActive: string;
|
|
416
|
+
darkToggleRing: string;
|
|
417
|
+
darkToggleText: string;
|
|
418
|
+
darkToggleBorderUnactive: string;
|
|
419
|
+
darkToggleBorderActive: string;
|
|
420
|
+
darkInputBackground: string;
|
|
421
|
+
darkInputPlaceholderText: string;
|
|
422
|
+
darkInputText: string;
|
|
423
|
+
darkInputBorder: string;
|
|
424
|
+
darkInputHover: string;
|
|
425
|
+
darkInputTextHover: string;
|
|
426
|
+
darkInputBorderHover: string;
|
|
427
|
+
darkInputFocusRing: string;
|
|
428
|
+
darkInputFocusBorder: string;
|
|
429
|
+
darkInputIconColor: string;
|
|
430
|
+
darkInputErrorColor: string;
|
|
431
|
+
darkRequiredIconColor: string;
|
|
432
|
+
darkDatePickerButtonBackground: string;
|
|
433
|
+
darkDatePickerButtonText: string;
|
|
434
|
+
darkDatePickerPlaceHolder: string;
|
|
435
|
+
darkDatePickerButtonBorder: string;
|
|
436
|
+
darkDatePickerIcon: string;
|
|
437
|
+
darkDatePickerExpandText: string;
|
|
438
|
+
darkDatePickerCalendarBackground: string;
|
|
439
|
+
darkDatePickerCalendarMainText: string;
|
|
440
|
+
darkDatePickerCalendarArrowButtonBackground: string;
|
|
441
|
+
darkDatePickerCalendarArrowButtonBackgroundHover: string;
|
|
442
|
+
darkDatePickerCalendarArrowButtonFocusRing: string;
|
|
443
|
+
darkDatePickerCalendarDaysOfWeekText: string;
|
|
444
|
+
darkDatePickerCalendarDateButtonText: string;
|
|
445
|
+
darkDatePickerCalendarDateActiveButtonBackground: string;
|
|
446
|
+
darkDatePickerCalendarDateButtonBackgroundHover: string;
|
|
447
|
+
darkDatePickerCalendarDateActiveButtonText: string;
|
|
448
|
+
darkTooltipBackground: string;
|
|
449
|
+
darkTooltipText: string;
|
|
450
|
+
darkVerticalTabsText: string;
|
|
451
|
+
darkVerticalTabsTextHover: string;
|
|
452
|
+
darkVerticalTabsBackground: string;
|
|
453
|
+
darkVerticalTabsBackgroundHover: string;
|
|
454
|
+
darkVerticalTabsTextActive: string;
|
|
455
|
+
darkVerticalTabsBackgroundActive: string;
|
|
456
|
+
darkVerticalTabsSlotText: string;
|
|
457
|
+
darkDialogBackgorund: string;
|
|
458
|
+
darkDialogBreakLine: string;
|
|
459
|
+
darkDialogHeaderText: string;
|
|
460
|
+
darkDialogCloseButton: string;
|
|
461
|
+
darkDialogCloseButtonHover: string;
|
|
462
|
+
darkDialogCloseButtonHoverBackground: string;
|
|
463
|
+
darkDialogBodyText: string;
|
|
464
|
+
darkDropzoneBackground: string;
|
|
465
|
+
darkDropzoneBackgroundHover: string;
|
|
466
|
+
darkDropzoneBackgroundDragging: string;
|
|
467
|
+
darkDropzoneBorder: string;
|
|
468
|
+
darkDropzoneBorderHover: string;
|
|
469
|
+
darkDropzoneBorderDragging: string;
|
|
470
|
+
darkDropzoneIcon: string;
|
|
471
|
+
darkDropzoneText: string;
|
|
472
|
+
darkTableBackground: string;
|
|
473
|
+
darkTableHeadingText: string;
|
|
474
|
+
darkTableHeadingBackground: string;
|
|
475
|
+
darkTableBorder: string;
|
|
476
|
+
darkTableText: string;
|
|
477
|
+
darkTableEvenBackground: string;
|
|
478
|
+
darkTableOddBackground: string;
|
|
479
|
+
darkTablePaginationText: string;
|
|
480
|
+
darkTablePaginationNumeration: string;
|
|
481
|
+
darkTablePaginationInputBackground: string;
|
|
482
|
+
darkTablePaginationInputBorder: string;
|
|
483
|
+
darkTablePaginationInputText: string;
|
|
484
|
+
darkUnactivePaginationButtonBackground: string;
|
|
485
|
+
darkUnactivePaginationButtonText: string;
|
|
486
|
+
darkUnactivePaginationButtonBorder: string;
|
|
487
|
+
darkUnactivePaginationButtonHoverBackground: string;
|
|
488
|
+
darkUnactivePaginationButtonHoverText: string;
|
|
489
|
+
darkActivePaginationButtonBackground: string;
|
|
490
|
+
darkActivePaginationButtonText: string;
|
|
491
|
+
darkProgressBarUnfilledColor: string;
|
|
492
|
+
darkProgressBarFilledColor: string;
|
|
493
|
+
darkProgressBarText: string;
|
|
494
|
+
darkSkeletonBackgroundColor: string;
|
|
495
|
+
darkSkeletonIconColor: string;
|
|
496
|
+
darkAcceptModalBackground: string;
|
|
497
|
+
darkAcceptModalCloseIcon: string;
|
|
498
|
+
darkAcceptModalCloseIconHover: string;
|
|
499
|
+
darkAcceptModalCloseIconHoverBackground: string;
|
|
500
|
+
darkAcceptModalWarningIcon: string;
|
|
501
|
+
darkAcceptModalText: string;
|
|
502
|
+
darkAcceptModalConfirmButtonBackground: string;
|
|
503
|
+
darkAcceptModalConfirmButtonBackgroundHover: string;
|
|
504
|
+
darkAcceptModalConfirmButtonText: string;
|
|
505
|
+
darkAcceptModalConfirmButtonFocus: string;
|
|
506
|
+
darkAcceptModalCancelButtonBackground: string;
|
|
507
|
+
darkAcceptModalCancelButtonBackgroundHover: string;
|
|
508
|
+
darkAcceptModalCancelButtonText: string;
|
|
509
|
+
darkAcceptModalCancelButtonTextHover: string;
|
|
510
|
+
darkAcceptModalCancelButtonFocus: string;
|
|
511
|
+
darkAcceptModalCancelButtonBorder: string;
|
|
512
|
+
darkBreadcrumbsHomepageText: string;
|
|
513
|
+
darkBreadcrumbsHomepageTextHover: string;
|
|
514
|
+
darkBreadcrumbsArrowIcon: string;
|
|
515
|
+
darkBreadcrumbsText: string;
|
|
516
|
+
darkRangePickerButtonBackground: string;
|
|
517
|
+
darkRangePickerButtonBackgroundHover: string;
|
|
518
|
+
darkRangePickerButtonBorder: string;
|
|
519
|
+
darkRangePickerButtonText: string;
|
|
520
|
+
darkRangePickerButtonTextHover: string;
|
|
521
|
+
darkRangePickerFocusRing: string;
|
|
522
|
+
darkRangePickerInputBackground: string;
|
|
523
|
+
darkRangePickerInputBorder: string;
|
|
524
|
+
darkRangePickerInputText: string;
|
|
525
|
+
darkRangePickerInputPlaceholder: string;
|
|
526
|
+
darkFiltersBackgroung: string;
|
|
527
|
+
darkFiltersHeaderText: string;
|
|
528
|
+
darkFiltersCloseIcon: string;
|
|
529
|
+
darkFiltersCloseIconHover: string;
|
|
530
|
+
darkFiltersCloseIconHoverBackground: string;
|
|
531
|
+
darkFiltersClearAllButtonBackground: string;
|
|
532
|
+
darkFiltersClearAllButtonBackgroundHover: string;
|
|
533
|
+
darkFiltersClearAllButtonBorder: string;
|
|
534
|
+
darkFiltersClearAllButtonText: string;
|
|
535
|
+
darkFiltersClearAllButtonTextHover: string;
|
|
536
|
+
darkFiltersClearAllButtonFocus: string;
|
|
537
|
+
darkThreeDotsMenuIconBackground: string;
|
|
538
|
+
darkThreeDotsMenuIconBackgroundHover: string;
|
|
539
|
+
darkThreeDotsMenuIconBackgroundBorder: string;
|
|
540
|
+
darkThreeDotsMenuIconDots: string;
|
|
541
|
+
darkThreeDotsMenuIconDotsHover: string;
|
|
542
|
+
darkThreeDotsMenuIconFocus: string;
|
|
543
|
+
darkThreeDotsMenuBodyBackground: string;
|
|
544
|
+
darkThreeDotsMenuBodyBackgroundHover: string;
|
|
545
|
+
darkThreeDotsMenuBodyText: string;
|
|
546
|
+
darkThreeDotsMenuBodyTextHover: string;
|
|
547
|
+
darkToastBackground: string;
|
|
548
|
+
darkToastCloseIcon: string;
|
|
549
|
+
darkToastCloseIconHover: string;
|
|
550
|
+
darkToastCloseIconBackground: string;
|
|
551
|
+
darkToastCloseIconBackgroundHover: string;
|
|
552
|
+
darkToastCloseIconFocusRing: string;
|
|
553
|
+
darkToastText: string;
|
|
554
|
+
darkCardBackground: string;
|
|
555
|
+
darkCardBackgroundHover: string;
|
|
556
|
+
darkCardBorder: string;
|
|
557
|
+
darkCardTitle: string;
|
|
558
|
+
darkCardDescription: string;
|
|
559
|
+
darkUserMenuBackground: string;
|
|
560
|
+
darkUserMenuBorder: string;
|
|
561
|
+
darkUserMenuText: string;
|
|
562
|
+
darkUserMenuItemBackground: string;
|
|
563
|
+
darkUserMenuItemBackgroundHover: string;
|
|
564
|
+
darkUserMenuItemText: string;
|
|
565
|
+
darkUserMenuItemTextHover: string;
|
|
80
566
|
};
|
|
81
567
|
boxShadow: {
|
|
82
568
|
customLight: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../modules/styles.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../modules/styles.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;QA8Bf;;;;wEAIgE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAoGhE;;;;wEAIgE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAsPhE;;;;wEAIgE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAkGhE;;;;wEAIgE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyOlE,CAAC"}
|