@m4l/components 9.1.142 → 9.1.144
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/.storybook/utils/getStylesColorsByMode.d.ts +48 -48
- package/@types/types.d.ts +17 -0
- package/components/AccountPopover/slots/AccountPopoverSlots.d.ts +7 -7
- package/components/AppBar/slots/AppBarSlots.d.ts +6 -6
- package/components/AppBar/slots/AppBarSlots.js +1 -1
- package/components/Chip/slots/ChipSlots.d.ts +2 -2
- package/components/Color/slots/ColorSlots.d.ts +2 -2
- package/components/Color/slots/ColorSlots.js +1 -1
- package/components/CommonActions/components/ActionCancel/slots/ActionsCancelSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionFormCancel/slots/ActionFormCancelSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionIntro/slots/ActionsIntroSlots.d.ts +1 -1
- package/components/CommonActions/components/ActionsContainer/slots/ActionsContainerSlots.d.ts +1 -1
- package/components/DataGrid/DataGrid.d.ts +9 -0
- package/components/DataGrid/DataGrid.js +95 -0
- package/components/DataGrid/contexts/DataGridContext/index.js +2 -2
- package/components/DataGrid/contexts/FilterContext/index.js +2 -2
- package/components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.js +6 -2
- package/components/DataGrid/hooks/useDataGrid.js +1 -1
- package/components/DataGrid/hooks/useFilters.js +1 -1
- package/components/DataGrid/index.d.ts +8 -9
- package/components/DataGrid/index.js +1 -89
- package/components/DataGrid/slots/DataGridEnum.d.ts +2 -1
- package/components/DataGrid/slots/DataGridEnum.js +1 -0
- package/components/DataGrid/slots/DataGridSlot.d.ts +19 -18
- package/components/DataGrid/slots/DataGridSlot.js +13 -8
- package/components/DataGrid/styles.js +10 -8
- package/components/DataGrid/subcomponents/Actions/index.js +15 -12
- package/components/DataGrid/subcomponents/Actions/subcomponents/Settings/subcomponents/ColumnsConfig/index.js +1 -1
- package/components/DataGrid/subcomponents/Actions/subcomponents/hooks/useModalSettings/index.js +1 -1
- package/components/DataGrid/subcomponents/Actions/types.d.ts +2 -0
- package/components/DataGrid/subcomponents/Table/index.js +1 -1
- package/components/DataGrid/subcomponents/Table/subcomponents/DraggableHeaderRenderer.js +1 -1
- package/components/DataGrid/types.d.ts +8 -12
- package/components/DragResizeWindow/slots/DragResizeWindowSlots.d.ts +2 -2
- package/components/DynamicFilter/__tests__/fronEndHelpers.test.d.ts +1 -0
- package/components/DynamicFilter/helpers/frontEndHelpers.d.ts +12 -0
- package/components/DynamicFilter/helpers/frontEndHelpers.js +213 -0
- package/components/DynamicFilter/index.d.ts +1 -0
- package/components/DynamicFilter/slots/dynamicFilterSlots.d.ts +15 -15
- package/components/DynamicFilter/slots/dynamicFilterSlots.js +1 -1
- package/components/DynamicFilter/store/DynamicFilterContext.d.ts +1 -1
- package/components/DynamicFilter/store/DynamicFilterStore.d.ts +1 -1
- package/components/DynamicFilter/store/DynamicFilterStore.js +5 -2
- package/components/DynamicFilter/store/{DynamicFilterStoreTypes.d.ts → types.d.ts} +4 -5
- package/components/DynamicFilter/store/useDynamicFilterStore.d.ts +1 -1
- package/components/DynamicFilter/subcomponents/AppliedFilterChip/useAppliedFilterChip.d.ts +1 -1
- package/components/DynamicFilter/subcomponents/AppliedFilterChip/useAppliedFilterChip.js +2 -4
- package/components/DynamicFilter/subcomponents/DynamicFilterBase/DynamicFilterBase.js +4 -0
- package/components/DynamicFilter/subcomponents/PopoverFilter/usePopoverFilter.js +2 -1
- package/components/DynamicFilter/subcomponents/PopoverMenuFields/usePopoverMenuFields.d.ts +0 -1
- package/components/DynamicFilter/subcomponents/PopoverMenuFields/usePopoverMenuFields.js +1 -3
- package/components/DynamicFilter/types.d.ts +2 -2
- package/components/DynamicSort/DynamicSort.styles.js +3 -0
- package/components/DynamicSort/constants.d.ts +3 -3
- package/components/DynamicSort/constants.js +5 -3
- package/components/DynamicSort/dictionary.js +3 -2
- package/components/DynamicSort/helpers/formatToRowSort.js +3 -2
- package/components/DynamicSort/helpers/frontEndHelpers.d.ts +7 -0
- package/components/DynamicSort/helpers/frontEndHelpers.js +38 -0
- package/components/DynamicSort/helpers/getPurgedInitialSortApplyed.js +2 -2
- package/components/DynamicSort/index.d.ts +2 -1
- package/components/DynamicSort/slots/DynamicSortSlots.d.ts +29 -29
- package/components/DynamicSort/store/DynamicSortContext.d.ts +3 -3
- package/components/DynamicSort/store/DynamicSortContext.js +5 -14
- package/components/DynamicSort/store/DynamicSortStore.d.ts +2 -2
- package/components/DynamicSort/store/DynamicSortStore.js +30 -21
- package/components/DynamicSort/store/{type.d.ts → types.d.ts} +19 -22
- package/components/DynamicSort/store/useDynamicSortStore.d.ts +1 -1
- package/components/DynamicSort/store/useDynamicSortStore.js +1 -1
- package/components/DynamicSort/subcomponents/AppliedSortChip/useAppliedSortChip.d.ts +1 -1
- package/components/DynamicSort/subcomponents/AppliedSortChip/useAppliedSortChip.js +3 -4
- package/components/DynamicSort/subcomponents/AppliedSorts/AppliedSorts.js +1 -1
- package/components/DynamicSort/subcomponents/AppliedSorts/useAppliedSorts.d.ts +1 -1
- package/components/DynamicSort/subcomponents/AppliedSorts/useAppliedSorts.js +2 -1
- package/components/DynamicSort/subcomponents/DynamicSortBase/DynamicSortBase.js +4 -0
- package/components/DynamicSort/subcomponents/FieldTypes/DataTypeComponent.js +2 -2
- package/components/DynamicSort/subcomponents/FieldTypes/FieldTypeInterface.d.ts +4 -4
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.d.ts +4 -4
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.js +4 -4
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/index.js +1 -1
- package/components/DynamicSort/subcomponents/FieldTypes/fieldFactory.d.ts +2 -3
- package/components/DynamicSort/subcomponents/FieldTypes/fieldFactory.js +4 -4
- package/components/DynamicSort/subcomponents/InputSort/InputSort.js +11 -2
- package/components/DynamicSort/subcomponents/InputSort/useInputSort.d.ts +13 -1
- package/components/DynamicSort/subcomponents/InputSort/useInputSort.js +26 -16
- package/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.js +5 -4
- package/components/DynamicSort/subcomponents/PopoverMenuFields/usePopoverMenuFields.d.ts +2 -1
- package/components/DynamicSort/subcomponents/PopoverMenuFields/usePopoverMenuFields.js +6 -5
- package/components/DynamicSort/subcomponents/PopoverSort/usePopoverSort.d.ts +3 -2
- package/components/DynamicSort/subcomponents/PopoverSort/usePopoverSort.js +8 -6
- package/components/DynamicSort/subcomponents/SortActions/SortActions.js +1 -1
- package/components/DynamicSort/subcomponents/SortActions/useSortActions.js +4 -4
- package/components/DynamicSort/tests/fronEndHelpers.test.d.ts +1 -0
- package/components/DynamicSort/types.d.ts +36 -46
- package/components/Icon/slots/IconSlots.d.ts +2 -2
- package/components/Label/slots/LabelSlots.d.ts +1 -1
- package/components/LanguagePopover/slots/LanguagePopoverSlots.d.ts +1 -1
- package/components/LoadingError/slots/LoadingErrorSlots.d.ts +8 -8
- package/components/MenuActions/MenuActions.js +1 -1
- package/components/MenuActions/slots/MenuActionsSlots.d.ts +6 -6
- package/components/MenuActions/types.d.ts +4 -7
- package/components/ModalDialog/slots/ModalDialogSlots.d.ts +2 -2
- package/components/NoItemSelected/slots/NoItemSelectedSlots.d.ts +3 -3
- package/components/NumberInput/slots/NumberInputSlots.d.ts +5 -5
- package/components/ObjectLogs/index.js +1 -1
- package/components/PDFViewer/slots/PDFViewerSlots.d.ts +1 -1
- package/components/Pager/Pager.js +4 -1
- package/components/Pager/slots/PagerSlots.d.ts +4 -4
- package/components/PaperForm/slots/PaperFormSlots.d.ts +3 -3
- package/components/PropertyValue/slots/PropertyValueSlots.d.ts +3 -3
- package/components/ScrollBar/slots/ScrollBarSlots.d.ts +1 -1
- package/components/SideBar/slots/SideBarSlots.d.ts +15 -15
- package/components/ToastContainer/slots/toastContainerSlots.d.ts +7 -7
- package/components/WindowBase/slots/WindowBaseSlots.d.ts +8 -8
- package/components/WindowBase/subcomponents/Header/types.d.ts +2 -4
- package/components/WindowConfirm/slots/WindowConfirmSlots.d.ts +8 -8
- package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +17 -17
- package/components/areas/components/AreasAdmin/subcomponents/AreaChip/AreaChip.js +1 -1
- package/components/areas/components/AreasViewer/slots/AreasViewerSlots.d.ts +5 -5
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Component/index.js +2 -2
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/subcomponents/Component/types.d.ts +1 -0
- package/components/areas/contexts/WindowToolsMFContext/types.d.ts +1 -1
- package/components/areas/types.d.ts +2 -4
- package/components/extended/React-Spinners/PropagateLoaderSpinner/slots/PropagateLoaderSpinnerSlots.d.ts +1 -1
- package/components/extended/React-Splitter-Layout/slots/SplitLayoutSlots.d.ts +3 -3
- package/components/extended/React-Window/FixedSizeList/slots/FixedSizeListSlots.js +1 -1
- package/components/extended/React-Window/VariableSizeList/VariableSizeList.js +1 -1
- package/components/hook-form/RHFAutocomplete/slots/RHFAutocompleteSlots.d.ts +1 -1
- package/components/hook-form/RHFCheckbox/slots/RHFCheckBoxSlots.d.ts +3 -3
- package/components/hook-form/RHFColorPicker/slots/RHFColorPickerSlots.d.ts +1 -1
- package/components/hook-form/RHFDateTime/slots/RHFDateTimeSlots.d.ts +1 -1
- package/components/hook-form/RHFNumberInput/slots/RHFNumberInputSlots.d.ts +1 -1
- package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +4 -4
- package/components/hook-form/RHFSelect/slots/RHFSlots.d.ts +2 -2
- package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +2 -2
- package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +3 -3
- package/components/hook-form/RHFTimePicker/slots/RHFTimePickerSlots.d.ts +1 -1
- package/components/index.d.ts +27 -33
- package/components/mui_extended/Accordion/slots/AccordionSlots.d.ts +2 -2
- package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +5 -5
- package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.js +1 -1
- package/components/mui_extended/Avatar/slots/AvatarSlots.d.ts +1 -1
- package/components/mui_extended/Badge/slots/BadgeSlots.d.ts +1 -1
- package/components/mui_extended/Button/slots/ButtonSlots.d.ts +1 -1
- package/components/mui_extended/CheckBox/slots/CheckBoxSlots.d.ts +2 -2
- package/components/mui_extended/DateTimePicker/slots/DateTimePickerSlots.d.ts +4 -4
- package/components/mui_extended/Dialog/slots/DialogSlots.d.ts +2 -2
- package/components/mui_extended/Divider/slots/DividerSlots.d.ts +2 -2
- package/components/mui_extended/IconButton/IconButton.js +2 -2
- package/components/mui_extended/IconButton/slots/IconButtonSlots.d.ts +2 -2
- package/components/mui_extended/LoadingButton/slots/LoadingButtonSlots.d.ts +1 -1
- package/components/mui_extended/MenuDivider/slots/MenuDividerSlots.d.ts +2 -2
- package/components/mui_extended/MenuItem/slots/MenuItemSlots.d.ts +2 -2
- package/components/mui_extended/MenuItem/slots/MenuItemSlots.js +1 -1
- package/components/mui_extended/NavLink/slots/NavLinkSlots.d.ts +1 -1
- package/components/mui_extended/Popper/slots/PopperStlots.d.ts +1 -1
- package/components/mui_extended/Select/slots/SelectSlots.d.ts +3 -3
- package/components/mui_extended/Skeleton/Slots/skeletonSlots.d.ts +1 -1
- package/components/mui_extended/Stack/slots/StackSlot.d.ts +1 -1
- package/components/mui_extended/Tab/Slots/TabSlots.d.ts +1 -1
- package/components/mui_extended/Tabs/slots/TabsSlots.d.ts +1 -1
- package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +1 -1
- package/components/mui_extended/TimePicker/slots/TimePickerSlots.d.ts +3 -3
- package/components/mui_extended/ToggleButton/slots/ToggleButtonSlots.d.ts +1 -1
- package/components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.d.ts +1 -1
- package/components/mui_extended/Tooltip/slots/TooltipSlots.d.ts +1 -1
- package/components/mui_extended/Typography/slots/typographySlots.d.ts +1 -1
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/store.js +2 -2
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/types.d.ts +6 -13
- package/components/popups/components/PopupsProvider/hooks/usePopops/usePopups.js +1 -1
- package/components/popups/components/PopupsViewer/slots/popupsViewerSlots.d.ts +5 -5
- package/hooks/index.d.ts +1 -0
- package/hooks/useDynamicFilterAndSort/constants.d.ts +1 -0
- package/hooks/useDynamicFilterAndSort/constants.js +4 -0
- package/hooks/useDynamicFilterAndSort/icons.d.ts +6 -0
- package/hooks/useDynamicFilterAndSort/icons.js +11 -0
- package/hooks/useDynamicFilterAndSort/index.d.ts +2 -0
- package/hooks/useDynamicFilterAndSort/index.js +1 -0
- package/hooks/useDynamicFilterAndSort/slots/DynamicFilterAndSortEnum.d.ts +5 -0
- package/hooks/useDynamicFilterAndSort/slots/DynamicFilterAndSortEnum.js +9 -0
- package/hooks/useDynamicFilterAndSort/slots/DynamicFilterAndSortSlots.d.ts +9 -0
- package/hooks/useDynamicFilterAndSort/slots/DynamicFilterAndSortSlots.js +22 -0
- package/hooks/useDynamicFilterAndSort/styles.d.ts +2 -0
- package/hooks/useDynamicFilterAndSort/styles.js +43 -0
- package/hooks/useDynamicFilterAndSort/types.d.ts +34 -0
- package/hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.d.ts +10 -0
- package/hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js +90 -0
- package/index.js +304 -295
- package/package.json +1 -1
- package/utils/getValidDate.d.ts +4 -0
- package/utils/getValidDate.js +17 -0
- package/utils/index.d.ts +1 -0
- package/vendor.js +2 -2
- package/not_recognized/index.js +0 -23261
|
@@ -22,24 +22,24 @@ export declare const colorsLight: {
|
|
|
22
22
|
readonly semanticText: string;
|
|
23
23
|
};
|
|
24
24
|
readonly default: {
|
|
25
|
-
readonly
|
|
26
|
-
readonly selectedOpacity: string;
|
|
25
|
+
readonly semanticText: string;
|
|
27
26
|
readonly focusVisible: string;
|
|
28
|
-
readonly contrastText: string;
|
|
29
27
|
readonly enabled: string;
|
|
30
28
|
readonly focus: string;
|
|
31
29
|
readonly light: string;
|
|
32
30
|
readonly dark: string;
|
|
33
31
|
readonly main: string;
|
|
32
|
+
readonly contrastText: string;
|
|
34
33
|
readonly enabledOpacity: string;
|
|
35
34
|
readonly hover: string;
|
|
36
35
|
readonly hoverOpacity: string;
|
|
37
36
|
readonly focusOpacity: string;
|
|
37
|
+
readonly selected: string;
|
|
38
|
+
readonly selectedOpacity: string;
|
|
38
39
|
readonly active: string;
|
|
39
40
|
readonly activeOpacity: string;
|
|
40
41
|
readonly opacity: string;
|
|
41
42
|
readonly toneOpacity: string;
|
|
42
|
-
readonly semanticText: string;
|
|
43
43
|
};
|
|
44
44
|
readonly divider: string;
|
|
45
45
|
readonly text: {
|
|
@@ -104,8 +104,6 @@ export declare const colorsLight: {
|
|
|
104
104
|
readonly transition: string;
|
|
105
105
|
};
|
|
106
106
|
readonly info: {
|
|
107
|
-
readonly selected: string;
|
|
108
|
-
readonly selectedOpacity: string;
|
|
109
107
|
readonly focusVisible: string;
|
|
110
108
|
readonly enabled: string;
|
|
111
109
|
readonly focus: string;
|
|
@@ -117,6 +115,8 @@ export declare const colorsLight: {
|
|
|
117
115
|
readonly hover: string;
|
|
118
116
|
readonly hoverOpacity: string;
|
|
119
117
|
readonly focusOpacity: string;
|
|
118
|
+
readonly selected: string;
|
|
119
|
+
readonly selectedOpacity: string;
|
|
120
120
|
readonly active: string;
|
|
121
121
|
readonly activeOpacity: string;
|
|
122
122
|
readonly opacity: string;
|
|
@@ -124,8 +124,6 @@ export declare const colorsLight: {
|
|
|
124
124
|
readonly semanticText: string;
|
|
125
125
|
};
|
|
126
126
|
readonly success: {
|
|
127
|
-
readonly selected: string;
|
|
128
|
-
readonly selectedOpacity: string;
|
|
129
127
|
readonly focusVisible: string;
|
|
130
128
|
readonly enabled: string;
|
|
131
129
|
readonly focus: string;
|
|
@@ -137,6 +135,8 @@ export declare const colorsLight: {
|
|
|
137
135
|
readonly hover: string;
|
|
138
136
|
readonly hoverOpacity: string;
|
|
139
137
|
readonly focusOpacity: string;
|
|
138
|
+
readonly selected: string;
|
|
139
|
+
readonly selectedOpacity: string;
|
|
140
140
|
readonly active: string;
|
|
141
141
|
readonly activeOpacity: string;
|
|
142
142
|
readonly opacity: string;
|
|
@@ -144,8 +144,6 @@ export declare const colorsLight: {
|
|
|
144
144
|
readonly semanticText: string;
|
|
145
145
|
};
|
|
146
146
|
readonly warning: {
|
|
147
|
-
readonly selected: string;
|
|
148
|
-
readonly selectedOpacity: string;
|
|
149
147
|
readonly focusVisible: string;
|
|
150
148
|
readonly enabled: string;
|
|
151
149
|
readonly focus: string;
|
|
@@ -157,6 +155,8 @@ export declare const colorsLight: {
|
|
|
157
155
|
readonly hover: string;
|
|
158
156
|
readonly hoverOpacity: string;
|
|
159
157
|
readonly focusOpacity: string;
|
|
158
|
+
readonly selected: string;
|
|
159
|
+
readonly selectedOpacity: string;
|
|
160
160
|
readonly active: string;
|
|
161
161
|
readonly activeOpacity: string;
|
|
162
162
|
readonly opacity: string;
|
|
@@ -164,8 +164,6 @@ export declare const colorsLight: {
|
|
|
164
164
|
readonly semanticText: string;
|
|
165
165
|
};
|
|
166
166
|
readonly error: {
|
|
167
|
-
readonly selected: string;
|
|
168
|
-
readonly selectedOpacity: string;
|
|
169
167
|
readonly focusVisible: string;
|
|
170
168
|
readonly enabled: string;
|
|
171
169
|
readonly focus: string;
|
|
@@ -177,6 +175,8 @@ export declare const colorsLight: {
|
|
|
177
175
|
readonly hover: string;
|
|
178
176
|
readonly hoverOpacity: string;
|
|
179
177
|
readonly focusOpacity: string;
|
|
178
|
+
readonly selected: string;
|
|
179
|
+
readonly selectedOpacity: string;
|
|
180
180
|
readonly active: string;
|
|
181
181
|
readonly activeOpacity: string;
|
|
182
182
|
readonly opacity: string;
|
|
@@ -207,24 +207,24 @@ export declare const colorsLight: {
|
|
|
207
207
|
readonly semanticText: string;
|
|
208
208
|
};
|
|
209
209
|
readonly default: {
|
|
210
|
-
readonly
|
|
211
|
-
readonly selectedOpacity: string;
|
|
210
|
+
readonly semanticText: string;
|
|
212
211
|
readonly focusVisible: string;
|
|
213
|
-
readonly contrastText: string;
|
|
214
212
|
readonly enabled: string;
|
|
215
213
|
readonly focus: string;
|
|
216
214
|
readonly light: string;
|
|
217
215
|
readonly dark: string;
|
|
218
216
|
readonly main: string;
|
|
217
|
+
readonly contrastText: string;
|
|
219
218
|
readonly enabledOpacity: string;
|
|
220
219
|
readonly hover: string;
|
|
221
220
|
readonly hoverOpacity: string;
|
|
222
221
|
readonly focusOpacity: string;
|
|
222
|
+
readonly selected: string;
|
|
223
|
+
readonly selectedOpacity: string;
|
|
223
224
|
readonly active: string;
|
|
224
225
|
readonly activeOpacity: string;
|
|
225
226
|
readonly opacity: string;
|
|
226
227
|
readonly toneOpacity: string;
|
|
227
|
-
readonly semanticText: string;
|
|
228
228
|
};
|
|
229
229
|
readonly text: {
|
|
230
230
|
readonly primary: string;
|
|
@@ -289,8 +289,6 @@ export declare const colorsLight: {
|
|
|
289
289
|
readonly transition: string;
|
|
290
290
|
};
|
|
291
291
|
readonly info: {
|
|
292
|
-
readonly selected: string;
|
|
293
|
-
readonly selectedOpacity: string;
|
|
294
292
|
readonly focusVisible: string;
|
|
295
293
|
readonly enabled: string;
|
|
296
294
|
readonly focus: string;
|
|
@@ -302,6 +300,8 @@ export declare const colorsLight: {
|
|
|
302
300
|
readonly hover: string;
|
|
303
301
|
readonly hoverOpacity: string;
|
|
304
302
|
readonly focusOpacity: string;
|
|
303
|
+
readonly selected: string;
|
|
304
|
+
readonly selectedOpacity: string;
|
|
305
305
|
readonly active: string;
|
|
306
306
|
readonly activeOpacity: string;
|
|
307
307
|
readonly opacity: string;
|
|
@@ -309,8 +309,6 @@ export declare const colorsLight: {
|
|
|
309
309
|
readonly semanticText: string;
|
|
310
310
|
};
|
|
311
311
|
readonly success: {
|
|
312
|
-
readonly selected: string;
|
|
313
|
-
readonly selectedOpacity: string;
|
|
314
312
|
readonly focusVisible: string;
|
|
315
313
|
readonly enabled: string;
|
|
316
314
|
readonly focus: string;
|
|
@@ -322,6 +320,8 @@ export declare const colorsLight: {
|
|
|
322
320
|
readonly hover: string;
|
|
323
321
|
readonly hoverOpacity: string;
|
|
324
322
|
readonly focusOpacity: string;
|
|
323
|
+
readonly selected: string;
|
|
324
|
+
readonly selectedOpacity: string;
|
|
325
325
|
readonly active: string;
|
|
326
326
|
readonly activeOpacity: string;
|
|
327
327
|
readonly opacity: string;
|
|
@@ -329,8 +329,6 @@ export declare const colorsLight: {
|
|
|
329
329
|
readonly semanticText: string;
|
|
330
330
|
};
|
|
331
331
|
readonly warning: {
|
|
332
|
-
readonly selected: string;
|
|
333
|
-
readonly selectedOpacity: string;
|
|
334
332
|
readonly focusVisible: string;
|
|
335
333
|
readonly enabled: string;
|
|
336
334
|
readonly focus: string;
|
|
@@ -342,6 +340,8 @@ export declare const colorsLight: {
|
|
|
342
340
|
readonly hover: string;
|
|
343
341
|
readonly hoverOpacity: string;
|
|
344
342
|
readonly focusOpacity: string;
|
|
343
|
+
readonly selected: string;
|
|
344
|
+
readonly selectedOpacity: string;
|
|
345
345
|
readonly active: string;
|
|
346
346
|
readonly activeOpacity: string;
|
|
347
347
|
readonly opacity: string;
|
|
@@ -349,8 +349,6 @@ export declare const colorsLight: {
|
|
|
349
349
|
readonly semanticText: string;
|
|
350
350
|
};
|
|
351
351
|
readonly error: {
|
|
352
|
-
readonly selected: string;
|
|
353
|
-
readonly selectedOpacity: string;
|
|
354
352
|
readonly focusVisible: string;
|
|
355
353
|
readonly enabled: string;
|
|
356
354
|
readonly focus: string;
|
|
@@ -362,6 +360,8 @@ export declare const colorsLight: {
|
|
|
362
360
|
readonly hover: string;
|
|
363
361
|
readonly hoverOpacity: string;
|
|
364
362
|
readonly focusOpacity: string;
|
|
363
|
+
readonly selected: string;
|
|
364
|
+
readonly selectedOpacity: string;
|
|
365
365
|
readonly active: string;
|
|
366
366
|
readonly activeOpacity: string;
|
|
367
367
|
readonly opacity: string;
|
|
@@ -393,24 +393,24 @@ export declare const colorsDark: {
|
|
|
393
393
|
readonly semanticText: string;
|
|
394
394
|
};
|
|
395
395
|
readonly default: {
|
|
396
|
-
readonly
|
|
397
|
-
readonly selectedOpacity: string;
|
|
396
|
+
readonly semanticText: string;
|
|
398
397
|
readonly focusVisible: string;
|
|
399
|
-
readonly contrastText: string;
|
|
400
398
|
readonly enabled: string;
|
|
401
399
|
readonly focus: string;
|
|
402
400
|
readonly light: string;
|
|
403
401
|
readonly dark: string;
|
|
404
402
|
readonly main: string;
|
|
403
|
+
readonly contrastText: string;
|
|
405
404
|
readonly enabledOpacity: string;
|
|
406
405
|
readonly hover: string;
|
|
407
406
|
readonly hoverOpacity: string;
|
|
408
407
|
readonly focusOpacity: string;
|
|
408
|
+
readonly selected: string;
|
|
409
|
+
readonly selectedOpacity: string;
|
|
409
410
|
readonly active: string;
|
|
410
411
|
readonly activeOpacity: string;
|
|
411
412
|
readonly opacity: string;
|
|
412
413
|
readonly toneOpacity: string;
|
|
413
|
-
readonly semanticText: string;
|
|
414
414
|
};
|
|
415
415
|
readonly divider: string;
|
|
416
416
|
readonly text: {
|
|
@@ -475,8 +475,6 @@ export declare const colorsDark: {
|
|
|
475
475
|
readonly transition: string;
|
|
476
476
|
};
|
|
477
477
|
readonly info: {
|
|
478
|
-
readonly selected: string;
|
|
479
|
-
readonly selectedOpacity: string;
|
|
480
478
|
readonly focusVisible: string;
|
|
481
479
|
readonly enabled: string;
|
|
482
480
|
readonly focus: string;
|
|
@@ -488,6 +486,8 @@ export declare const colorsDark: {
|
|
|
488
486
|
readonly hover: string;
|
|
489
487
|
readonly hoverOpacity: string;
|
|
490
488
|
readonly focusOpacity: string;
|
|
489
|
+
readonly selected: string;
|
|
490
|
+
readonly selectedOpacity: string;
|
|
491
491
|
readonly active: string;
|
|
492
492
|
readonly activeOpacity: string;
|
|
493
493
|
readonly opacity: string;
|
|
@@ -495,8 +495,6 @@ export declare const colorsDark: {
|
|
|
495
495
|
readonly semanticText: string;
|
|
496
496
|
};
|
|
497
497
|
readonly success: {
|
|
498
|
-
readonly selected: string;
|
|
499
|
-
readonly selectedOpacity: string;
|
|
500
498
|
readonly focusVisible: string;
|
|
501
499
|
readonly enabled: string;
|
|
502
500
|
readonly focus: string;
|
|
@@ -508,6 +506,8 @@ export declare const colorsDark: {
|
|
|
508
506
|
readonly hover: string;
|
|
509
507
|
readonly hoverOpacity: string;
|
|
510
508
|
readonly focusOpacity: string;
|
|
509
|
+
readonly selected: string;
|
|
510
|
+
readonly selectedOpacity: string;
|
|
511
511
|
readonly active: string;
|
|
512
512
|
readonly activeOpacity: string;
|
|
513
513
|
readonly opacity: string;
|
|
@@ -515,8 +515,6 @@ export declare const colorsDark: {
|
|
|
515
515
|
readonly semanticText: string;
|
|
516
516
|
};
|
|
517
517
|
readonly warning: {
|
|
518
|
-
readonly selected: string;
|
|
519
|
-
readonly selectedOpacity: string;
|
|
520
518
|
readonly focusVisible: string;
|
|
521
519
|
readonly enabled: string;
|
|
522
520
|
readonly focus: string;
|
|
@@ -528,6 +526,8 @@ export declare const colorsDark: {
|
|
|
528
526
|
readonly hover: string;
|
|
529
527
|
readonly hoverOpacity: string;
|
|
530
528
|
readonly focusOpacity: string;
|
|
529
|
+
readonly selected: string;
|
|
530
|
+
readonly selectedOpacity: string;
|
|
531
531
|
readonly active: string;
|
|
532
532
|
readonly activeOpacity: string;
|
|
533
533
|
readonly opacity: string;
|
|
@@ -535,8 +535,6 @@ export declare const colorsDark: {
|
|
|
535
535
|
readonly semanticText: string;
|
|
536
536
|
};
|
|
537
537
|
readonly error: {
|
|
538
|
-
readonly selected: string;
|
|
539
|
-
readonly selectedOpacity: string;
|
|
540
538
|
readonly focusVisible: string;
|
|
541
539
|
readonly enabled: string;
|
|
542
540
|
readonly focus: string;
|
|
@@ -548,6 +546,8 @@ export declare const colorsDark: {
|
|
|
548
546
|
readonly hover: string;
|
|
549
547
|
readonly hoverOpacity: string;
|
|
550
548
|
readonly focusOpacity: string;
|
|
549
|
+
readonly selected: string;
|
|
550
|
+
readonly selectedOpacity: string;
|
|
551
551
|
readonly active: string;
|
|
552
552
|
readonly activeOpacity: string;
|
|
553
553
|
readonly opacity: string;
|
|
@@ -578,24 +578,24 @@ export declare const colorsDark: {
|
|
|
578
578
|
readonly semanticText: string;
|
|
579
579
|
};
|
|
580
580
|
readonly default: {
|
|
581
|
-
readonly
|
|
582
|
-
readonly selectedOpacity: string;
|
|
581
|
+
readonly semanticText: string;
|
|
583
582
|
readonly focusVisible: string;
|
|
584
|
-
readonly contrastText: string;
|
|
585
583
|
readonly enabled: string;
|
|
586
584
|
readonly focus: string;
|
|
587
585
|
readonly light: string;
|
|
588
586
|
readonly dark: string;
|
|
589
587
|
readonly main: string;
|
|
588
|
+
readonly contrastText: string;
|
|
590
589
|
readonly enabledOpacity: string;
|
|
591
590
|
readonly hover: string;
|
|
592
591
|
readonly hoverOpacity: string;
|
|
593
592
|
readonly focusOpacity: string;
|
|
593
|
+
readonly selected: string;
|
|
594
|
+
readonly selectedOpacity: string;
|
|
594
595
|
readonly active: string;
|
|
595
596
|
readonly activeOpacity: string;
|
|
596
597
|
readonly opacity: string;
|
|
597
598
|
readonly toneOpacity: string;
|
|
598
|
-
readonly semanticText: string;
|
|
599
599
|
};
|
|
600
600
|
readonly text: {
|
|
601
601
|
readonly primary: string;
|
|
@@ -660,8 +660,6 @@ export declare const colorsDark: {
|
|
|
660
660
|
readonly transition: string;
|
|
661
661
|
};
|
|
662
662
|
readonly info: {
|
|
663
|
-
readonly selected: string;
|
|
664
|
-
readonly selectedOpacity: string;
|
|
665
663
|
readonly focusVisible: string;
|
|
666
664
|
readonly enabled: string;
|
|
667
665
|
readonly focus: string;
|
|
@@ -673,6 +671,8 @@ export declare const colorsDark: {
|
|
|
673
671
|
readonly hover: string;
|
|
674
672
|
readonly hoverOpacity: string;
|
|
675
673
|
readonly focusOpacity: string;
|
|
674
|
+
readonly selected: string;
|
|
675
|
+
readonly selectedOpacity: string;
|
|
676
676
|
readonly active: string;
|
|
677
677
|
readonly activeOpacity: string;
|
|
678
678
|
readonly opacity: string;
|
|
@@ -680,8 +680,6 @@ export declare const colorsDark: {
|
|
|
680
680
|
readonly semanticText: string;
|
|
681
681
|
};
|
|
682
682
|
readonly success: {
|
|
683
|
-
readonly selected: string;
|
|
684
|
-
readonly selectedOpacity: string;
|
|
685
683
|
readonly focusVisible: string;
|
|
686
684
|
readonly enabled: string;
|
|
687
685
|
readonly focus: string;
|
|
@@ -693,6 +691,8 @@ export declare const colorsDark: {
|
|
|
693
691
|
readonly hover: string;
|
|
694
692
|
readonly hoverOpacity: string;
|
|
695
693
|
readonly focusOpacity: string;
|
|
694
|
+
readonly selected: string;
|
|
695
|
+
readonly selectedOpacity: string;
|
|
696
696
|
readonly active: string;
|
|
697
697
|
readonly activeOpacity: string;
|
|
698
698
|
readonly opacity: string;
|
|
@@ -700,8 +700,6 @@ export declare const colorsDark: {
|
|
|
700
700
|
readonly semanticText: string;
|
|
701
701
|
};
|
|
702
702
|
readonly warning: {
|
|
703
|
-
readonly selected: string;
|
|
704
|
-
readonly selectedOpacity: string;
|
|
705
703
|
readonly focusVisible: string;
|
|
706
704
|
readonly enabled: string;
|
|
707
705
|
readonly focus: string;
|
|
@@ -713,6 +711,8 @@ export declare const colorsDark: {
|
|
|
713
711
|
readonly hover: string;
|
|
714
712
|
readonly hoverOpacity: string;
|
|
715
713
|
readonly focusOpacity: string;
|
|
714
|
+
readonly selected: string;
|
|
715
|
+
readonly selectedOpacity: string;
|
|
716
716
|
readonly active: string;
|
|
717
717
|
readonly activeOpacity: string;
|
|
718
718
|
readonly opacity: string;
|
|
@@ -720,8 +720,6 @@ export declare const colorsDark: {
|
|
|
720
720
|
readonly semanticText: string;
|
|
721
721
|
};
|
|
722
722
|
readonly error: {
|
|
723
|
-
readonly selected: string;
|
|
724
|
-
readonly selectedOpacity: string;
|
|
725
723
|
readonly focusVisible: string;
|
|
726
724
|
readonly enabled: string;
|
|
727
725
|
readonly focus: string;
|
|
@@ -733,6 +731,8 @@ export declare const colorsDark: {
|
|
|
733
731
|
readonly hover: string;
|
|
734
732
|
readonly hoverOpacity: string;
|
|
735
733
|
readonly focusOpacity: string;
|
|
734
|
+
readonly selected: string;
|
|
735
|
+
readonly selectedOpacity: string;
|
|
736
736
|
readonly active: string;
|
|
737
737
|
readonly activeOpacity: string;
|
|
738
738
|
readonly opacity: string;
|
package/@types/types.d.ts
CHANGED
|
@@ -138,6 +138,9 @@ import { NoItemSelectedOwnerState, NoItemSelectedSlotsType } from '../components
|
|
|
138
138
|
import { ActionFormIntroOwnerState, ActionFormIntroSlotsType } from '../components/CommonActions/components/ActionFormIntro/types';
|
|
139
139
|
import { AreasViewerOwnerState, AreasViewerType } from '../components/areas/components/AreasViewer/types';
|
|
140
140
|
import { TimePickerOwnerState,TimePickerSlotsType } from '../components/mui_extended/TimePicker/types';
|
|
141
|
+
import { DataGridOwnerState, DataGridSlotsType } from '../components/DataGrid/types';
|
|
142
|
+
import { DynamicFilterAndSortOwnerState, DynamicFilterAndSortSlotsType } from '../hooks/useDynamicFilterAndSort/types';
|
|
143
|
+
|
|
141
144
|
declare module '@mui/material/styles' {
|
|
142
145
|
// Define the slots in the theme
|
|
143
146
|
interface ComponentNameToClassKey {
|
|
@@ -207,6 +210,8 @@ declare module '@mui/material/styles' {
|
|
|
207
210
|
M4LActionFormIntro: ActionFormIntroSlotsType;
|
|
208
211
|
M4LAreasViewer: AreasViewerType;
|
|
209
212
|
M4LTimePicker: TimePickerSlotsType
|
|
213
|
+
M4LDataGrid: DataGridSlotsType;
|
|
214
|
+
M4LDynamicFilterAndSort: DynamicFilterAndSortSlotsType;
|
|
210
215
|
}
|
|
211
216
|
interface ComponentsPropsList {
|
|
212
217
|
// Extend ComponentsProps or ComponentsOwnerState(this extend ComponentProps)
|
|
@@ -276,6 +281,8 @@ declare module '@mui/material/styles' {
|
|
|
276
281
|
M4LActionFormIntro : Partial<ActionFormIntroOwnerState>;
|
|
277
282
|
M4LAreasViewer: Partial<AreasViewerOwnerState>;
|
|
278
283
|
M4LTimePicker: Partial<TimePickerOwnerState>;
|
|
284
|
+
M4LDataGrid: Partial<DataGridOwnerState>;
|
|
285
|
+
M4LDynamicFilterAndSort: Partial<DynamicFilterAndSortOwnerState>;
|
|
279
286
|
}
|
|
280
287
|
interface Components {
|
|
281
288
|
M4LDynamicFilter?: {
|
|
@@ -618,5 +625,15 @@ declare module '@mui/material/styles' {
|
|
|
618
625
|
styleOverrides?: ComponentsOverrides<Theme>['M4LTimePicker'];
|
|
619
626
|
variants?: ComponentsVariants['M4LTimePicker'];
|
|
620
627
|
};
|
|
628
|
+
M4LDataGrid?: {
|
|
629
|
+
defaultProps?: ComponentsPropsList['M4LDataGrid'];
|
|
630
|
+
styleOverrides?: ComponentsOverrides<Theme>['M4LDataGrid'];
|
|
631
|
+
variants?: ComponentsVariants['M4LDataGrid'];
|
|
632
|
+
};
|
|
633
|
+
M4LDynamicFilterAndSort?: {
|
|
634
|
+
defaultProps?: ComponentsPropsList['M4LDynamicFilterAndSort'];
|
|
635
|
+
styleOverrides?: ComponentsOverrides<Theme>['M4LDynamicFilterAndSort'];
|
|
636
|
+
variants?: ComponentsVariants['M4LDynamicFilterAndSort'];
|
|
637
|
+
};
|
|
621
638
|
}
|
|
622
639
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export declare const IconButtonRootStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "
|
|
1
|
+
export declare const IconButtonRootStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/IconButton/types').IconButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "selected" | "disabled" | "action" | "hidden" | "content" | "style" | "icon" | "tooltip" | "variant" | "translate" | "className" | "classes" | "src" | "sx" | "form" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "instaceDataTestId" | "rotationAngle" | "placement" | "tooltipContent" | "componentPaletteColor" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeContent" | "dictionaryTooltipId" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown> & {
|
|
2
2
|
ownerState: Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown>;
|
|
3
3
|
}, {}, {}>;
|
|
4
|
-
export declare const AvatarStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../..').AvatarProps, "ref"> & import('react').RefAttributes<HTMLDivElement>, "size" | "children" | "title" | "component" | "id" | "hidden" | "content" | "style" | "variant" | "translate" | "
|
|
4
|
+
export declare const AvatarStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../..').AvatarProps, "ref"> & import('react').RefAttributes<HTMLDivElement>, "size" | "children" | "title" | "component" | "id" | "hidden" | "content" | "style" | "variant" | "dataTestid" | "translate" | "className" | "classes" | "alt" | "imgProps" | "sizes" | "src" | "srcSet" | "sx" | "slots" | "slotProps" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | keyof import('react').RefAttributes<HTMLDivElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown> & {
|
|
5
5
|
ownerState: Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown>;
|
|
6
6
|
}, {}, {}>;
|
|
7
|
-
export declare const AvatarPopoverStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../..').AvatarProps, "ref"> & import('react').RefAttributes<HTMLDivElement>, "size" | "children" | "title" | "component" | "id" | "hidden" | "content" | "style" | "variant" | "translate" | "
|
|
7
|
+
export declare const AvatarPopoverStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../..').AvatarProps, "ref"> & import('react').RefAttributes<HTMLDivElement>, "size" | "children" | "title" | "component" | "id" | "hidden" | "content" | "style" | "variant" | "dataTestid" | "translate" | "className" | "classes" | "alt" | "imgProps" | "sizes" | "src" | "srcSet" | "sx" | "slots" | "slotProps" | "slot" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | keyof import('react').RefAttributes<HTMLDivElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown> & {
|
|
8
8
|
ownerState: Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown>;
|
|
9
9
|
}, {}, {}>;
|
|
10
10
|
export declare const PopoverStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Popover/types').PopoverProps, keyof import('../../mui_extended/Popover/types').PopoverProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown> & {
|
|
@@ -12,13 +12,13 @@ export declare const PopoverStyled: import('@emotion/styled').StyledComponent<Pi
|
|
|
12
12
|
}, {}, {}>;
|
|
13
13
|
export declare const UserDataContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown> & {
|
|
14
14
|
ownerState: Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown>;
|
|
15
|
-
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').
|
|
15
|
+
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
16
16
|
export declare const UserNameEmailStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown> & {
|
|
17
17
|
ownerState: Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown>;
|
|
18
|
-
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').
|
|
18
|
+
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
19
19
|
export declare const DividerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown> & {
|
|
20
20
|
ownerState: Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown>;
|
|
21
|
-
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').
|
|
21
|
+
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
22
22
|
export declare const CircularProgressStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/CircularProgress/types').CircularProgressProps, keyof import('../../mui_extended/CircularProgress/types').CircularProgressProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown> & {
|
|
23
23
|
ownerState: Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown>;
|
|
24
24
|
}, {}, {}>;
|
|
@@ -39,7 +39,7 @@ export declare const EmailtStyled: import('@emotion/styled').StyledComponent<Pic
|
|
|
39
39
|
}, {}, {}>;
|
|
40
40
|
export declare const VersionContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown> & {
|
|
41
41
|
ownerState: Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown>;
|
|
42
|
-
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').
|
|
42
|
+
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
43
43
|
export declare const VersionStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Typography/types').TypographyProps, keyof import('../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown> & {
|
|
44
44
|
ownerState: Partial<import('../types').AccountPopoverOwnerState> & Record<string, unknown>;
|
|
45
45
|
}, {}, {}>;
|