ados-rcm 1.0.134 → 1.0.136
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/dist/AModule/AComponents/ADatePicker/ADatePicker.d.ts +22 -3
- package/dist/AModule/AComponents/AResource/AResource.d.ts +1 -0
- package/dist/AModule/AComponents/ATable/ATable.d.ts +6 -0
- package/dist/AModule/AComponents/ATheme/ATheme.d.ts +5 -3
- package/dist/index.cjs.js +25 -25
- package/dist/index.es.js +3966 -3923
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { TUseValues } from '../../AHooks/useValues';
|
|
3
|
+
import { IABaseProps } from '../ABase/ABase';
|
|
3
4
|
import { Resources } from '../AResource/AResource';
|
|
4
5
|
import { EDir12, TActionRef } from '../ATypes/ATypes';
|
|
5
6
|
export interface IADatePickerActions {
|
|
@@ -22,7 +23,13 @@ export interface IADatePickerActions {
|
|
|
22
23
|
*/
|
|
23
24
|
toggle: () => void;
|
|
24
25
|
}
|
|
25
|
-
export interface IADatePickerProps {
|
|
26
|
+
export interface IADatePickerProps extends IABaseProps {
|
|
27
|
+
/**
|
|
28
|
+
* type? : 'Primary' | 'Secondary' | 'Raw' = 'Primary'
|
|
29
|
+
*
|
|
30
|
+
* Description : type of ADatePicker
|
|
31
|
+
*/
|
|
32
|
+
type?: 'Primary' | 'Secondary' | 'Raw';
|
|
26
33
|
/**
|
|
27
34
|
* className? : string
|
|
28
35
|
*
|
|
@@ -30,11 +37,11 @@ export interface IADatePickerProps {
|
|
|
30
37
|
*/
|
|
31
38
|
className?: string;
|
|
32
39
|
/**
|
|
33
|
-
* useDate? : TUseValues<Date>
|
|
40
|
+
* useDate? : TUseValues<Date | null, Date>
|
|
34
41
|
*
|
|
35
42
|
* Description : useDate of ADatePicker
|
|
36
43
|
*/
|
|
37
|
-
useDate?: TUseValues<Date>;
|
|
44
|
+
useDate?: TUseValues<Date | null, Date>;
|
|
38
45
|
/**
|
|
39
46
|
* position? : EDir12 = EDir12.SE
|
|
40
47
|
*
|
|
@@ -59,6 +66,18 @@ export interface IADatePickerProps {
|
|
|
59
66
|
* Description : maximum date of ADatePicker. default is a year later from now
|
|
60
67
|
*/
|
|
61
68
|
maxDate?: Date;
|
|
69
|
+
/**
|
|
70
|
+
* isDisabled? : boolean
|
|
71
|
+
*
|
|
72
|
+
* Description : if true, ADatePicker is disabled
|
|
73
|
+
*/
|
|
74
|
+
isDisabled?: boolean;
|
|
75
|
+
/**
|
|
76
|
+
* isLoading? : boolean
|
|
77
|
+
*
|
|
78
|
+
* Description : if true, ADatePicker is loading
|
|
79
|
+
*/
|
|
80
|
+
isLoading?: boolean;
|
|
62
81
|
/**
|
|
63
82
|
* LeftAddon? : React.ReactNode
|
|
64
83
|
*
|
|
@@ -140,6 +140,12 @@ export interface IATableFilter<T extends IItem> {
|
|
|
140
140
|
* Description : placeholder of the String filter
|
|
141
141
|
*/
|
|
142
142
|
placeholder?: string;
|
|
143
|
+
/**
|
|
144
|
+
* autoFocus? : boolean
|
|
145
|
+
*
|
|
146
|
+
* Description : decides whether the input is focused or not
|
|
147
|
+
*/
|
|
148
|
+
autoFocus?: boolean;
|
|
143
149
|
};
|
|
144
150
|
Select: {
|
|
145
151
|
/**
|
|
@@ -292,7 +292,8 @@ declare const Default: {
|
|
|
292
292
|
'--ADatePicker_Anchor_color': string;
|
|
293
293
|
'--ADatePicker_Anchor_hover_border': string;
|
|
294
294
|
'--ADatePicker_Anchor_focus_border': string;
|
|
295
|
-
'--
|
|
295
|
+
'--ADatePicker_Anchor_Icon_Primary_color': string;
|
|
296
|
+
'--ADatePicker_Anchor_Icon_Secondary_color': string;
|
|
296
297
|
'--ADatePicker_background-color': string;
|
|
297
298
|
'--ADatePicker_border': string;
|
|
298
299
|
'--ADatePicker_StringInputContainer_background-color': string;
|
|
@@ -311,7 +312,8 @@ declare const Default: {
|
|
|
311
312
|
'--ADateRangePicker_Anchor_color': string;
|
|
312
313
|
'--ADateRangePicker_Anchor_hover_border': string;
|
|
313
314
|
'--ADateRangePicker_Anchor_focus_border': string;
|
|
314
|
-
'--
|
|
315
|
+
'--ADateRangePicker_Anchor_Icon_Primary_color': string;
|
|
316
|
+
'--ADateRangePicker_Anchor_Icon_Secondary_color': string;
|
|
315
317
|
'--ADateRangePicker_background-color': string;
|
|
316
318
|
'--ADateRangePicker_border': string;
|
|
317
319
|
'--ADateRangePicker_StringInputContainer_background-color': string;
|
|
@@ -351,7 +353,7 @@ declare const Default: {
|
|
|
351
353
|
'--ADivideFrame_DividerInner_background-color': string;
|
|
352
354
|
};
|
|
353
355
|
export type TAThemeKey = keyof typeof Default;
|
|
354
|
-
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" | "--AMultiSelect_Primary_border" | "--AMultiSelect_Primary_hover_border" | "--AMultiSelect_Primary_Arrow_color" | "--AMultiSelect_Primary_Options_background-color" | "--AMultiSelect_Primary_Options_border" | "--AMultiSelect_Primary_Option_hover_background-color" | "--AMultiSelect_Primary_Option_active_background-color" | "--AMultiSelect_Primary_Option_Selected_background-color" | "--AMultiSelect_Secondary_background-color" | "--AMultiSelect_Secondary_Arrow_color" | "--AMultiSelect_Secondary_Options_background-color" | "--AMultiSelect_Secondary_Options_border" | "--AMultiSelect_Secondary_Option_hover_background-color" | "--AMultiSelect_Secondary_Option_active_background-color" | "--AMultiSelect_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" | "--ADateRangePicker_Anchor_border" | "--ADateRangePicker_Anchor_color" | "--ADateRangePicker_Anchor_hover_border" | "--ADateRangePicker_Anchor_focus_border" | "--ADateRangePicker_Anchor_Icon_color" | "--ADateRangePicker_background-color" | "--ADateRangePicker_border" | "--ADateRangePicker_StringInputContainer_background-color" | "--ADateRangePicker_String_border" | "--ADateRangePicker_Prev_background-color" | "--ADateRangePicker_Prev_border-right" | "--ADateRangePicker_Next_background-color" | "--ADateRangePicker_Next_border-left" | "--ADateRangePicker_Cell_color" | "--ADateRangePicker_Cell_IsNotCurrentMonth_color" | "--ADateRangePicker_Cell_IsDisabled_color" | "--ADateRangePicker_Cell_IsSelected_background-color" | "--ADateRangePicker_Cell_IsSelected_color" | "--ADateRangePicker_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" | "--ADivideFrame_DividerInner_background-color")[];
|
|
356
|
+
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" | "--AMultiSelect_Primary_border" | "--AMultiSelect_Primary_hover_border" | "--AMultiSelect_Primary_Arrow_color" | "--AMultiSelect_Primary_Options_background-color" | "--AMultiSelect_Primary_Options_border" | "--AMultiSelect_Primary_Option_hover_background-color" | "--AMultiSelect_Primary_Option_active_background-color" | "--AMultiSelect_Primary_Option_Selected_background-color" | "--AMultiSelect_Secondary_background-color" | "--AMultiSelect_Secondary_Arrow_color" | "--AMultiSelect_Secondary_Options_background-color" | "--AMultiSelect_Secondary_Options_border" | "--AMultiSelect_Secondary_Option_hover_background-color" | "--AMultiSelect_Secondary_Option_active_background-color" | "--AMultiSelect_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_Primary_color" | "--ADatePicker_Anchor_Icon_Secondary_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" | "--ADateRangePicker_Anchor_border" | "--ADateRangePicker_Anchor_color" | "--ADateRangePicker_Anchor_hover_border" | "--ADateRangePicker_Anchor_focus_border" | "--ADateRangePicker_Anchor_Icon_Primary_color" | "--ADateRangePicker_Anchor_Icon_Secondary_color" | "--ADateRangePicker_background-color" | "--ADateRangePicker_border" | "--ADateRangePicker_StringInputContainer_background-color" | "--ADateRangePicker_String_border" | "--ADateRangePicker_Prev_background-color" | "--ADateRangePicker_Prev_border-right" | "--ADateRangePicker_Next_background-color" | "--ADateRangePicker_Next_border-left" | "--ADateRangePicker_Cell_color" | "--ADateRangePicker_Cell_IsNotCurrentMonth_color" | "--ADateRangePicker_Cell_IsDisabled_color" | "--ADateRangePicker_Cell_IsSelected_background-color" | "--ADateRangePicker_Cell_IsSelected_color" | "--ADateRangePicker_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" | "--ADivideFrame_DividerInner_background-color")[];
|
|
355
357
|
export declare const AThemes: {
|
|
356
358
|
Add: (theme: IATheme) => void;
|
|
357
359
|
Remove: (theme: string) => void;
|