ados-rcm 1.0.44 → 1.0.45
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.
|
@@ -1,9 +1,330 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { TIdx } from '../ATypes/ATypes';
|
|
2
2
|
import './ATheme.module.scss';
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
/**
|
|
4
|
+
* ATheme.tsx
|
|
5
|
+
* style maps for AModule
|
|
6
|
+
*
|
|
7
|
+
* Notice 1 : Naming Convention of Color Variables
|
|
8
|
+
* - Component Styles are named by the following rule
|
|
9
|
+
* - '--ComponentName-[...ClassName]-Property'
|
|
10
|
+
*/
|
|
11
|
+
export interface IATheme {
|
|
12
|
+
'--ATheme': string;
|
|
13
|
+
[key: TIdx]: string;
|
|
14
|
+
}
|
|
15
|
+
export declare const Themes: IATheme[];
|
|
16
|
+
declare const Default: {
|
|
17
|
+
'--Font': string;
|
|
18
|
+
'--Body-transition': string;
|
|
19
|
+
'--black_and_white-black': string;
|
|
20
|
+
'--black_and_white-white': string;
|
|
21
|
+
'--black_and_white-white-02': string;
|
|
22
|
+
'--black_and_white-white-03': string;
|
|
23
|
+
'--gray-deep-gray': string;
|
|
24
|
+
'--gray-deep-gray2': string;
|
|
25
|
+
'--gray-gray-01': string;
|
|
26
|
+
'--gray-gray-02': string;
|
|
27
|
+
'--gray-gray-03': string;
|
|
28
|
+
'--gray-gray-04': string;
|
|
29
|
+
'--gray-gray-05': string;
|
|
30
|
+
'--gray-gray-06': string;
|
|
31
|
+
'--gray-gray-07': string;
|
|
32
|
+
'--gray-gray-08': string;
|
|
33
|
+
'--gray-gray-09': string;
|
|
34
|
+
'--gray-gray-10': string;
|
|
35
|
+
'--gray-l_add_d-gray': string;
|
|
36
|
+
'--orange-orange-01': string;
|
|
37
|
+
'--orange-orange-02': string;
|
|
38
|
+
'--orange-orange-03': string;
|
|
39
|
+
'--orange-orange-04': string;
|
|
40
|
+
'--orange-orange-05': string;
|
|
41
|
+
'--orange-orange-06': string;
|
|
42
|
+
'--orange-orange-07': string;
|
|
43
|
+
'--orange-orange-08': string;
|
|
44
|
+
'--orange-orange-09': string;
|
|
45
|
+
'--orange-orange-10': string;
|
|
46
|
+
'--red-red-01': string;
|
|
47
|
+
'--red-red-02': string;
|
|
48
|
+
'--red-red-03': string;
|
|
49
|
+
'--red-red-04': string;
|
|
50
|
+
'--red-red-05': string;
|
|
51
|
+
'--red-red-06': string;
|
|
52
|
+
'--red-red-07': string;
|
|
53
|
+
'--red-red-08': string;
|
|
54
|
+
'--red-red-09': string;
|
|
55
|
+
'--red-red-10': string;
|
|
56
|
+
'--d-blue-blue-01': string;
|
|
57
|
+
'--d-blue-blue-02': string;
|
|
58
|
+
'--d-blue-blue-03': string;
|
|
59
|
+
'--d-blue-blue-04': string;
|
|
60
|
+
'--d-blue-blue-05': string;
|
|
61
|
+
'--d-blue-blue-06': string;
|
|
62
|
+
'--d-blue-blue-07': string;
|
|
63
|
+
'--d-blue-blue-08': string;
|
|
64
|
+
'--d-blue-blue-09': string;
|
|
65
|
+
'--d-blue-blue-10': string;
|
|
66
|
+
'--l-blue-blue-01': string;
|
|
67
|
+
'--l-blue-blue-02': string;
|
|
68
|
+
'--l-blue-blue-03': string;
|
|
69
|
+
'--l-blue-blue-04': string;
|
|
70
|
+
'--l-blue-blue-05': string;
|
|
71
|
+
'--l-blue-blue-06': string;
|
|
72
|
+
'--l-blue-blue-07': string;
|
|
73
|
+
'--l-blue-blue-08': string;
|
|
74
|
+
'--l-blue-blue-09': string;
|
|
75
|
+
'--l-blue-blue-10': string;
|
|
76
|
+
'--yellow-yellow-01': string;
|
|
77
|
+
'--Scrollbar-border-radius': string;
|
|
78
|
+
'--Scrollbar-width': string;
|
|
79
|
+
'--ATheme': string;
|
|
80
|
+
'--Body-background-color': string;
|
|
81
|
+
'--Body-color': string;
|
|
82
|
+
'--action-fill-hover-primary': string;
|
|
83
|
+
'--action-fill-press-primary': string;
|
|
84
|
+
'--action-fill-hover-secondary': string;
|
|
85
|
+
'--action-fill-press-secondary': string;
|
|
86
|
+
'--action-fill-hover-tertiary': string;
|
|
87
|
+
'--action-fill-press-tertiary': string;
|
|
88
|
+
'--action-fill-rest-primary': string;
|
|
89
|
+
'--action-fill-rest-secondary': string;
|
|
90
|
+
'--action-fill-rest-tertiary': string;
|
|
91
|
+
'--action-storke-primary': string;
|
|
92
|
+
'--action-stroke-secondary': string;
|
|
93
|
+
'--action-text-primary': string;
|
|
94
|
+
'--action-text-secondary': string;
|
|
95
|
+
'--action-text-tertiary': string;
|
|
96
|
+
'--action-text-quaternary': string;
|
|
97
|
+
'--button-fill-hover-primary': string;
|
|
98
|
+
'--button-fill-hover-secondary': string;
|
|
99
|
+
'--button-fill-inactive-secondary': string;
|
|
100
|
+
'--button-fill-press-primary': string;
|
|
101
|
+
'--button-fill-press-secondary': string;
|
|
102
|
+
'--button-fill-rest-primary': string;
|
|
103
|
+
'--button-fill-rest-secondary': string;
|
|
104
|
+
'--button-stroke-secondary': string;
|
|
105
|
+
'--button-text-primary': string;
|
|
106
|
+
'--button-text-secondary': string;
|
|
107
|
+
'--checkbox-stroke': string;
|
|
108
|
+
'--content-primary': string;
|
|
109
|
+
'--content-secondary': string;
|
|
110
|
+
'--content-tertiary': string;
|
|
111
|
+
'--content-quaternary': string;
|
|
112
|
+
'--error-text': string;
|
|
113
|
+
'--error-background': string;
|
|
114
|
+
'--error-highlight': string;
|
|
115
|
+
'--dialog-background': string;
|
|
116
|
+
'--dialog-content': string;
|
|
117
|
+
'--dialog-depth': string;
|
|
118
|
+
'--dialog-stroke': string;
|
|
119
|
+
'--fill-background': string;
|
|
120
|
+
'--fill-header': string;
|
|
121
|
+
'--highlight-primary': string;
|
|
122
|
+
'--highlight-secondary': string;
|
|
123
|
+
'--invisible': string;
|
|
124
|
+
'--menuitem-content': string;
|
|
125
|
+
'--menuitem-fill-select': string;
|
|
126
|
+
'--menuitem-text': string;
|
|
127
|
+
'--opacity-primary': string;
|
|
128
|
+
'--opacity-secondary': string;
|
|
129
|
+
'--Scrollbar-handle': string;
|
|
130
|
+
'--Scrollbar-handle-hover': string;
|
|
131
|
+
'--Scrollbar-handle-active': string;
|
|
132
|
+
'--Scrollbar-track': string;
|
|
133
|
+
'--search-content': string;
|
|
134
|
+
'--search-fill-active': string;
|
|
135
|
+
'--search-fill-rest': string;
|
|
136
|
+
'--search-stroke-active': string;
|
|
137
|
+
'--search-text-hint': string;
|
|
138
|
+
'--search-text-placeholder': string;
|
|
139
|
+
'--stepper-connect': string;
|
|
140
|
+
'--stepper-fill-active': string;
|
|
141
|
+
'--stepper-fill-inactive': string;
|
|
142
|
+
'--stepper-stroke-active': string;
|
|
143
|
+
'--stepper-stroke-inactive': string;
|
|
144
|
+
'--stroke-primary': string;
|
|
145
|
+
'--stroke-secondary': string;
|
|
146
|
+
'--switch-fill-handle': string;
|
|
147
|
+
'--switch-fill-track-off': string;
|
|
148
|
+
'--switch-fill-track-on': string;
|
|
149
|
+
'--switch-stroke-handle-off': string;
|
|
150
|
+
'--switch-stroke-handle-on': string;
|
|
151
|
+
'--table-depth': string;
|
|
152
|
+
'--table-elevation': string;
|
|
153
|
+
'--table-header-content': string;
|
|
154
|
+
'--table-stroke-primary': string;
|
|
155
|
+
'--table-stroke-secondary': string;
|
|
156
|
+
'--table-text-primary': string;
|
|
157
|
+
'--table-text-secondary': string;
|
|
158
|
+
'--tapbutton-stroke-active': string;
|
|
159
|
+
'--tapbutton-stroke-rest': string;
|
|
160
|
+
'--tapbutton-text': string;
|
|
161
|
+
'--textinput-content': string;
|
|
162
|
+
'--textinput-fill-active': string;
|
|
163
|
+
'--textinput-fill-rest': string;
|
|
164
|
+
'--textinput-stroke-active': string;
|
|
165
|
+
'--textinput-stroke-error': string;
|
|
166
|
+
'--textinput-text-hint': string;
|
|
167
|
+
'--textinput-text-placeholder': string;
|
|
168
|
+
'--ui-depth': string;
|
|
169
|
+
'--ui-elevation': string;
|
|
170
|
+
'--CDialog-background': string;
|
|
171
|
+
'--CDialog-background2': string;
|
|
172
|
+
'--CDialog-background3': string;
|
|
173
|
+
'--CTableBody-linear': string;
|
|
174
|
+
'--CTableWidthChanger-background': string;
|
|
175
|
+
'--CTableWidthChanger-background2': string;
|
|
176
|
+
'--ABase_Dimming_background-color': string;
|
|
177
|
+
'--ATooltip_background-color': string;
|
|
178
|
+
'--ATooltip_color': string;
|
|
179
|
+
'--AButton_Primary_border': string;
|
|
180
|
+
'--AButton_Primary_background-color': string;
|
|
181
|
+
'--AButton_Primary_color': string;
|
|
182
|
+
'--AButton_Primary_hover_background-color': string;
|
|
183
|
+
'--AButton_Primary_active_background-color': string;
|
|
184
|
+
'--AButton_Secondary_border': string;
|
|
185
|
+
'--AButton_Secondary_background-color': string;
|
|
186
|
+
'--AButton_Secondary_color': string;
|
|
187
|
+
'--AButton_Secondary_hover_background-color': string;
|
|
188
|
+
'--AButton_Secondary_active_background-color': string;
|
|
189
|
+
'--AInput_Primary_background-color': string;
|
|
190
|
+
'--AInput_Primary_border': string;
|
|
191
|
+
'--AInput_Primary_color': string;
|
|
192
|
+
'--AInput_Primary_hover_border': string;
|
|
193
|
+
'--AInput_Primary_focus_background-color': string;
|
|
194
|
+
'--AInput_Primary_focus_border': string;
|
|
195
|
+
'--AInput_Secondary_background-color': string;
|
|
196
|
+
'--AInput_Secondary_border': string;
|
|
197
|
+
'--AInput_Secondary_color': string;
|
|
198
|
+
'--AInput_Secondary_hover_border': string;
|
|
199
|
+
'--AInput_Secondary_focus_border': string;
|
|
200
|
+
'--AInput_Error_HelperText_color': string;
|
|
201
|
+
'--AInput_Error_background-color': string;
|
|
202
|
+
'--AInput_Error_border': string;
|
|
203
|
+
'--AInput_Error_color': string;
|
|
204
|
+
'--AInput_Error_placeholder_color': string;
|
|
205
|
+
'--ATextArea_Primary_background-color': string;
|
|
206
|
+
'--ATextArea_Primary_border': string;
|
|
207
|
+
'--ATextArea_Primary_color': string;
|
|
208
|
+
'--ATextArea_Primary_hover_border': string;
|
|
209
|
+
'--ATextArea_Primary_focus_background-color': string;
|
|
210
|
+
'--ATextArea_Primary_focus_border': string;
|
|
211
|
+
'--ATextArea_Secondary_background-color': string;
|
|
212
|
+
'--ATextArea_Secondary_border': string;
|
|
213
|
+
'--ATextArea_Secondary_color': string;
|
|
214
|
+
'--ATextArea_Secondary_hover_border': string;
|
|
215
|
+
'--ATextArea_Secondary_focus_border': string;
|
|
216
|
+
'--ATextArea_Error_background-color': string;
|
|
217
|
+
'--ATextArea_Error_border': string;
|
|
218
|
+
'--ATextArea_Error_color': string;
|
|
219
|
+
'--ATextArea_Error_placeholder_color': string;
|
|
220
|
+
'--ACheckBox_color': string;
|
|
221
|
+
'--ADialog_Paper_background-color': string;
|
|
222
|
+
'--ADialog_background-color': string;
|
|
223
|
+
'--ADialog_border': string;
|
|
224
|
+
'--ADialog_Body_Title_font': string;
|
|
225
|
+
'--ADialog_Action_background-color': string;
|
|
226
|
+
'--ASelect_Primary_border': string;
|
|
227
|
+
'--ASelect_Primary_hover_border': string;
|
|
228
|
+
'--ASelect_Primary_Arrow_color': string;
|
|
229
|
+
'--ASelect_Primary_Options_background-color': string;
|
|
230
|
+
'--ASelect_Primary_Options_border': string;
|
|
231
|
+
'--ASelect_Primary_Option_hover_background-color': string;
|
|
232
|
+
'--ASelect_Primary_Option_active_background-color': string;
|
|
233
|
+
'--ASelect_Primary_Option_Selected_background-color': string;
|
|
234
|
+
'--ASelect_Secondary_background-color': string;
|
|
235
|
+
'--ASelect_Secondary_Arrow_color': string;
|
|
236
|
+
'--ASelect_Secondary_Options_background-color': string;
|
|
237
|
+
'--ASelect_Secondary_Options_border': string;
|
|
238
|
+
'--ASelect_Secondary_Option_hover_background-color': string;
|
|
239
|
+
'--ASelect_Secondary_Option_active_background-color': string;
|
|
240
|
+
'--ASelect_Secondary_Option_Selected_background-color': string;
|
|
241
|
+
'--ATree_background-color': string;
|
|
242
|
+
'--ATree_Indent_border': string;
|
|
243
|
+
'--ATreeHeader_border-top': string;
|
|
244
|
+
'--ATreeHeader_border-bottom': string;
|
|
245
|
+
'--ATreeItem_hover_background-color': string;
|
|
246
|
+
'--ATreeItem_active_background-color': string;
|
|
247
|
+
'--ATreeItem_select_background-color': string;
|
|
248
|
+
'--ATreeItem_search_background-color': string;
|
|
249
|
+
'--ATreeItem_search_border-top': string;
|
|
250
|
+
'--ATreeItem_search_border-bottom': string;
|
|
251
|
+
'--ATreeItem_select_color': string;
|
|
252
|
+
'--ASwitch_Track_Falsy_border-color': string;
|
|
253
|
+
'--ASwitch_Track_Truthy_border-color': string;
|
|
254
|
+
'--ATab_font': string;
|
|
255
|
+
'--ATab_Option_IsSelected_font': string;
|
|
256
|
+
'--ATab_IndicatorTrack_Primary_border-bottom': string;
|
|
257
|
+
'--ATab_Indicator_Primary_background-color': string;
|
|
258
|
+
'--ATab_Option_Secondary_border': string;
|
|
259
|
+
'--ATab_Option_Secondary_IsSelected_border-bottom': string;
|
|
260
|
+
'--AFileBox_border': string;
|
|
261
|
+
'--AFileBox_background-color': string;
|
|
262
|
+
'--AFileBox_SelectedFile_color': string;
|
|
263
|
+
'--AFileBox_Dropping_color': string;
|
|
264
|
+
'--AFileBox_Dropping_font': string;
|
|
265
|
+
'--AListView_border-top': string;
|
|
266
|
+
'--AListView_Row_border-bottom': string;
|
|
267
|
+
'--AListView_Label_border-left': string;
|
|
268
|
+
'--AListView_Label_font': string;
|
|
269
|
+
'--AListView_Rendered_border-left': string;
|
|
270
|
+
'--AStepper_OutCircle_background-color': string;
|
|
271
|
+
'--AStepper_OutCircle_IsOver_background-color': string;
|
|
272
|
+
'--AStepper_InCircle_background-color': string;
|
|
273
|
+
'--AStepper_InCircle_IsOver_background-color': string;
|
|
274
|
+
'--AStepper_Line_background-color': string;
|
|
275
|
+
'--AStepper_Line_IsOver_background-color': string;
|
|
276
|
+
'--ADatePicker_Anchor_border': string;
|
|
277
|
+
'--ADatePicker_Anchor_color': string;
|
|
278
|
+
'--ADatePicker_Anchor_hover_border': string;
|
|
279
|
+
'--ADatePicker_Anchor_focus_border': string;
|
|
280
|
+
'--ADatePicker_Anchor_Icon_color': string;
|
|
281
|
+
'--ADatePicker_background-color': string;
|
|
282
|
+
'--ADatePicker_border': string;
|
|
283
|
+
'--ADatePicker_StringInputContainer_background-color': string;
|
|
284
|
+
'--ADatePicker_String_border': string;
|
|
285
|
+
'--ADatePicker_Prev_background-color': string;
|
|
286
|
+
'--ADatePicker_Prev_border-right': string;
|
|
287
|
+
'--ADatePicker_Next_background-color': string;
|
|
288
|
+
'--ADatePicker_Next_border-left': string;
|
|
289
|
+
'--ADatePicker_Cell_color': string;
|
|
290
|
+
'--ADatePicker_Cell_IsNotCurrentMonth_color': string;
|
|
291
|
+
'--ADatePicker_Cell_IsDisabled_color': string;
|
|
292
|
+
'--ADatePicker_Cell_IsSelected_background-color': string;
|
|
293
|
+
'--ADatePicker_Cell_IsSelected_color': string;
|
|
294
|
+
'--ADatePicker_Cell_IsHovered_background-color': string;
|
|
295
|
+
'--AIconButton_Primary_color': string;
|
|
296
|
+
'--AIconButton_Primary_background-color': string;
|
|
297
|
+
'--AIconButton_Primary_border': string;
|
|
298
|
+
'--AIconButton_Primary_hover_border': string;
|
|
299
|
+
'--ATableBody_BodyHeader_border-top': string;
|
|
300
|
+
'--ATableBody_TRow_border-bottom': string;
|
|
301
|
+
'--ATableBody_TRow_IsSelected_background-color': string;
|
|
302
|
+
'--ATableBody_TRow_IsSelectable_hover_background-color': string;
|
|
303
|
+
'--ATableBody_TH_color': string;
|
|
304
|
+
'--ATableBody_TH_font-size': string;
|
|
305
|
+
'--ATableBody_TD_font-size': string;
|
|
306
|
+
'--ATableBody_TD_IsMarked_background-color': string;
|
|
307
|
+
'--ATableBody_Resizer_hover_ResizerCenter_background-color': string;
|
|
308
|
+
'--ATableBody_Resizer_active_ResizerCenter_background-color': string;
|
|
309
|
+
'--ATableBody_Resizer_active_ResizerOut_background-color': string;
|
|
310
|
+
'--ATableBody_Resizer_active_ResizerIn_background-color': string;
|
|
311
|
+
'--ATableFooter_Button_IsSelected_background-color': string;
|
|
312
|
+
'--ATableFooter_Button_IsSelected_color': string;
|
|
313
|
+
'--ATableFooter_Button_IsDisabled_color': string;
|
|
314
|
+
'--ATableFilter_SubFilters_background-color': string;
|
|
315
|
+
'--ATableFilter_SubFilters_border': string;
|
|
316
|
+
'--ATableFilter_Icon_color': string;
|
|
9
317
|
};
|
|
318
|
+
export type TAThemeKey = keyof typeof Default;
|
|
319
|
+
export declare const AThemeKeys: ("--ATheme" | "--Font" | "--Body-transition" | "--black_and_white-black" | "--black_and_white-white" | "--black_and_white-white-02" | "--black_and_white-white-03" | "--gray-deep-gray" | "--gray-deep-gray2" | "--gray-gray-01" | "--gray-gray-02" | "--gray-gray-03" | "--gray-gray-04" | "--gray-gray-05" | "--gray-gray-06" | "--gray-gray-07" | "--gray-gray-08" | "--gray-gray-09" | "--gray-gray-10" | "--gray-l_add_d-gray" | "--orange-orange-01" | "--orange-orange-02" | "--orange-orange-03" | "--orange-orange-04" | "--orange-orange-05" | "--orange-orange-06" | "--orange-orange-07" | "--orange-orange-08" | "--orange-orange-09" | "--orange-orange-10" | "--red-red-01" | "--red-red-02" | "--red-red-03" | "--red-red-04" | "--red-red-05" | "--red-red-06" | "--red-red-07" | "--red-red-08" | "--red-red-09" | "--red-red-10" | "--d-blue-blue-01" | "--d-blue-blue-02" | "--d-blue-blue-03" | "--d-blue-blue-04" | "--d-blue-blue-05" | "--d-blue-blue-06" | "--d-blue-blue-07" | "--d-blue-blue-08" | "--d-blue-blue-09" | "--d-blue-blue-10" | "--l-blue-blue-01" | "--l-blue-blue-02" | "--l-blue-blue-03" | "--l-blue-blue-04" | "--l-blue-blue-05" | "--l-blue-blue-06" | "--l-blue-blue-07" | "--l-blue-blue-08" | "--l-blue-blue-09" | "--l-blue-blue-10" | "--yellow-yellow-01" | "--Scrollbar-border-radius" | "--Scrollbar-width" | "--Body-background-color" | "--Body-color" | "--action-fill-hover-primary" | "--action-fill-press-primary" | "--action-fill-hover-secondary" | "--action-fill-press-secondary" | "--action-fill-hover-tertiary" | "--action-fill-press-tertiary" | "--action-fill-rest-primary" | "--action-fill-rest-secondary" | "--action-fill-rest-tertiary" | "--action-storke-primary" | "--action-stroke-secondary" | "--action-text-primary" | "--action-text-secondary" | "--action-text-tertiary" | "--action-text-quaternary" | "--button-fill-hover-primary" | "--button-fill-hover-secondary" | "--button-fill-inactive-secondary" | "--button-fill-press-primary" | "--button-fill-press-secondary" | "--button-fill-rest-primary" | "--button-fill-rest-secondary" | "--button-stroke-secondary" | "--button-text-primary" | "--button-text-secondary" | "--checkbox-stroke" | "--content-primary" | "--content-secondary" | "--content-tertiary" | "--content-quaternary" | "--error-text" | "--error-background" | "--error-highlight" | "--dialog-background" | "--dialog-content" | "--dialog-depth" | "--dialog-stroke" | "--fill-background" | "--fill-header" | "--highlight-primary" | "--highlight-secondary" | "--invisible" | "--menuitem-content" | "--menuitem-fill-select" | "--menuitem-text" | "--opacity-primary" | "--opacity-secondary" | "--Scrollbar-handle" | "--Scrollbar-handle-hover" | "--Scrollbar-handle-active" | "--Scrollbar-track" | "--search-content" | "--search-fill-active" | "--search-fill-rest" | "--search-stroke-active" | "--search-text-hint" | "--search-text-placeholder" | "--stepper-connect" | "--stepper-fill-active" | "--stepper-fill-inactive" | "--stepper-stroke-active" | "--stepper-stroke-inactive" | "--stroke-primary" | "--stroke-secondary" | "--switch-fill-handle" | "--switch-fill-track-off" | "--switch-fill-track-on" | "--switch-stroke-handle-off" | "--switch-stroke-handle-on" | "--table-depth" | "--table-elevation" | "--table-header-content" | "--table-stroke-primary" | "--table-stroke-secondary" | "--table-text-primary" | "--table-text-secondary" | "--tapbutton-stroke-active" | "--tapbutton-stroke-rest" | "--tapbutton-text" | "--textinput-content" | "--textinput-fill-active" | "--textinput-fill-rest" | "--textinput-stroke-active" | "--textinput-stroke-error" | "--textinput-text-hint" | "--textinput-text-placeholder" | "--ui-depth" | "--ui-elevation" | "--CDialog-background" | "--CDialog-background2" | "--CDialog-background3" | "--CTableBody-linear" | "--CTableWidthChanger-background" | "--CTableWidthChanger-background2" | "--ABase_Dimming_background-color" | "--ATooltip_background-color" | "--ATooltip_color" | "--AButton_Primary_border" | "--AButton_Primary_background-color" | "--AButton_Primary_color" | "--AButton_Primary_hover_background-color" | "--AButton_Primary_active_background-color" | "--AButton_Secondary_border" | "--AButton_Secondary_background-color" | "--AButton_Secondary_color" | "--AButton_Secondary_hover_background-color" | "--AButton_Secondary_active_background-color" | "--AInput_Primary_background-color" | "--AInput_Primary_border" | "--AInput_Primary_color" | "--AInput_Primary_hover_border" | "--AInput_Primary_focus_background-color" | "--AInput_Primary_focus_border" | "--AInput_Secondary_background-color" | "--AInput_Secondary_border" | "--AInput_Secondary_color" | "--AInput_Secondary_hover_border" | "--AInput_Secondary_focus_border" | "--AInput_Error_HelperText_color" | "--AInput_Error_background-color" | "--AInput_Error_border" | "--AInput_Error_color" | "--AInput_Error_placeholder_color" | "--ATextArea_Primary_background-color" | "--ATextArea_Primary_border" | "--ATextArea_Primary_color" | "--ATextArea_Primary_hover_border" | "--ATextArea_Primary_focus_background-color" | "--ATextArea_Primary_focus_border" | "--ATextArea_Secondary_background-color" | "--ATextArea_Secondary_border" | "--ATextArea_Secondary_color" | "--ATextArea_Secondary_hover_border" | "--ATextArea_Secondary_focus_border" | "--ATextArea_Error_background-color" | "--ATextArea_Error_border" | "--ATextArea_Error_color" | "--ATextArea_Error_placeholder_color" | "--ACheckBox_color" | "--ADialog_Paper_background-color" | "--ADialog_background-color" | "--ADialog_border" | "--ADialog_Body_Title_font" | "--ADialog_Action_background-color" | "--ASelect_Primary_border" | "--ASelect_Primary_hover_border" | "--ASelect_Primary_Arrow_color" | "--ASelect_Primary_Options_background-color" | "--ASelect_Primary_Options_border" | "--ASelect_Primary_Option_hover_background-color" | "--ASelect_Primary_Option_active_background-color" | "--ASelect_Primary_Option_Selected_background-color" | "--ASelect_Secondary_background-color" | "--ASelect_Secondary_Arrow_color" | "--ASelect_Secondary_Options_background-color" | "--ASelect_Secondary_Options_border" | "--ASelect_Secondary_Option_hover_background-color" | "--ASelect_Secondary_Option_active_background-color" | "--ASelect_Secondary_Option_Selected_background-color" | "--ATree_background-color" | "--ATree_Indent_border" | "--ATreeHeader_border-top" | "--ATreeHeader_border-bottom" | "--ATreeItem_hover_background-color" | "--ATreeItem_active_background-color" | "--ATreeItem_select_background-color" | "--ATreeItem_search_background-color" | "--ATreeItem_search_border-top" | "--ATreeItem_search_border-bottom" | "--ATreeItem_select_color" | "--ASwitch_Track_Falsy_border-color" | "--ASwitch_Track_Truthy_border-color" | "--ATab_font" | "--ATab_Option_IsSelected_font" | "--ATab_IndicatorTrack_Primary_border-bottom" | "--ATab_Indicator_Primary_background-color" | "--ATab_Option_Secondary_border" | "--ATab_Option_Secondary_IsSelected_border-bottom" | "--AFileBox_border" | "--AFileBox_background-color" | "--AFileBox_SelectedFile_color" | "--AFileBox_Dropping_color" | "--AFileBox_Dropping_font" | "--AListView_border-top" | "--AListView_Row_border-bottom" | "--AListView_Label_border-left" | "--AListView_Label_font" | "--AListView_Rendered_border-left" | "--AStepper_OutCircle_background-color" | "--AStepper_OutCircle_IsOver_background-color" | "--AStepper_InCircle_background-color" | "--AStepper_InCircle_IsOver_background-color" | "--AStepper_Line_background-color" | "--AStepper_Line_IsOver_background-color" | "--ADatePicker_Anchor_border" | "--ADatePicker_Anchor_color" | "--ADatePicker_Anchor_hover_border" | "--ADatePicker_Anchor_focus_border" | "--ADatePicker_Anchor_Icon_color" | "--ADatePicker_background-color" | "--ADatePicker_border" | "--ADatePicker_StringInputContainer_background-color" | "--ADatePicker_String_border" | "--ADatePicker_Prev_background-color" | "--ADatePicker_Prev_border-right" | "--ADatePicker_Next_background-color" | "--ADatePicker_Next_border-left" | "--ADatePicker_Cell_color" | "--ADatePicker_Cell_IsNotCurrentMonth_color" | "--ADatePicker_Cell_IsDisabled_color" | "--ADatePicker_Cell_IsSelected_background-color" | "--ADatePicker_Cell_IsSelected_color" | "--ADatePicker_Cell_IsHovered_background-color" | "--AIconButton_Primary_color" | "--AIconButton_Primary_background-color" | "--AIconButton_Primary_border" | "--AIconButton_Primary_hover_border" | "--ATableBody_BodyHeader_border-top" | "--ATableBody_TRow_border-bottom" | "--ATableBody_TRow_IsSelected_background-color" | "--ATableBody_TRow_IsSelectable_hover_background-color" | "--ATableBody_TH_color" | "--ATableBody_TH_font-size" | "--ATableBody_TD_font-size" | "--ATableBody_TD_IsMarked_background-color" | "--ATableBody_Resizer_hover_ResizerCenter_background-color" | "--ATableBody_Resizer_active_ResizerCenter_background-color" | "--ATableBody_Resizer_active_ResizerOut_background-color" | "--ATableBody_Resizer_active_ResizerIn_background-color" | "--ATableFooter_Button_IsSelected_background-color" | "--ATableFooter_Button_IsSelected_color" | "--ATableFooter_Button_IsDisabled_color" | "--ATableFilter_SubFilters_background-color" | "--ATableFilter_SubFilters_border" | "--ATableFilter_Icon_color")[];
|
|
320
|
+
export declare const AThemes: {
|
|
321
|
+
Add: (theme: IATheme) => void;
|
|
322
|
+
Remove: (theme: string) => void;
|
|
323
|
+
Get: (theme: string) => IATheme | undefined;
|
|
324
|
+
GetCurrent: () => string;
|
|
325
|
+
Apply: (newTheme: 'Light' | 'Dark' | string) => void;
|
|
326
|
+
Init: () => void;
|
|
327
|
+
SetVar: (theme: string, key: keyof typeof Default, value: string) => void;
|
|
328
|
+
GetVar: (theme: string, key: keyof typeof Default) => string | undefined;
|
|
329
|
+
};
|
|
330
|
+
export {};
|