@m4l/components 9.3.13 → 9.3.15-BE091725-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 +207 -61
- package/components/Card/Card.js +49 -0
- package/components/Card/Card.styles.js +56 -0
- package/components/Card/constants.js +17 -0
- package/components/Card/helpers/getSizeSpacing.d.ts +4 -3
- package/components/Card/helpers/getSizeSpacing.js +10 -0
- package/components/Card/index.js +1 -0
- package/components/Card/slots/CardEnum.js +7 -0
- package/components/Card/slots/CardSlots.js +11 -0
- package/components/Card/types.d.ts +5 -3
- package/components/MenuActions/MenuActions.js +3 -2
- package/components/MenuActions/MenuActions.styles.js +1 -1
- package/components/MenuActions/constants.d.ts +1 -0
- package/components/MenuActions/constants.js +12 -1
- package/components/MenuActions/slots/MenuActionsSlots.js +1 -1
- package/components/Stepper/Stepper.d.ts +8 -0
- package/components/Stepper/Stepper.js +70 -0
- package/components/Stepper/Stepper.styles.d.ts +2 -0
- package/components/Stepper/Stepper.styles.js +298 -0
- package/components/Stepper/constants.d.ts +2 -0
- package/components/Stepper/constants.js +6 -0
- package/components/Stepper/dictionary.d.ts +8 -0
- package/components/Stepper/dictionary.js +14 -0
- package/components/Stepper/helpers/evaluateVisibilityStepCondition/index.d.ts +9 -0
- package/components/Stepper/helpers/evaluateVisibilityStepCondition/index.js +17 -0
- package/components/Stepper/helpers/findNextVisibleValidStep/index.d.ts +10 -0
- package/components/Stepper/helpers/findNextVisibleValidStep/index.js +13 -0
- package/components/Stepper/helpers/findPrevVisibleValidStep/index.d.ts +10 -0
- package/components/Stepper/helpers/findPrevVisibleValidStep/index.js +13 -0
- package/components/Stepper/helpers/index.d.ts +4 -0
- package/components/Stepper/helpers/index.js +1 -0
- package/components/Stepper/helpers/isLastVisibleValidStep/index.d.ts +10 -0
- package/components/Stepper/helpers/isLastVisibleValidStep/index.js +16 -0
- package/components/Stepper/hooks/useIsLastVisibleValidStep/index.d.ts +6 -0
- package/components/Stepper/hooks/useIsLastVisibleValidStep/index.js +25 -0
- package/components/Stepper/hooks/useStepper/index.d.ts +5 -0
- package/components/Stepper/hooks/useStepper/index.js +14 -0
- package/components/Stepper/hooks/useStepperActions/index.d.ts +8 -0
- package/components/Stepper/hooks/useStepperActions/index.js +76 -0
- package/components/Stepper/icons.d.ts +9 -0
- package/components/Stepper/icons.js +12 -0
- package/components/Stepper/index.d.ts +14 -0
- package/components/Stepper/index.js +1 -0
- package/components/Stepper/slots/StepperEnum.d.ts +28 -0
- package/components/Stepper/slots/StepperEnum.js +38 -0
- package/components/Stepper/slots/StepperSlot.d.ts +63 -0
- package/components/Stepper/slots/StepperSlot.js +107 -0
- package/components/Stepper/store/StepperContext/index.d.ts +17 -0
- package/components/Stepper/store/StepperContext/index.js +91 -0
- package/components/Stepper/store/StepperStore/index.d.ts +16 -0
- package/components/Stepper/store/StepperStore/index.js +133 -0
- package/components/Stepper/store/types.d.ts +63 -0
- package/components/Stepper/subcomponents/ContentArea/index.d.ts +6 -0
- package/components/Stepper/subcomponents/ContentArea/index.js +24 -0
- package/components/Stepper/subcomponents/ContentArea/subcomponents/WrapperIcon/index.d.ts +4 -0
- package/components/Stepper/subcomponents/ContentArea/subcomponents/WrapperIcon/index.js +26 -0
- package/components/Stepper/subcomponents/ContentArea/subcomponents/WrapperTitle/index.d.ts +4 -0
- package/components/Stepper/subcomponents/ContentArea/subcomponents/WrapperTitle/index.js +23 -0
- package/components/Stepper/subcomponents/StepArea/index.d.ts +6 -0
- package/components/Stepper/subcomponents/StepArea/index.js +149 -0
- package/components/Stepper/subcomponents/StepArea/subcomponents/Inidicator/index.d.ts +5 -0
- package/components/Stepper/subcomponents/StepArea/subcomponents/Inidicator/index.js +82 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperCancelButton/index.d.ts +4 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperCancelButton/index.js +25 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperNextButton/index.d.ts +4 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperNextButton/index.js +42 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperPrevButton/index.d.ts +4 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperPrevButton/index.js +49 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.d.ts +4 -0
- package/components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.js +20 -0
- package/components/Stepper/subcomponents/StepperButtons/index.d.ts +4 -0
- package/components/Stepper/subcomponents/StepperButtons/index.js +1 -0
- package/components/Stepper/subcomponents/StepperContent/index.d.ts +7 -0
- package/components/Stepper/subcomponents/StepperContent/index.js +23 -0
- package/components/Stepper/subcomponents/StepperContent/subcomponents/Step/index.d.ts +6 -0
- package/components/Stepper/subcomponents/StepperContent/subcomponents/Step/index.js +41 -0
- package/components/Stepper/subcomponents/StepperFooter/index.d.ts +6 -0
- package/components/Stepper/subcomponents/StepperFooter/index.js +48 -0
- package/components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterLeftActions/index.d.ts +6 -0
- package/components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterLeftActions/index.js +9 -0
- package/components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterRightActions/index.d.ts +6 -0
- package/components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterRightActions/index.js +33 -0
- package/components/Stepper/types.d.ts +165 -0
- package/components/WindowBase/WindowBase.styles.js +1 -1
- package/components/hook-form/RHFormContext/index.d.ts +1 -1
- package/components/hook-form/RHFormContext/index.js +5 -4
- package/components/hook-form/RHFormContext/types.d.ts +3 -1
- package/components/index.d.ts +2 -0
- package/components/mui_extended/Autocomplete/types.d.ts +45 -2
- package/components/mui_extended/Badge/Badge.styles.js +4 -2
- package/components/mui_extended/IconButton/IconButton.js +12 -2
- package/components/mui_extended/IconButton/IconButton.styles.js +7 -7
- package/components/mui_extended/IconButton/constants.js +8 -1
- package/components/mui_extended/Typography/Typography.js +3 -1
- package/components/mui_extended/Typography/constants.d.ts +4 -0
- package/components/mui_extended/Typography/types.d.ts +6 -0
- package/components/mui_extended/Typography/typography.styles.js +1 -0
- package/helpers/getStepsAndValidationSchema/getStepsAndValidationSchema.d.ts +11 -0
- package/helpers/getStepsAndValidationSchema/getStepsAndValidationSchema.js +44 -0
- package/helpers/getStepsAndValidationSchema/index.d.ts +2 -0
- package/helpers/getStepsAndValidationSchema/index.js +1 -0
- package/helpers/getStepsAndValidationSchema/types.d.ts +21 -0
- package/helpers/getStepsAndValidationSchema/types.js +1 -0
- package/helpers/index.d.ts +1 -0
- package/helpers/index.js +1 -0
- package/index.d.ts +1 -0
- package/index.js +116 -86
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -18,7 +18,8 @@ import { a as a2, A as A6 } from "./components/areas/contexts/AreasContext/index
|
|
|
18
18
|
import { u } from "./components/areas/hooks/useAreas/index.js";
|
|
19
19
|
import { A as A7, a as a3, L as L2, b as b2, g as g3 } from "./components/areas/dictionary.js";
|
|
20
20
|
import { B } from "./components/BaseModule/BaseModule.js";
|
|
21
|
-
import { C } from "./components/
|
|
21
|
+
import { C } from "./components/Card/Card.js";
|
|
22
|
+
import { C as C2 } from "./components/Chip/Chip.js";
|
|
22
23
|
import { A as A8 } from "./components/commercial/AppBarCommercial/index.js";
|
|
23
24
|
import { H } from "./components/commercial/HamburgerMenu/HamburgerMenu.js";
|
|
24
25
|
import { T } from "./components/commercial/TopBar/TopBar.js";
|
|
@@ -29,32 +30,32 @@ import { A as A11 } from "./components/CommonActions/components/ActionIntro/Acti
|
|
|
29
30
|
import { A as A12 } from "./components/CommonActions/components/ActionFormCancel/ActionFormCancel.js";
|
|
30
31
|
import { A as A13 } from "./components/CommonActions/components/ActionFormIntro/ActionFormIntro.js";
|
|
31
32
|
import { D, d, g as g4 } from "./components/CommonActions/dictionary.js";
|
|
32
|
-
import { C as
|
|
33
|
+
import { C as C3 } from "./components/ContainerFlow/ContainerFlow.js";
|
|
33
34
|
import { D as D2 } from "./components/DataGrid/DataGrid.js";
|
|
34
35
|
import { g as g5 } from "./components/DataGrid/dictionary.js";
|
|
35
36
|
import { N, T as T2 } from "./components/DataGrid/subcomponents/editors/TextEditor/index.js";
|
|
36
37
|
import { g as g6 } from "./components/DataGrid/utils/getDataGridRowsFromSet.js";
|
|
37
38
|
import { b as b3, a as a4, e } from "./components/DataGrid/constants.js";
|
|
38
|
-
import { C as
|
|
39
|
+
import { C as C4 } from "./components/DataGrid/formatters/ColumnBooleanFormatter/formatter.js";
|
|
39
40
|
import { u as u2 } from "./components/DataGrid/formatters/ColumnBooleanFormatter/useColumnBoolean.js";
|
|
40
|
-
import { C as
|
|
41
|
+
import { C as C5 } from "./components/DataGrid/formatters/ColumnConcatenatedValuesFormatter/formatter.js";
|
|
41
42
|
import { u as u3 } from "./components/DataGrid/formatters/ColumnConcatenatedValuesFormatter/useColumnConcatenatedValues.js";
|
|
42
|
-
import { C as
|
|
43
|
+
import { C as C6 } from "./components/DataGrid/formatters/ColumnDateFormatter/formatter.js";
|
|
43
44
|
import { u as u4 } from "./components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.js";
|
|
44
|
-
import { C as
|
|
45
|
-
import { C as
|
|
45
|
+
import { C as C7 } from "./components/DataGrid/formatters/ColumnIconFormatter/formatter.js";
|
|
46
|
+
import { C as C8 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/formatter.js";
|
|
46
47
|
import { u as u5 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/useColumnInteractiveCheck.js";
|
|
47
|
-
import { C as
|
|
48
|
+
import { C as C9 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/formatter.js";
|
|
48
49
|
import { u as u6 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.js";
|
|
49
|
-
import { C as
|
|
50
|
+
import { C as C10 } from "./components/DataGrid/formatters/ColumnPointsFormatter/formatter.js";
|
|
50
51
|
import { u as u7 } from "./components/DataGrid/formatters/ColumnPointsFormatter/useColumnPoints.js";
|
|
51
|
-
import { C as
|
|
52
|
+
import { C as C11 } from "./components/DataGrid/formatters/ColumnPriceFormatter/formatter.js";
|
|
52
53
|
import { u as u8 } from "./components/DataGrid/formatters/ColumnPriceFormatter/useColumnPrice.js";
|
|
53
|
-
import { C as
|
|
54
|
+
import { C as C12 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/formatter.js";
|
|
54
55
|
import { u as u9 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/useColumnSetCheck.js";
|
|
55
|
-
import { C as
|
|
56
|
+
import { C as C13 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/formatter.js";
|
|
56
57
|
import { u as u10 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/useColumnUncertainty.js";
|
|
57
|
-
import { C as
|
|
58
|
+
import { C as C14 } from "./components/DataGrid/formatters/ColumnChipStatusFormatter/formatter.js";
|
|
58
59
|
import { u as u11 } from "./components/DataGrid/formatters/ColumnChipStatusFormatter/useColumnChipStatus.js";
|
|
59
60
|
import { D as D3 } from "./components/DragResizeWindowRND/DragResizeWindowRND.js";
|
|
60
61
|
import { d as d2 } from "./components/DragResizeWindowRND/classes/index.js";
|
|
@@ -77,7 +78,7 @@ import { R as R3 } from "./components/extended/React-Json-Viewer/ReactJsonViewer
|
|
|
77
78
|
import { A as A14 } from "./components/mui_extended/Avatar/Avatar.js";
|
|
78
79
|
import { B as B2 } from "./components/mui_extended/BoxIcon/index.js";
|
|
79
80
|
import { B as B3 } from "./components/mui_extended/Breadcrumbs/index.js";
|
|
80
|
-
import { C as
|
|
81
|
+
import { C as C15 } from "./components/mui_extended/CircularProgress/CircularProgress.js";
|
|
81
82
|
import { B as B4 } from "./components/mui_extended/Badge/Badge.js";
|
|
82
83
|
import { L as L3 } from "./components/mui_extended/LinearProgress/index.js";
|
|
83
84
|
import { L as L4 } from "./components/mui_extended/LinkWithRoute/index.js";
|
|
@@ -87,7 +88,7 @@ import { A as A15 } from "./components/mui_extended/Accordion/Accordion.js";
|
|
|
87
88
|
import { T as T3 } from "./components/mui_extended/Tooltip/Tooltip.js";
|
|
88
89
|
import { I as I2 } from "./components/mui_extended/IconButton/IconButton.js";
|
|
89
90
|
import { B as B5 } from "./components/mui_extended/Button/Button.js";
|
|
90
|
-
import { C as
|
|
91
|
+
import { C as C16 } from "./components/mui_extended/CheckBox/CheckBox.js";
|
|
91
92
|
import { I as I3 } from "./components/mui_extended/ImageButton/ImageButton.js";
|
|
92
93
|
import { P as P2 } from "./components/mui_extended/Popover/Popover.js";
|
|
93
94
|
import { S as S4 } from "./components/mui_extended/Select/Select.js";
|
|
@@ -115,10 +116,10 @@ import { B as B6 } from "./components/formatters/BooleanFormatter/BooleanFormatt
|
|
|
115
116
|
import { D as D8, g as g12 } from "./components/formatters/DateFormatter/DateFormatter.js";
|
|
116
117
|
import { U, g as g13 } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
|
|
117
118
|
import { P as P3, g as g14 } from "./components/formatters/PointsFormatter/PointsFormatter.js";
|
|
118
|
-
import { C as
|
|
119
|
+
import { C as C17, g as g15 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
|
|
119
120
|
import { P as P4, u as u12 } from "./components/formatters/PeriodFormatter/PeriodFormatter.js";
|
|
120
121
|
import { P as P5, g as g16 } from "./components/formatters/PriceFormatter/PriceFormatter.js";
|
|
121
|
-
import { C as
|
|
122
|
+
import { C as C18 } from "./components/formatters/ChipStatusFormatter/ChipStatusFormatter.js";
|
|
122
123
|
import { g as g17 } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
|
|
123
124
|
import { D as D9 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
|
|
124
125
|
import { g as g18 } from "./components/formatters/dictionary.js";
|
|
@@ -194,38 +195,52 @@ import { a as a14, g as g28 } from "./components/ModalDialog/dictionary.js";
|
|
|
194
195
|
import { M as M8 } from "./components/ModalDialog/ModalDialog.js";
|
|
195
196
|
import { S as S10 } from "./components/SettingsLayout/SettingsLayout.js";
|
|
196
197
|
import { P as P13 } from "./components/Pager/Pager.js";
|
|
197
|
-
import {
|
|
198
|
-
import {
|
|
199
|
-
import {
|
|
198
|
+
import { u as u16 } from "./components/Stepper/hooks/useStepper/index.js";
|
|
199
|
+
import { S as S11 } from "./components/Stepper/Stepper.js";
|
|
200
|
+
import { S as S12 } from "./components/Stepper/subcomponents/StepperContent/index.js";
|
|
201
|
+
import { S as S13 } from "./components/Stepper/subcomponents/StepperContent/subcomponents/Step/index.js";
|
|
202
|
+
import { S as S14 } from "./components/Stepper/subcomponents/StepperFooter/index.js";
|
|
203
|
+
import { S as S15 } from "./components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterLeftActions/index.js";
|
|
204
|
+
import { S as S16 } from "./components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterRightActions/index.js";
|
|
205
|
+
import { S as S17 } from "./components/Stepper/subcomponents/StepperButtons/StepperNextButton/index.js";
|
|
206
|
+
import { S as S18 } from "./components/Stepper/subcomponents/StepperButtons/StepperPrevButton/index.js";
|
|
207
|
+
import { S as S19 } from "./components/Stepper/subcomponents/StepperButtons/StepperCancelButton/index.js";
|
|
208
|
+
import { S as S20 } from "./components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.js";
|
|
209
|
+
import { e as e3 } from "./components/Stepper/helpers/evaluateVisibilityStepCondition/index.js";
|
|
210
|
+
import { g as g29 } from "./components/Stepper/dictionary.js";
|
|
211
|
+
import { F as F3, R as R23, u as u17 } from "./components/hook-form/RHFormContext/index.js";
|
|
212
|
+
import { g as g30 } from "./components/hook-form/RHFormContext/dictionary.js";
|
|
213
|
+
import { u as u18 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
|
|
200
214
|
import { A as A16 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
|
|
201
215
|
import { a as a15, M as M9 } from "./contexts/ModalContext/index.js";
|
|
202
|
-
import { u as
|
|
203
|
-
import { u as
|
|
204
|
-
import { u as
|
|
205
|
-
import { g as
|
|
206
|
-
import { u as
|
|
207
|
-
import { u as
|
|
208
|
-
import { u as
|
|
209
|
-
import { u as
|
|
210
|
-
import { u as
|
|
211
|
-
import { S as
|
|
212
|
-
import { u as
|
|
213
|
-
import { u as
|
|
214
|
-
import { u as
|
|
215
|
-
import { u as
|
|
216
|
-
import { u as
|
|
216
|
+
import { u as u19 } from "./hooks/useFormAddEdit/index.js";
|
|
217
|
+
import { u as u20 } from "./hooks/useModal/index.js";
|
|
218
|
+
import { u as u21 } from "./hooks/useTab/index.js";
|
|
219
|
+
import { g as g31 } from "./hooks/useFormAddEdit/dictionary.js";
|
|
220
|
+
import { u as u22 } from "./hooks/useFormFocus/index.js";
|
|
221
|
+
import { u as u23 } from "./hooks/useInterval/index.js";
|
|
222
|
+
import { u as u24 } from "./hooks/useComponentSize/useComponentSize.js";
|
|
223
|
+
import { u as u25 } from "./hooks/useFormReadyForUpdate/index.js";
|
|
224
|
+
import { u as u26 } from "./hooks/useStateRef/index.js";
|
|
225
|
+
import { S as S21 } from "./hooks/useSvgColor/constants.js";
|
|
226
|
+
import { u as u27 } from "./hooks/useSvgColor/useSvgColor.js";
|
|
227
|
+
import { u as u28 } from "./hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js";
|
|
228
|
+
import { u as u29 } from "./hooks/useDataGridPersistence/useDataGridPersistence.js";
|
|
229
|
+
import { u as u30 } from "./hooks/usePopoverContainer/usePopoverContainer.js";
|
|
230
|
+
import { u as u31 } from "./hooks/useIsVisible/useIsVisible.js";
|
|
217
231
|
import { c as c4 } from "./utils/capitalizeFirstLetter.js";
|
|
218
232
|
import { i as i2 } from "./utils/isValidDate.js";
|
|
219
|
-
import { g as
|
|
220
|
-
import { g as
|
|
221
|
-
import { g as
|
|
222
|
-
import { g as
|
|
223
|
-
import { a as a16, g as
|
|
233
|
+
import { g as g32 } from "./utils/getComponentUtilityClass.js";
|
|
234
|
+
import { g as g33 } from "./utils/getPaletteColor.js";
|
|
235
|
+
import { g as g34 } from "./utils/getTypographyStyles.js";
|
|
236
|
+
import { g as g35 } from "./utils/getIconColor.js";
|
|
237
|
+
import { a as a16, g as g36 } from "./utils/getSizeStyles/getSizeStyles.js";
|
|
224
238
|
import { O as O2 } from "./utils/ObjectQueue.js";
|
|
225
|
-
import { g as
|
|
239
|
+
import { g as g37, a as a17 } from "./utils/getComponentSlotRoot.js";
|
|
226
240
|
import { f } from "./utils/formatDistanceToNow/formatDistanteToNow.js";
|
|
227
|
-
import { g as
|
|
228
|
-
import { g as
|
|
241
|
+
import { g as g38 } from "./utils/getValidDate.js";
|
|
242
|
+
import { g as g39 } from "./utils/getNullGuard.js";
|
|
243
|
+
import { g as g40 } from "./helpers/getStepsAndValidationSchema/getStepsAndValidationSchema.js";
|
|
229
244
|
export {
|
|
230
245
|
A7 as AREAS_DICCTIONARY,
|
|
231
246
|
a3 as AREAS_DICTIONARY_ID,
|
|
@@ -251,23 +266,24 @@ export {
|
|
|
251
266
|
B2 as BoxIcon,
|
|
252
267
|
B3 as Breadcrumbs,
|
|
253
268
|
B5 as Button,
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
C5 as
|
|
262
|
-
C6 as
|
|
263
|
-
C7 as
|
|
264
|
-
C8 as
|
|
265
|
-
C9 as
|
|
266
|
-
C10 as
|
|
267
|
-
C11 as
|
|
268
|
-
C12 as
|
|
269
|
-
|
|
270
|
-
|
|
269
|
+
C as Card,
|
|
270
|
+
C16 as CheckBox,
|
|
271
|
+
C2 as Chip,
|
|
272
|
+
C18 as ChipStatusFormatter,
|
|
273
|
+
C15 as CircularProgress,
|
|
274
|
+
C4 as ColumnBooleanFormatter,
|
|
275
|
+
C14 as ColumnChipStatusFormatter,
|
|
276
|
+
C5 as ColumnConcatenatedValueFormatter,
|
|
277
|
+
C6 as ColumnDateFormatter,
|
|
278
|
+
C7 as ColumnIconFormatter,
|
|
279
|
+
C8 as ColumnInteractiveCheckFormatter,
|
|
280
|
+
C9 as ColumnNestedValueFormatter,
|
|
281
|
+
C10 as ColumnPointsFormatter,
|
|
282
|
+
C11 as ColumnPriceFormatter,
|
|
283
|
+
C12 as ColumnSetCheckFormatter,
|
|
284
|
+
C13 as ColumnUncertaintyFormatter,
|
|
285
|
+
C17 as ConcatenatedFormatter,
|
|
286
|
+
C3 as ContainerFlow,
|
|
271
287
|
b3 as DATAGRID_ROW_HEADER_HEIGHTS,
|
|
272
288
|
a4 as DATAGRID_ROW_HEIGHTS,
|
|
273
289
|
e as DATAGRID_SEMANTIC_WIDTHS,
|
|
@@ -360,7 +376,7 @@ export {
|
|
|
360
376
|
R as Resizable,
|
|
361
377
|
R2 as ResizableBox,
|
|
362
378
|
R4 as Responsive,
|
|
363
|
-
|
|
379
|
+
S21 as SKELETON_SVG_ICON,
|
|
364
380
|
S8 as ScrollBar,
|
|
365
381
|
S as SectionCommercial,
|
|
366
382
|
S4 as Select,
|
|
@@ -371,6 +387,16 @@ export {
|
|
|
371
387
|
S2 as SortCompareValues,
|
|
372
388
|
S3 as SplitLayout,
|
|
373
389
|
S6 as Stack,
|
|
390
|
+
S13 as Step,
|
|
391
|
+
S11 as Stepper,
|
|
392
|
+
S19 as StepperCancelButton,
|
|
393
|
+
S12 as StepperContent,
|
|
394
|
+
S14 as StepperFooter,
|
|
395
|
+
S15 as StepperFooterLeftActions,
|
|
396
|
+
S16 as StepperFooterRightActions,
|
|
397
|
+
S17 as StepperNextButton,
|
|
398
|
+
S18 as StepperPrevButton,
|
|
399
|
+
S20 as StepperSubmitButton,
|
|
374
400
|
T10 as TOGGLE_BUTTON_KEY_COMPONENT,
|
|
375
401
|
a8 as TOGGLE_ICON_BUTTON_CLASS_NAME_SPECIFY,
|
|
376
402
|
T14 as TOGGLE_ICON_BUTTON_KEY_COMPONENT,
|
|
@@ -406,29 +432,30 @@ export {
|
|
|
406
432
|
c as createToaster,
|
|
407
433
|
d as defaultCommonActionsDictionary,
|
|
408
434
|
d2 as dragResizeWindowRNDClasses,
|
|
435
|
+
e3 as evaluateVisibilityStepCondition,
|
|
409
436
|
f as formatDistanceToNow,
|
|
410
437
|
g as getAccountPopoverDictionary,
|
|
411
438
|
g2 as getAppBarDictionary,
|
|
412
439
|
b2 as getAreasComponentsDictionary,
|
|
413
440
|
g3 as getAreasDictionary,
|
|
414
441
|
g4 as getCommonActionsDictionary,
|
|
415
|
-
|
|
442
|
+
g37 as getComponentClasses,
|
|
416
443
|
a17 as getComponentSlotRoot,
|
|
417
|
-
|
|
444
|
+
g32 as getComponentUtilityClass,
|
|
418
445
|
g5 as getDataGridComponentsDictionary,
|
|
419
446
|
g6 as getDataGridRowsFromSet,
|
|
420
447
|
g17 as getDistanceToNowFormatterComponentsDictionary,
|
|
421
448
|
g7 as getDynamicFilterComponentsDictionary,
|
|
422
449
|
a6 as getDynamicSortComponentsDictionary,
|
|
423
450
|
a5 as getFilterGroupFieldsByName,
|
|
424
|
-
|
|
451
|
+
g30 as getFormComponentsDictionary,
|
|
425
452
|
g15 as getFormatConcatenated,
|
|
426
453
|
g12 as getFormatDate,
|
|
427
454
|
g14 as getFormatPoints,
|
|
428
455
|
g16 as getFormatPrice,
|
|
429
456
|
g18 as getFormattersComponentsDictionary,
|
|
430
457
|
a16 as getHeightSizeStyles,
|
|
431
|
-
|
|
458
|
+
g35 as getIconColor,
|
|
432
459
|
g8 as getIsIfInDynamicFilter,
|
|
433
460
|
g22 as getLoadingErrorComponentsDictionary,
|
|
434
461
|
g24 as getMFLoaderComponentsDictionary,
|
|
@@ -437,27 +464,29 @@ export {
|
|
|
437
464
|
g28 as getModalDictionary,
|
|
438
465
|
g26 as getNoItemPrivilegesComponentsDictionary,
|
|
439
466
|
g25 as getNoItemSelectedComponentsDictionary,
|
|
440
|
-
|
|
467
|
+
g39 as getNullGuard,
|
|
441
468
|
g27 as getObjectLogsComponentsDictionary,
|
|
442
469
|
g11 as getPagerComponentsDictionary,
|
|
443
|
-
|
|
470
|
+
g33 as getPaletteColor,
|
|
444
471
|
g21 as getPeriodComponetsDictionary,
|
|
445
472
|
g20 as getRHFAutocompleteAsyncComponentsDictionary,
|
|
446
473
|
g19 as getRHFAutocompleteComponentsDictionary,
|
|
447
474
|
g9 as getRawFiltersForNetwork,
|
|
448
475
|
g10 as getRawSortsForNetwork,
|
|
449
|
-
|
|
450
|
-
|
|
476
|
+
g36 as getSizeStyles,
|
|
477
|
+
g29 as getStepperComponentsDictionary,
|
|
478
|
+
g40 as getStepsAndValidationSchema,
|
|
479
|
+
g34 as getTypographyStyles,
|
|
451
480
|
g13 as getUncertaintyFormat,
|
|
452
|
-
|
|
453
|
-
|
|
481
|
+
g38 as getValidDate,
|
|
482
|
+
g31 as getformAddEditDictionary,
|
|
454
483
|
i as isEqualLayout,
|
|
455
484
|
k as isEqualLayouts,
|
|
456
485
|
i2 as isValidDate,
|
|
457
486
|
r as rhfPeriodStyles,
|
|
458
487
|
t as toggleButtonStyles,
|
|
459
488
|
t2 as toggleIconButtonStyles,
|
|
460
|
-
|
|
489
|
+
u18 as useAppearanceComponentStore,
|
|
461
490
|
u as useAreasStore,
|
|
462
491
|
u2 as useColumnBoolean,
|
|
463
492
|
u11 as useColumnChipStatus,
|
|
@@ -469,24 +498,25 @@ export {
|
|
|
469
498
|
u8 as useColumnPrice,
|
|
470
499
|
u9 as useColumnSetCheck,
|
|
471
500
|
u10 as useColumnUncertanity,
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
501
|
+
u24 as useComponentSize,
|
|
502
|
+
u17 as useCustomForm,
|
|
503
|
+
u29 as useDataGridPersistence,
|
|
504
|
+
u28 as useDynamicFilterAndSort,
|
|
476
505
|
u15 as useDynamicMFParameters,
|
|
477
506
|
a11 as useDynamicMFParametersStore,
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
507
|
+
u19 as useFormAddEdit,
|
|
508
|
+
u22 as useFormFocus,
|
|
509
|
+
u25 as useFormReadyForUpdate,
|
|
481
510
|
u12 as useFormatPeriod,
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
511
|
+
u23 as useInterval,
|
|
512
|
+
u31 as useIsVisible,
|
|
513
|
+
u20 as useModal,
|
|
514
|
+
u30 as usePopoverContainer,
|
|
486
515
|
u13 as usePopupsStore,
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
516
|
+
u26 as useStateRef,
|
|
517
|
+
u16 as useStepper,
|
|
518
|
+
u27 as useSvgColor,
|
|
519
|
+
u21 as useTab,
|
|
490
520
|
u14 as useWindowToolsMF,
|
|
491
521
|
v2 as varBounce,
|
|
492
522
|
v3 as varContainer,
|