@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.
Files changed (108) hide show
  1. package/@types/types.d.ts +207 -61
  2. package/components/Card/Card.js +49 -0
  3. package/components/Card/Card.styles.js +56 -0
  4. package/components/Card/constants.js +17 -0
  5. package/components/Card/helpers/getSizeSpacing.d.ts +4 -3
  6. package/components/Card/helpers/getSizeSpacing.js +10 -0
  7. package/components/Card/index.js +1 -0
  8. package/components/Card/slots/CardEnum.js +7 -0
  9. package/components/Card/slots/CardSlots.js +11 -0
  10. package/components/Card/types.d.ts +5 -3
  11. package/components/MenuActions/MenuActions.js +3 -2
  12. package/components/MenuActions/MenuActions.styles.js +1 -1
  13. package/components/MenuActions/constants.d.ts +1 -0
  14. package/components/MenuActions/constants.js +12 -1
  15. package/components/MenuActions/slots/MenuActionsSlots.js +1 -1
  16. package/components/Stepper/Stepper.d.ts +8 -0
  17. package/components/Stepper/Stepper.js +70 -0
  18. package/components/Stepper/Stepper.styles.d.ts +2 -0
  19. package/components/Stepper/Stepper.styles.js +298 -0
  20. package/components/Stepper/constants.d.ts +2 -0
  21. package/components/Stepper/constants.js +6 -0
  22. package/components/Stepper/dictionary.d.ts +8 -0
  23. package/components/Stepper/dictionary.js +14 -0
  24. package/components/Stepper/helpers/evaluateVisibilityStepCondition/index.d.ts +9 -0
  25. package/components/Stepper/helpers/evaluateVisibilityStepCondition/index.js +17 -0
  26. package/components/Stepper/helpers/findNextVisibleValidStep/index.d.ts +10 -0
  27. package/components/Stepper/helpers/findNextVisibleValidStep/index.js +13 -0
  28. package/components/Stepper/helpers/findPrevVisibleValidStep/index.d.ts +10 -0
  29. package/components/Stepper/helpers/findPrevVisibleValidStep/index.js +13 -0
  30. package/components/Stepper/helpers/index.d.ts +4 -0
  31. package/components/Stepper/helpers/index.js +1 -0
  32. package/components/Stepper/helpers/isLastVisibleValidStep/index.d.ts +10 -0
  33. package/components/Stepper/helpers/isLastVisibleValidStep/index.js +16 -0
  34. package/components/Stepper/hooks/useIsLastVisibleValidStep/index.d.ts +6 -0
  35. package/components/Stepper/hooks/useIsLastVisibleValidStep/index.js +25 -0
  36. package/components/Stepper/hooks/useStepper/index.d.ts +5 -0
  37. package/components/Stepper/hooks/useStepper/index.js +14 -0
  38. package/components/Stepper/hooks/useStepperActions/index.d.ts +8 -0
  39. package/components/Stepper/hooks/useStepperActions/index.js +76 -0
  40. package/components/Stepper/icons.d.ts +9 -0
  41. package/components/Stepper/icons.js +12 -0
  42. package/components/Stepper/index.d.ts +14 -0
  43. package/components/Stepper/index.js +1 -0
  44. package/components/Stepper/slots/StepperEnum.d.ts +28 -0
  45. package/components/Stepper/slots/StepperEnum.js +38 -0
  46. package/components/Stepper/slots/StepperSlot.d.ts +63 -0
  47. package/components/Stepper/slots/StepperSlot.js +107 -0
  48. package/components/Stepper/store/StepperContext/index.d.ts +17 -0
  49. package/components/Stepper/store/StepperContext/index.js +91 -0
  50. package/components/Stepper/store/StepperStore/index.d.ts +16 -0
  51. package/components/Stepper/store/StepperStore/index.js +133 -0
  52. package/components/Stepper/store/types.d.ts +63 -0
  53. package/components/Stepper/subcomponents/ContentArea/index.d.ts +6 -0
  54. package/components/Stepper/subcomponents/ContentArea/index.js +24 -0
  55. package/components/Stepper/subcomponents/ContentArea/subcomponents/WrapperIcon/index.d.ts +4 -0
  56. package/components/Stepper/subcomponents/ContentArea/subcomponents/WrapperIcon/index.js +26 -0
  57. package/components/Stepper/subcomponents/ContentArea/subcomponents/WrapperTitle/index.d.ts +4 -0
  58. package/components/Stepper/subcomponents/ContentArea/subcomponents/WrapperTitle/index.js +23 -0
  59. package/components/Stepper/subcomponents/StepArea/index.d.ts +6 -0
  60. package/components/Stepper/subcomponents/StepArea/index.js +149 -0
  61. package/components/Stepper/subcomponents/StepArea/subcomponents/Inidicator/index.d.ts +5 -0
  62. package/components/Stepper/subcomponents/StepArea/subcomponents/Inidicator/index.js +82 -0
  63. package/components/Stepper/subcomponents/StepperButtons/StepperCancelButton/index.d.ts +4 -0
  64. package/components/Stepper/subcomponents/StepperButtons/StepperCancelButton/index.js +25 -0
  65. package/components/Stepper/subcomponents/StepperButtons/StepperNextButton/index.d.ts +4 -0
  66. package/components/Stepper/subcomponents/StepperButtons/StepperNextButton/index.js +42 -0
  67. package/components/Stepper/subcomponents/StepperButtons/StepperPrevButton/index.d.ts +4 -0
  68. package/components/Stepper/subcomponents/StepperButtons/StepperPrevButton/index.js +49 -0
  69. package/components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.d.ts +4 -0
  70. package/components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.js +20 -0
  71. package/components/Stepper/subcomponents/StepperButtons/index.d.ts +4 -0
  72. package/components/Stepper/subcomponents/StepperButtons/index.js +1 -0
  73. package/components/Stepper/subcomponents/StepperContent/index.d.ts +7 -0
  74. package/components/Stepper/subcomponents/StepperContent/index.js +23 -0
  75. package/components/Stepper/subcomponents/StepperContent/subcomponents/Step/index.d.ts +6 -0
  76. package/components/Stepper/subcomponents/StepperContent/subcomponents/Step/index.js +41 -0
  77. package/components/Stepper/subcomponents/StepperFooter/index.d.ts +6 -0
  78. package/components/Stepper/subcomponents/StepperFooter/index.js +48 -0
  79. package/components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterLeftActions/index.d.ts +6 -0
  80. package/components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterLeftActions/index.js +9 -0
  81. package/components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterRightActions/index.d.ts +6 -0
  82. package/components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterRightActions/index.js +33 -0
  83. package/components/Stepper/types.d.ts +165 -0
  84. package/components/WindowBase/WindowBase.styles.js +1 -1
  85. package/components/hook-form/RHFormContext/index.d.ts +1 -1
  86. package/components/hook-form/RHFormContext/index.js +5 -4
  87. package/components/hook-form/RHFormContext/types.d.ts +3 -1
  88. package/components/index.d.ts +2 -0
  89. package/components/mui_extended/Autocomplete/types.d.ts +45 -2
  90. package/components/mui_extended/Badge/Badge.styles.js +4 -2
  91. package/components/mui_extended/IconButton/IconButton.js +12 -2
  92. package/components/mui_extended/IconButton/IconButton.styles.js +7 -7
  93. package/components/mui_extended/IconButton/constants.js +8 -1
  94. package/components/mui_extended/Typography/Typography.js +3 -1
  95. package/components/mui_extended/Typography/constants.d.ts +4 -0
  96. package/components/mui_extended/Typography/types.d.ts +6 -0
  97. package/components/mui_extended/Typography/typography.styles.js +1 -0
  98. package/helpers/getStepsAndValidationSchema/getStepsAndValidationSchema.d.ts +11 -0
  99. package/helpers/getStepsAndValidationSchema/getStepsAndValidationSchema.js +44 -0
  100. package/helpers/getStepsAndValidationSchema/index.d.ts +2 -0
  101. package/helpers/getStepsAndValidationSchema/index.js +1 -0
  102. package/helpers/getStepsAndValidationSchema/types.d.ts +21 -0
  103. package/helpers/getStepsAndValidationSchema/types.js +1 -0
  104. package/helpers/index.d.ts +1 -0
  105. package/helpers/index.js +1 -0
  106. package/index.d.ts +1 -0
  107. package/index.js +116 -86
  108. 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/Chip/Chip.js";
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 C2 } from "./components/ContainerFlow/ContainerFlow.js";
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 C3 } from "./components/DataGrid/formatters/ColumnBooleanFormatter/formatter.js";
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 C4 } from "./components/DataGrid/formatters/ColumnConcatenatedValuesFormatter/formatter.js";
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 C5 } from "./components/DataGrid/formatters/ColumnDateFormatter/formatter.js";
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 C6 } from "./components/DataGrid/formatters/ColumnIconFormatter/formatter.js";
45
- import { C as C7 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/formatter.js";
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 C8 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/formatter.js";
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 C9 } from "./components/DataGrid/formatters/ColumnPointsFormatter/formatter.js";
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 C10 } from "./components/DataGrid/formatters/ColumnPriceFormatter/formatter.js";
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 C11 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/formatter.js";
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 C12 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/formatter.js";
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 C13 } from "./components/DataGrid/formatters/ColumnChipStatusFormatter/formatter.js";
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 C14 } from "./components/mui_extended/CircularProgress/CircularProgress.js";
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 C15 } from "./components/mui_extended/CheckBox/CheckBox.js";
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 C16, g as g15 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
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 C17 } from "./components/formatters/ChipStatusFormatter/ChipStatusFormatter.js";
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 { F as F3, R as R23, u as u16 } from "./components/hook-form/RHFormContext/index.js";
198
- import { g as g29 } from "./components/hook-form/RHFormContext/dictionary.js";
199
- import { u as u17 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
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 u18 } from "./hooks/useFormAddEdit/index.js";
203
- import { u as u19 } from "./hooks/useModal/index.js";
204
- import { u as u20 } from "./hooks/useTab/index.js";
205
- import { g as g30 } from "./hooks/useFormAddEdit/dictionary.js";
206
- import { u as u21 } from "./hooks/useFormFocus/index.js";
207
- import { u as u22 } from "./hooks/useInterval/index.js";
208
- import { u as u23 } from "./hooks/useComponentSize/useComponentSize.js";
209
- import { u as u24 } from "./hooks/useFormReadyForUpdate/index.js";
210
- import { u as u25 } from "./hooks/useStateRef/index.js";
211
- import { S as S11 } from "./hooks/useSvgColor/constants.js";
212
- import { u as u26 } from "./hooks/useSvgColor/useSvgColor.js";
213
- import { u as u27 } from "./hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js";
214
- import { u as u28 } from "./hooks/useDataGridPersistence/useDataGridPersistence.js";
215
- import { u as u29 } from "./hooks/usePopoverContainer/usePopoverContainer.js";
216
- import { u as u30 } from "./hooks/useIsVisible/useIsVisible.js";
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 g31 } from "./utils/getComponentUtilityClass.js";
220
- import { g as g32 } from "./utils/getPaletteColor.js";
221
- import { g as g33 } from "./utils/getTypographyStyles.js";
222
- import { g as g34 } from "./utils/getIconColor.js";
223
- import { a as a16, g as g35 } from "./utils/getSizeStyles/getSizeStyles.js";
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 g36, a as a17 } from "./utils/getComponentSlotRoot.js";
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 g37 } from "./utils/getValidDate.js";
228
- import { g as g38 } from "./utils/getNullGuard.js";
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
- C15 as CheckBox,
255
- C as Chip,
256
- C17 as ChipStatusFormatter,
257
- C14 as CircularProgress,
258
- C3 as ColumnBooleanFormatter,
259
- C13 as ColumnChipStatusFormatter,
260
- C4 as ColumnConcatenatedValueFormatter,
261
- C5 as ColumnDateFormatter,
262
- C6 as ColumnIconFormatter,
263
- C7 as ColumnInteractiveCheckFormatter,
264
- C8 as ColumnNestedValueFormatter,
265
- C9 as ColumnPointsFormatter,
266
- C10 as ColumnPriceFormatter,
267
- C11 as ColumnSetCheckFormatter,
268
- C12 as ColumnUncertaintyFormatter,
269
- C16 as ConcatenatedFormatter,
270
- C2 as ContainerFlow,
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
- S11 as SKELETON_SVG_ICON,
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
- g36 as getComponentClasses,
442
+ g37 as getComponentClasses,
416
443
  a17 as getComponentSlotRoot,
417
- g31 as getComponentUtilityClass,
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
- g29 as getFormComponentsDictionary,
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
- g34 as getIconColor,
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
- g38 as getNullGuard,
467
+ g39 as getNullGuard,
441
468
  g27 as getObjectLogsComponentsDictionary,
442
469
  g11 as getPagerComponentsDictionary,
443
- g32 as getPaletteColor,
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
- g35 as getSizeStyles,
450
- g33 as getTypographyStyles,
476
+ g36 as getSizeStyles,
477
+ g29 as getStepperComponentsDictionary,
478
+ g40 as getStepsAndValidationSchema,
479
+ g34 as getTypographyStyles,
451
480
  g13 as getUncertaintyFormat,
452
- g37 as getValidDate,
453
- g30 as getformAddEditDictionary,
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
- u17 as useAppearanceComponentStore,
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
- u23 as useComponentSize,
473
- u16 as useCustomForm,
474
- u28 as useDataGridPersistence,
475
- u27 as useDynamicFilterAndSort,
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
- u18 as useFormAddEdit,
479
- u21 as useFormFocus,
480
- u24 as useFormReadyForUpdate,
507
+ u19 as useFormAddEdit,
508
+ u22 as useFormFocus,
509
+ u25 as useFormReadyForUpdate,
481
510
  u12 as useFormatPeriod,
482
- u22 as useInterval,
483
- u30 as useIsVisible,
484
- u19 as useModal,
485
- u29 as usePopoverContainer,
511
+ u23 as useInterval,
512
+ u31 as useIsVisible,
513
+ u20 as useModal,
514
+ u30 as usePopoverContainer,
486
515
  u13 as usePopupsStore,
487
- u25 as useStateRef,
488
- u26 as useSvgColor,
489
- u20 as useTab,
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,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/components",
3
- "version": "9.3.13",
3
+ "version": "9.3.15-BE091725-beta.1",
4
4
  "license": "UNLICENSED",
5
5
  "description": "M4L Components",
6
6
  "lint-staged": {