@m4l/components 9.3.34-BE20251126-beta.1 → 9.3.34-BE20251127-beta.1
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/@types/types.d.ts +17 -9
- 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/EditLabel/slots/EditLabelSlots.d.ts +1 -1
- package/components/Label/index.d.ts +1 -1
- package/components/Label/types.d.ts +0 -6
- package/components/LoadingError/LoadingError.js +1 -1
- package/components/ModalDialog/slots/ModalDialogSlots.d.ts +1 -1
- package/components/PropertyValue/PropertyValue.js +1 -1
- package/components/SettingsLayout/slots/SettingsLayoutSlots.d.ts +1 -1
- package/components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.js +1 -1
- package/components/TabsNavigator/slots/TabsNavigatorSlots.d.ts +10 -10
- package/components/WindowBase/WindowBase.styles.js +0 -8
- package/components/WindowBase/subcomponents/Header/useButtonActions.js +13 -23
- package/components/areas/components/AreasAdmin/slots/AreasAdminSlots.d.ts +1 -1
- package/components/hook-form/RHFCheckbox/slots/RHFCheckBoxSlots.d.ts +1 -1
- package/components/hook-form/RHFColorPicker/slots/RHFColorPickerSlots.js +1 -1
- package/components/hook-form/RHFDatePicker/RHFDatePicker.d.ts +7 -0
- package/components/hook-form/RHFDatePicker/RHFDatePicker.js +85 -0
- package/components/hook-form/RHFDatePicker/RHFDatePicker.styles.d.ts +5 -0
- package/components/hook-form/RHFDatePicker/RHFDatePicker.styles.js +200 -0
- package/components/hook-form/RHFDatePicker/constants.d.ts +4 -0
- package/components/hook-form/RHFDatePicker/constants.js +4 -0
- package/components/hook-form/RHFDatePicker/icons.d.ts +6 -0
- package/components/hook-form/RHFDatePicker/index.d.ts +1 -0
- package/components/hook-form/RHFDatePicker/slots/RHFDatePickerEnum.d.ts +11 -0
- package/components/hook-form/RHFDatePicker/slots/RHFDatePickerEnum.js +15 -0
- package/components/hook-form/RHFDatePicker/slots/RHFDatePickerSlots.d.ts +50 -0
- package/components/hook-form/RHFDatePicker/slots/RHFDatePickerSlots.js +44 -0
- package/components/hook-form/RHFDatePicker/slots/index.d.ts +2 -0
- package/components/hook-form/RHFDatePicker/types.d.ts +61 -0
- package/components/hook-form/RHFDateTime/RHFDateTime.d.ts +24 -1
- package/components/hook-form/RHFDateTimePicker/RHFDateTimePicker.d.ts +11 -0
- package/components/hook-form/RHFDateTimePicker/RHFDateTimePicker.js +8 -0
- package/components/hook-form/RHFDateTimePicker/index.d.ts +1 -0
- package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +1 -1
- package/components/hook-form/RHFSelect/slots/RHFSlots.d.ts +1 -1
- package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +1 -1
- package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +1 -1
- package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.d.ts +1 -1
- package/components/hook-form/RHFUpload/RHFUploadSingleFile/slots/RHFUploadSingleFileSlots.d.ts +1 -1
- package/components/hook-form/index.d.ts +2 -1
- package/components/index.d.ts +0 -1
- package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +1 -1
- package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.js +1 -1
- package/components/mui_extended/Button/slots/ButtonSlots.d.ts +1 -1
- package/components/mui_extended/DatePicker/DatePicker.d.ts +7 -0
- package/components/mui_extended/DatePicker/DatePicker.js +39 -0
- package/components/mui_extended/DatePicker/DatePicker.styles.d.ts +5 -0
- package/components/mui_extended/DatePicker/DatePicker.styles.js +193 -0
- package/components/mui_extended/DatePicker/constants.d.ts +2 -0
- package/components/mui_extended/DatePicker/constants.js +8 -0
- package/components/mui_extended/DatePicker/hooks/useDatePicker/types.d.ts +11 -0
- package/components/mui_extended/DatePicker/hooks/useDatePicker/useDatePicker.d.ts +9 -0
- package/components/mui_extended/DatePicker/hooks/useDatePicker/useDatePicker.js +200 -0
- package/components/mui_extended/DatePicker/icons.d.ts +4 -0
- package/components/mui_extended/DatePicker/icons.js +10 -0
- package/components/mui_extended/DatePicker/index.d.ts +2 -0
- package/components/mui_extended/DatePicker/index.js +1 -0
- package/components/mui_extended/DatePicker/slots/DatePickerEnum.d.ts +10 -0
- package/components/mui_extended/DatePicker/slots/DatePickerEnum.js +14 -0
- package/components/mui_extended/DatePicker/slots/DatePickerSlots.d.ts +44 -0
- package/components/mui_extended/DatePicker/slots/DatePickerSlots.js +46 -0
- package/components/mui_extended/DatePicker/types.d.ts +32 -0
- package/components/mui_extended/LoadingButton/index.js +1 -0
- package/components/mui_extended/LoadingButton/slots/LoadingButtonSlots.d.ts +1 -1
- package/components/mui_extended/NavLink/constants.d.ts +1 -1
- package/components/mui_extended/Select/slots/SelectSlots.d.ts +1 -1
- package/components/mui_extended/Select/slots/SelectSlots.js +1 -1
- package/components/mui_extended/TextField/TextField.js +2 -2
- package/components/mui_extended/TextField/TextField.styles.js +1 -1
- package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +1 -1
- package/components/mui_extended/ToggleButton/slots/ToggleButtonSlots.d.ts +1 -1
- package/components/mui_extended/Tooltip/Tooltip.styles.js +4 -22
- package/components/mui_extended/index.d.ts +1 -0
- package/index.js +74 -72
- package/package.json +1 -1
- package/components/ActionsGroup/ActionsGroup.d.ts +0 -5
- package/components/ActionsGroup/ActionsGroup.js +0 -40
- package/components/ActionsGroup/ActionsGroup.styles.d.ts +0 -2
- package/components/ActionsGroup/ActionsGroup.styles.js +0 -95
- package/components/ActionsGroup/constants.d.ts +0 -2
- package/components/ActionsGroup/constants.js +0 -8
- package/components/ActionsGroup/icons.d.ts +0 -3
- package/components/ActionsGroup/icons.js +0 -6
- package/components/ActionsGroup/index.d.ts +0 -1
- package/components/ActionsGroup/slots/ActionsGroupEnum.d.ts +0 -8
- package/components/ActionsGroup/slots/ActionsGroupEnum.js +0 -12
- package/components/ActionsGroup/slots/ActionsGroupSlots.d.ts +0 -15
- package/components/ActionsGroup/slots/ActionsGroupSlots.js +0 -35
- package/components/ActionsGroup/subcomponents/ActionIconButton/ActionIconButton.d.ts +0 -6
- package/components/ActionsGroup/subcomponents/ActionIconButton/ActionIconButton.js +0 -76
- package/components/ActionsGroup/subcomponents/ActionIconButton/types.d.ts +0 -7
- package/components/ActionsGroup/types.d.ts +0 -60
- package/components/hook-form/RHFActionsGroup/RHFActionsGroup.d.ts +0 -7
- package/components/hook-form/RHFActionsGroup/RHFActionsGroup.js +0 -87
- package/components/hook-form/RHFActionsGroup/RHFActionsGroupStyles.d.ts +0 -2
- package/components/hook-form/RHFActionsGroup/RHFActionsGroupStyles.js +0 -14
- package/components/hook-form/RHFActionsGroup/constants.d.ts +0 -9
- package/components/hook-form/RHFActionsGroup/constants.js +0 -8
- package/components/hook-form/RHFActionsGroup/index.d.ts +0 -2
- package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupEnum.d.ts +0 -3
- package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupEnum.js +0 -7
- package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupSlots.d.ts +0 -1
- package/components/hook-form/RHFActionsGroup/slots/RHFActionsGroupSlots.js +0 -11
- package/components/hook-form/RHFActionsGroup/slots/index.d.ts +0 -2
- package/components/hook-form/RHFActionsGroup/tests/common.d.ts +0 -28
- package/components/hook-form/RHFActionsGroup/types.d.ts +0 -54
- /package/components/{ActionsGroup/__tests__/ActionsGroup.test.d.ts → hook-form/RHFDatePicker/__tests__/RHFDatePicker.test.d.ts} +0 -0
- /package/components/{ActionsGroup → hook-form/RHFDatePicker}/index.js +0 -0
- /package/components/hook-form/{RHFActionsGroup → RHFDatePicker/slots}/index.js +0 -0
- /package/components/hook-form/{RHFActionsGroup/slots → RHFDateTimePicker}/index.js +0 -0
- /package/components/{hook-form/RHFActionsGroup/tests/RHFActionsGroup.test.d.ts → mui_extended/DatePicker/__tests__/DatePicker.test.d.ts} +0 -0
package/index.js
CHANGED
|
@@ -1,35 +1,34 @@
|
|
|
1
1
|
import { c } from "./components/ToastContainer/helpers/toaster.js";
|
|
2
2
|
import { A } from "./components/AccountPopover/AccountPopover.js";
|
|
3
3
|
import { g } from "./components/AccountPopover/dictionary.js";
|
|
4
|
-
import { A as A2 } from "./components/ActionsGroup/ActionsGroup.js";
|
|
5
4
|
import { I } from "./components/animate/IconButtonAnimate/index.js";
|
|
6
5
|
import { M } from "./components/animate/MotionContainer/index.js";
|
|
7
6
|
import { M as M2 } from "./components/animate/MotionLazyContainer/index.js";
|
|
8
7
|
import { L } from "./components/animate/LoadingScreen/index.js";
|
|
9
|
-
import { A as
|
|
8
|
+
import { A as A2 } from "./components/animate/AnimatedScroll/animatedScroll.js";
|
|
10
9
|
import { v } from "./components/animate/variants/fade.js";
|
|
11
10
|
import { v as v2 } from "./components/animate/variants/bounce.js";
|
|
12
11
|
import { v as v3 } from "./components/animate/variants/container.js";
|
|
13
12
|
import { a, v as v4, b } from "./components/animate/variants/transition.js";
|
|
14
|
-
import { A as
|
|
13
|
+
import { A as A3 } from "./components/AppBar/AppBar.js";
|
|
15
14
|
import { g as g2 } from "./components/AppBar/dictionary.js";
|
|
16
|
-
import { A as
|
|
17
|
-
import { A as
|
|
18
|
-
import { a as a2, A as
|
|
15
|
+
import { A as A4 } from "./components/areas/components/AreasAdmin/AreasAdmin.js";
|
|
16
|
+
import { A as A5 } from "./components/areas/components/AreasViewer/AreasViewer.js";
|
|
17
|
+
import { a as a2, A as A6 } from "./components/areas/contexts/AreasContext/index.js";
|
|
19
18
|
import { u } from "./components/areas/hooks/useAreas/index.js";
|
|
20
|
-
import { A as
|
|
19
|
+
import { A as A7, a as a3, L as L2, b as b2, g as g3 } from "./components/areas/dictionary.js";
|
|
21
20
|
import { B } from "./components/BaseModule/BaseModule.js";
|
|
22
21
|
import { C } from "./components/Card/Card.js";
|
|
23
22
|
import { C as C2 } from "./components/Chip/Chip.js";
|
|
24
|
-
import { A as
|
|
23
|
+
import { A as A8 } from "./components/commercial/AppBarCommercial/index.js";
|
|
25
24
|
import { H } from "./components/commercial/HamburgerMenu/HamburgerMenu.js";
|
|
26
25
|
import { T } from "./components/commercial/TopBar/TopBar.js";
|
|
27
26
|
import { S } from "./components/commercial/SectionCommercial/index.js";
|
|
28
|
-
import { A as
|
|
29
|
-
import { A as
|
|
30
|
-
import { A as
|
|
31
|
-
import { A as
|
|
32
|
-
import { A as
|
|
27
|
+
import { A as A9 } from "./components/CommonActions/components/ActionsContainer/ActionsContainer.js";
|
|
28
|
+
import { A as A10 } from "./components/CommonActions/components/ActionCancel/ActionCancel.js";
|
|
29
|
+
import { A as A11 } from "./components/CommonActions/components/ActionIntro/ActionIntro.js";
|
|
30
|
+
import { A as A12 } from "./components/CommonActions/components/ActionFormCancel/ActionFormCancel.js";
|
|
31
|
+
import { A as A13 } from "./components/CommonActions/components/ActionFormIntro/ActionFormIntro.js";
|
|
33
32
|
import { D, d, g as g4 } from "./components/CommonActions/dictionary.js";
|
|
34
33
|
import { C as C3 } from "./components/ContainerFlow/ContainerFlow.js";
|
|
35
34
|
import { D as D2 } from "./components/DataGrid/DataGrid.js";
|
|
@@ -81,7 +80,7 @@ import { P } from "./components/extended/React-Spinners/PropagateLoaderSpinner/P
|
|
|
81
80
|
import { F } from "./components/extended/React-Window/FixedSizeList/FixedSizeList.js";
|
|
82
81
|
import { V } from "./components/extended/React-Window/VariableSizeList/VariableSizeList.js";
|
|
83
82
|
import { R as R3 } from "./components/extended/React-Json-Viewer/ReactJsonViewer.js";
|
|
84
|
-
import { A as
|
|
83
|
+
import { A as A14 } from "./components/mui_extended/Avatar/Avatar.js";
|
|
85
84
|
import { B as B2 } from "./components/mui_extended/BoxIcon/index.js";
|
|
86
85
|
import { B as B3 } from "./components/mui_extended/Breadcrumbs/index.js";
|
|
87
86
|
import { C as C17 } from "./components/mui_extended/CircularProgress/CircularProgress.js";
|
|
@@ -90,7 +89,7 @@ import { L as L3 } from "./components/mui_extended/LinearProgress/index.js";
|
|
|
90
89
|
import { L as L4 } from "./components/mui_extended/LinkWithRoute/index.js";
|
|
91
90
|
import { L as L5 } from "./components/mui_extended/LoadingButton/LoadingButton.js";
|
|
92
91
|
import { g as g11 } from "./components/Pager/dicctionary.js";
|
|
93
|
-
import { A as
|
|
92
|
+
import { A as A15 } from "./components/mui_extended/Accordion/Accordion.js";
|
|
94
93
|
import { T as T3 } from "./components/mui_extended/Tooltip/Tooltip.js";
|
|
95
94
|
import { I as I2 } from "./components/mui_extended/IconButton/IconButton.js";
|
|
96
95
|
import { B as B5 } from "./components/mui_extended/Button/Button.js";
|
|
@@ -118,8 +117,9 @@ import { T as T16 } from "./components/mui_extended/ToggleIconButton/slots/Toggl
|
|
|
118
117
|
import { N as N2 } from "./components/mui_extended/NavLink/NavLink.js";
|
|
119
118
|
import { D as D6 } from "./components/mui_extended/Dialog/Dialog.js";
|
|
120
119
|
import { D as D7 } from "./components/mui_extended/Divider/Divider.js";
|
|
120
|
+
import { D as D8 } from "./components/mui_extended/DatePicker/DatePicker.js";
|
|
121
121
|
import { B as B6 } from "./components/formatters/BooleanFormatter/BooleanFormatter.js";
|
|
122
|
-
import { D as
|
|
122
|
+
import { D as D9, g as g12 } from "./components/formatters/DateFormatter/DateFormatter.js";
|
|
123
123
|
import { U, g as g13 } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
|
|
124
124
|
import { P as P3, g as g14 } from "./components/formatters/PointsFormatter/PointsFormatter.js";
|
|
125
125
|
import { C as C19, g as g15 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
|
|
@@ -129,7 +129,7 @@ import { T as T17 } from "./components/formatters/TagsFormatter/TagsFormatter.js
|
|
|
129
129
|
import { C as C20 } from "./components/formatters/ColorFormatter/ColorFormatter.js";
|
|
130
130
|
import { C as C21 } from "./components/formatters/ChipStatusFormatter/ChipStatusFormatter.js";
|
|
131
131
|
import { g as g17 } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
|
|
132
|
-
import { D as
|
|
132
|
+
import { D as D10 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
|
|
133
133
|
import { u as u16 } from "./components/formatters/DistanceToNowFormatter/hooks/useDistanceToNowFormatter.js";
|
|
134
134
|
import { g as g18 } from "./components/formatters/dictionary.js";
|
|
135
135
|
import { F as F2 } from "./components/FormContainer/FormContainer.js";
|
|
@@ -145,27 +145,28 @@ import { g as g19 } from "./components/hook-form/RHFAutocomplete/dictionary.js";
|
|
|
145
145
|
import { R as R6 } from "./components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.js";
|
|
146
146
|
import { g as g20 } from "./components/hook-form/RHFAutocompleteAsync/dictionary.js";
|
|
147
147
|
import { R as R7 } from "./components/hook-form/RHFDateTime/RHFDateTime.js";
|
|
148
|
-
import { R as R8 } from "./components/hook-form/
|
|
149
|
-
import { R as R9 } from "./components/hook-form/
|
|
150
|
-
import { R as R10 } from "./components/hook-form/
|
|
151
|
-
import { R as R11 } from "./components/hook-form/
|
|
152
|
-
import { R as R12 } from "./components/hook-form/
|
|
153
|
-
import { R as R13 } from "./components/hook-form/
|
|
154
|
-
import { R as R14 } from "./components/hook-form/
|
|
155
|
-
import { R as R15 } from "./components/hook-form/
|
|
156
|
-
import { R as R16 } from "./components/hook-form/
|
|
148
|
+
import { R as R8 } from "./components/hook-form/RHFDateTimePicker/RHFDateTimePicker.js";
|
|
149
|
+
import { R as R9 } from "./components/hook-form/RHFDatePicker/RHFDatePicker.js";
|
|
150
|
+
import { R as R10 } from "./components/hook-form/RHFMultiCheckbox/index.js";
|
|
151
|
+
import { R as R11 } from "./components/hook-form/RHFSelect/RHFSelect.js";
|
|
152
|
+
import { R as R12 } from "./components/hook-form/RHFHelperError/index.js";
|
|
153
|
+
import { R as R13 } from "./components/hook-form/RHFRadioGroup/RHFRadioGroup.js";
|
|
154
|
+
import { R as R14 } from "./components/hook-form/RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile.js";
|
|
155
|
+
import { R as R15 } from "./components/hook-form/RHFColorPicker/RFHColorPicker.js";
|
|
156
|
+
import { R as R16 } from "./components/hook-form/RHFCheckbox/RHFCheckbox.js";
|
|
157
|
+
import { R as R17 } from "./components/hook-form/RHFTextField/RHFTextField.js";
|
|
158
|
+
import { R as R18 } from "./components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js";
|
|
157
159
|
import { g as g21 } from "./components/hook-form/RHFPeriod/subcomponents/Period/dictionary.js";
|
|
158
160
|
import { r } from "./components/hook-form/RHFPeriod/RHFPeriod.styles.js";
|
|
159
|
-
import { R as
|
|
160
|
-
import { R as
|
|
161
|
-
import { R as
|
|
162
|
-
import { N as N3, P as P6, R as
|
|
163
|
-
import { R as
|
|
164
|
-
import { R as
|
|
161
|
+
import { R as R19 } from "./components/hook-form/RHFPeriod/RHFPeriod.js";
|
|
162
|
+
import { R as R20 } from "./components/hook-form/RHFPeriod/constants.js";
|
|
163
|
+
import { R as R21 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js";
|
|
164
|
+
import { N as N3, P as P6, R as R22, S as S7 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js";
|
|
165
|
+
import { R as R23 } from "./components/hook-form/RHFNumberInput/RHFNumberInput.js";
|
|
166
|
+
import { R as R24 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
|
|
165
167
|
import { V as V2, b as b4, a as a9 } from "./components/hook-form/RHFormProvider/types.js";
|
|
166
|
-
import { F as F3, R as
|
|
168
|
+
import { F as F3, R as R25, u as u17 } from "./components/hook-form/RHFormProvider/RHFormProvider.js";
|
|
167
169
|
import { d as d4, a as a10, b as b5, c as c3 } from "./components/hook-form/RHFormProvider/schema.js";
|
|
168
|
-
import { R as R24 } from "./components/hook-form/RHFActionsGroup/RHFActionsGroup.js";
|
|
169
170
|
import { I as I4 } from "./components/Icon/Icon.js";
|
|
170
171
|
import { I as I5 } from "./components/Image/Image.js";
|
|
171
172
|
import { L as L6 } from "./components/Label/Label.js";
|
|
@@ -205,7 +206,7 @@ import { u as u19 } from "./components/WindowBase/hooks/useWindowToolsMF/index.j
|
|
|
205
206
|
import { u as u20, a as a13 } from "./components/WindowBase/hooks/useDynamicMFParameters/index.js";
|
|
206
207
|
import { M as M7, W as W3, a as a14 } from "./components/WindowBase/contexts/WindowToolsMFContext/WindowToolsMFContext.js";
|
|
207
208
|
import { c as c4 } from "./components/WindowBase/contexts/DynamicMFParmsContext/store.js";
|
|
208
|
-
import { D as
|
|
209
|
+
import { D as D11, a as a15, M as M8 } from "./components/WindowBase/contexts/DynamicMFParmsContext/DynamicMFParmsContext.js";
|
|
209
210
|
import { W as W4 } from "./components/WindowConfirm/WindowConfirm.js";
|
|
210
211
|
import { a as a16, g as g29 } from "./components/ModalDialog/dictionary.js";
|
|
211
212
|
import { M as M9 } from "./components/ModalDialog/ModalDialog.js";
|
|
@@ -226,7 +227,7 @@ import { e as e2 } from "./components/Stepper/helpers/evaluateVisibilityStepCond
|
|
|
226
227
|
import { g as g30 } from "./components/Stepper/dictionary.js";
|
|
227
228
|
import { g as g31 } from "./components/hook-form/RHFormProvider/dictionary.js";
|
|
228
229
|
import { u as u22 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
|
|
229
|
-
import { A as
|
|
230
|
+
import { A as A16 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
|
|
230
231
|
import { a as a17, M as M10 } from "./contexts/ModalContext/index.js";
|
|
231
232
|
import { u as u23 } from "./hooks/useFormAddEdit/useFormAddEdit.js";
|
|
232
233
|
import { u as u24 } from "./hooks/useModal/index.js";
|
|
@@ -260,25 +261,24 @@ import { g as g40 } from "./utils/getNullGuard.js";
|
|
|
260
261
|
import { c as c6, d as d5 } from "./utils/deepShallow.js";
|
|
261
262
|
import { g as g41 } from "./helpers/getStepsAndValidationSchema/getStepsAndValidationSchema.js";
|
|
262
263
|
export {
|
|
263
|
-
|
|
264
|
+
A7 as AREAS_DICCTIONARY,
|
|
264
265
|
a3 as AREAS_DICTIONARY_ID,
|
|
265
|
-
|
|
266
|
+
A15 as Accordion,
|
|
266
267
|
A as AccountPopover,
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
A2 as
|
|
273
|
-
A3 as
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
A5 as AreasAdmin,
|
|
268
|
+
A10 as ActionCancel,
|
|
269
|
+
A12 as ActionFormCancel,
|
|
270
|
+
A13 as ActionFormIntro,
|
|
271
|
+
A11 as ActionIntro,
|
|
272
|
+
A9 as ActionsContainer,
|
|
273
|
+
A2 as AnimatedScroll,
|
|
274
|
+
A3 as AppBar,
|
|
275
|
+
A8 as AppBarComercial,
|
|
276
|
+
A16 as AppearanceComponentProvider,
|
|
277
|
+
A4 as AreasAdmin,
|
|
278
278
|
a2 as AreasContext,
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
279
|
+
A6 as AreasProvider,
|
|
280
|
+
A5 as AreasViewer,
|
|
281
|
+
A14 as Avatar,
|
|
282
282
|
B4 as Badge,
|
|
283
283
|
B as BaseModule,
|
|
284
284
|
B6 as BooleanFormatter,
|
|
@@ -311,13 +311,14 @@ export {
|
|
|
311
311
|
f as DATAGRID_SEMANTIC_WIDTHS,
|
|
312
312
|
D as DICTIONARY,
|
|
313
313
|
D2 as DataGrid,
|
|
314
|
-
|
|
314
|
+
D9 as DateFormatter,
|
|
315
|
+
D8 as DatePicker,
|
|
315
316
|
D6 as Dialog,
|
|
316
|
-
|
|
317
|
+
D10 as DistanceToNowFormatter,
|
|
317
318
|
D7 as Divider,
|
|
318
319
|
D3 as DragResizeWindowRND,
|
|
319
320
|
D4 as DynamicFilter,
|
|
320
|
-
|
|
321
|
+
D11 as DynamicMFParmsContext,
|
|
321
322
|
a15 as DynamicMFParmsProvider,
|
|
322
323
|
D5 as DynamicSort,
|
|
323
324
|
F as FixedSizeList,
|
|
@@ -376,26 +377,27 @@ export {
|
|
|
376
377
|
P11 as PrintingSystem,
|
|
377
378
|
P as PropagateLoaderSpinner,
|
|
378
379
|
P12 as PropertyValue,
|
|
379
|
-
R24 as RHFActionsGroup,
|
|
380
380
|
R5 as RHFAutocomplete,
|
|
381
381
|
R6 as RHFAutocompleteAsync,
|
|
382
|
-
|
|
383
|
-
|
|
382
|
+
R16 as RHFCheckbox,
|
|
383
|
+
R15 as RHFColorPicker,
|
|
384
|
+
R9 as RHFDatePicker,
|
|
384
385
|
R7 as RHFDateTime,
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
386
|
+
R8 as RHFDateTimePicker,
|
|
387
|
+
R12 as RHFHelperError,
|
|
388
|
+
R10 as RHFMultiCheckbox,
|
|
389
|
+
R23 as RHFNumberInput,
|
|
390
|
+
R19 as RHFPeriod,
|
|
391
|
+
R22 as RHFPeriodRootStyled,
|
|
392
|
+
R21 as RHFPeriodSlots,
|
|
393
|
+
R13 as RHFRadioGroup,
|
|
394
|
+
R11 as RHFSelect,
|
|
395
|
+
R17 as RHFTextField,
|
|
396
|
+
R18 as RHFTextFieldPassword,
|
|
397
|
+
R24 as RHFUploadImage,
|
|
398
|
+
R14 as RHFUploadSingleFile,
|
|
399
|
+
R20 as RHF_PERIOD_KEY_COMPONENT,
|
|
400
|
+
R25 as RHFormProvider,
|
|
399
401
|
R3 as ReactJsonViewer,
|
|
400
402
|
R as Resizable,
|
|
401
403
|
R2 as ResizableBox,
|
package/package.json
CHANGED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import { ActionsGroupProps, ActionsGroupValueType } from './types';
|
|
2
|
-
/**
|
|
3
|
-
* ActionsGroup component that renders a group of actions.
|
|
4
|
-
*/
|
|
5
|
-
export declare const ActionsGroup: <T extends ActionsGroupValueType>(props: ActionsGroupProps<T>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { useMemo } from "react";
|
|
3
|
-
import { A as ActionsGroupRootStyled } from "./slots/ActionsGroupSlots.js";
|
|
4
|
-
import { A as ACTIONS_GROUP_CLASSES } from "./constants.js";
|
|
5
|
-
import clsx from "clsx";
|
|
6
|
-
import { A as ActionIconButton } from "./subcomponents/ActionIconButton/ActionIconButton.js";
|
|
7
|
-
const ActionsGroup = (props) => {
|
|
8
|
-
const { actions, variant = "horizontal", disabled = false, className, value, size, onChange, ariaLabel, ariaLabelledBy } = props;
|
|
9
|
-
const ownerState = useMemo(() => ({
|
|
10
|
-
disabled,
|
|
11
|
-
variant,
|
|
12
|
-
size
|
|
13
|
-
}), [disabled, size, variant]);
|
|
14
|
-
return /* @__PURE__ */ jsx(
|
|
15
|
-
ActionsGroupRootStyled,
|
|
16
|
-
{
|
|
17
|
-
className: clsx(className, ACTIONS_GROUP_CLASSES.root),
|
|
18
|
-
ownerState,
|
|
19
|
-
role: "toolbar",
|
|
20
|
-
"aria-orientation": variant === "vertical" ? "vertical" : "horizontal",
|
|
21
|
-
"aria-disabled": disabled || void 0,
|
|
22
|
-
"aria-label": ariaLabel,
|
|
23
|
-
"aria-labelledby": ariaLabel ? void 0 : ariaLabelledBy,
|
|
24
|
-
children: actions.map((action) => /* @__PURE__ */ jsx(
|
|
25
|
-
ActionIconButton,
|
|
26
|
-
{
|
|
27
|
-
action,
|
|
28
|
-
selected: action.id === value,
|
|
29
|
-
ownerState,
|
|
30
|
-
onChange,
|
|
31
|
-
groupDisabled: disabled
|
|
32
|
-
},
|
|
33
|
-
String(action.id ?? action.label)
|
|
34
|
-
))
|
|
35
|
-
}
|
|
36
|
-
);
|
|
37
|
-
};
|
|
38
|
-
export {
|
|
39
|
-
ActionsGroup as A
|
|
40
|
-
};
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
import { g as getSizeStyles } from "../../utils/getSizeStyles/getSizeStyles.js";
|
|
2
|
-
const actionsGroupStyles = {
|
|
3
|
-
/**
|
|
4
|
-
* Styles for the actions group root element.
|
|
5
|
-
*/
|
|
6
|
-
root: ({ theme, ownerState }) => ({
|
|
7
|
-
display: "flex",
|
|
8
|
-
flexDirection: "row",
|
|
9
|
-
gap: theme.vars.size.baseSpacings.sp1,
|
|
10
|
-
padding: theme.vars.size.baseSpacings["sp0-5"],
|
|
11
|
-
borderRadius: theme.vars.size.borderRadius.r2,
|
|
12
|
-
backgroundColor: theme.vars.palette.default.enabledOpacity,
|
|
13
|
-
width: "fit-content",
|
|
14
|
-
height: "fit-content",
|
|
15
|
-
...ownerState?.variant === "vertical" && {
|
|
16
|
-
flexDirection: "column"
|
|
17
|
-
},
|
|
18
|
-
...ownerState?.variant === "horizontal" && {
|
|
19
|
-
flexDirection: "row"
|
|
20
|
-
}
|
|
21
|
-
}),
|
|
22
|
-
/**
|
|
23
|
-
* Styles for the action icon button element.
|
|
24
|
-
*/
|
|
25
|
-
actionIconButton: ({ theme, ownerState }) => ({
|
|
26
|
-
"&&&": {
|
|
27
|
-
...getSizeStyles(theme, ownerState?.size || "medium", "case", (size) => ({
|
|
28
|
-
width: size,
|
|
29
|
-
height: size
|
|
30
|
-
})),
|
|
31
|
-
...ownerState?.disabled && {
|
|
32
|
-
"& .M4LIcon-root .M4LIcon-icon": {
|
|
33
|
-
backgroundColor: `${theme.vars.palette.text.disabled} !important`
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
...ownerState?.itemSelected && {
|
|
37
|
-
backgroundColor: theme.vars.palette.background.default,
|
|
38
|
-
boxShadow: theme.vars.customShadows.z1,
|
|
39
|
-
"& .M4LIcon-root .M4LIcon-icon": {
|
|
40
|
-
backgroundColor: `${theme.vars.palette.primary.semanticText} !important`
|
|
41
|
-
}
|
|
42
|
-
},
|
|
43
|
-
...!ownerState?.itemDisabled && !ownerState?.itemSelected && {
|
|
44
|
-
"& .M4LIcon-root .M4LIcon-icon": {
|
|
45
|
-
backgroundColor: `${theme.vars.palette.text.secondary} !important`
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}),
|
|
50
|
-
/**
|
|
51
|
-
* Styles for the action icon button skeleton element.
|
|
52
|
-
*/
|
|
53
|
-
actionIconButtonSkeleton: ({ theme, ownerState }) => ({
|
|
54
|
-
"&&&": {
|
|
55
|
-
borderRadius: theme.vars.size.borderRadius["r1-5"],
|
|
56
|
-
...getSizeStyles(theme, ownerState?.size || "medium", "case", (size) => ({
|
|
57
|
-
width: `${size}!important`,
|
|
58
|
-
height: `${size}!important`
|
|
59
|
-
}))
|
|
60
|
-
}
|
|
61
|
-
}),
|
|
62
|
-
/**
|
|
63
|
-
* Styles for the icon tooltip message element.
|
|
64
|
-
*/
|
|
65
|
-
iconTooltipMessage: {},
|
|
66
|
-
/**
|
|
67
|
-
* Styles for the text tooltip message element.
|
|
68
|
-
*/
|
|
69
|
-
textTooltipMessage: ({ theme }) => ({
|
|
70
|
-
color: theme.vars.palette.text.contrastText
|
|
71
|
-
}),
|
|
72
|
-
/**
|
|
73
|
-
* Styles for the tooltip element.
|
|
74
|
-
*/
|
|
75
|
-
tooltip: ({ theme }) => ({
|
|
76
|
-
"&&&": {
|
|
77
|
-
display: "flex",
|
|
78
|
-
flexDirection: "row",
|
|
79
|
-
gap: theme.vars.size.baseSpacings.sp2,
|
|
80
|
-
paddingTop: theme.vars.size.baseSpacings.sp1,
|
|
81
|
-
paddingBottom: theme.vars.size.baseSpacings.sp1,
|
|
82
|
-
paddingLeft: theme.vars.size.baseSpacings.sp2,
|
|
83
|
-
paddingRight: theme.vars.size.baseSpacings.sp2,
|
|
84
|
-
"&.MuiTooltip-tooltip .M4LIcon-icon": {
|
|
85
|
-
backgroundColor: theme.vars.palette.text.contrastText
|
|
86
|
-
},
|
|
87
|
-
"& .M4LTypography-root": {
|
|
88
|
-
color: theme.vars.palette.text.contrastText
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
})
|
|
92
|
-
};
|
|
93
|
-
export {
|
|
94
|
-
actionsGroupStyles as a
|
|
95
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { g as getComponentClasses } from "../../utils/getComponentSlotRoot.js";
|
|
2
|
-
import { A as ActionsGroupSlots } from "./slots/ActionsGroupEnum.js";
|
|
3
|
-
const ACTIONS_GROUP_KEY_COMPONENT = "M4LActionsGroup";
|
|
4
|
-
const ACTIONS_GROUP_CLASSES = getComponentClasses(ACTIONS_GROUP_KEY_COMPONENT, ActionsGroupSlots);
|
|
5
|
-
export {
|
|
6
|
-
ACTIONS_GROUP_CLASSES as A,
|
|
7
|
-
ACTIONS_GROUP_KEY_COMPONENT as a
|
|
8
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ActionsGroup } from './ActionsGroup';
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export declare enum ActionsGroupSlots {
|
|
2
|
-
root = "root",
|
|
3
|
-
actionIconButton = "actionIconButton",
|
|
4
|
-
actionIconButtonSkeleton = "actionIconButtonSkeleton",
|
|
5
|
-
iconTooltipMessage = "iconTooltipMessage",
|
|
6
|
-
textTooltipMessage = "textTooltipMessage",
|
|
7
|
-
tooltip = "tooltip"
|
|
8
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
var ActionsGroupSlots = /* @__PURE__ */ ((ActionsGroupSlots2) => {
|
|
2
|
-
ActionsGroupSlots2["root"] = "root";
|
|
3
|
-
ActionsGroupSlots2["actionIconButton"] = "actionIconButton";
|
|
4
|
-
ActionsGroupSlots2["actionIconButtonSkeleton"] = "actionIconButtonSkeleton";
|
|
5
|
-
ActionsGroupSlots2["iconTooltipMessage"] = "iconTooltipMessage";
|
|
6
|
-
ActionsGroupSlots2["textTooltipMessage"] = "textTooltipMessage";
|
|
7
|
-
ActionsGroupSlots2["tooltip"] = "tooltip";
|
|
8
|
-
return ActionsGroupSlots2;
|
|
9
|
-
})(ActionsGroupSlots || {});
|
|
10
|
-
export {
|
|
11
|
-
ActionsGroupSlots as A
|
|
12
|
-
};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export declare const ActionsGroupRootStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
2
|
-
ownerState?: (Partial<import('../types').ActionsGroupOwnerState> & Record<string, unknown>) | undefined;
|
|
3
|
-
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
4
|
-
export declare const ActionIconButtonStyled: 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" | "color" | "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" | "exportparts" | "part" | "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" | "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" | "placement" | "rotationAngle" | "ariaLabel" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "edge" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "badgeProps" | keyof import('react').RefAttributes<HTMLButtonElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
5
|
-
ownerState?: (Partial<import('../types').ActionsGroupOwnerState> & Record<string, unknown>) | undefined;
|
|
6
|
-
}, {}, {}>;
|
|
7
|
-
export declare const ActionIconButtonSkeletonStyled: import('@emotion/styled').StyledComponent<Pick<import('../../mui_extended/Skeleton/types').SkeletonProps, keyof import('../../mui_extended/Skeleton/types').SkeletonProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
8
|
-
ownerState?: (Partial<import('../types').ActionsGroupOwnerState> & Record<string, unknown>) | undefined;
|
|
9
|
-
}, {}, {}>;
|
|
10
|
-
export declare const IconTooltipMessageStyled: import('@emotion/styled').StyledComponent<Pick<import('../../Icon').IconProps, keyof import('../../Icon').IconProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
11
|
-
ownerState?: (Partial<import('../types').ActionsGroupOwnerState> & Record<string, unknown>) | undefined;
|
|
12
|
-
}, {}, {}>;
|
|
13
|
-
export declare const TextTooltipMessageStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('../../mui_extended/Typography/types').TypographyProps, "ref"> & import('react').RefAttributes<HTMLSpanElement>, "size" | "children" | "title" | "component" | "zIndex" | "id" | "disabled" | "paragraph" | "border" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontSize" | "textTransform" | "fontFamily" | "typography" | "flex" | "hidden" | "color" | "left" | "right" | "bottom" | "top" | "content" | "style" | "position" | "ellipsis" | "padding" | "variant" | "borderRadius" | "width" | "display" | "borderColor" | "height" | "gap" | "minHeight" | "margin" | "overflow" | "boxShadow" | "minWidth" | "justifyContent" | "alignItems" | "paddingLeft" | "borderLeft" | "borderTop" | "maxWidth" | "flexDirection" | "paddingRight" | "borderRight" | "flexGrow" | "marginLeft" | "textOverflow" | "borderBottom" | "gridTemplateColumns" | "marginBottom" | "dataTestid" | "alignContent" | "alignSelf" | "boxSizing" | "columnGap" | "flexBasis" | "flexShrink" | "flexWrap" | "fontStyle" | "gridAutoColumns" | "gridAutoFlow" | "gridAutoRows" | "gridTemplateAreas" | "gridTemplateRows" | "justifyItems" | "justifySelf" | "marginBlockEnd" | "marginBlockStart" | "marginInlineEnd" | "marginInlineStart" | "marginRight" | "marginTop" | "maxHeight" | "order" | "paddingBlockEnd" | "paddingBlockStart" | "paddingBottom" | "paddingInlineEnd" | "paddingInlineStart" | "paddingTop" | "rowGap" | "textAlign" | "translate" | "visibility" | "whiteSpace" | "gridArea" | "gridColumn" | "gridRow" | "marginBlock" | "marginInline" | "paddingBlock" | "paddingInline" | "className" | "classes" | "sx" | "p" | "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" | "exportparts" | "part" | "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" | "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" | "bgcolor" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "displayPrint" | "align" | "htmlFor" | "gutterBottom" | "noWrap" | "variantMapping" | "skeletonWidth" | "skeletonRows" | keyof import('react').RefAttributes<HTMLSpanElement>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
14
|
-
ownerState?: (Partial<import('../types').ActionsGroupOwnerState> & Record<string, unknown>) | undefined;
|
|
15
|
-
}, {}, {}>;
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { A as ActionsGroupSlots } from "./ActionsGroupEnum.js";
|
|
2
|
-
import { a as ACTIONS_GROUP_KEY_COMPONENT } from "../constants.js";
|
|
3
|
-
import { styled } from "@mui/material/styles";
|
|
4
|
-
import { a as actionsGroupStyles } from "../ActionsGroup.styles.js";
|
|
5
|
-
import { S as Skeleton } from "../../mui_extended/Skeleton/Skeleton.js";
|
|
6
|
-
import { I as IconButton } from "../../mui_extended/IconButton/IconButton.js";
|
|
7
|
-
import { T as Typography } from "../../mui_extended/Typography/Typography.js";
|
|
8
|
-
import { I as Icon } from "../../Icon/Icon.js";
|
|
9
|
-
const ActionsGroupRootStyled = styled("div", {
|
|
10
|
-
name: ACTIONS_GROUP_KEY_COMPONENT,
|
|
11
|
-
slot: ActionsGroupSlots.root
|
|
12
|
-
})(actionsGroupStyles?.root);
|
|
13
|
-
const ActionIconButtonStyled = styled(IconButton, {
|
|
14
|
-
name: ACTIONS_GROUP_KEY_COMPONENT,
|
|
15
|
-
slot: ActionsGroupSlots.actionIconButton
|
|
16
|
-
})(actionsGroupStyles?.actionIconButton);
|
|
17
|
-
const ActionIconButtonSkeletonStyled = styled(Skeleton, {
|
|
18
|
-
name: ACTIONS_GROUP_KEY_COMPONENT,
|
|
19
|
-
slot: ActionsGroupSlots.actionIconButtonSkeleton
|
|
20
|
-
})(actionsGroupStyles?.actionIconButtonSkeleton);
|
|
21
|
-
const IconTooltipMessageStyled = styled(Icon, {
|
|
22
|
-
name: ACTIONS_GROUP_KEY_COMPONENT,
|
|
23
|
-
slot: ActionsGroupSlots.iconTooltipMessage
|
|
24
|
-
})(actionsGroupStyles?.iconTooltipMessage);
|
|
25
|
-
const TextTooltipMessageStyled = styled(Typography, {
|
|
26
|
-
name: ACTIONS_GROUP_KEY_COMPONENT,
|
|
27
|
-
slot: ActionsGroupSlots.textTooltipMessage
|
|
28
|
-
})(actionsGroupStyles?.textTooltipMessage);
|
|
29
|
-
export {
|
|
30
|
-
ActionsGroupRootStyled as A,
|
|
31
|
-
IconTooltipMessageStyled as I,
|
|
32
|
-
TextTooltipMessageStyled as T,
|
|
33
|
-
ActionIconButtonSkeletonStyled as a,
|
|
34
|
-
ActionIconButtonStyled as b
|
|
35
|
-
};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ActionIconButtonProps } from './types';
|
|
2
|
-
import { ActionsGroupValueType } from '../../types';
|
|
3
|
-
/**
|
|
4
|
-
* ActionIconButton component that renders an icon button for an action.
|
|
5
|
-
*/
|
|
6
|
-
export declare const ActionIconButton: <T extends ActionsGroupValueType>(props: ActionIconButtonProps<T>) => import("react/jsx-runtime").JSX.Element;
|