@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.
- package/components/Chip/types.d.ts +2 -2
- package/components/DataGrid/formatters/ColumnBooleanFormatter/index.js +2 -1
- package/components/DataGrid/formatters/ColumnBooleanFormatter/useColumnBoolean.d.ts +10 -0
- package/components/DataGrid/formatters/ColumnBooleanFormatter/useColumnBoolean.js +65 -0
- package/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/index.js +2 -1
- package/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/types.d.ts +1 -1
- package/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/useColumnConcatenatedValue.d.ts +9 -0
- package/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/useColumnConcatenatedValue.js +49 -0
- package/components/DataGrid/formatters/ColumnDateFormatter/index.js +2 -1
- package/components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.d.ts +14 -0
- package/components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.js +50 -0
- package/components/DataGrid/formatters/ColumnInteractiveCheckFormatter/useColumnInteractiveCheck.d.ts +12 -0
- package/components/DataGrid/formatters/ColumnInteractiveCheckFormatter/useColumnInteractiveCheck.js +29 -0
- package/components/DataGrid/formatters/ColumnNestedValueFormatter/index.js +1 -1
- package/components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.d.ts +10 -0
- package/components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.js +37 -0
- package/components/DataGrid/formatters/ColumnPointsFormatter/index.js +3 -1
- package/components/DataGrid/formatters/ColumnPointsFormatter/useColumnPoints.d.ts +10 -0
- package/components/DataGrid/formatters/ColumnPointsFormatter/useColumnPoints.js +35 -0
- package/components/DataGrid/formatters/ColumnPriceFormatter/index.js +3 -1
- package/components/DataGrid/formatters/ColumnPriceFormatter/useColumnPrice.d.ts +10 -0
- package/components/DataGrid/formatters/ColumnPriceFormatter/useColumnPrice.js +48 -0
- package/components/DataGrid/formatters/ColumnSetCheckFormatter/useColumnSetCheck.d.ts +11 -0
- package/components/DataGrid/formatters/ColumnSetCheckFormatter/useColumnSetCheck.js +32 -0
- package/components/DataGrid/formatters/ColumnUncertaintyFormatter/index.js +3 -1
- package/components/DataGrid/formatters/ColumnUncertaintyFormatter/useColumnUncertainty.d.ts +11 -0
- package/components/DataGrid/formatters/ColumnUncertaintyFormatter/useColumnUncertainty.js +43 -0
- package/components/DataGrid/formatters/index.d.ts +9 -0
- package/components/DataGrid/helpers/getColumnKey.d.ts +13 -0
- package/components/DataGrid/helpers/getColumnKey.js +11 -0
- package/components/DataGrid/styles.js +2 -1
- package/components/DataGrid/subcomponents/Table/hooks/useSortColumnsRows.js +3 -0
- package/components/DataGrid/tests/ColumnsFormatters.test.d.ts +1 -0
- package/components/DataGrid/types.d.ts +1 -0
- package/components/DynamicSort/DynamicSort.d.ts +4 -1
- package/components/DynamicSort/DynamicSort.styles.js +91 -126
- package/components/DynamicSort/constants.d.ts +0 -1
- package/components/DynamicSort/constants.js +0 -1
- package/components/DynamicSort/icons.d.ts +2 -0
- package/components/DynamicSort/icons.js +6 -0
- package/components/DynamicSort/slots/DynamicSortSlots.d.ts +23 -43
- package/components/DynamicSort/slots/DynamicSortSlots.js +30 -57
- package/components/DynamicSort/slots/SlotsEnum.d.ts +2 -9
- package/components/DynamicSort/slots/SlotsEnum.js +1 -8
- package/components/DynamicSort/store/DynamicSortContext.d.ts +3 -3
- package/components/DynamicSort/store/DynamicSortContext.js +10 -4
- package/components/DynamicSort/store/DynamicSortStore.d.ts +1 -177
- package/components/DynamicSort/store/DynamicSortStore.js +10 -1
- package/components/DynamicSort/store/type.d.ts +186 -0
- package/components/DynamicSort/store/useDynamicSortStore.d.ts +2 -2
- package/components/DynamicSort/subcomponents/AppliedSortChip/AppliedSortChip.d.ts +1 -1
- package/components/DynamicSort/subcomponents/AppliedSortChip/AppliedSortChip.js +18 -20
- package/components/DynamicSort/subcomponents/AppliedSortChip/useAppliedSortChip.d.ts +2 -2
- package/components/DynamicSort/subcomponents/AppliedSortChip/useAppliedSortChip.js +4 -4
- package/components/DynamicSort/subcomponents/AppliedSorts/AppliedSorts.d.ts +1 -1
- package/components/DynamicSort/subcomponents/AppliedSorts/AppliedSorts.js +14 -2
- package/components/DynamicSort/subcomponents/AppliedSorts/useAppliedSorts.d.ts +1 -1
- package/components/DynamicSort/subcomponents/DynamicSortBase/DynamicSortBase.d.ts +1 -1
- package/components/DynamicSort/subcomponents/DynamicSortBase/DynamicSortBase.js +4 -3
- package/components/DynamicSort/subcomponents/DynamicSortBase/useDynamicSortBase.d.ts +2 -1
- package/components/DynamicSort/subcomponents/DynamicSortBase/useDynamicSortBase.js +2 -1
- package/components/DynamicSort/subcomponents/FieldTypes/DataTypeComponent.d.ts +1 -1
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.d.ts +8 -8
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/helpers.js +11 -14
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/index.js +16 -12
- package/components/DynamicSort/subcomponents/FieldTypes/fieldFactory.d.ts +1 -1
- package/components/DynamicSort/subcomponents/InputSort/InputSort.d.ts +1 -1
- package/components/DynamicSort/subcomponents/InputSort/InputSort.js +8 -10
- package/components/DynamicSort/subcomponents/PopoverMenuFields/PopoverMenuFields.js +9 -8
- package/components/DynamicSort/subcomponents/PopoverSort/PopoverSort.js +8 -6
- package/components/DynamicSort/subcomponents/SortActions/SortActions.js +8 -9
- package/components/DynamicSort/tests/DynamicSort.test.d.ts +1 -0
- package/components/DynamicSort/types.d.ts +9 -2
- package/components/areas/hooks/index.d.ts +1 -0
- package/components/formatters/BooleanFormatter/BooleanFormatter.d.ts +5 -1
- package/components/formatters/BooleanFormatter/BooleanFormatter.js +23 -17
- package/components/formatters/DateFormatter/DateFormatter.d.ts +2 -1
- package/components/formatters/DateFormatter/DateFormatter.js +4 -4
- package/components/formatters/PriceFormatter/PriceFormatter.js +9 -9
- package/components/formatters/index.d.ts +1 -1
- package/index.js +92 -72
- package/package.json +1 -1
- package/vendor.js +3 -3
- package/components/DynamicSort/DynamicSort.stories.d.ts +0 -21
- package/components/DynamicSort/subcomponents/InputSort/InputSortSkeleton.d.ts +0 -5
- package/components/DynamicSort/subcomponents/InputSort/InputSortSkeleton.js +0 -19
- package/components/DynamicSort/subcomponents/SortActions/SortActionsSkeleton.d.ts +0 -5
- 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,
|
|
51
|
-
import { U, g as
|
|
52
|
-
import { P as P2, g as
|
|
53
|
-
import { C as C2, g as
|
|
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
|
|
56
|
-
import { g as
|
|
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
|
|
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
|
|
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
|
|
95
|
-
import { d as d4, g as
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
132
|
-
import { u as
|
|
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
|
|
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
|
|
178
|
-
import { g as
|
|
179
|
-
import { u as
|
|
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
|
|
183
|
-
import { u as
|
|
184
|
-
import { u as
|
|
185
|
-
import { g as
|
|
186
|
-
import { u as
|
|
187
|
-
import { u as
|
|
188
|
-
import { u as
|
|
189
|
-
import { u as
|
|
190
|
-
import { u as
|
|
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
|
|
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
|
|
196
|
-
import { g as
|
|
197
|
-
import { g as
|
|
198
|
-
import { g as
|
|
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
|
|
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
|
-
|
|
395
|
-
|
|
404
|
+
g22 as getAccountPopoverDictionary,
|
|
405
|
+
g21 as getAppBarDictionary,
|
|
396
406
|
b2 as getAreasComponentsDictionary,
|
|
397
407
|
g3 as getAreasDictionary,
|
|
398
|
-
|
|
399
|
-
|
|
408
|
+
g14 as getCommonActionsDictionary,
|
|
409
|
+
g30 as getComponentClasses,
|
|
400
410
|
a15 as getComponentSlotRoot,
|
|
401
|
-
|
|
411
|
+
g26 as getComponentUtilityClass,
|
|
402
412
|
g as getDataGridComponentsDictionary,
|
|
403
413
|
g2 as getDataGridRowsFromSet,
|
|
404
|
-
|
|
414
|
+
g12 as getDistanceToNowFormatterComponentsDictionary,
|
|
405
415
|
a5 as getDynamicFilterComponentsDictionary,
|
|
406
416
|
a6 as getDynamicSortComponentsDictionary,
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
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
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
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
|
-
|
|
427
|
-
|
|
428
|
-
|
|
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
|
-
|
|
436
|
-
|
|
437
|
-
|
|
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
|
-
|
|
440
|
-
|
|
441
|
-
|
|
459
|
+
u18 as useFormAddEdit,
|
|
460
|
+
u21 as useFormFocus,
|
|
461
|
+
u24 as useFormReadyForUpdate,
|
|
442
462
|
u5 as useFormatPeriod,
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
463
|
+
u22 as useInterval,
|
|
464
|
+
u19 as useModal,
|
|
465
|
+
u15 as usePopupsStore,
|
|
446
466
|
u3 as useSetWindowsTitle,
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
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
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
|
|
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,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,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
|
-
};
|