@m4l/components 9.3.34 → 9.3.35-JT27112025.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/export.d.ts +3 -0
- package/@types/types.d.ts +11 -0
- package/components/DataGrid/Datagrid.styles.js +1 -0
- package/components/DataGrid/contexts/DataGridContext/index.js +39 -268
- package/components/DataGrid/contexts/DataGridContext/types.d.ts +3 -20
- package/components/DataGrid/formatters/ColumnImageFormatter/ImageFormatterCell.d.ts +13 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/ImageFormatterCell.js +33 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/constants.d.ts +6 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/constants.js +6 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/formatter.d.ts +8 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/formatter.js +25 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/index.d.ts +3 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/index.js +1 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/tests/ColumnImageFormatter.test.d.ts +1 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/types.d.ts +44 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/types.js +1 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/useColumnImage.d.ts +9 -0
- package/components/DataGrid/formatters/ColumnImageFormatter/useColumnImage.js +22 -0
- package/components/DataGrid/formatters/index.d.ts +1 -0
- package/components/DataGrid/helpers/getAllViewModes/getAllViewModes.d.ts +19 -0
- package/components/DataGrid/helpers/getAllViewModes/getAllViewModes.js +6 -0
- package/components/DataGrid/helpers/getAllViewModes/getAllViewModes.test.d.ts +1 -0
- package/components/DataGrid/helpers/getAllViewModes/index.d.ts +1 -0
- package/components/DataGrid/helpers/getAllViewModes/index.js +1 -0
- package/components/DataGrid/helpers/getColumnsWidth/getColumnsWidth.d.ts +47 -0
- package/components/DataGrid/helpers/getColumnsWidth/getColumnsWidth.js +32 -0
- package/components/DataGrid/helpers/getColumnsWidth/getColumnsWidth.test.d.ts +1 -0
- package/components/DataGrid/helpers/getColumnsWidth/index.d.ts +1 -0
- package/components/DataGrid/helpers/getColumnsWidth/index.js +1 -0
- package/components/DataGrid/helpers/getIndexRowHeightVariant/getIndexRowHeightVariant.d.ts +24 -0
- package/components/DataGrid/helpers/getIndexRowHeightVariant/getIndexRowHeightVariant.js +12 -0
- package/components/DataGrid/helpers/getIndexRowHeightVariant/getIndexRowHeightVariant.test.d.ts +1 -0
- package/components/DataGrid/helpers/getIndexRowHeightVariant/index.d.ts +1 -0
- package/components/DataGrid/helpers/getIndexRowHeightVariant/index.js +1 -0
- package/components/DataGrid/helpers/getInitialColumnsConfig/getInitialColumnsConfig.d.ts +48 -0
- package/components/DataGrid/helpers/getInitialColumnsConfig/getInitialColumnsConfig.js +35 -0
- package/components/DataGrid/helpers/getInitialColumnsConfig/getInitialColumnsConfig.test.d.ts +1 -0
- package/components/DataGrid/helpers/getInitialColumnsConfig/index.d.ts +1 -0
- package/components/DataGrid/helpers/getInitialColumnsConfig/index.js +1 -0
- package/components/DataGrid/helpers/getViewSpecificConfig/getViewSpecificConfig.d.ts +28 -0
- package/components/DataGrid/helpers/getViewSpecificConfig/getViewSpecificConfig.js +22 -0
- package/components/DataGrid/helpers/getViewSpecificConfig/getViewSpecificConfig.test.d.ts +1 -0
- package/components/DataGrid/helpers/getViewSpecificConfig/index.d.ts +1 -0
- package/components/DataGrid/helpers/getViewSpecificConfig/index.js +1 -0
- package/components/DataGrid/helpers/getViewSuffix/getViewSuffix.d.ts +24 -0
- package/components/DataGrid/helpers/getViewSuffix/getViewSuffix.js +9 -0
- package/components/DataGrid/helpers/getViewSuffix/getViewSuffix.test.d.ts +1 -0
- package/components/DataGrid/helpers/getViewSuffix/index.d.ts +1 -0
- package/components/DataGrid/helpers/getViewSuffix/index.js +1 -0
- package/components/DataGrid/helpers/index.d.ts +12 -0
- package/components/DataGrid/helpers/index.js +1 -0
- package/components/DataGrid/helpers/loadViewConfig/index.d.ts +1 -0
- package/components/DataGrid/helpers/loadViewConfig/index.js +1 -0
- package/components/DataGrid/helpers/loadViewConfig/loadViewConfig.d.ts +23 -0
- package/components/DataGrid/helpers/loadViewConfig/loadViewConfig.js +12 -0
- package/components/DataGrid/helpers/loadViewConfig/loadViewConfig.test.d.ts +1 -0
- package/components/DataGrid/helpers/saveColumnsWidth/index.d.ts +1 -0
- package/components/DataGrid/helpers/saveColumnsWidth/index.js +1 -0
- package/components/DataGrid/helpers/saveColumnsWidth/saveColumnsWidth.d.ts +52 -0
- package/components/DataGrid/helpers/saveColumnsWidth/saveColumnsWidth.js +18 -0
- package/components/DataGrid/helpers/saveColumnsWidth/saveColumnsWidth.test.d.ts +1 -0
- package/components/DataGrid/helpers/saveViewConfig/index.d.ts +1 -0
- package/components/DataGrid/helpers/saveViewConfig/index.js +1 -0
- package/components/DataGrid/helpers/saveViewConfig/saveViewConfig.d.ts +35 -0
- package/components/DataGrid/helpers/saveViewConfig/saveViewConfig.js +15 -0
- package/components/DataGrid/helpers/saveViewConfig/saveViewConfig.test.d.ts +1 -0
- package/components/DataGrid/helpers/saveViewMode/index.d.ts +1 -0
- package/components/DataGrid/helpers/saveViewMode/index.js +1 -0
- package/components/DataGrid/helpers/saveViewMode/saveViewMode.d.ts +33 -0
- package/components/DataGrid/helpers/saveViewMode/saveViewMode.js +13 -0
- package/components/DataGrid/helpers/saveViewMode/saveViewMode.test.d.ts +1 -0
- package/components/DataGrid/hooks/index.d.ts +6 -0
- package/components/DataGrid/hooks/index.js +1 -0
- package/components/DataGrid/hooks/useChangeColumnsConfig/index.d.ts +1 -0
- package/components/DataGrid/hooks/useChangeColumnsConfig/index.js +1 -0
- package/components/DataGrid/hooks/useChangeColumnsConfig/useChangeColumnsConfig.d.ts +9 -0
- package/components/DataGrid/hooks/useChangeColumnsConfig/useChangeColumnsConfig.js +27 -0
- package/components/DataGrid/hooks/useChangeColumnsConfig/useChangeColumnsConfig.test.d.ts +1 -0
- package/components/DataGrid/hooks/useChangeColumnsOrder/index.d.ts +1 -0
- package/components/DataGrid/hooks/useChangeColumnsOrder/index.js +1 -0
- package/components/DataGrid/hooks/useChangeColumnsOrder/useChangeColumnsOrder.d.ts +10 -0
- package/components/DataGrid/hooks/useChangeColumnsOrder/useChangeColumnsOrder.js +34 -0
- package/components/DataGrid/hooks/useChangeColumnsOrder/useChangeColumnsOrder.test.d.ts +1 -0
- package/components/DataGrid/hooks/useColumnsWidth/index.d.ts +1 -0
- package/components/DataGrid/hooks/useColumnsWidth/index.js +1 -0
- package/components/DataGrid/hooks/useColumnsWidth/useColumnsWidth.d.ts +11 -0
- package/components/DataGrid/hooks/useColumnsWidth/useColumnsWidth.js +29 -0
- package/components/DataGrid/hooks/useColumnsWidth/useColumnsWidth.test.d.ts +1 -0
- package/components/DataGrid/hooks/useRowHeight/index.d.ts +1 -0
- package/components/DataGrid/hooks/useRowHeight/index.js +1 -0
- package/components/DataGrid/hooks/useRowHeight/useRowHeight.d.ts +28 -0
- package/components/DataGrid/hooks/useRowHeight/useRowHeight.js +51 -0
- package/components/DataGrid/hooks/useRowHeight/useRowHeight.test.d.ts +1 -0
- package/components/DataGrid/hooks/useViewConfig/index.d.ts +1 -0
- package/components/DataGrid/hooks/useViewConfig/index.js +1 -0
- package/components/DataGrid/hooks/useViewConfig/useViewConfig.d.ts +9 -0
- package/components/DataGrid/hooks/useViewConfig/useViewConfig.js +30 -0
- package/components/DataGrid/hooks/useViewConfig/useViewConfig.test.d.ts +1 -0
- package/components/DataGrid/hooks/useViewMode/index.d.ts +1 -0
- package/components/DataGrid/hooks/useViewMode/index.js +1 -0
- package/components/DataGrid/hooks/useViewMode/useViewMode.d.ts +44 -0
- package/components/DataGrid/hooks/useViewMode/useViewMode.js +48 -0
- package/components/DataGrid/hooks/useViewMode/useViewMode.test.d.ts +1 -0
- package/components/DataGrid/index.d.ts +5 -4
- package/components/DataGrid/subcomponents/Cards/helpers/scrollToCardElement.js +2 -2
- package/components/DataGrid/subcomponents/Cards/index.js +16 -3
- package/components/DataGrid/subcomponents/Cards/subcomponents/CardRow/index.js +1 -0
- package/components/DataGrid/subcomponents/Table/index.js +10 -1
- package/components/DataGrid/tests/helpers/types.d.ts +10 -0
- package/components/DataGrid/types.helpers.d.ts +55 -0
- package/components/DataGrid/types.helpers.js +1 -0
- package/components/DataGrid/types.hooks.d.ts +79 -0
- package/components/formatters/ImageFormatter/ImageFormatter.d.ts +10 -0
- package/components/formatters/ImageFormatter/ImageFormatter.js +72 -0
- package/components/formatters/ImageFormatter/ImageFormatter.styles.d.ts +2 -0
- package/components/formatters/ImageFormatter/ImageFormatter.styles.js +42 -0
- package/components/formatters/ImageFormatter/constants.d.ts +5 -0
- package/components/formatters/ImageFormatter/constants.js +10 -0
- package/components/formatters/ImageFormatter/index.d.ts +2 -0
- package/components/formatters/ImageFormatter/index.js +1 -0
- package/components/formatters/ImageFormatter/slots/ImageFormatterEnum.d.ts +5 -0
- package/components/formatters/ImageFormatter/slots/ImageFormatterEnum.js +9 -0
- package/components/formatters/ImageFormatter/slots/ImageFormatterSlots.d.ts +9 -0
- package/components/formatters/ImageFormatter/slots/ImageFormatterSlots.js +23 -0
- package/components/formatters/ImageFormatter/tests/ImageFormatter.test.d.ts +1 -0
- package/components/formatters/ImageFormatter/types.d.ts +51 -0
- package/components/formatters/ImageFormatter/types.js +1 -0
- package/components/formatters/index.d.ts +1 -0
- package/hooks/useDataGridPersistence/constants.d.ts +1 -0
- package/hooks/useDataGridPersistence/constants.js +4 -2
- package/hooks/useDataGridPersistence/useDataGridPersistence.js +5 -2
- package/index.js +68 -62
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -62,6 +62,8 @@ import { C as C15 } from "./components/DataGrid/formatters/ColumnTagsFormatter/f
|
|
|
62
62
|
import { u as u13 } from "./components/DataGrid/formatters/ColumnTagsFormatter/useColumnTags.js";
|
|
63
63
|
import { C as C16 } from "./components/DataGrid/formatters/ColumnColorFormatter/formatter.js";
|
|
64
64
|
import { u as u14 } from "./components/DataGrid/formatters/ColumnColorFormatter/useColumnColor.js";
|
|
65
|
+
import { u as u15 } from "./components/DataGrid/formatters/ColumnImageFormatter/useColumnImage.js";
|
|
66
|
+
import { C as C17 } from "./components/DataGrid/formatters/ColumnImageFormatter/formatter.js";
|
|
65
67
|
import { D as D3 } from "./components/DragResizeWindowRND/DragResizeWindowRND.js";
|
|
66
68
|
import { d as d2 } from "./components/DragResizeWindowRND/classes/index.js";
|
|
67
69
|
import { W } from "./components/DragResizeWindowRND/constants.js";
|
|
@@ -83,7 +85,7 @@ import { R as R3 } from "./components/extended/React-Json-Viewer/ReactJsonViewer
|
|
|
83
85
|
import { A as A14 } from "./components/mui_extended/Avatar/Avatar.js";
|
|
84
86
|
import { B as B2 } from "./components/mui_extended/BoxIcon/index.js";
|
|
85
87
|
import { B as B3 } from "./components/mui_extended/Breadcrumbs/index.js";
|
|
86
|
-
import { C as
|
|
88
|
+
import { C as C18 } from "./components/mui_extended/CircularProgress/CircularProgress.js";
|
|
87
89
|
import { B as B4 } from "./components/mui_extended/Badge/Badge.js";
|
|
88
90
|
import { L as L3 } from "./components/mui_extended/LinearProgress/index.js";
|
|
89
91
|
import { L as L4 } from "./components/mui_extended/LinkWithRoute/index.js";
|
|
@@ -93,7 +95,7 @@ import { A as A15 } from "./components/mui_extended/Accordion/Accordion.js";
|
|
|
93
95
|
import { T as T3 } from "./components/mui_extended/Tooltip/Tooltip.js";
|
|
94
96
|
import { I as I2 } from "./components/mui_extended/IconButton/IconButton.js";
|
|
95
97
|
import { B as B5 } from "./components/mui_extended/Button/Button.js";
|
|
96
|
-
import { C as
|
|
98
|
+
import { C as C19 } from "./components/mui_extended/CheckBox/CheckBox.js";
|
|
97
99
|
import { I as I3 } from "./components/mui_extended/ImageButton/ImageButton.js";
|
|
98
100
|
import { P as P2 } from "./components/mui_extended/Popover/Popover.js";
|
|
99
101
|
import { S as S4 } from "./components/mui_extended/Select/Select.js";
|
|
@@ -121,15 +123,16 @@ import { B as B6 } from "./components/formatters/BooleanFormatter/BooleanFormatt
|
|
|
121
123
|
import { D as D8, g as g12 } from "./components/formatters/DateFormatter/DateFormatter.js";
|
|
122
124
|
import { U, g as g13 } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
|
|
123
125
|
import { P as P3, g as g14 } from "./components/formatters/PointsFormatter/PointsFormatter.js";
|
|
124
|
-
import { C as
|
|
125
|
-
import { P as P4, u as
|
|
126
|
+
import { C as C20, g as g15 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
|
|
127
|
+
import { P as P4, u as u16 } from "./components/formatters/PeriodFormatter/PeriodFormatter.js";
|
|
126
128
|
import { P as P5, g as g16 } from "./components/formatters/PriceFormatter/PriceFormatter.js";
|
|
127
129
|
import { T as T17 } from "./components/formatters/TagsFormatter/TagsFormatter.js";
|
|
128
|
-
import { C as
|
|
129
|
-
import {
|
|
130
|
+
import { C as C21 } from "./components/formatters/ColorFormatter/ColorFormatter.js";
|
|
131
|
+
import { I as I4 } from "./components/formatters/ImageFormatter/ImageFormatter.js";
|
|
132
|
+
import { C as C22 } from "./components/formatters/ChipStatusFormatter/ChipStatusFormatter.js";
|
|
130
133
|
import { g as g17 } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
|
|
131
134
|
import { D as D9 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
|
|
132
|
-
import { u as
|
|
135
|
+
import { u as u17 } from "./components/formatters/DistanceToNowFormatter/hooks/useDistanceToNowFormatter.js";
|
|
133
136
|
import { g as g18 } from "./components/formatters/dictionary.js";
|
|
134
137
|
import { F as F2 } from "./components/FormContainer/FormContainer.js";
|
|
135
138
|
import { G } from "./components/GridLayout/GridLayout.js";
|
|
@@ -162,10 +165,10 @@ import { N as N3, P as P6, R as R20, S as S7 } from "./components/hook-form/RHFP
|
|
|
162
165
|
import { R as R21 } from "./components/hook-form/RHFNumberInput/RHFNumberInput.js";
|
|
163
166
|
import { R as R22 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
|
|
164
167
|
import { V as V2, b as b4, a as a9 } from "./components/hook-form/RHFormProvider/types.js";
|
|
165
|
-
import { F as F3, R as R23, u as
|
|
168
|
+
import { F as F3, R as R23, u as u18 } from "./components/hook-form/RHFormProvider/RHFormProvider.js";
|
|
166
169
|
import { d as d4, a as a10, b as b5, c as c3 } from "./components/hook-form/RHFormProvider/schema.js";
|
|
167
|
-
import { I as
|
|
168
|
-
import { I as
|
|
170
|
+
import { I as I5 } from "./components/Icon/Icon.js";
|
|
171
|
+
import { I as I6 } from "./components/Image/Image.js";
|
|
169
172
|
import { L as L6 } from "./components/Label/Label.js";
|
|
170
173
|
import { L as L7 } from "./components/LanguagePopover/LanguagePopover.js";
|
|
171
174
|
import { L as L8 } from "./components/LinearProgressIndeterminate/LinearProgressIndeterminate.js";
|
|
@@ -178,7 +181,7 @@ import { M as M4 } from "./components/MFIsolationApp/MFIsolationApp.js";
|
|
|
178
181
|
import { M as M5 } from "./components/MFIsolationAppStorybook/MFIsolationAppStorybook.js";
|
|
179
182
|
import { M as M6 } from "./components/MFLoader/MFLoader.js";
|
|
180
183
|
import { g as g24 } from "./components/MFLoader/dictionary.js";
|
|
181
|
-
import { I as
|
|
184
|
+
import { I as I7 } from "./components/ImageText/ImageText.js";
|
|
182
185
|
import { N as N4 } from "./components/NoItemSelected/NoItemSelected.js";
|
|
183
186
|
import { g as g25 } from "./components/NoItemSelected/dictionary.js";
|
|
184
187
|
import { N as N5 } from "./components/NoItemPrivileges/NoItemPrivileges.js";
|
|
@@ -187,7 +190,7 @@ import { g as g27 } from "./components/ObjectLogs/dictionary.js";
|
|
|
187
190
|
import { O } from "./components/ObjectLogs/ObjectLogs.js";
|
|
188
191
|
import { P as P7 } from "./components/PaperForm/PaperForm.js";
|
|
189
192
|
import { P as P8 } from "./components/PDFViewer/PDFViewer.js";
|
|
190
|
-
import { u as
|
|
193
|
+
import { u as u19 } from "./components/popups/components/PopupsProvider/hooks/usePopupsStore.js";
|
|
191
194
|
import { a as a12, P as P9 } from "./components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js";
|
|
192
195
|
import { P as P10 } from "./components/popups/components/PopupsViewer/PopupsViewer.js";
|
|
193
196
|
import { P as P11 } from "./components/PrintingSystem/PrintingSystem.js";
|
|
@@ -199,8 +202,8 @@ import { T as T19 } from "./components/ToastContainer/subcomponents/ToastMessage
|
|
|
199
202
|
import { T as T20 } from "./components/TabsNavigator/TabsNavigator.js";
|
|
200
203
|
import { g as g28 } from "./components/TabsNavigator/dictionary.js";
|
|
201
204
|
import { W as W2 } from "./components/WindowBase/WindowBase.js";
|
|
202
|
-
import { u as
|
|
203
|
-
import { u as
|
|
205
|
+
import { u as u20 } from "./components/WindowBase/hooks/useWindowToolsMF/index.js";
|
|
206
|
+
import { u as u21, a as a13 } from "./components/WindowBase/hooks/useDynamicMFParameters/index.js";
|
|
204
207
|
import { M as M7, W as W3, a as a14 } from "./components/WindowBase/contexts/WindowToolsMFContext/WindowToolsMFContext.js";
|
|
205
208
|
import { c as c4 } from "./components/WindowBase/contexts/DynamicMFParmsContext/store.js";
|
|
206
209
|
import { D as D10, a as a15, M as M8 } from "./components/WindowBase/contexts/DynamicMFParmsContext/DynamicMFParmsContext.js";
|
|
@@ -209,7 +212,7 @@ import { a as a16, g as g29 } from "./components/ModalDialog/dictionary.js";
|
|
|
209
212
|
import { M as M9 } from "./components/ModalDialog/ModalDialog.js";
|
|
210
213
|
import { S as S10 } from "./components/SettingsLayout/SettingsLayout.js";
|
|
211
214
|
import { P as P13 } from "./components/Pager/Pager.js";
|
|
212
|
-
import { u as
|
|
215
|
+
import { u as u22 } from "./components/Stepper/hooks/useStepper/index.js";
|
|
213
216
|
import { S as S11 } from "./components/Stepper/Stepper.js";
|
|
214
217
|
import { S as S12 } from "./components/Stepper/subcomponents/StepperContent/index.js";
|
|
215
218
|
import { S as S13 } from "./components/Stepper/subcomponents/StepperContent/subcomponents/Step/index.js";
|
|
@@ -223,26 +226,26 @@ import { S as S20 } from "./components/Stepper/subcomponents/StepperButtons/Step
|
|
|
223
226
|
import { e as e2 } from "./components/Stepper/helpers/evaluateVisibilityStepCondition/index.js";
|
|
224
227
|
import { g as g30 } from "./components/Stepper/dictionary.js";
|
|
225
228
|
import { g as g31 } from "./components/hook-form/RHFormProvider/dictionary.js";
|
|
226
|
-
import { u as
|
|
229
|
+
import { u as u23 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
|
|
227
230
|
import { A as A16 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
|
|
228
231
|
import { a as a17, M as M10 } from "./contexts/ModalContext/index.js";
|
|
229
|
-
import { u as
|
|
230
|
-
import { u as
|
|
231
|
-
import { u as
|
|
232
|
+
import { u as u24 } from "./hooks/useFormAddEdit/useFormAddEdit.js";
|
|
233
|
+
import { u as u25 } from "./hooks/useModal/index.js";
|
|
234
|
+
import { u as u26 } from "./hooks/useTab/index.js";
|
|
232
235
|
import { g as g32 } from "./hooks/useFormAddEdit/dictionary.js";
|
|
233
|
-
import { u as
|
|
234
|
-
import { u as
|
|
235
|
-
import { u as
|
|
236
|
-
import { u as
|
|
237
|
-
import { u as
|
|
236
|
+
import { u as u27 } from "./hooks/useFormFocus/index.js";
|
|
237
|
+
import { u as u28 } from "./hooks/useInterval/index.js";
|
|
238
|
+
import { u as u29 } from "./hooks/useComponentSize/useComponentSize.js";
|
|
239
|
+
import { u as u30 } from "./hooks/useFormReadyForUpdate/index.js";
|
|
240
|
+
import { u as u31 } from "./hooks/useStateRef/index.js";
|
|
238
241
|
import { S as S21 } from "./hooks/useSvgColor/constants.js";
|
|
239
|
-
import { u as
|
|
240
|
-
import { u as
|
|
241
|
-
import { u as
|
|
242
|
-
import { u as
|
|
243
|
-
import { u as
|
|
244
|
-
import { u as
|
|
245
|
-
import { u as
|
|
242
|
+
import { u as u32 } from "./hooks/useSvgColor/useSvgColor.js";
|
|
243
|
+
import { u as u33 } from "./hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js";
|
|
244
|
+
import { u as u34 } from "./hooks/useDataGridPersistence/useDataGridPersistence.js";
|
|
245
|
+
import { u as u35 } from "./hooks/usePopoverContainer/usePopoverContainer.js";
|
|
246
|
+
import { u as u36 } from "./hooks/useIsVisible/useIsVisible.js";
|
|
247
|
+
import { u as u37 } from "./hooks/useSizeContainer/index.js";
|
|
248
|
+
import { u as u38 } from "./hooks/useWatchTyped/useTypedWatch.js";
|
|
246
249
|
import { c as c5 } from "./utils/capitalizeFirstLetter.js";
|
|
247
250
|
import { i as i2 } from "./utils/isValidDate.js";
|
|
248
251
|
import { g as g33 } from "./utils/getComponentUtilityClass.js";
|
|
@@ -283,17 +286,18 @@ export {
|
|
|
283
286
|
B3 as Breadcrumbs,
|
|
284
287
|
B5 as Button,
|
|
285
288
|
C as Card,
|
|
286
|
-
|
|
289
|
+
C19 as CheckBox,
|
|
287
290
|
C2 as Chip,
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
+
C22 as ChipStatusFormatter,
|
|
292
|
+
C18 as CircularProgress,
|
|
293
|
+
C21 as ColorFormatter,
|
|
291
294
|
C4 as ColumnBooleanFormatter,
|
|
292
295
|
C14 as ColumnChipStatusFormatter,
|
|
293
296
|
C16 as ColumnColorFormatter,
|
|
294
297
|
C5 as ColumnConcatenatedValueFormatter,
|
|
295
298
|
C6 as ColumnDateFormatter,
|
|
296
299
|
C7 as ColumnIconFormatter,
|
|
300
|
+
C17 as ColumnImageFormatter,
|
|
297
301
|
C8 as ColumnInteractiveCheckFormatter,
|
|
298
302
|
C9 as ColumnNestedValueFormatter,
|
|
299
303
|
C10 as ColumnPointsFormatter,
|
|
@@ -301,7 +305,7 @@ export {
|
|
|
301
305
|
C12 as ColumnSetCheckFormatter,
|
|
302
306
|
C15 as ColumnTagsFormatter,
|
|
303
307
|
C13 as ColumnUncertaintyFormatter,
|
|
304
|
-
|
|
308
|
+
C20 as ConcatenatedFormatter,
|
|
305
309
|
C3 as ContainerFlow,
|
|
306
310
|
b3 as DATAGRID_ROW_HEADER_HEIGHTS,
|
|
307
311
|
a4 as DATAGRID_ROW_HEIGHTS,
|
|
@@ -324,12 +328,13 @@ export {
|
|
|
324
328
|
H as HamburgerMenu,
|
|
325
329
|
H2 as HelmetPage,
|
|
326
330
|
H3 as HelperError,
|
|
327
|
-
|
|
331
|
+
I5 as Icon,
|
|
328
332
|
I2 as IconButton,
|
|
329
333
|
I as IconButtonAnimate,
|
|
330
|
-
|
|
334
|
+
I6 as Image,
|
|
331
335
|
I3 as ImageButton,
|
|
332
|
-
|
|
336
|
+
I4 as ImageFormatter,
|
|
337
|
+
I7 as ImageText,
|
|
333
338
|
L2 as LABEL_FILTER_BUTTON,
|
|
334
339
|
L6 as Label,
|
|
335
340
|
L7 as LanguagePopover,
|
|
@@ -518,7 +523,7 @@ export {
|
|
|
518
523
|
r as rhfPeriodStyles,
|
|
519
524
|
t as toggleButtonStyles,
|
|
520
525
|
t2 as toggleIconButtonStyles,
|
|
521
|
-
|
|
526
|
+
u23 as useAppearanceComponentStore,
|
|
522
527
|
u as useAreasStore,
|
|
523
528
|
u2 as useColumnBoolean,
|
|
524
529
|
u12 as useColumnChipStatus,
|
|
@@ -526,6 +531,7 @@ export {
|
|
|
526
531
|
u3 as useColumnConcatenatedValue,
|
|
527
532
|
u4 as useColumnDate,
|
|
528
533
|
u5 as useColumnIcon,
|
|
534
|
+
u15 as useColumnImage,
|
|
529
535
|
u6 as useColumnInteractiveCheck,
|
|
530
536
|
u7 as useColumnNestedValue,
|
|
531
537
|
u8 as useColumnPoints,
|
|
@@ -533,29 +539,29 @@ export {
|
|
|
533
539
|
u10 as useColumnSetCheck,
|
|
534
540
|
u13 as useColumnTags,
|
|
535
541
|
u11 as useColumnUncertanity,
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
+
u29 as useComponentSize,
|
|
543
|
+
u18 as useCustomForm,
|
|
544
|
+
u34 as useDataGridPersistence,
|
|
545
|
+
u17 as useDistanceToNowFormatter,
|
|
546
|
+
u33 as useDynamicFilterAndSort,
|
|
547
|
+
u21 as useDynamicMFParameters,
|
|
542
548
|
a13 as useDynamicMFParametersStore,
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
549
|
+
u24 as useFormAddEdit,
|
|
550
|
+
u27 as useFormFocus,
|
|
551
|
+
u30 as useFormReadyForUpdate,
|
|
552
|
+
u16 as useFormatPeriod,
|
|
553
|
+
u28 as useInterval,
|
|
554
|
+
u36 as useIsVisible,
|
|
555
|
+
u25 as useModal,
|
|
556
|
+
u35 as usePopoverContainer,
|
|
557
|
+
u19 as usePopupsStore,
|
|
558
|
+
u37 as useSizeContainer,
|
|
559
|
+
u31 as useStateRef,
|
|
560
|
+
u22 as useStepper,
|
|
561
|
+
u32 as useSvgColor,
|
|
562
|
+
u26 as useTab,
|
|
563
|
+
u38 as useWatchTyped,
|
|
564
|
+
u20 as useWindowToolsMF,
|
|
559
565
|
v2 as varBounce,
|
|
560
566
|
v3 as varContainer,
|
|
561
567
|
v as varFade,
|