@m4l/components 9.3.25 → 9.3.26
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/CommonActions/components/ActionFormCancel/ActionFormCancel.js +17 -8
- package/components/CommonActions/components/ActionFormCancel/types.d.ts +9 -0
- package/components/DataGrid/formatters/ColumnIconFormatter/index.d.ts +1 -0
- package/components/DataGrid/index.d.ts +1 -1
- package/components/DataGrid/types.d.ts +2 -0
- package/components/Label/Label.js +1 -1
- package/components/PaperForm/PaperForm.js +1 -1
- package/components/PaperForm/components/Header.js +9 -7
- package/components/PaperForm/styles.js +9 -4
- package/components/PaperForm/types.d.ts +3 -2
- package/components/Stepper/Stepper.styles.js +2 -0
- package/components/Stepper/dictionary.js +0 -1
- package/components/Stepper/subcomponents/StepArea/hooks/useStepArea.d.ts +13 -0
- package/components/Stepper/subcomponents/StepArea/hooks/useStepArea.js +111 -0
- package/components/Stepper/subcomponents/StepArea/hooks/useVisibileSteps.d.ts +8 -0
- package/components/Stepper/subcomponents/StepArea/hooks/useVisibileSteps.js +79 -0
- package/components/Stepper/subcomponents/StepArea/index.js +7 -115
- package/components/Stepper/subcomponents/StepperButtons/StepperCancelButton/index.d.ts +2 -2
- package/components/Stepper/subcomponents/StepperButtons/StepperCancelButton/index.js +3 -53
- package/components/Stepper/subcomponents/StepperButtons/StepperNextButton/index.js +3 -2
- package/components/Stepper/subcomponents/StepperButtons/StepperPrevButton/index.js +3 -2
- package/components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.js +24 -5
- package/components/Stepper/subcomponents/StepperContent/subcomponents/Step/hooks/useIsStepVisible.d.ts +8 -0
- package/components/Stepper/subcomponents/StepperContent/subcomponents/Step/hooks/useIsStepVisible.js +93 -0
- package/components/Stepper/subcomponents/StepperContent/subcomponents/Step/index.js +2 -51
- package/components/Stepper/types.d.ts +4 -0
- package/components/ToastContainer/ToastContainer.js +1 -0
- package/components/ToastContainer/constants.d.ts +1 -1
- package/components/ToastContainer/constants.js +1 -1
- package/components/WindowBase/contexts/WindowToolsMFContext/WindowToolsMFContext.js +47 -3
- package/components/WindowBase/contexts/WindowToolsMFContext/types.d.ts +1 -1
- package/components/WindowBase/subcomponents/Component/index.d.ts +12 -1
- package/components/WindowBase/subcomponents/Component/index.js +56 -2
- package/components/WindowBase/subcomponents/Component/types.d.ts +1 -0
- package/components/WindowBase/types.d.ts +1 -1
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/Window.js +1 -0
- package/components/areas/components/AreasViewer/subcomponents/Area/subcomponents/Window/hooks/useWindow.js +1 -1
- package/components/areas/contexts/AreasContext/store.js +7 -3
- package/components/areas/contexts/AreasContext/types.d.ts +1 -1
- package/components/hook-form/RHFormContext/index.d.ts +1 -1
- package/components/hook-form/RHFormContext/styles.js +2 -1
- package/components/mui_extended/CircularProgress/types.d.ts +1 -1
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/store.js +5 -1
- package/components/popups/components/PopupsProvider/contexts/PopupsContext/types.d.ts +1 -1
- package/components/popups/components/PopupsProvider/hooks/usePopups.d.ts +2 -4
- package/components/popups/components/PopupsProvider/hooks/usePopups.js +19 -7
- package/components/popups/components/PopupsViewer/PopupsViewer.js +1 -1
- package/components/popups/components/PopupsViewer/PopupsViewer.styles.js +1 -1
- package/components/popups/components/PopupsViewer/subcomponents/Popup/Popup.js +32 -21
- package/index.js +62 -60
- package/package.json +1 -1
|
@@ -43,6 +43,10 @@ const usePopups = (popupId) => {
|
|
|
43
43
|
(state) => state.hashPopups[popupId].winType === "component" ? state.hashPopups[popupId].component : void 0,
|
|
44
44
|
shallow
|
|
45
45
|
);
|
|
46
|
+
const componentProps = usePopupsStore(
|
|
47
|
+
(state) => state.hashPopups[popupId].winType === "component" ? state.hashPopups[popupId].componentProps : void 0,
|
|
48
|
+
shallow
|
|
49
|
+
);
|
|
46
50
|
const selectedPopupId = usePopupsStore(
|
|
47
51
|
(state) => state.hashGroups[state.hashPopups[popupId].groupId].selectedPopupId,
|
|
48
52
|
shallow
|
|
@@ -65,16 +69,21 @@ const usePopups = (popupId) => {
|
|
|
65
69
|
setActions: (newActions, newVersion, newBuildTime) => {
|
|
66
70
|
setActions(popupId, newActions, newVersion, newBuildTime);
|
|
67
71
|
},
|
|
72
|
+
/**
|
|
73
|
+
* TODO: Implementar
|
|
74
|
+
*/
|
|
68
75
|
getCookie: () => {
|
|
69
|
-
|
|
76
|
+
return void 0;
|
|
70
77
|
},
|
|
78
|
+
/**
|
|
79
|
+
* TODO: Implementar
|
|
80
|
+
*/
|
|
71
81
|
getCookies: () => {
|
|
72
|
-
|
|
82
|
+
return {};
|
|
73
83
|
},
|
|
74
|
-
setCookie: (
|
|
75
|
-
throw new Error(`setCookie not implemented: ${key}, ${value}`);
|
|
84
|
+
setCookie: (_key, _value) => {
|
|
76
85
|
},
|
|
77
|
-
close: () => close(popupId),
|
|
86
|
+
close: (useFnQueryClose = true) => close(popupId, useFnQueryClose),
|
|
78
87
|
startProgress: () => startProgress(popupId),
|
|
79
88
|
stopProgress: () => stopProgress(popupId),
|
|
80
89
|
setFnQueryClose: (fnQueryClose) => setFnQueryClose(popupId, fnQueryClose),
|
|
@@ -89,7 +98,6 @@ const usePopups = (popupId) => {
|
|
|
89
98
|
}),
|
|
90
99
|
[
|
|
91
100
|
popupId,
|
|
92
|
-
buildTime,
|
|
93
101
|
setActions,
|
|
94
102
|
//getCookie,
|
|
95
103
|
//getCookies,
|
|
@@ -97,7 +105,10 @@ const usePopups = (popupId) => {
|
|
|
97
105
|
close,
|
|
98
106
|
startProgress,
|
|
99
107
|
stopProgress,
|
|
100
|
-
setFnQueryClose
|
|
108
|
+
setFnQueryClose,
|
|
109
|
+
update,
|
|
110
|
+
hide,
|
|
111
|
+
show
|
|
101
112
|
]
|
|
102
113
|
);
|
|
103
114
|
const memoizedActions = useHeaderActionsPopups({
|
|
@@ -112,6 +123,7 @@ const usePopups = (popupId) => {
|
|
|
112
123
|
selected: selectedPopupId === popupId,
|
|
113
124
|
mfProps,
|
|
114
125
|
component,
|
|
126
|
+
componentProps,
|
|
115
127
|
loading,
|
|
116
128
|
status,
|
|
117
129
|
version,
|
|
@@ -33,7 +33,7 @@ const PopupsViewer = (props) => {
|
|
|
33
33
|
return /* @__PURE__ */ jsx(
|
|
34
34
|
CSSTransition,
|
|
35
35
|
{
|
|
36
|
-
timeout: { appear: 0, enter:
|
|
36
|
+
timeout: { appear: 0, enter: 0, exit: 0 },
|
|
37
37
|
nodeRef: popupRefsMap.current[id],
|
|
38
38
|
unmountOnExit: true,
|
|
39
39
|
onEntered: () => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { forwardRef, useRef, useEffect } from "react";
|
|
2
|
+
import { forwardRef, useRef, useEffect, useMemo } from "react";
|
|
3
3
|
import { shallow } from "zustand/shallow";
|
|
4
4
|
import { u as usePopupsStore } from "../../../PopupsProvider/hooks/usePopupsStore.js";
|
|
5
5
|
import { P as PopupDragWindowRootStyled } from "../../slots/popupsViewerSlots.js";
|
|
@@ -9,10 +9,11 @@ import { a as POPUPS_VIEWER_CLASS_NAME } from "../../constants.js";
|
|
|
9
9
|
import { a as getNameDataTestId } from "../../../../../../test/getNameDataTestId.js";
|
|
10
10
|
import { M as MemonizedWindowBaseMicroFrontend } from "../../../../../WindowBase/subcomponents/MicroFrontend/MicroFrontend.js";
|
|
11
11
|
import { W as WindowBaseComponent } from "../../../../../WindowBase/subcomponents/Component/index.js";
|
|
12
|
+
import { d as deepShallow } from "../../../../../../utils/deepShallow.js";
|
|
12
13
|
import { W as WindowBase } from "../../../../../WindowBase/WindowBase.js";
|
|
13
14
|
const Popup = forwardRef((props, ref) => {
|
|
14
15
|
const { popupId, containerElement, containerSize, style, onResizeStart, onResizeStop, onDragStart, onDragStop, loggedUser } = props;
|
|
15
|
-
const popup = usePopupsStore((state) => state.hashPopups[popupId],
|
|
16
|
+
const popup = usePopupsStore((state) => state.hashPopups[popupId], deepShallow);
|
|
16
17
|
const { bringPopupOnFront } = usePopupsStore((state) => state.popupsActions, shallow);
|
|
17
18
|
const { close } = usePopupsStore((state) => state.popupActions, shallow);
|
|
18
19
|
const refHandler = useRef(null);
|
|
@@ -32,6 +33,7 @@ const Popup = forwardRef((props, ref) => {
|
|
|
32
33
|
windowTools,
|
|
33
34
|
mfProps,
|
|
34
35
|
component,
|
|
36
|
+
componentProps,
|
|
35
37
|
//onTouch,
|
|
36
38
|
memoizedActions,
|
|
37
39
|
loading,
|
|
@@ -75,6 +77,33 @@ const Popup = forwardRef((props, ref) => {
|
|
|
75
77
|
refHandler.current?.ensureVisible();
|
|
76
78
|
}
|
|
77
79
|
}, [popup.enforceVisibleCount, popupId]);
|
|
80
|
+
const memoComponent = useMemo(() => {
|
|
81
|
+
if (winType === "microfrontend") {
|
|
82
|
+
return /* @__PURE__ */ jsx(
|
|
83
|
+
MemonizedWindowBaseMicroFrontend,
|
|
84
|
+
{
|
|
85
|
+
emergeType: "popup",
|
|
86
|
+
moduleId,
|
|
87
|
+
dynamicMFStore,
|
|
88
|
+
windowTools,
|
|
89
|
+
loggedUser,
|
|
90
|
+
...mfProps ?? { debugPort: 0, prefix: "" }
|
|
91
|
+
}
|
|
92
|
+
);
|
|
93
|
+
} else {
|
|
94
|
+
return /* @__PURE__ */ jsx(
|
|
95
|
+
WindowBaseComponent,
|
|
96
|
+
{
|
|
97
|
+
id: popupId,
|
|
98
|
+
emergeType: "popup",
|
|
99
|
+
dynamicMFStore,
|
|
100
|
+
windowTools,
|
|
101
|
+
component,
|
|
102
|
+
componentProps
|
|
103
|
+
}
|
|
104
|
+
);
|
|
105
|
+
}
|
|
106
|
+
}, [winType, component, componentProps, moduleId, dynamicMFStore, windowTools, loggedUser, mfProps, popupId]);
|
|
78
107
|
if (!popup) {
|
|
79
108
|
return null;
|
|
80
109
|
}
|
|
@@ -126,25 +155,7 @@ const Popup = forwardRef((props, ref) => {
|
|
|
126
155
|
"root"
|
|
127
156
|
)
|
|
128
157
|
} : {},
|
|
129
|
-
children:
|
|
130
|
-
MemonizedWindowBaseMicroFrontend,
|
|
131
|
-
{
|
|
132
|
-
emergeType: "popup",
|
|
133
|
-
moduleId,
|
|
134
|
-
dynamicMFStore,
|
|
135
|
-
windowTools,
|
|
136
|
-
loggedUser,
|
|
137
|
-
...mfProps ?? { debugPort: 0, prefix: "" }
|
|
138
|
-
}
|
|
139
|
-
) : /* @__PURE__ */ jsx(
|
|
140
|
-
WindowBaseComponent,
|
|
141
|
-
{
|
|
142
|
-
emergeType: "popup",
|
|
143
|
-
dynamicMFStore,
|
|
144
|
-
windowTools,
|
|
145
|
-
component
|
|
146
|
-
}
|
|
147
|
-
)
|
|
158
|
+
children: memoComponent
|
|
148
159
|
}
|
|
149
160
|
)
|
|
150
161
|
}
|
package/index.js
CHANGED
|
@@ -43,22 +43,23 @@ import { u as u3 } from "./components/DataGrid/formatters/ColumnConcatenatedValu
|
|
|
43
43
|
import { C as C6 } from "./components/DataGrid/formatters/ColumnDateFormatter/formatter.js";
|
|
44
44
|
import { u as u4 } from "./components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.js";
|
|
45
45
|
import { C as C7 } from "./components/DataGrid/formatters/ColumnIconFormatter/formatter.js";
|
|
46
|
+
import { u as u5 } from "./components/DataGrid/formatters/ColumnIconFormatter/useColumnIcon.js";
|
|
46
47
|
import { C as C8 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/formatter.js";
|
|
47
|
-
import { u as
|
|
48
|
+
import { u as u6 } from "./components/DataGrid/formatters/ColumnInteractiveCheckFormatter/useColumnInteractiveCheck.js";
|
|
48
49
|
import { C as C9 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/formatter.js";
|
|
49
|
-
import { u as
|
|
50
|
+
import { u as u7 } from "./components/DataGrid/formatters/ColumnNestedValueFormatter/useColumnNestedValue.js";
|
|
50
51
|
import { C as C10 } from "./components/DataGrid/formatters/ColumnPointsFormatter/formatter.js";
|
|
51
|
-
import { u as
|
|
52
|
+
import { u as u8 } from "./components/DataGrid/formatters/ColumnPointsFormatter/useColumnPoints.js";
|
|
52
53
|
import { C as C11 } from "./components/DataGrid/formatters/ColumnPriceFormatter/formatter.js";
|
|
53
|
-
import { u as
|
|
54
|
+
import { u as u9 } from "./components/DataGrid/formatters/ColumnPriceFormatter/useColumnPrice.js";
|
|
54
55
|
import { C as C12 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/formatter.js";
|
|
55
|
-
import { u as
|
|
56
|
+
import { u as u10 } from "./components/DataGrid/formatters/ColumnSetCheckFormatter/useColumnSetCheck.js";
|
|
56
57
|
import { C as C13 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/formatter.js";
|
|
57
|
-
import { u as
|
|
58
|
+
import { u as u11 } from "./components/DataGrid/formatters/ColumnUncertaintyFormatter/useColumnUncertainty.js";
|
|
58
59
|
import { C as C14 } from "./components/DataGrid/formatters/ColumnChipStatusFormatter/formatter.js";
|
|
59
|
-
import { u as
|
|
60
|
+
import { u as u12 } from "./components/DataGrid/formatters/ColumnChipStatusFormatter/useColumnChipStatus.js";
|
|
60
61
|
import { C as C15 } from "./components/DataGrid/formatters/ColumnTagsFormatter/formatter.js";
|
|
61
|
-
import { u as
|
|
62
|
+
import { u as u13 } from "./components/DataGrid/formatters/ColumnTagsFormatter/useColumnTags.js";
|
|
62
63
|
import { D as D3 } from "./components/DragResizeWindowRND/DragResizeWindowRND.js";
|
|
63
64
|
import { d as d2 } from "./components/DragResizeWindowRND/classes/index.js";
|
|
64
65
|
import { W } from "./components/DragResizeWindowRND/constants.js";
|
|
@@ -119,13 +120,13 @@ import { D as D8, g as g12 } from "./components/formatters/DateFormatter/DateFor
|
|
|
119
120
|
import { U, g as g13 } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
|
|
120
121
|
import { P as P3, g as g14 } from "./components/formatters/PointsFormatter/PointsFormatter.js";
|
|
121
122
|
import { C as C18, g as g15 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
|
|
122
|
-
import { P as P4, u as
|
|
123
|
+
import { P as P4, u as u14 } from "./components/formatters/PeriodFormatter/PeriodFormatter.js";
|
|
123
124
|
import { P as P5, g as g16 } from "./components/formatters/PriceFormatter/PriceFormatter.js";
|
|
124
125
|
import { T as T17 } from "./components/formatters/TagsFormatter/TagsFormatter.js";
|
|
125
126
|
import { C as C19 } from "./components/formatters/ChipStatusFormatter/ChipStatusFormatter.js";
|
|
126
127
|
import { g as g17 } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
|
|
127
128
|
import { D as D9 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
|
|
128
|
-
import { u as
|
|
129
|
+
import { u as u15 } from "./components/formatters/DistanceToNowFormatter/hooks/useDistanceToNowFormatter.js";
|
|
129
130
|
import { g as g18 } from "./components/formatters/dictionary.js";
|
|
130
131
|
import { F as F2 } from "./components/FormContainer/FormContainer.js";
|
|
131
132
|
import { G } from "./components/GridLayout/GridLayout.js";
|
|
@@ -179,7 +180,7 @@ import { g as g27 } from "./components/ObjectLogs/dictionary.js";
|
|
|
179
180
|
import { O } from "./components/ObjectLogs/ObjectLogs.js";
|
|
180
181
|
import { P as P7 } from "./components/PaperForm/PaperForm.js";
|
|
181
182
|
import { P as P8 } from "./components/PDFViewer/PDFViewer.js";
|
|
182
|
-
import { u as
|
|
183
|
+
import { u as u16 } from "./components/popups/components/PopupsProvider/hooks/usePopupsStore.js";
|
|
183
184
|
import { a as a10, P as P9 } from "./components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js";
|
|
184
185
|
import { P as P10 } from "./components/popups/components/PopupsViewer/PopupsViewer.js";
|
|
185
186
|
import { P as P11 } from "./components/PrintingSystem/PrintingSystem.js";
|
|
@@ -189,8 +190,8 @@ import { S as S9 } from "./components/SideBar/SideBar.js";
|
|
|
189
190
|
import { T as T18 } from "./components/ToastContainer/ToastContainer.js";
|
|
190
191
|
import { T as T19 } from "./components/ToastContainer/subcomponents/ToastMessage/ToastMessage.js";
|
|
191
192
|
import { W as W2 } from "./components/WindowBase/WindowBase.js";
|
|
192
|
-
import { u as
|
|
193
|
-
import { u as
|
|
193
|
+
import { u as u17 } from "./components/WindowBase/hooks/useWindowToolsMF/index.js";
|
|
194
|
+
import { u as u18, a as a11 } from "./components/WindowBase/hooks/useDynamicMFParameters/index.js";
|
|
194
195
|
import { M as M6, W as W3, a as a12 } from "./components/WindowBase/contexts/WindowToolsMFContext/WindowToolsMFContext.js";
|
|
195
196
|
import { c as c3 } from "./components/WindowBase/contexts/DynamicMFParmsContext/store.js";
|
|
196
197
|
import { D as D10, a as a13, M as M7 } from "./components/WindowBase/contexts/DynamicMFParmsContext/DynamicMFParmsContext.js";
|
|
@@ -199,7 +200,7 @@ import { a as a14, g as g28 } from "./components/ModalDialog/dictionary.js";
|
|
|
199
200
|
import { M as M8 } from "./components/ModalDialog/ModalDialog.js";
|
|
200
201
|
import { S as S10 } from "./components/SettingsLayout/SettingsLayout.js";
|
|
201
202
|
import { P as P13 } from "./components/Pager/Pager.js";
|
|
202
|
-
import { u as
|
|
203
|
+
import { u as u19 } from "./components/Stepper/hooks/useStepper/index.js";
|
|
203
204
|
import { S as S11 } from "./components/Stepper/Stepper.js";
|
|
204
205
|
import { S as S12 } from "./components/Stepper/subcomponents/StepperContent/index.js";
|
|
205
206
|
import { S as S13 } from "./components/Stepper/subcomponents/StepperContent/subcomponents/Step/index.js";
|
|
@@ -212,27 +213,27 @@ import { S as S19 } from "./components/Stepper/subcomponents/StepperButtons/Step
|
|
|
212
213
|
import { S as S20 } from "./components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.js";
|
|
213
214
|
import { e as e2 } from "./components/Stepper/helpers/evaluateVisibilityStepCondition/index.js";
|
|
214
215
|
import { g as g29 } from "./components/Stepper/dictionary.js";
|
|
215
|
-
import { F as F3, R as R23, u as
|
|
216
|
+
import { F as F3, R as R23, u as u20 } from "./components/hook-form/RHFormContext/index.js";
|
|
216
217
|
import { g as g30 } from "./components/hook-form/RHFormContext/dictionary.js";
|
|
217
|
-
import { u as
|
|
218
|
+
import { u as u21 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
|
|
218
219
|
import { A as A16 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
|
|
219
220
|
import { a as a15, M as M9 } from "./contexts/ModalContext/index.js";
|
|
220
|
-
import { u as
|
|
221
|
-
import { u as
|
|
222
|
-
import { u as
|
|
221
|
+
import { u as u22 } from "./hooks/useFormAddEdit/index.js";
|
|
222
|
+
import { u as u23 } from "./hooks/useModal/index.js";
|
|
223
|
+
import { u as u24 } from "./hooks/useTab/index.js";
|
|
223
224
|
import { g as g31 } from "./hooks/useFormAddEdit/dictionary.js";
|
|
224
|
-
import { u as
|
|
225
|
-
import { u as
|
|
226
|
-
import { u as
|
|
227
|
-
import { u as
|
|
228
|
-
import { u as
|
|
225
|
+
import { u as u25 } from "./hooks/useFormFocus/index.js";
|
|
226
|
+
import { u as u26 } from "./hooks/useInterval/index.js";
|
|
227
|
+
import { u as u27 } from "./hooks/useComponentSize/useComponentSize.js";
|
|
228
|
+
import { u as u28 } from "./hooks/useFormReadyForUpdate/index.js";
|
|
229
|
+
import { u as u29 } from "./hooks/useStateRef/index.js";
|
|
229
230
|
import { S as S21 } from "./hooks/useSvgColor/constants.js";
|
|
230
|
-
import { u as
|
|
231
|
-
import { u as
|
|
232
|
-
import { u as
|
|
233
|
-
import { u as
|
|
234
|
-
import { u as
|
|
235
|
-
import { u as
|
|
231
|
+
import { u as u30 } from "./hooks/useSvgColor/useSvgColor.js";
|
|
232
|
+
import { u as u31 } from "./hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js";
|
|
233
|
+
import { u as u32 } from "./hooks/useDataGridPersistence/useDataGridPersistence.js";
|
|
234
|
+
import { u as u33 } from "./hooks/usePopoverContainer/usePopoverContainer.js";
|
|
235
|
+
import { u as u34 } from "./hooks/useIsVisible/useIsVisible.js";
|
|
236
|
+
import { u as u35 } from "./hooks/useSizeContainer/index.js";
|
|
236
237
|
import { c as c4 } from "./utils/capitalizeFirstLetter.js";
|
|
237
238
|
import { i as i2 } from "./utils/isValidDate.js";
|
|
238
239
|
import { g as g32 } from "./utils/getComponentUtilityClass.js";
|
|
@@ -496,41 +497,42 @@ export {
|
|
|
496
497
|
r as rhfPeriodStyles,
|
|
497
498
|
t as toggleButtonStyles,
|
|
498
499
|
t2 as toggleIconButtonStyles,
|
|
499
|
-
|
|
500
|
+
u21 as useAppearanceComponentStore,
|
|
500
501
|
u as useAreasStore,
|
|
501
502
|
u2 as useColumnBoolean,
|
|
502
|
-
|
|
503
|
+
u12 as useColumnChipStatus,
|
|
503
504
|
u3 as useColumnConcatenatedValue,
|
|
504
505
|
u4 as useColumnDate,
|
|
505
|
-
u5 as
|
|
506
|
-
u6 as
|
|
507
|
-
u7 as
|
|
508
|
-
u8 as
|
|
509
|
-
u9 as
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
506
|
+
u5 as useColumnIcon,
|
|
507
|
+
u6 as useColumnInteractiveCheck,
|
|
508
|
+
u7 as useColumnNestedValue,
|
|
509
|
+
u8 as useColumnPoints,
|
|
510
|
+
u9 as useColumnPrice,
|
|
511
|
+
u10 as useColumnSetCheck,
|
|
512
|
+
u13 as useColumnTags,
|
|
513
|
+
u11 as useColumnUncertanity,
|
|
514
|
+
u27 as useComponentSize,
|
|
515
|
+
u20 as useCustomForm,
|
|
516
|
+
u32 as useDataGridPersistence,
|
|
517
|
+
u15 as useDistanceToNowFormatter,
|
|
518
|
+
u31 as useDynamicFilterAndSort,
|
|
519
|
+
u18 as useDynamicMFParameters,
|
|
518
520
|
a11 as useDynamicMFParametersStore,
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
521
|
+
u22 as useFormAddEdit,
|
|
522
|
+
u25 as useFormFocus,
|
|
523
|
+
u28 as useFormReadyForUpdate,
|
|
524
|
+
u14 as useFormatPeriod,
|
|
525
|
+
u26 as useInterval,
|
|
526
|
+
u34 as useIsVisible,
|
|
527
|
+
u23 as useModal,
|
|
528
|
+
u33 as usePopoverContainer,
|
|
529
|
+
u16 as usePopupsStore,
|
|
530
|
+
u35 as useSizeContainer,
|
|
531
|
+
u29 as useStateRef,
|
|
532
|
+
u19 as useStepper,
|
|
533
|
+
u30 as useSvgColor,
|
|
534
|
+
u24 as useTab,
|
|
535
|
+
u17 as useWindowToolsMF,
|
|
534
536
|
v2 as varBounce,
|
|
535
537
|
v3 as varContainer,
|
|
536
538
|
v as varFade,
|