@m4l/components 9.1.129 → 9.1.131

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 (88) hide show
  1. package/components/Chip/types.d.ts +2 -2
  2. package/components/DataGrid/formatters/ColumnBooleanFormatter/index.js +2 -1
  3. package/components/DataGrid/formatters/ColumnBooleanFormatter/useColumnBoolean.d.ts +10 -0
  4. package/components/DataGrid/formatters/ColumnBooleanFormatter/useColumnBoolean.js +65 -0
  5. package/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/index.js +2 -1
  6. package/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/types.d.ts +1 -1
  7. package/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/useColumnConcatenatedValue.d.ts +9 -0
  8. package/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/useColumnConcatenatedValue.js +49 -0
  9. package/components/DataGrid/formatters/ColumnDateFormatter/index.js +2 -1
  10. package/components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.d.ts +14 -0
  11. package/components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.js +50 -0
  12. package/components/DataGrid/formatters/ColumnInteractiveCheckFormatter/useColumnInteractiveCheck.d.ts +12 -0
  13. package/components/DataGrid/formatters/ColumnInteractiveCheckFormatter/useColumnInteractiveCheck.js +29 -0
  14. package/components/DataGrid/formatters/ColumnNestedValueFormatter/index.js +1 -1
  15. package/components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.d.ts +10 -0
  16. package/components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.js +37 -0
  17. package/components/DataGrid/formatters/ColumnPointsFormatter/index.js +3 -1
  18. package/components/DataGrid/formatters/ColumnPointsFormatter/useColumnPoints.d.ts +10 -0
  19. package/components/DataGrid/formatters/ColumnPointsFormatter/useColumnPoints.js +35 -0
  20. package/components/DataGrid/formatters/ColumnPriceFormatter/index.js +3 -1
  21. package/components/DataGrid/formatters/ColumnPriceFormatter/useColumnPrice.d.ts +10 -0
  22. package/components/DataGrid/formatters/ColumnPriceFormatter/useColumnPrice.js +48 -0
  23. package/components/DataGrid/formatters/ColumnSetCheckFormatter/useColumnSetCheck.d.ts +11 -0
  24. package/components/DataGrid/formatters/ColumnSetCheckFormatter/useColumnSetCheck.js +32 -0
  25. package/components/DataGrid/formatters/ColumnUncertaintyFormatter/index.js +3 -1
  26. package/components/DataGrid/formatters/ColumnUncertaintyFormatter/useColumnUncertainty.d.ts +11 -0
  27. package/components/DataGrid/formatters/ColumnUncertaintyFormatter/useColumnUncertainty.js +43 -0
  28. package/components/DataGrid/formatters/index.d.ts +9 -0
  29. package/components/DataGrid/helpers/getColumnKey.d.ts +13 -0
  30. package/components/DataGrid/helpers/getColumnKey.js +11 -0
  31. package/components/DataGrid/styles.js +2 -1
  32. package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +3 -0
  33. package/components/DataGrid/tests/ColumnsFormatters.test.d.ts +1 -0
  34. package/components/DataGrid/types.d.ts +1 -0
  35. package/components/DynamicSort/DynamicSort.d.ts +4 -1
  36. package/components/DynamicSort/DynamicSort.styles.js +91 -126
  37. package/components/DynamicSort/constants.d.ts +0 -1
  38. package/components/DynamicSort/constants.js +0 -1
  39. package/components/DynamicSort/icons.d.ts +2 -0
  40. package/components/DynamicSort/icons.js +6 -0
  41. package/components/DynamicSort/slots/DynamicSortSlots.d.ts +23 -43
  42. package/components/DynamicSort/slots/DynamicSortSlots.js +30 -57
  43. package/components/DynamicSort/slots/SlotsEnum.d.ts +2 -9
  44. package/components/DynamicSort/slots/SlotsEnum.js +1 -8
  45. package/components/DynamicSort/store/DynamicSortContext.d.ts +3 -3
  46. package/components/DynamicSort/store/DynamicSortContext.js +10 -4
  47. package/components/DynamicSort/store/DynamicSortStore.d.ts +1 -177
  48. package/components/DynamicSort/store/DynamicSortStore.js +10 -1
  49. package/components/DynamicSort/store/type.d.ts +186 -0
  50. package/components/DynamicSort/store/useDynamicSortStore.d.ts +2 -2
  51. package/components/DynamicSort/subcomponents/AppliedSortChip/AppliedSortChip.d.ts +1 -1
  52. package/components/DynamicSort/subcomponents/AppliedSortChip/AppliedSortChip.js +18 -20
  53. package/components/DynamicSort/subcomponents/AppliedSortChip/useAppliedSortChip.d.ts +2 -2
  54. package/components/DynamicSort/subcomponents/AppliedSortChip/useAppliedSortChip.js +4 -4
  55. package/components/DynamicSort/subcomponents/AppliedSorts/AppliedSorts.d.ts +1 -1
  56. package/components/DynamicSort/subcomponents/AppliedSorts/AppliedSorts.js +14 -2
  57. package/components/DynamicSort/subcomponents/AppliedSorts/useAppliedSorts.d.ts +1 -1
  58. package/components/DynamicSort/subcomponents/DynamicSortBase/DynamicSortBase.d.ts +1 -1
  59. package/components/DynamicSort/subcomponents/DynamicSortBase/DynamicSortBase.js +4 -3
  60. package/components/DynamicSort/subcomponents/DynamicSortBase/useDynamicSortBase.d.ts +2 -1
  61. package/components/DynamicSort/subcomponents/DynamicSortBase/useDynamicSortBase.js +2 -1
  62. package/components/DynamicSort/subcomponents/FieldTypes/DataTypeComponent.d.ts +1 -1
  63. package/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.d.ts +8 -8
  64. package/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.js +11 -14
  65. package/components/DynamicSort/subcomponents/FieldTypes/StringSort/index.js +16 -12
  66. package/components/DynamicSort/subcomponents/FieldTypes/fieldFactory.d.ts +1 -1
  67. package/components/DynamicSort/subcomponents/InputSort/InputSort.d.ts +1 -1
  68. package/components/DynamicSort/subcomponents/InputSort/InputSort.js +8 -10
  69. package/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.js +9 -8
  70. package/components/DynamicSort/subcomponents/PopoverSort/PopoverSort.js +8 -6
  71. package/components/DynamicSort/subcomponents/SortActions/SortActions.js +8 -9
  72. package/components/DynamicSort/tests/DynamicSort.test.d.ts +1 -0
  73. package/components/DynamicSort/types.d.ts +9 -2
  74. package/components/areas/hooks/index.d.ts +1 -0
  75. package/components/formatters/BooleanFormatter/BooleanFormatter.d.ts +5 -1
  76. package/components/formatters/BooleanFormatter/BooleanFormatter.js +23 -17
  77. package/components/formatters/DateFormatter/DateFormatter.d.ts +2 -1
  78. package/components/formatters/DateFormatter/DateFormatter.js +4 -4
  79. package/components/formatters/PriceFormatter/PriceFormatter.js +9 -9
  80. package/components/formatters/index.d.ts +1 -1
  81. package/index.js +92 -72
  82. package/package.json +1 -1
  83. package/vendor.js +3 -3
  84. package/components/DynamicSort/DynamicSort.stories.d.ts +0 -21
  85. package/components/DynamicSort/subcomponents/InputSort/InputSortSkeleton.d.ts +0 -5
  86. package/components/DynamicSort/subcomponents/InputSort/InputSortSkeleton.js +0 -19
  87. package/components/DynamicSort/subcomponents/SortActions/SortActionsSkeleton.d.ts +0 -5
  88. package/components/DynamicSort/subcomponents/SortActions/SortActionsSkeleton.js +0 -12
package/index.js CHANGED
@@ -22,6 +22,7 @@ import { a as a3, A as A4 } from "./components/areas/contexts/AreasContext/index
22
22
  import { u } from "./components/areas/hooks/useDynamicMFParameters/index.js";
23
23
  import { u as u2 } from "./components/areas/hooks/useWindowToolsMF/index.js";
24
24
  import { u as u3 } from "./components/areas/hooks/useSetWindowsTitle/useSetWindowsTitle.js";
25
+ import { u as u4 } from "./components/areas/hooks/useAreas/index.js";
25
26
  import { A as A5, a as a4, L as L2, b as b2, g as g3 } from "./components/areas/dictionary.js";
26
27
  import { R } from "./components/hook-form/RHFAutocomplete/RHFAutocomplete.js";
27
28
  import { g as g4 } from "./components/hook-form/RHFAutocomplete/dictionary.js";
@@ -47,15 +48,15 @@ import { P, R as R17, S as S2, T as T2 } from "./components/hook-form/RHFPeriod/
47
48
  import { R as R18 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
48
49
  import { C } from "./components/Chip/Chip.js";
49
50
  import { B } from "./components/formatters/BooleanFormatter/BooleanFormatter.js";
50
- import { D as D2, u as u4 } from "./components/formatters/DateFormatter/DateFormatter.js";
51
- import { U, g as g7 } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
52
- import { P as P2, g as g8 } from "./components/formatters/PointsFormatter/PointsFormatter.js";
53
- import { C as C2, g as g9 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
51
+ import { D as D2, g as g7 } from "./components/formatters/DateFormatter/DateFormatter.js";
52
+ import { U, g as g8 } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
53
+ import { P as P2, g as g9 } from "./components/formatters/PointsFormatter/PointsFormatter.js";
54
+ import { C as C2, g as g10 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
54
55
  import { P as P3, u as u5 } from "./components/formatters/PeriodFormatter/PeriodFormatter.js";
55
- import { P as P4, g as g10 } from "./components/formatters/PriceFormatter/PriceFormatter.js";
56
- import { g as g11 } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
56
+ import { P as P4, g as g11 } from "./components/formatters/PriceFormatter/PriceFormatter.js";
57
+ import { g as g12 } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
57
58
  import { D as D3 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
58
- import { g as g12 } from "./components/formatters/dictionary.js";
59
+ import { g as g13 } from "./components/formatters/dictionary.js";
59
60
  import { C as C3 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/index.js";
60
61
  import { C as C4 } from "./components/DataGrid/formatters/ColumnPointsFormatter/index.js";
61
62
  import { C as C5 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/index.js";
@@ -66,6 +67,15 @@ import { C as C9 } from "./components/DataGrid/formatters/ColumnPriceFormatter/i
66
67
  import { C as C10 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/index.js";
67
68
  import { C as C11 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/index.js";
68
69
  import { C as C12 } from "./components/DataGrid/formatters/ColumnIconFormatter/index.js";
70
+ import { u as u6 } from "./components/DataGrid/formatters/ColumnBooleanFormatter/useColumnBoolean.js";
71
+ import { u as u7 } from "./components/DataGrid/formatters/ColumnConcatenatedValueFormatter/useColumnConcatenatedValue.js";
72
+ import { u as u8 } from "./components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.js";
73
+ import { u as u9 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.js";
74
+ import { u as u10 } from "./components/DataGrid/formatters/ColumnPriceFormatter/useColumnPrice.js";
75
+ import { u as u11 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/useColumnUncertainty.js";
76
+ import { u as u12 } from "./components/DataGrid/formatters/ColumnPointsFormatter/useColumnPoints.js";
77
+ import { u as u13 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/useColumnInteractiveCheck.js";
78
+ import { u as u14 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/useColumnSetCheck.js";
69
79
  import { a as a5 } from "./components/DynamicFilter/dictionary.js";
70
80
  import { D as D4 } from "./components/DynamicFilter/DynamicFilter.js";
71
81
  import { a as a6 } from "./components/DynamicSort/dictionary.js";
@@ -77,7 +87,7 @@ import { A as A7 } from "./components/CommonActions/components/ActionCancel/Acti
77
87
  import { A as A8 } from "./components/CommonActions/components/ActionIntro/ActionIntro.js";
78
88
  import { A as A9 } from "./components/CommonActions/components/ActionFormCancel/ActionFormCancel.js";
79
89
  import { A as A10 } from "./components/CommonActions/components/ActionFormIntro/ActionFormIntro.js";
80
- import { D as D6, d, g as g13 } from "./components/CommonActions/dictionary.js";
90
+ import { D as D6, d, g as g14 } from "./components/CommonActions/dictionary.js";
81
91
  import { D as D7 } from "./components/DragResizeWindow/DragResizeWindow.js";
82
92
  import { d as d2 } from "./components/DragResizeWindow/classes/index.js";
83
93
  import { G } from "./components/GridLayout/GridLayout.js";
@@ -91,8 +101,8 @@ import { L as L5 } from "./components/LinearProgressIndeterminate/LinearProgress
91
101
  import { I as I3 } from "./components/Image/Image.js";
92
102
  import { L as L6 } from "./components/Loadable/index.js";
93
103
  import { M as M3 } from "./components/ModalDialog/ModalDialog.js";
94
- import { g as g14 } from "./components/modal/dictionary.js";
95
- import { d as d4, g as g15 } from "./components/ModalDialog/dictionary.js";
104
+ import { g as g15 } from "./components/modal/dictionary.js";
105
+ import { d as d4, g as g16 } from "./components/ModalDialog/dictionary.js";
96
106
  import { W as W2 } from "./components/WindowConfirm/WindowConfirm.js";
97
107
  import { w as w2 } from "./components/WindowBase/WindowBase.styles.js";
98
108
  import { W as W3 } from "./components/WindowBase/WindowBase.js";
@@ -102,13 +112,13 @@ import { W as W5 } from "./components/WindowBase/slots/WindowBaseEnum.js";
102
112
  import { a as a7, C as C13, b as b3, H as H2, I as I5, e as e2, L as L7, M as M4, c as c4, P as P6, S as S3, d as d5, T as T3, W as W6 } from "./components/WindowBase/slots/WindowBaseSlots.js";
103
113
  import { H as H3 } from "./components/WindowBase/subcomponents/Header/HeaderWindowBase.js";
104
114
  import { L as L8 } from "./components/LoadingError/LoadingError.js";
105
- import { g as g16 } from "./components/LoadingError/dictionary.js";
115
+ import { g as g17 } from "./components/LoadingError/dictionary.js";
106
116
  import { M as M5 } from "./components/MFLoader/MFLoader.js";
107
- import { g as g17 } from "./components/MFLoader/dictionary.js";
117
+ import { g as g18 } from "./components/MFLoader/dictionary.js";
108
118
  import { N as N2 } from "./components/NoItemSelected/NoItemSelected.js";
109
- import { g as g18 } from "./components/NoItemSelected/dictionary.js";
119
+ import { g as g19 } from "./components/NoItemSelected/dictionary.js";
110
120
  import { O } from "./components/ObjectLogs/index.js";
111
- import { d as d6, g as g19 } from "./components/ObjectLogs/dictionary.js";
121
+ import { d as d6, g as g20 } from "./components/ObjectLogs/dictionary.js";
112
122
  import { P as P7 } from "./components/PaperForm/PaperForm.js";
113
123
  import { P as P8 } from "./components/PDFViewer/PDFViewer.js";
114
124
  import { H as H4 } from "./components/HelmetPage/index.js";
@@ -126,10 +136,10 @@ import { T as T4 } from "./components/ToastContainer/ToastContainer.js";
126
136
  import { T as T5 } from "./components/ToastContainer/subcomponents/ToastMessage/ToastMessage.js";
127
137
  import { S as S6 } from "./components/SideBar/SideBar.js";
128
138
  import { A as A11 } from "./components/AppBar/AppBar.js";
129
- import { g as g20 } from "./components/AppBar/dictionary.js";
139
+ import { g as g21 } from "./components/AppBar/dictionary.js";
130
140
  import { A as A12 } from "./components/AccountPopover/AccountPopover.js";
131
- import { g as g21 } from "./components/AccountPopover/dictionary.js";
132
- import { u as u6 } from "./components/popups/components/PopupsProvider/hooks/usePopupsStore/index.js";
141
+ import { g as g22 } from "./components/AccountPopover/dictionary.js";
142
+ import { u as u15 } from "./components/popups/components/PopupsProvider/hooks/usePopupsStore/index.js";
133
143
  import { P as P11, a as a10 } from "./components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js";
134
144
  import { P as P12 } from "./components/popups/components/PopupsViewer/PopupsViewer.js";
135
145
  import { A as A13 } from "./components/commercial/AppBarCommercial/index.js";
@@ -148,7 +158,7 @@ import { L as L9 } from "./components/mui_extended/LinearProgress/index.js";
148
158
  import { L as L10 } from "./components/mui_extended/LinkWithRoute/index.js";
149
159
  import { L as L11 } from "./components/mui_extended/LoadingButton/LoadingButton.js";
150
160
  import { P as P13 } from "./components/Pager/Pager.js";
151
- import { g as g22 } from "./components/Pager/dicctionary.js";
161
+ import { g as g23 } from "./components/Pager/dicctionary.js";
152
162
  import { T as T7 } from "./components/mui_extended/Tab/Tab.js";
153
163
  import { T as T8 } from "./components/mui_extended/Tooltip/Tooltip.js";
154
164
  import { I as I6 } from "./components/mui_extended/IconButton/IconButton.js";
@@ -174,30 +184,30 @@ import { T as T19 } from "./components/mui_extended/ToggleIconButton/slots/Toggl
174
184
  import { T as T20 } from "./components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.js";
175
185
  import { N as N3 } from "./components/mui_extended/NavLink/NavLink.js";
176
186
  import { a as a12, D as D8, M as M8 } from "./components/areas/contexts/DynamicMFParmsContext/index.js";
177
- import { F as F2, R as R22, u as u7 } from "./components/hook-form/RHFormContext/index.js";
178
- import { g as g23 } from "./components/hook-form/RHFormContext/dictionary.js";
179
- import { u as u8 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
187
+ import { F as F2, R as R22, u as u16 } from "./components/hook-form/RHFormContext/index.js";
188
+ import { g as g24 } from "./components/hook-form/RHFormContext/dictionary.js";
189
+ import { u as u17 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
180
190
  import { A as A16 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
181
191
  import { a as a13, M as M9 } from "./contexts/ModalContext/index.js";
182
- import { u as u9 } from "./hooks/useFormAddEdit/index.js";
183
- import { u as u10 } from "./hooks/useModal/index.js";
184
- import { u as u11 } from "./hooks/useTab/index.js";
185
- import { g as g24 } from "./hooks/useFormAddEdit/dictionary.js";
186
- import { u as u12 } from "./hooks/useFormFocus/index.js";
187
- import { u as u13 } from "./hooks/useInterval/index.js";
188
- import { u as u14 } from "./hooks/useComponentSize/useComponentSize.js";
189
- import { u as u15 } from "./hooks/useFormReadyForUpdate/index.js";
190
- import { u as u16 } from "./hooks/useStateRef/index.js";
192
+ import { u as u18 } from "./hooks/useFormAddEdit/index.js";
193
+ import { u as u19 } from "./hooks/useModal/index.js";
194
+ import { u as u20 } from "./hooks/useTab/index.js";
195
+ import { g as g25 } from "./hooks/useFormAddEdit/dictionary.js";
196
+ import { u as u21 } from "./hooks/useFormFocus/index.js";
197
+ import { u as u22 } from "./hooks/useInterval/index.js";
198
+ import { u as u23 } from "./hooks/useComponentSize/useComponentSize.js";
199
+ import { u as u24 } from "./hooks/useFormReadyForUpdate/index.js";
200
+ import { u as u25 } from "./hooks/useStateRef/index.js";
191
201
  import { a as a14 } from "./hooks/useSvgColor/constants.js";
192
- import { u as u17 } from "./hooks/useSvgColor/useSvgColor.js";
202
+ import { u as u26 } from "./hooks/useSvgColor/useSvgColor.js";
193
203
  import { c as c5 } from "./utils/capitalizeFirstLetter.js";
194
204
  import { i as i2 } from "./utils/isValidDate.js";
195
- import { g as g25 } from "./utils/getComponentUtilityClass.js";
196
- import { g as g26 } from "./utils/getPaletteColor.js";
197
- import { g as g27 } from "./utils/getTypographyStyles.js";
198
- import { g as g28 } from "./utils/getSizeStyles/getSizeStyles.js";
205
+ import { g as g26 } from "./utils/getComponentUtilityClass.js";
206
+ import { g as g27 } from "./utils/getPaletteColor.js";
207
+ import { g as g28 } from "./utils/getTypographyStyles.js";
208
+ import { g as g29 } from "./utils/getSizeStyles/getSizeStyles.js";
199
209
  import { O as O2 } from "./utils/ObjectQueue.js";
200
- import { g as g29, a as a15 } from "./utils/getComponentSlotRoot.js";
210
+ import { g as g30, a as a15 } from "./utils/getComponentSlotRoot.js";
201
211
  import { f } from "./utils/formatDistanceToNow/formatDistanteToNow.js";
202
212
  import { W as W7, c as c6, b as b4, a as a16, e as e3, d as d7, f as f2 } from "./vendor.js";
203
213
  export {
@@ -391,62 +401,72 @@ export {
391
401
  d6 as defaultObjectLogDictionary,
392
402
  d2 as dragResizeWindowClasses,
393
403
  f as formatDistanceToNow,
394
- g21 as getAccountPopoverDictionary,
395
- g20 as getAppBarDictionary,
404
+ g22 as getAccountPopoverDictionary,
405
+ g21 as getAppBarDictionary,
396
406
  b2 as getAreasComponentsDictionary,
397
407
  g3 as getAreasDictionary,
398
- g13 as getCommonActionsDictionary,
399
- g29 as getComponentClasses,
408
+ g14 as getCommonActionsDictionary,
409
+ g30 as getComponentClasses,
400
410
  a15 as getComponentSlotRoot,
401
- g25 as getComponentUtilityClass,
411
+ g26 as getComponentUtilityClass,
402
412
  g as getDataGridComponentsDictionary,
403
413
  g2 as getDataGridRowsFromSet,
404
- g11 as getDistanceToNowFormatterComponentsDictionary,
414
+ g12 as getDistanceToNowFormatterComponentsDictionary,
405
415
  a5 as getDynamicFilterComponentsDictionary,
406
416
  a6 as getDynamicSortComponentsDictionary,
407
- g23 as getFormComponentsDictionary,
408
- g9 as getFormatConcatenated,
409
- u4 as getFormatDate,
410
- g8 as getFormatPoints,
411
- g10 as getFormatPrice,
412
- g12 as getFormattersComponentsDictionary,
413
- g28 as getHeightSizeStyles,
414
- g16 as getLoadingErrorComponentsDictionary,
415
- g17 as getMFLoaderComponentsDictionary,
417
+ g24 as getFormComponentsDictionary,
418
+ g10 as getFormatConcatenated,
419
+ g7 as getFormatDate,
420
+ g9 as getFormatPoints,
421
+ g11 as getFormatPrice,
422
+ g13 as getFormattersComponentsDictionary,
423
+ g29 as getHeightSizeStyles,
424
+ g17 as getLoadingErrorComponentsDictionary,
425
+ g18 as getMFLoaderComponentsDictionary,
416
426
  a8 as getMenuActionsComponentsDictionary,
417
- g15 as getModalDialogComponentsDictionary,
418
- g14 as getModalDictionary,
419
- g18 as getNoItemSelectedComponentsDictionary,
420
- g19 as getObjectLogsComponentsDictionary,
421
- g22 as getPagerComponentsDictionary,
422
- g26 as getPaletteColor,
427
+ g16 as getModalDialogComponentsDictionary,
428
+ g15 as getModalDictionary,
429
+ g19 as getNoItemSelectedComponentsDictionary,
430
+ g20 as getObjectLogsComponentsDictionary,
431
+ g23 as getPagerComponentsDictionary,
432
+ g27 as getPaletteColor,
423
433
  g6 as getPeriodComponetsDictionary,
424
434
  g5 as getRHFAutocompleteAsyncComponentsDictionary,
425
435
  g4 as getRHFAutocompleteComponentsDictionary,
426
- g27 as getTypographyStyles,
427
- g7 as getUncertaintyFormat,
428
- g24 as getformAddEditDictionary,
436
+ g28 as getTypographyStyles,
437
+ g8 as getUncertaintyFormat,
438
+ g25 as getformAddEditDictionary,
429
439
  i as isEqualLayout,
430
440
  k as isEqualLayouts,
431
441
  i2 as isValidDate,
432
442
  r as rhfPeriodStyles,
433
443
  t as toggleButtonStyles,
434
444
  t2 as toggleIconButtonStyles,
435
- u8 as useAppearanceComponentStore,
436
- u14 as useComponentSize,
437
- u7 as useCustomForm,
445
+ u17 as useAppearanceComponentStore,
446
+ u4 as useAreasStore,
447
+ u6 as useColumnBoolean,
448
+ u11 as useColumnCertanity,
449
+ u7 as useColumnConcatenatedValue,
450
+ u8 as useColumnDate,
451
+ u13 as useColumnInteractiveCheck,
452
+ u9 as useColumnNestedValue,
453
+ u12 as useColumnPoints,
454
+ u10 as useColumnPrice,
455
+ u14 as useColumnSetCheck,
456
+ u23 as useComponentSize,
457
+ u16 as useCustomForm,
438
458
  u as useDynamicMFParametersStore,
439
- u9 as useFormAddEdit,
440
- u12 as useFormFocus,
441
- u15 as useFormReadyForUpdate,
459
+ u18 as useFormAddEdit,
460
+ u21 as useFormFocus,
461
+ u24 as useFormReadyForUpdate,
442
462
  u5 as useFormatPeriod,
443
- u13 as useInterval,
444
- u10 as useModal,
445
- u6 as usePopupsStore,
463
+ u22 as useInterval,
464
+ u19 as useModal,
465
+ u15 as usePopupsStore,
446
466
  u3 as useSetWindowsTitle,
447
- u16 as useStateRef,
448
- u17 as useSvgColor,
449
- u11 as useTab,
467
+ u25 as useStateRef,
468
+ u26 as useSvgColor,
469
+ u20 as useTab,
450
470
  u2 as useWindowToolsMF,
451
471
  v2 as varBounce,
452
472
  v3 as varContainer,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/components",
3
- "version": "9.1.129",
3
+ "version": "9.1.131",
4
4
  "license": "UNLICENSED",
5
5
  "lint-staged": {
6
6
  "*.{js,ts,tsx}": "eslint --fix --max-warnings 0"
package/vendor.js CHANGED
@@ -56,7 +56,8 @@ const STORYBOOK_ISOLATION_MODULE_ID = "users_list";
56
56
  const WithContexts = (Story, storyContext) => {
57
57
  const { globals, parameters } = storyContext;
58
58
  const { themeMode, themeColor, deviceType } = globals ?? {};
59
- const { isolationForceSkeleton, isolationComponentsDictionary, loadAreasFromNetwork, loadCookiesFromNetwork } = parameters ?? {};
59
+ const { isolationForceSkeleton, isolationComponentsDictionary, loadAreasFromNetwork, loadCookiesFromNetwork, onAreasLoad = () => {
60
+ } } = parameters ?? {};
60
61
  return /* @__PURE__ */ jsx(
61
62
  MFIsolationApp,
62
63
  {
@@ -74,8 +75,7 @@ const WithContexts = (Story, storyContext) => {
74
75
  isolationForceSkeleton ? "forceSkeleton" : CommonFlags.FLAG_DICTIONARY_LOADED
75
76
  ],
76
77
  privileges: [],
77
- onLoad: () => {
78
- },
78
+ onLoad: onAreasLoad,
79
79
  componentsDictionary: isolationComponentsDictionary,
80
80
  observedDivRef: {},
81
81
  forcedDeviceType: deviceType === "automatic" ? void 0 : deviceType,
@@ -1,21 +0,0 @@
1
- import { Meta, StoryObj } from '@storybook/react';
2
- import { DynamicSort } from './DynamicSort';
3
- declare const meta: Meta<typeof DynamicSort>;
4
- export default meta;
5
- type Story = StoryObj<typeof DynamicSort>;
6
- /**
7
- * Base DynamicSort component
8
- */
9
- export declare const Base: Story;
10
- /**
11
- * DynamicSort in skeleton mode
12
- */
13
- export declare const WithSkeleton: Story;
14
- /**
15
- * DynamicFilter With fixed field
16
- */
17
- export declare const WithFixedField: Story;
18
- /**
19
- * DynamicFilter With props `automatic=true`
20
- */
21
- export declare const WithAutomatic: Story;
@@ -1,5 +0,0 @@
1
- /**
2
- * TODO: Documentar
3
- */
4
- declare function InputFilterSkeleton(): import("react/jsx-runtime").JSX.Element;
5
- export default InputFilterSkeleton;
@@ -1,19 +0,0 @@
1
- import { jsxs, Fragment, jsx } from "react/jsx-runtime";
2
- import { Skeleton } from "@mui/material";
3
- function InputFilterSkeleton() {
4
- return /* @__PURE__ */ jsxs(Fragment, { children: [
5
- /* @__PURE__ */ jsx(
6
- Skeleton,
7
- {
8
- variant: "circular",
9
- width: "16px",
10
- height: "16px",
11
- sx: { minWidth: "16px", minHeight: "16px" }
12
- }
13
- ),
14
- /* @__PURE__ */ jsx(Skeleton, { variant: "text", width: "100%", height: "16px", sx: { minWidth: "80px" } })
15
- ] });
16
- }
17
- export {
18
- InputFilterSkeleton as I
19
- };
@@ -1,5 +0,0 @@
1
- /**
2
- * TODO: Documentar
3
- */
4
- declare function SortActionsSkeleton(): import("react/jsx-runtime").JSX.Element;
5
- export default SortActionsSkeleton;
@@ -1,12 +0,0 @@
1
- import { jsxs, Fragment, jsx } from "react/jsx-runtime";
2
- import { Skeleton } from "@mui/material";
3
- import { w as ActionsSkeletonButtonStyled } from "../../slots/DynamicSortSlots.js";
4
- function SortActionsSkeleton() {
5
- return /* @__PURE__ */ jsxs(Fragment, { children: [
6
- /* @__PURE__ */ jsx(ActionsSkeletonButtonStyled, { ownerState: {}, children: /* @__PURE__ */ jsx(Skeleton, { variant: "circular", width: "16px", height: "16px" }) }),
7
- /* @__PURE__ */ jsx(ActionsSkeletonButtonStyled, { ownerState: {}, children: /* @__PURE__ */ jsx(Skeleton, { variant: "circular", width: "16px", height: "16px" }) })
8
- ] });
9
- }
10
- export {
11
- SortActionsSkeleton as S
12
- };