@m4l/components 9.33.1 → 9.33.2-beta-feature-731-code-editor.0
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/types.d.ts +11 -0
- package/components/MFIsolationApp/MFIsolationApp.d.ts.map +1 -1
- package/components/MFIsolationApp/MFIsolationApp.js +85 -81
- package/components/MFIsolationApp/subcomponents/ThemeSettingsHostToolsBridge/ThemeSettingsHostToolsBridge.d.ts +5 -0
- package/components/MFIsolationApp/subcomponents/ThemeSettingsHostToolsBridge/ThemeSettingsHostToolsBridge.d.ts.map +1 -0
- package/components/MFIsolationApp/subcomponents/ThemeSettingsHostToolsBridge/ThemeSettingsHostToolsBridge.js +14 -0
- package/components/MFIsolationApp/subcomponents/ThemeSettingsHostToolsBridge/index.d.ts +2 -0
- package/components/MFIsolationApp/subcomponents/ThemeSettingsHostToolsBridge/index.d.ts.map +1 -0
- package/components/extended/ReactSimpleCodeEditor/CodeEditor.d.ts +6 -0
- package/components/extended/ReactSimpleCodeEditor/CodeEditor.d.ts.map +1 -0
- package/components/extended/ReactSimpleCodeEditor/CodeEditor.js +380 -0
- package/components/extended/ReactSimpleCodeEditor/CodeEditor.styles.d.ts +3 -0
- package/components/extended/ReactSimpleCodeEditor/CodeEditor.styles.d.ts.map +1 -0
- package/components/extended/ReactSimpleCodeEditor/CodeEditor.styles.js +344 -0
- package/components/extended/ReactSimpleCodeEditor/constants.d.ts +83 -0
- package/components/extended/ReactSimpleCodeEditor/constants.d.ts.map +1 -0
- package/components/extended/ReactSimpleCodeEditor/constants.js +149 -0
- package/components/extended/ReactSimpleCodeEditor/dictionary.d.ts +12 -0
- package/components/extended/ReactSimpleCodeEditor/dictionary.d.ts.map +1 -0
- package/components/extended/ReactSimpleCodeEditor/dictionary.js +8 -0
- package/components/extended/ReactSimpleCodeEditor/helpers/highlighting.d.ts +58 -0
- package/components/extended/ReactSimpleCodeEditor/helpers/highlighting.d.ts.map +1 -0
- package/components/extended/ReactSimpleCodeEditor/helpers/highlighting.js +1063 -0
- package/components/extended/ReactSimpleCodeEditor/helpers/languageIcon.d.ts +6 -0
- package/components/extended/ReactSimpleCodeEditor/helpers/languageIcon.d.ts.map +1 -0
- package/components/extended/ReactSimpleCodeEditor/helpers/languageIcon.js +7 -0
- package/components/extended/ReactSimpleCodeEditor/helpers/resolveEditorComponent.d.ts +6 -0
- package/components/extended/ReactSimpleCodeEditor/helpers/resolveEditorComponent.d.ts.map +1 -0
- package/components/extended/ReactSimpleCodeEditor/helpers/resolveEditorComponent.js +9 -0
- package/components/extended/ReactSimpleCodeEditor/index.d.ts +4 -0
- package/components/extended/ReactSimpleCodeEditor/index.d.ts.map +1 -0
- package/components/extended/ReactSimpleCodeEditor/slots/CodeEditorEnum.d.ts +20 -0
- package/components/extended/ReactSimpleCodeEditor/slots/CodeEditorEnum.d.ts.map +1 -0
- package/components/extended/ReactSimpleCodeEditor/slots/CodeEditorEnum.js +4 -0
- package/components/extended/ReactSimpleCodeEditor/slots/CodeEditorSlots.d.ts +90 -0
- package/components/extended/ReactSimpleCodeEditor/slots/CodeEditorSlots.d.ts.map +1 -0
- package/components/extended/ReactSimpleCodeEditor/slots/CodeEditorSlots.js +73 -0
- package/components/extended/ReactSimpleCodeEditor/slots/index.d.ts +3 -0
- package/components/extended/ReactSimpleCodeEditor/slots/index.d.ts.map +1 -0
- package/components/extended/ReactSimpleCodeEditor/types.d.ts +460 -0
- package/components/extended/ReactSimpleCodeEditor/types.d.ts.map +1 -0
- package/components/extended/index.d.ts +1 -0
- package/components/extended/index.d.ts.map +1 -1
- package/components/hook-form/RHFCodeEditor/RHFCodeEditor.d.ts +7 -0
- package/components/hook-form/RHFCodeEditor/RHFCodeEditor.d.ts.map +1 -0
- package/components/hook-form/RHFCodeEditor/RHFCodeEditor.js +6 -0
- package/components/hook-form/RHFCodeEditor/index.d.ts +3 -0
- package/components/hook-form/RHFCodeEditor/index.d.ts.map +1 -0
- package/components/hook-form/index.d.ts +1 -0
- package/components/hook-form/index.d.ts.map +1 -1
- package/index.js +565 -552
- package/package.json +9 -6
package/index.js
CHANGED
|
@@ -4,20 +4,20 @@ import { getAccountPopoverDictionary as a } from "./components/AccountPopover/di
|
|
|
4
4
|
import { ActionsGroup as i } from "./components/ActionsGroup/ActionsGroup.js";
|
|
5
5
|
import { IconButtonAnimate as f } from "./components/animate/IconButtonAnimate/index.js";
|
|
6
6
|
import { MotionContainer as l } from "./components/animate/MotionContainer/index.js";
|
|
7
|
-
import { MotionLazyContainer as
|
|
8
|
-
import { LoadingScreen as
|
|
7
|
+
import { MotionLazyContainer as C } from "./components/animate/MotionLazyContainer/index.js";
|
|
8
|
+
import { LoadingScreen as d } from "./components/animate/LoadingScreen/index.js";
|
|
9
9
|
import { AnimatedScroll as P } from "./components/animate/AnimatedScroll/animatedScroll.js";
|
|
10
|
-
import { varFade as
|
|
10
|
+
import { varFade as T } from "./components/animate/variants/fade.js";
|
|
11
11
|
import { varBounce as D } from "./components/animate/variants/bounce.js";
|
|
12
12
|
import { varContainer as S } from "./components/animate/variants/container.js";
|
|
13
|
-
import { varTranEnter as
|
|
13
|
+
import { varTranEnter as y, varTranExit as I, varTranHover as _ } from "./components/animate/variants/transition.js";
|
|
14
14
|
import { AppBar as N } from "./components/AppBar/AppBar.js";
|
|
15
|
-
import { getAppBarDictionary as
|
|
15
|
+
import { getAppBarDictionary as L } from "./components/AppBar/dictionary.js";
|
|
16
16
|
import { AreasAdmin as v } from "./components/areas/components/AreasAdmin/AreasAdmin.js";
|
|
17
17
|
import { AreasViewer as b } from "./components/areas/components/AreasViewer/AreasViewer.js";
|
|
18
18
|
import { AreasContext as k, AreasProvider as h } from "./components/areas/contexts/AreasContext/index.js";
|
|
19
19
|
import { useAreasHasExpandedModule as w, useAreasStore as Y } from "./components/areas/hooks/useAreas/index.js";
|
|
20
|
-
import { AREAS_DICCTIONARY as
|
|
20
|
+
import { AREAS_DICCTIONARY as U, AREAS_DICTIONARY_ID as W, LABEL_FILTER_BUTTON as K, getAreasComponentsDictionary as j, getAreasDictionary as J } from "./components/areas/dictionary.js";
|
|
21
21
|
import { BaseModule as Q } from "./components/BaseModule/BaseModule.js";
|
|
22
22
|
import { Card as Z } from "./components/Card/Card.js";
|
|
23
23
|
import { CheckableList as oo } from "./components/CheckableList/CheckableList.js";
|
|
@@ -27,20 +27,20 @@ import { ColorFieldPicker as ao } from "./components/ColorPicker/ColorFieldPicke
|
|
|
27
27
|
import { ColorPicker as io, ColorPicker as xo } from "./components/ColorPicker/ColorPicker.js";
|
|
28
28
|
import { AppBarComercial as so } from "./components/commercial/AppBarCommercial/index.js";
|
|
29
29
|
import { HamburgerMenu as uo } from "./components/commercial/HamburgerMenu/HamburgerMenu.js";
|
|
30
|
-
import { TopBar as
|
|
30
|
+
import { TopBar as co } from "./components/commercial/TopBar/TopBar.js";
|
|
31
31
|
import { SectionCommercial as Po } from "./components/commercial/SectionCommercial/index.js";
|
|
32
|
-
import { ActionsContainer as
|
|
32
|
+
import { ActionsContainer as To } from "./components/CommonActions/components/ActionsContainer/ActionsContainer.js";
|
|
33
33
|
import { ActionCancel as Do } from "./components/CommonActions/components/ActionCancel/ActionCancel.js";
|
|
34
34
|
import { ActionIntro as So } from "./components/CommonActions/components/ActionIntro/ActionIntro.js";
|
|
35
|
-
import { ActionFormCancel as
|
|
35
|
+
import { ActionFormCancel as yo } from "./components/CommonActions/components/ActionFormCancel/ActionFormCancel.js";
|
|
36
36
|
import { ActionFormIntro as _o } from "./components/CommonActions/components/ActionFormIntro/ActionFormIntro.js";
|
|
37
37
|
import { ActionFormSubmitProgrammatic as No } from "./components/CommonActions/components/ActionFormSubmitProgrammatic/ActionFormSubmitProgrammatic.js";
|
|
38
|
-
import { useWindowCloseGuard as
|
|
38
|
+
import { useWindowCloseGuard as Lo } from "./hooks/useWindowCloseGuard/index.js";
|
|
39
39
|
import { DICTIONARY as vo, defaultCommonActionsDictionary as Bo, getCommonActionsDictionary as bo } from "./components/CommonActions/dictionary.js";
|
|
40
40
|
import { ContainerFlow as ko } from "./components/ContainerFlow/ContainerFlow.js";
|
|
41
41
|
import { DataGrid as Vo } from "./components/datagrids/components/DataGridMain/DataGridMain.js";
|
|
42
42
|
import { TreeDataGrid as Yo } from "./components/datagrids/components/TreeDataGrid/TreeDataGrid.js";
|
|
43
|
-
import { getDataGridComponentsDictionary as
|
|
43
|
+
import { getDataGridComponentsDictionary as Uo } from "./components/datagrids/dictionary.js";
|
|
44
44
|
import { NumberEditor as Ko, TextEditor as jo } from "./components/datagrids/subcomponents/editors/TextEditor/TextEditor.js";
|
|
45
45
|
import { getDataGridRowsFromSet as qo } from "./components/datagrids/helpers/shared/getDataGridRowsFromSet/getDataGridRowsFromSet.js";
|
|
46
46
|
import { DATAGRID_ROW_HEADER_HEIGHTS as Xo, DATAGRID_ROW_HEIGHTS as Zo, DATAGRID_SEMANTIC_WIDTHS as $o } from "./components/datagrids/constants.js";
|
|
@@ -51,22 +51,22 @@ import { ColumnConcatenatedValuesFormatter as nr } from "./components/datagrids/
|
|
|
51
51
|
import { ColumnConcatenatedValuesGroupFormatter as xr } from "./components/datagrids/formatters/ColumnConcatenatedValuesFormatter/ColumnConcatenatedValuesGroupFormatter.js";
|
|
52
52
|
import { useColumnConcatenatedValues as sr } from "./components/datagrids/formatters/ColumnConcatenatedValuesFormatter/useColumnConcatenatedValues.js";
|
|
53
53
|
import { ColumnDateFormatter as ur } from "./components/datagrids/formatters/ColumnDateFormatter/formatter.js";
|
|
54
|
-
import { ColumnDateGroupFormatter as
|
|
55
|
-
import { useColumnDate as
|
|
54
|
+
import { ColumnDateGroupFormatter as cr } from "./components/datagrids/formatters/ColumnDateFormatter/ColumnDateGroupFormatter.js";
|
|
55
|
+
import { useColumnDate as Fr } from "./components/datagrids/formatters/ColumnDateFormatter/useColumnDate.js";
|
|
56
56
|
import { ColumnIconFormatter as gr } from "./components/datagrids/formatters/ColumnIconFormatter/formatter.js";
|
|
57
|
-
import { ColumnIconGroupFormatter as
|
|
57
|
+
import { ColumnIconGroupFormatter as Rr } from "./components/datagrids/formatters/ColumnIconFormatter/ColumnIconGroupFormatter.js";
|
|
58
58
|
import { useColumnIcon as Ar } from "./components/datagrids/formatters/ColumnIconFormatter/useColumnIcon.js";
|
|
59
|
-
import { ColumnInteractiveCheckFormatter as
|
|
60
|
-
import { useColumnInteractiveCheck as
|
|
59
|
+
import { ColumnInteractiveCheckFormatter as Er } from "./components/datagrids/formatters/ColumnInteractiveCheckFormatter/formatter.js";
|
|
60
|
+
import { useColumnInteractiveCheck as Ir } from "./components/datagrids/formatters/ColumnInteractiveCheckFormatter/useColumnInteractiveCheck.js";
|
|
61
61
|
import { ColumnNestedValueFormatter as Or } from "./components/datagrids/formatters/ColumnNestedValueFormatter/formatter.js";
|
|
62
62
|
import { ColumnNestedValueGroupFormatter as Mr } from "./components/datagrids/formatters/ColumnNestedValueFormatter/ColumnNestedValueGroupFormatter.js";
|
|
63
|
-
import { useColumnNestedValue as
|
|
63
|
+
import { useColumnNestedValue as Hr } from "./components/datagrids/formatters/ColumnNestedValueFormatter/useColumnNestedValue.js";
|
|
64
64
|
import { ColumnPointsFormatter as Br } from "./components/datagrids/formatters/ColumnPointsFormatter/formatter.js";
|
|
65
65
|
import { ColumnPointsGroupFormatter as Gr } from "./components/datagrids/formatters/ColumnPointsFormatter/ColumnPointsGroupFormatter.js";
|
|
66
66
|
import { useColumnPoints as hr } from "./components/datagrids/formatters/ColumnPointsFormatter/useColumnPoints.js";
|
|
67
67
|
import { ColumnPriceFormatter as wr } from "./components/datagrids/formatters/ColumnPriceFormatter/formatter.js";
|
|
68
68
|
import { ColumnPriceGroupFormatter as zr } from "./components/datagrids/formatters/ColumnPriceFormatter/ColumnPriceGroupFormatter.js";
|
|
69
|
-
import { useColumnPrice as
|
|
69
|
+
import { useColumnPrice as Wr } from "./components/datagrids/formatters/ColumnPriceFormatter/useColumnPrice.js";
|
|
70
70
|
import { ColumnSetCheckFormatter as jr } from "./components/datagrids/formatters/ColumnSetCheckFormatter/formatter.js";
|
|
71
71
|
import { useColumnSetCheck as qr } from "./components/datagrids/formatters/ColumnSetCheckFormatter/useColumnSetCheck.js";
|
|
72
72
|
import { ColumnUncertaintyFormatter as Xr } from "./components/datagrids/formatters/ColumnUncertaintyFormatter/formatter.js";
|
|
@@ -78,21 +78,21 @@ import { useColumnChipStatus as ne } from "./components/datagrids/formatters/Col
|
|
|
78
78
|
import { ColumnTagsFormatter as xe } from "./components/datagrids/formatters/ColumnTagsFormatter/formatter.js";
|
|
79
79
|
import { ColumnTagsGroupFormatter as se } from "./components/datagrids/formatters/ColumnTagsFormatter/ColumnTagsGroupFormatter.js";
|
|
80
80
|
import { useColumnTags as ue } from "./components/datagrids/formatters/ColumnTagsFormatter/useColumnTags.js";
|
|
81
|
-
import { ColumnColorFormatter as
|
|
82
|
-
import { ColumnColorGroupFormatter as
|
|
81
|
+
import { ColumnColorFormatter as ce } from "./components/datagrids/formatters/ColumnColorFormatter/formatter.js";
|
|
82
|
+
import { ColumnColorGroupFormatter as Fe } from "./components/datagrids/formatters/ColumnColorFormatter/ColumnColorGroupFormatter.js";
|
|
83
83
|
import { useColumnColor as ge } from "./components/datagrids/formatters/ColumnColorFormatter/useColumnColor.js";
|
|
84
|
-
import { useColumnImage as
|
|
84
|
+
import { useColumnImage as Re } from "./components/datagrids/formatters/ColumnImageFormatter/useColumnImage.js";
|
|
85
85
|
import { ColumnImageFormatter as Ae } from "./components/datagrids/formatters/ColumnImageFormatter/formatter.js";
|
|
86
|
-
import { ColumnImageGroupFormatter as
|
|
87
|
-
import { DaysOfWeekPicker as
|
|
86
|
+
import { ColumnImageGroupFormatter as Ee } from "./components/datagrids/formatters/ColumnImageFormatter/ColumnImageGroupFormatter.js";
|
|
87
|
+
import { DaysOfWeekPicker as Ie } from "./components/DaysOfWeekPicker/DaysOfWeekPicker.js";
|
|
88
88
|
import { getDaysOfWeekPickerDictionary as Oe } from "./components/DaysOfWeekPicker/dictionary.js";
|
|
89
89
|
import { DragResizeWindowRND as Me } from "./components/DragResizeWindowRND/DragResizeWindowRND.js";
|
|
90
|
-
import { dragResizeWindowRNDClasses as
|
|
90
|
+
import { dragResizeWindowRNDClasses as He } from "./components/DragResizeWindowRND/classes/index.js";
|
|
91
91
|
import { WINDOW_SIZES as Be } from "./components/DragResizeWindowRND/constants.js";
|
|
92
92
|
import { DaysOfMonthPicker as Ge } from "./components/DaysOfMonthPicker/DaysOfMonthPicker.js";
|
|
93
93
|
import { DateRangeCalendarPicker as he } from "./components/DateRangeCalendarPicker/DateRangeCalendarPicker.js";
|
|
94
94
|
import { DICTIONARY as we, defaultDateRangeCalendarPickerDictionary as Ye, getDateRangeCalendarPickerComponentsDictionary as ze } from "./components/DateRangeCalendarPicker/dictionary.js";
|
|
95
|
-
import { DateTimeRangePicker as
|
|
95
|
+
import { DateTimeRangePicker as We } from "./components/DateTimeRangePicker/DateTimeRangePicker.js";
|
|
96
96
|
import { DATE_TIME_RANGE_PICKER_CANCEL_LABEL as je, DATE_TIME_RANGE_PICKER_CONFIRM_LABEL as Je, DATE_TIME_RANGE_PICKER_DEFAULT_SHORTCUTS as qe, DATE_TIME_RANGE_PICKER_OPEN_BUTTON_LABEL as Qe, EMPTY_DATE_TIME_RANGE_PICKER_VALUE as Xe } from "./components/DateTimeRangePicker/constants.js";
|
|
97
97
|
import { DICTIONARY as $e, defaultDateTimeRangePickerDictionary as ot, getDateTimeRangePickerComponentsDictionary as rt } from "./components/DateTimeRangePicker/dictionary.js";
|
|
98
98
|
import { getDynamicFilterComponentsDictionary as tt } from "./components/DynamicFilter/dictionary.js";
|
|
@@ -100,291 +100,295 @@ import { getFilterGroupFieldsByName as pt, getIsIfInDynamicFilter as at } from "
|
|
|
100
100
|
import { getRawFiltersForNetwork as it } from "./components/DynamicFilter/helpers/getRawFiltersForNetwork.js";
|
|
101
101
|
import { DynamicFilter as ft } from "./components/DynamicFilter/DynamicFilter.js";
|
|
102
102
|
import { DynamicForm as lt } from "./components/DynamicForm/DynamicForm.js";
|
|
103
|
-
import { getDynamicFormComponentsDictionary as
|
|
104
|
-
import { useDynamicForm as
|
|
103
|
+
import { getDynamicFormComponentsDictionary as Ct } from "./components/DynamicForm/dictionary.js";
|
|
104
|
+
import { useDynamicForm as dt } from "./components/DynamicForm/hooks/useDynamicForm/useDynamicForm.js";
|
|
105
105
|
import { useDynamicFormData as Pt } from "./components/DynamicForm/hooks/useDynamicFormData/useDynamicFormData.js";
|
|
106
|
-
import { useDynamicFormCoupled as
|
|
106
|
+
import { useDynamicFormCoupled as Tt } from "./components/DynamicForm/hooks/useDynamicFormCoupled/useDynamicFormCoupled.js";
|
|
107
107
|
import { EMPTY_DATA as Dt } from "./components/DynamicForm/constants.js";
|
|
108
108
|
import { getDynamicSortComponentsDictionary as St } from "./components/DynamicSort/dictionary.js";
|
|
109
|
-
import { SortCompareValues as
|
|
109
|
+
import { SortCompareValues as yt } from "./components/DynamicSort/helpers/frontEndHelpers.js";
|
|
110
110
|
import { getRawSortsForNetwork as _t } from "./components/DynamicSort/helpers/getRawSortsForNetwork.js";
|
|
111
111
|
import { DynamicSort as Nt } from "./components/DynamicSort/DynamicSort.js";
|
|
112
|
-
import { Resizable as
|
|
112
|
+
import { Resizable as Lt } from "./components/extended/React-Resizable/Resizable/Resizable.js";
|
|
113
113
|
import { ResizableBox as vt } from "./components/extended/React-Resizable/ResizableBox/ResizableBox.js";
|
|
114
114
|
import { SplitLayout as bt } from "./components/extended/React-resizable-panels/SplitLayout.js";
|
|
115
115
|
import { PropagateLoaderSpinner as kt } from "./components/extended/React-Spinners/PropagateLoaderSpinner/PropagateLoaderSpinner.js";
|
|
116
116
|
import { FixedSizeList as Vt } from "./components/extended/React-Window/FixedSizeList/FixedSizeList.js";
|
|
117
117
|
import { VariableSizeList as Yt } from "./components/extended/React-Window/VariableSizeList/VariableSizeList.js";
|
|
118
|
-
import { ReactJsonViewer as
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
145
|
-
import {
|
|
146
|
-
import {
|
|
147
|
-
import {
|
|
148
|
-
import {
|
|
149
|
-
import {
|
|
150
|
-
import {
|
|
151
|
-
import {
|
|
152
|
-
import {
|
|
153
|
-
import {
|
|
154
|
-
import {
|
|
155
|
-
import {
|
|
156
|
-
import {
|
|
157
|
-
import {
|
|
158
|
-
import {
|
|
159
|
-
import {
|
|
160
|
-
import {
|
|
161
|
-
import {
|
|
162
|
-
import {
|
|
163
|
-
import {
|
|
164
|
-
import {
|
|
165
|
-
import {
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
171
|
-
import {
|
|
172
|
-
import {
|
|
173
|
-
import {
|
|
174
|
-
import {
|
|
175
|
-
import {
|
|
176
|
-
import {
|
|
177
|
-
import {
|
|
178
|
-
import {
|
|
179
|
-
import {
|
|
180
|
-
import {
|
|
181
|
-
import {
|
|
182
|
-
import {
|
|
183
|
-
import {
|
|
184
|
-
import {
|
|
185
|
-
import {
|
|
186
|
-
import {
|
|
187
|
-
import {
|
|
188
|
-
import {
|
|
189
|
-
import {
|
|
190
|
-
import {
|
|
191
|
-
import {
|
|
192
|
-
import {
|
|
193
|
-
import {
|
|
194
|
-
import {
|
|
195
|
-
import {
|
|
196
|
-
import {
|
|
197
|
-
import {
|
|
198
|
-
import {
|
|
199
|
-
import {
|
|
200
|
-
import {
|
|
201
|
-
import {
|
|
202
|
-
import {
|
|
203
|
-
import {
|
|
204
|
-
import {
|
|
205
|
-
import {
|
|
206
|
-
import {
|
|
207
|
-
import {
|
|
208
|
-
import {
|
|
209
|
-
import {
|
|
210
|
-
import {
|
|
211
|
-
import {
|
|
212
|
-
import {
|
|
213
|
-
import {
|
|
214
|
-
import {
|
|
215
|
-
import {
|
|
216
|
-
import {
|
|
217
|
-
import {
|
|
218
|
-
import {
|
|
219
|
-
import {
|
|
220
|
-
import {
|
|
221
|
-
import {
|
|
222
|
-
import {
|
|
223
|
-
import {
|
|
224
|
-
import {
|
|
225
|
-
import {
|
|
226
|
-
import {
|
|
227
|
-
import {
|
|
228
|
-
import {
|
|
229
|
-
import {
|
|
230
|
-
import {
|
|
231
|
-
import {
|
|
232
|
-
import {
|
|
233
|
-
import {
|
|
234
|
-
import {
|
|
235
|
-
import {
|
|
236
|
-
import {
|
|
237
|
-
import {
|
|
238
|
-
import {
|
|
239
|
-
import {
|
|
240
|
-
import {
|
|
241
|
-
import {
|
|
242
|
-
import {
|
|
243
|
-
import {
|
|
244
|
-
import {
|
|
245
|
-
import {
|
|
246
|
-
import {
|
|
247
|
-
import {
|
|
248
|
-
import {
|
|
249
|
-
import {
|
|
250
|
-
import {
|
|
251
|
-
import {
|
|
252
|
-
import {
|
|
253
|
-
import {
|
|
254
|
-
import {
|
|
255
|
-
import {
|
|
256
|
-
import {
|
|
257
|
-
import {
|
|
258
|
-
import {
|
|
259
|
-
import {
|
|
260
|
-
import {
|
|
261
|
-
import {
|
|
262
|
-
import {
|
|
263
|
-
import {
|
|
264
|
-
import {
|
|
265
|
-
import {
|
|
266
|
-
import {
|
|
267
|
-
import {
|
|
268
|
-
import {
|
|
269
|
-
import {
|
|
270
|
-
import {
|
|
271
|
-
import {
|
|
272
|
-
import {
|
|
273
|
-
import {
|
|
274
|
-
import {
|
|
275
|
-
import {
|
|
276
|
-
import {
|
|
277
|
-
import {
|
|
278
|
-
import {
|
|
279
|
-
import {
|
|
280
|
-
import {
|
|
281
|
-
import {
|
|
282
|
-
import {
|
|
283
|
-
import {
|
|
284
|
-
import {
|
|
285
|
-
import {
|
|
286
|
-
import {
|
|
287
|
-
import {
|
|
288
|
-
import {
|
|
289
|
-
import {
|
|
290
|
-
import {
|
|
291
|
-
import {
|
|
292
|
-
import {
|
|
293
|
-
import {
|
|
294
|
-
import {
|
|
295
|
-
import {
|
|
296
|
-
import {
|
|
297
|
-
import {
|
|
298
|
-
import {
|
|
299
|
-
import {
|
|
300
|
-
import {
|
|
301
|
-
import {
|
|
302
|
-
import {
|
|
303
|
-
import {
|
|
304
|
-
import {
|
|
305
|
-
import {
|
|
306
|
-
import {
|
|
307
|
-
import {
|
|
308
|
-
import {
|
|
309
|
-
import {
|
|
310
|
-
import {
|
|
311
|
-
import {
|
|
312
|
-
import {
|
|
313
|
-
import {
|
|
314
|
-
import {
|
|
315
|
-
import {
|
|
316
|
-
import {
|
|
317
|
-
import {
|
|
318
|
-
import {
|
|
319
|
-
import {
|
|
320
|
-
import {
|
|
321
|
-
import {
|
|
322
|
-
import {
|
|
323
|
-
import {
|
|
324
|
-
import {
|
|
325
|
-
import {
|
|
326
|
-
import {
|
|
327
|
-
import {
|
|
328
|
-
import {
|
|
329
|
-
import {
|
|
330
|
-
import {
|
|
331
|
-
import {
|
|
332
|
-
import {
|
|
333
|
-
import {
|
|
118
|
+
import { ReactJsonViewer as Ut } from "./components/extended/React-Json-Viewer/ReactJsonViewer.js";
|
|
119
|
+
import { CodeEditor as Kt } from "./components/extended/ReactSimpleCodeEditor/CodeEditor.js";
|
|
120
|
+
import { DEFAULT_CODE_EDITOR_AT_LANGUAGE_TEMPLATE as Jt, createCodeEditorLezerSyntaxValidator as qt, ensureCodeEditorRuntimeDependencies as Qt, registerCodeEditorLanguage as Xt, registerCodeEditorLanguageTemplate as Zt, registerCodeEditorSyntaxValidator as $t, resolveCodeEditorLanguage as om, resolveCodeEditorLanguageTemplate as rm } from "./components/extended/ReactSimpleCodeEditor/helpers/highlighting.js";
|
|
121
|
+
import { Avatar as tm } from "./components/extended/mui/Avatar/Avatar.js";
|
|
122
|
+
import { BoxIcon as pm } from "./components/extended/mui/BoxIcon/index.js";
|
|
123
|
+
import { Breadcrumbs as nm } from "./components/extended/mui/Breadcrumbs/index.js";
|
|
124
|
+
import { CircularProgress as xm } from "./components/extended/mui/CircularProgress/CircularProgress.js";
|
|
125
|
+
import { Badge as sm } from "./components/extended/mui/Badge/Badge.js";
|
|
126
|
+
import { LinearProgress as um } from "./components/extended/mui/LinearProgress/index.js";
|
|
127
|
+
import { LinkWithRoute as cm } from "./components/extended/mui/LinkWithRoute/index.js";
|
|
128
|
+
import { LoadingButton as Fm } from "./components/extended/mui/LoadingButton/LoadingButton.js";
|
|
129
|
+
import { getPagerComponentsDictionary as gm } from "./components/Pager/dicctionary.js";
|
|
130
|
+
import { Accordion as Rm } from "./components/extended/mui/Accordion/Accordion.js";
|
|
131
|
+
import { Tooltip as Am } from "./components/extended/mui/Tooltip/Tooltip.js";
|
|
132
|
+
import { IconButton as Em } from "./components/extended/mui/IconButton/IconButton.js";
|
|
133
|
+
import { Button as Im } from "./components/extended/mui/Button/Button.js";
|
|
134
|
+
import { CheckBox as Om } from "./components/extended/mui/CheckBox/CheckBox.js";
|
|
135
|
+
import { Radio as Mm } from "./components/extended/mui/Radio/Radio.js";
|
|
136
|
+
import { Switch as Hm } from "./components/extended/mui/Switch/Switch.js";
|
|
137
|
+
import { ImageButton as Bm } from "./components/extended/mui/ImageButton/ImageButton.js";
|
|
138
|
+
import { Popover as Gm } from "./components/extended/mui/Popover/Popover.js";
|
|
139
|
+
import { Select as hm } from "./components/extended/mui/Select/Select.js";
|
|
140
|
+
import { Skeleton as wm } from "./components/extended/mui/Skeleton/Skeleton.js";
|
|
141
|
+
import { Stack as zm } from "./components/extended/mui/Stack/Stack.js";
|
|
142
|
+
import { Tab as Wm } from "./components/extended/mui/Tab/Tab.js";
|
|
143
|
+
import { Tabs as jm } from "./components/extended/mui/Tabs/Tabs.js";
|
|
144
|
+
import { TabContent as qm } from "./components/extended/mui/TabContent/TabContent.js";
|
|
145
|
+
import { TabContext as Xm, TabProvider as Zm } from "./components/extended/mui/TabContext/index.js";
|
|
146
|
+
import { Typography as op } from "./components/extended/mui/Typography/Typography.js";
|
|
147
|
+
import { ICON_CLASSES as ep, ICON_KEY_COMPONENT as tp, ICON_PREFIX as mp, TYPOGRAPHY_CLASSES as pp, TYPOGRAPHY_CLASS_NAME_SPECIFY as ap, TYPOGRAPHY_FONTS as np, TYPOGRAPHY_KEY_COMPONENT as ip } from "@m4l/base";
|
|
148
|
+
import { toggleButtonStyles as fp } from "./components/extended/mui/ToggleButton/ToggleButton.styles.js";
|
|
149
|
+
import { ToggleButton as lp } from "./components/extended/mui/ToggleButton/ToggleButton.js";
|
|
150
|
+
import { TOGGLE_BUTTON_KEY_COMPONENT as Cp } from "./components/extended/mui/ToggleButton/constants.js";
|
|
151
|
+
import { ToggleButtonSlots as dp } from "./components/extended/mui/ToggleButton/slots/ToggleButtonEnum.js";
|
|
152
|
+
import { ToggleButtonRootStyled as Pp } from "./components/extended/mui/ToggleButton/slots/ToggleButtonSlots.js";
|
|
153
|
+
import { toggleIconButtonStyles as Tp } from "./components/extended/mui/ToggleIconButton/ToggleIconButton.styles.js";
|
|
154
|
+
import { ToggleIconButton as Dp } from "./components/extended/mui/ToggleIconButton/ToggleIconButton.js";
|
|
155
|
+
import { TOGGLE_ICON_BUTTON_CLASS_NAME_SPECIFY as Sp, TOGGLE_ICON_BUTTON_KEY_COMPONENT as Ep } from "./components/extended/mui/ToggleIconButton/constants.js";
|
|
156
|
+
import { ToggleIconButtonSlots as Ip } from "./components/extended/mui/ToggleIconButton/slots/ToggleIconButtonEnum.js";
|
|
157
|
+
import { ToggleIconButtonRootStyled as Op } from "./components/extended/mui/ToggleIconButton/slots/ToggleIconButtonSlots.js";
|
|
158
|
+
import { NavLink as Mp } from "./components/extended/mui/NavLink/NavLink.js";
|
|
159
|
+
import { Dialog as Hp } from "./components/extended/mui/Dialog/Dialog.js";
|
|
160
|
+
import { Divider as Bp } from "./components/extended/mui/Divider/Divider.js";
|
|
161
|
+
import { DatePicker as Gp } from "./components/extended/mui/DatePicker/DatePicker.js";
|
|
162
|
+
import { Autocomplete as hp } from "./components/extended/mui/Autocomplete/Autocomplete.js";
|
|
163
|
+
import { AutocompleteAsync as wp } from "./components/extended/mui/AutocompleteAsync/AutocompleteAsync.js";
|
|
164
|
+
import { DateFormatter as zp, getFormatDate as Up } from "./components/formatters/DateFormatter/DateFormatter.js";
|
|
165
|
+
import { UncertaintyFormatter as Kp, getUncertaintyFormat as jp } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
|
|
166
|
+
import { PointsFormatter as qp, getFormatPoints as Qp } from "./components/formatters/PointsFormatter/PointsFormatter.js";
|
|
167
|
+
import { ConcatenatedFormatter as Zp, getFormatConcatenated as $p } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
|
|
168
|
+
import { PeriodFormatter as ra, useFormatPeriod as ea } from "./components/formatters/PeriodFormatter/PeriodFormatter.js";
|
|
169
|
+
import { PriceFormatter as ma, getFormatPrice as pa } from "./components/formatters/PriceFormatter/PriceFormatter.js";
|
|
170
|
+
import { TagsFormatter as na } from "./components/formatters/TagsFormatter/TagsFormatter.js";
|
|
171
|
+
import { ColorFormatter as xa } from "./components/formatters/ColorFormatter/ColorFormatter.js";
|
|
172
|
+
import { ImageFormatter as sa } from "./components/formatters/ImageFormatter/ImageFormatter.js";
|
|
173
|
+
import { NestedFormatter as ua } from "./components/formatters/NestedFormatter/NestedFormatter.js";
|
|
174
|
+
import { BooleanFormatter as ca } from "./components/formatters/BooleanFormatter/BooleanFormatter.js";
|
|
175
|
+
import { getBooleanFormatterComponentsDictionary as Fa } from "./components/formatters/BooleanFormatter/dictionary.js";
|
|
176
|
+
import { ChipStatusFormatter as ga } from "./components/formatters/ChipStatusFormatter/ChipStatusFormatter.js";
|
|
177
|
+
import { getDistanceToNowFormatterComponentsDictionary as Ra } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
|
|
178
|
+
import { DistanceToNowFormatter as Aa } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
|
|
179
|
+
import { useDistanceToNowFormatter as Ea } from "./components/formatters/DistanceToNowFormatter/hooks/useDistanceToNowFormatter.js";
|
|
180
|
+
import { getFormattersComponentsDictionary as Ia } from "./components/formatters/dictionary.js";
|
|
181
|
+
import { FormContainer as Oa } from "./components/FormContainer/FormContainer.js";
|
|
182
|
+
import { GridLayout as Ma } from "./components/GridLayout/GridLayout.js";
|
|
183
|
+
import { Responsive as Ha } from "./components/GridLayout/subcomponents/Responsive/index.js";
|
|
184
|
+
import { addLayoutItemToBreakPointIfNoExists as Ba, addLayoutItemToBreakPoints as ba, cloneLayouts as Ga } from "./components/GridLayout/subcomponents/Responsive/responsiveUtils.js";
|
|
185
|
+
import { isEqualLayout as ha, isEqualLayouts as Va } from "./components/GridLayout/utils.js";
|
|
186
|
+
import { withSizeProvider as Ya } from "./components/GridLayout/subcomponents/withSizeProvider/index.js";
|
|
187
|
+
import { HelmetPage as Ua } from "./components/HelmetPage/index.js";
|
|
188
|
+
import { HelperError as Ka } from "./components/HelperError/HelperError.js";
|
|
189
|
+
import { RHFAutocomplete as Ja } from "./components/hook-form/RHFAutocomplete/RHFAutocomplete.js";
|
|
190
|
+
import { getRHFAutocompleteComponentsDictionary as Qa } from "./components/hook-form/RHFAutocomplete/dictionary.js";
|
|
191
|
+
import { RHFAutocompleteAsync as Za } from "./components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.js";
|
|
192
|
+
import { getRHFAutocompleteAsyncComponentsDictionary as on } from "./components/hook-form/RHFAutocompleteAsync/dictionary.js";
|
|
193
|
+
import { RHFDateTime as en } from "./components/hook-form/RHFDateTime/RHFDateTime.js";
|
|
194
|
+
import { RHFDateTimePicker as mn } from "./components/hook-form/RHFDateTimePicker/RHFDateTimePicker.js";
|
|
195
|
+
import { RHFDatePicker as an } from "./components/hook-form/RHFDatePicker/RHFDatePicker.js";
|
|
196
|
+
import { RHFMultiCheckbox as xn } from "./components/hook-form/RHFMultiCheckbox/index.js";
|
|
197
|
+
import { RHFSelect as sn } from "./components/hook-form/RHFSelect/RHFSelect.js";
|
|
198
|
+
import { RHFHelperError as un } from "./components/hook-form/RHFHelperError/index.js";
|
|
199
|
+
import { RHFRadioGroup as cn } from "./components/hook-form/RHFRadioGroup/RHFRadioGroup.js";
|
|
200
|
+
import { RHFUploadSingleFile as Fn } from "./components/hook-form/RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile.js";
|
|
201
|
+
import { RHFColorPicker as gn } from "./components/hook-form/RHFColorPicker/RHFColorPicker.js";
|
|
202
|
+
import { RHFCodeEditor as Rn } from "./components/hook-form/RHFCodeEditor/RHFCodeEditor.js";
|
|
203
|
+
import { RHFImageSelector as An } from "./components/hook-form/RHFImageSelector/RHFImageSelector.js";
|
|
204
|
+
import { RHFCheckbox as En } from "./components/hook-form/RHFCheckbox/RHFCheckbox.js";
|
|
205
|
+
import { RHFCheckableList as In } from "./components/hook-form/RHFCheckableList/RHFCheckableList.js";
|
|
206
|
+
import { RHFDateTimeRangePicker as On } from "./components/hook-form/RHFDateTimeRangePicker/RHFDateTimeRangePicker.js";
|
|
207
|
+
import { RHFTimePicker as Mn } from "./components/hook-form/RHFTimePicker/RHFTimePicker.js";
|
|
208
|
+
import { RHFDaysOfWeekPicker as Hn } from "./components/hook-form/RHFDaysOfWeekPicker/RHFDaysOfWeekPicker.js";
|
|
209
|
+
import { RHFDaysOfMonthPicker as Bn } from "./components/hook-form/RHFDaysOfMonthPicker/RHFDaysOfMonthPicker.js";
|
|
210
|
+
import { RHFTextField as Gn } from "./components/hook-form/RHFTextField/RHFTextField.js";
|
|
211
|
+
import { RHFTextFieldPassword as hn } from "./components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js";
|
|
212
|
+
import { RHFResourceDictionary as wn } from "./components/hook-form/RHFResourceDictionary/RHFResourceDictionary.js";
|
|
213
|
+
import { getPeriodComponetsDictionary as zn } from "./components/hook-form/RHFPeriod/subcomponents/Period/dictionary.js";
|
|
214
|
+
import { rhfPeriodStyles as Wn } from "./components/hook-form/RHFPeriod/RHFPeriod.styles.js";
|
|
215
|
+
import { RHFPeriod as jn } from "./components/hook-form/RHFPeriod/RHFPeriod.js";
|
|
216
|
+
import { RHF_PERIOD_KEY_COMPONENT as qn } from "./components/hook-form/RHFPeriod/constants.js";
|
|
217
|
+
import { RHFPeriodSlots as Xn } from "./components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js";
|
|
218
|
+
import { NumberInputStyled as $n, PeriodRootStyled as oi, RHFPeriodRootStyled as ri, SelectStyled as ei } from "./components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js";
|
|
219
|
+
import { RHFNumberInput as mi } from "./components/hook-form/RHFNumberInput/RHFNumberInput.js";
|
|
220
|
+
import { RHFUploadImage as ai } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
|
|
221
|
+
import { VALIDATION_OBJECT_BRAND as ii, VALIDATION_PARTIAL_OBJECT_BRAND as xi, VALIDATION_SCHEMA_BRAND as fi } from "./components/hook-form/RHFormProvider/types.js";
|
|
222
|
+
import { FormProviderCustom as li, RHFormProvider as ui, useCustomForm as Ci } from "./components/hook-form/RHFormProvider/RHFormProvider.js";
|
|
223
|
+
import { createEmptyValidationSchema as di, createValidationFullObject as Fi, createValidationPartialObject as Pi, createValidationSchema as gi } from "./components/hook-form/RHFormProvider/schema.js";
|
|
224
|
+
import { RHFActionsGroup as Ri } from "./components/hook-form/RHFActionsGroup/RHFActionsGroup.js";
|
|
225
|
+
import { RHFSwitch as Ai } from "./components/hook-form/RHFSwitch/RHFSwitch.js";
|
|
226
|
+
import { Icon as Ei } from "./components/Icon/Icon.js";
|
|
227
|
+
import { Image as Ii } from "./components/Image/Image.js";
|
|
228
|
+
import { getImageSelectorComponentsDictionary as Oi } from "./components/ImageSelector/dictionary.js";
|
|
229
|
+
import { ImageSelector as Mi } from "./components/ImageSelector/ImageSelector.js";
|
|
230
|
+
import { Label as Hi } from "./components/Label/Label.js";
|
|
231
|
+
import { LanguagePopover as Bi } from "./components/LanguagePopover/LanguagePopover.js";
|
|
232
|
+
import { LinearProgressIndeterminate as Gi } from "./components/LinearProgressIndeterminate/LinearProgressIndeterminate.js";
|
|
233
|
+
import { Loadable as hi } from "./components/Loadable/index.js";
|
|
234
|
+
import { LoadingError as wi } from "./components/LoadingError/LoadingError.js";
|
|
235
|
+
import { getLoadingErrorComponentsDictionary as zi } from "./components/LoadingError/dictionary.js";
|
|
236
|
+
import { getMenuActionsComponentsDictionary as Wi } from "./components/MenuActions/dictionary.js";
|
|
237
|
+
import { MemonizedMenuActions as ji, MenuActions as Ji } from "./components/MenuActions/MenuActions.js";
|
|
238
|
+
import { MFIsolationApp as Qi } from "./components/MFIsolationApp/MFIsolationApp.js";
|
|
239
|
+
import { registerMFIsolationRuntimeErrorHandler as Zi, reportMFIsolationRuntimeError as $i, unregisterMFIsolationRuntimeErrorHandler as ox } from "./components/MFIsolationApp/runtimeErrors.js";
|
|
240
|
+
import { MFAppStorybook as ex, MFIsolationAppStorybook as tx } from "@m4l/graphics/decorators";
|
|
241
|
+
import { createComponentsMFIsolationAppStorybookProps as px } from "./components/MFIsolationAppStorybook/createComponentsMFIsolationAppStorybookProps.js";
|
|
242
|
+
import { MFLoader as nx } from "./components/MFLoader/MFLoader.js";
|
|
243
|
+
import { getMFLoaderComponentsDictionary as xx } from "./components/MFLoader/dictionary.js";
|
|
244
|
+
import { projectMFHostRuntimeTools as sx } from "./components/MFLoader/helpers/projectMFHostRuntimeTools/projectMFHostRuntimeTools.js";
|
|
245
|
+
import { ImageText as ux } from "./components/ImageText/ImageText.js";
|
|
246
|
+
import { NoItemSelected as cx } from "./components/NoItemSelected/NoItemSelected.js";
|
|
247
|
+
import { getNoItemSelectedComponentsDictionary as Fx } from "./components/NoItemSelected/dictionary.js";
|
|
248
|
+
import { NoItemPrivileges as gx } from "./components/NoItemPrivileges/NoItemPrivileges.js";
|
|
249
|
+
import { getNoItemPrivilegesComponentsDictionary as Rx } from "./components/NoItemPrivileges/dictionary.js";
|
|
250
|
+
import { getObjectLogsComponentsDictionary as Ax } from "./components/ObjectLogs/dictionary.js";
|
|
251
|
+
import { ObjectLogs as Ex } from "./components/ObjectLogs/ObjectLogs.js";
|
|
252
|
+
import { PaperForm as Ix } from "./components/PaperForm/PaperForm.js";
|
|
253
|
+
import { PDFViewer as Ox } from "./components/PDFViewer/PDFViewer.js";
|
|
254
|
+
import { usePopupsStore as Mx } from "./components/popups/components/PopupsProvider/hooks/usePopupsStore.js";
|
|
255
|
+
import { PopupsContext as Hx, PopupsProvider as vx } from "./components/popups/components/PopupsProvider/contexts/PopupsContext/PopupsContext.js";
|
|
256
|
+
import { PopupsViewer as bx } from "./components/popups/components/PopupsViewer/PopupsViewer.js";
|
|
257
|
+
import { PrintingSystem as kx } from "./components/PrintingSystem/PrintingSystem.js";
|
|
258
|
+
import { PropertyValue as Vx } from "./components/PropertyValue/PropertyValue.js";
|
|
259
|
+
import { ScrollBar as Yx } from "./components/ScrollBar/ScrollBar.js";
|
|
260
|
+
import { SideBar as Ux } from "./components/SideBar/SideBar.js";
|
|
261
|
+
import { ToastContainer as Kx } from "./components/ToastContainer/ToastContainer.js";
|
|
262
|
+
import { ToastMessage as Jx } from "./components/ToastContainer/subcomponents/ToastMessage/ToastMessage.js";
|
|
263
|
+
import { TabsNavigator as Qx } from "./components/TabsNavigator/TabsNavigator.js";
|
|
264
|
+
import { getTabsNavigatorComponentsDictionary as Zx } from "./components/TabsNavigator/dictionary.js";
|
|
265
|
+
import { TimePicker as of } from "./components/TimePicker/TimePicker.js";
|
|
266
|
+
import { WindowBase as ef } from "./components/WindowBase/WindowBase.js";
|
|
267
|
+
import { useWindowToolsMF as mf } from "./components/WindowBase/hooks/useWindowToolsMF/index.js";
|
|
268
|
+
import { useDynamicMFParameters as af, useDynamicMFParametersStore as nf } from "./components/WindowBase/hooks/useDynamicMFParameters/index.js";
|
|
269
|
+
import { useMFHostRuntimeTools as ff } from "./components/WindowBase/hooks/useMFHostRuntimeTools/index.js";
|
|
270
|
+
import { useMFObservability as lf } from "./components/WindowBase/hooks/useMFObservability/index.js";
|
|
271
|
+
import { useMFRealtimeProducerTools as Cf } from "./components/WindowBase/hooks/useMFRealtimeProducerTools/index.js";
|
|
272
|
+
import { MemonizedWindowToolsMFContext as df, WindowToolsMFContext as Ff, WindowToolsMFProvider as Pf } from "./components/WindowBase/contexts/WindowToolsMFContext/WindowToolsMFContext.js";
|
|
273
|
+
import { createDynamicMFStore as Tf } from "./components/WindowBase/contexts/DynamicMFParmsContext/store.js";
|
|
274
|
+
import { DynamicMFParmsContext as Df, DynamicMFParmsProvider as Af, MemonizedDynamicMFParmsProvider as Sf } from "./components/WindowBase/contexts/DynamicMFParmsContext/DynamicMFParmsContext.js";
|
|
275
|
+
import { MFHostRuntimeToolsContext as yf, MFHostRuntimeToolsProvider as If, MemoizedMFHostRuntimeToolsProvider as _f } from "./components/WindowBase/contexts/MFHostRuntimeToolsContext/MFHostRuntimeToolsContext.js";
|
|
276
|
+
import { MFObservabilityContext as Nf, MFObservabilityProvider as Mf, MemoizedMFObservabilityProvider as Lf } from "./components/WindowBase/contexts/MFObservabilityContext/MFObservabilityContext.js";
|
|
277
|
+
import { MFRealtimeProducerToolsContext as vf, MFRealtimeProducerToolsProvider as Bf, MemoizedMFRealtimeProducerToolsProvider as bf } from "./components/WindowBase/contexts/MFRealtimeProducerToolsContext/MFRealtimeProducerToolsContext.js";
|
|
278
|
+
import { WindowConfirm as kf } from "./components/WindowConfirm/WindowConfirm.js";
|
|
279
|
+
import { getModalDialogComponentsDictionary as Vf, getModalDictionary as wf } from "./components/ModalDialog/dictionary.js";
|
|
280
|
+
import { ModalDialog as zf } from "./components/ModalDialog/ModalDialog.js";
|
|
281
|
+
import { SettingsLayout as Wf } from "./components/SettingsLayout/SettingsLayout.js";
|
|
282
|
+
import { Pager as jf } from "./components/Pager/Pager.js";
|
|
283
|
+
import { useStepper as qf } from "./components/Stepper/hooks/useStepper/index.js";
|
|
284
|
+
import { Stepper as Xf } from "./components/Stepper/Stepper.js";
|
|
285
|
+
import { StepperContent as $f } from "./components/Stepper/subcomponents/StepperContent/index.js";
|
|
286
|
+
import { Step as rs } from "./components/Stepper/subcomponents/StepperContent/subcomponents/Step/index.js";
|
|
287
|
+
import { StepperFooter as ts } from "./components/Stepper/subcomponents/StepperFooter/index.js";
|
|
288
|
+
import { StepperFooterLeftActions as ps } from "./components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterLeftActions/index.js";
|
|
289
|
+
import { StepperFooterRightActions as ns } from "./components/Stepper/subcomponents/StepperFooter/subcomponents/StepperFooterRightActions/index.js";
|
|
290
|
+
import { StepperNextButton as xs } from "./components/Stepper/subcomponents/StepperButtons/StepperNextButton/index.js";
|
|
291
|
+
import { StepperPrevButton as ss } from "./components/Stepper/subcomponents/StepperButtons/StepperPrevButton/index.js";
|
|
292
|
+
import { StepperCancelButton as us } from "./components/Stepper/subcomponents/StepperButtons/StepperCancelButton/index.js";
|
|
293
|
+
import { StepperSubmitButton as cs } from "./components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.js";
|
|
294
|
+
import { evaluateVisibilityStepCondition as Fs } from "./components/Stepper/helpers/evaluateVisibilityStepCondition/index.js";
|
|
295
|
+
import { getStepsAndValidationSchema as gs } from "./components/Stepper/helpers/getStepsAndValidationSchema/getStepsAndValidationSchema.js";
|
|
296
|
+
import { getStepperComponentsDictionary as Rs } from "./components/Stepper/dictionary.js";
|
|
297
|
+
import { ShellObservabilityContext as As, ShellObservabilityProvider as Ss, useShellObservability as Es } from "./contexts/ShellObservabilityContext/ShellObservabilityContext.js";
|
|
298
|
+
import { HostRuntimeContext as Is, HostRuntimeProvider as _s, useHostRuntime as Os } from "./contexts/HostRuntimeContext/HostRuntimeContext.js";
|
|
299
|
+
import { AppearanceComponentProvider as Ms, useAppearanceComponentStore as Ls } from "@m4l/graphics";
|
|
300
|
+
import { ModalContext as vs, ModalProvider as Bs } from "./contexts/ModalContext/index.js";
|
|
301
|
+
import { getFormComponentsDictionary as Gs } from "./components/hook-form/RHFormProvider/dictionary.js";
|
|
302
|
+
import { useFormAddEdit as hs } from "./hooks/useFormAddEdit/useFormAddEdit.js";
|
|
303
|
+
import { useModal as ws } from "./hooks/useModal/index.js";
|
|
304
|
+
import { useTab as zs } from "./hooks/useTab/index.js";
|
|
305
|
+
import { getformAddEditDictionary as Ws } from "./hooks/useFormAddEdit/dictionary.js";
|
|
306
|
+
import { useFormFocus as js } from "./hooks/useFormFocus/index.js";
|
|
307
|
+
import { useInterval as qs } from "./hooks/useInterval/index.js";
|
|
308
|
+
import { useComponentSize as Xs } from "./hooks/useComponentSize/index.js";
|
|
309
|
+
import { useFormReadyForUpdate as $s } from "./hooks/useFormReadyForUpdate/index.js";
|
|
310
|
+
import { useStateRef as rl } from "./hooks/useStateRef/index.js";
|
|
311
|
+
import { SKELETON_SVG_ICON as tl } from "./hooks/useSvgColor/constants.js";
|
|
312
|
+
import { useSvgColor as pl } from "./hooks/useSvgColor/useSvgColor.js";
|
|
313
|
+
import { useDynamicFilterAndSort as nl } from "./hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js";
|
|
314
|
+
import { useDataGridPersistence as xl } from "./hooks/useDataGridPersistence/useDataGridPersistence.js";
|
|
315
|
+
import { resolvePopoverContainer as sl, usePopoverContainer as ll } from "./hooks/usePopoverContainer/usePopoverContainer.js";
|
|
316
|
+
import { POPOVER_CONTAINER_ID as Cl, POPOVER_OVERLAY_ROOT_ATTRIBUTE as cl, POPOVER_PAPER_ARIA_LABEL as dl, POPOVER_PAPER_SELECTOR as Fl } from "./hooks/usePopoverContainer/constants.js";
|
|
317
|
+
import { resolvePopoverPaperProps as gl, usePopoverPaperProps as Tl } from "./hooks/usePopoverPaperProps/usePopoverPaperProps.js";
|
|
318
|
+
import { useIsVisible as Dl } from "./hooks/useIsVisible/useIsVisible.js";
|
|
319
|
+
import { useSizeContainer as Sl } from "./hooks/useSizeContainer/index.js";
|
|
320
|
+
import { useWatchTyped as yl } from "./hooks/useWatchTyped/useTypedWatch.js";
|
|
321
|
+
import { withToggle as _l } from "./hocs/withToggle/index.js";
|
|
322
|
+
import { withRHFController as Nl } from "./hocs/withRHFController/index.js";
|
|
323
|
+
import { capitalizeFirstLetter as Ll } from "./utils/capitalizeFirstLetter.js";
|
|
324
|
+
import { isValidDate as vl } from "./utils/isValidDate.js";
|
|
325
|
+
import { getComponentUtilityClass as bl } from "./utils/getComponentUtilityClass.js";
|
|
326
|
+
import { getPaletteColor as kl } from "./utils/getPaletteColor.js";
|
|
327
|
+
import { getTypographyStyles as Vl } from "./utils/getTypographyStyles.js";
|
|
328
|
+
import { getIconColor as Yl } from "./utils/getIconColor.js";
|
|
329
|
+
import { getHeightSizeStyles as Ul, getSizeStyles as Wl } from "./utils/getSizeStyles/getSizeStyles.js";
|
|
330
|
+
import { getInputAlignmentIconButtonOverrides as jl } from "./utils/getInputAlignmentIconButtonOverrides/getInputAlignmentIconButtonOverrides.js";
|
|
331
|
+
import { ObjectQueue as ql } from "./utils/ObjectQueue.js";
|
|
332
|
+
import { getComponentClasses as Xl, getComponentSlotRoot as Zl } from "./utils/getComponentSlotRoot.js";
|
|
333
|
+
import { formatDistanceToNow as ou } from "./utils/formatDistanceToNow/formatDistanteToNow.js";
|
|
334
|
+
import { getValidDate as eu } from "./utils/getValidDate.js";
|
|
335
|
+
import { getNullGuard as mu } from "./utils/getNullGuard.js";
|
|
336
|
+
import { createCustomDeepShallow as au, deepShallow as nu } from "./utils/deepShallow.js";
|
|
334
337
|
export {
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
+
U as AREAS_DICCTIONARY,
|
|
339
|
+
W as AREAS_DICTIONARY_ID,
|
|
340
|
+
Rm as Accordion,
|
|
338
341
|
m as AccountPopover,
|
|
339
342
|
Do as ActionCancel,
|
|
340
|
-
|
|
343
|
+
yo as ActionFormCancel,
|
|
341
344
|
_o as ActionFormIntro,
|
|
342
345
|
No as ActionFormSubmitProgrammatic,
|
|
343
346
|
So as ActionIntro,
|
|
344
|
-
|
|
347
|
+
To as ActionsContainer,
|
|
345
348
|
i as ActionsGroup,
|
|
346
349
|
P as AnimatedScroll,
|
|
347
350
|
N as AppBar,
|
|
348
351
|
so as AppBarComercial,
|
|
349
|
-
|
|
352
|
+
Ms as AppearanceComponentProvider,
|
|
350
353
|
v as AreasAdmin,
|
|
351
354
|
k as AreasContext,
|
|
352
355
|
h as AreasProvider,
|
|
353
356
|
b as AreasViewer,
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
357
|
+
hp as Autocomplete,
|
|
358
|
+
wp as AutocompleteAsync,
|
|
359
|
+
tm as Avatar,
|
|
360
|
+
sm as Badge,
|
|
358
361
|
Q as BaseModule,
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
362
|
+
ca as BooleanFormatter,
|
|
363
|
+
pm as BoxIcon,
|
|
364
|
+
nm as Breadcrumbs,
|
|
365
|
+
Im as Button,
|
|
363
366
|
Z as Card,
|
|
364
|
-
|
|
367
|
+
Om as CheckBox,
|
|
365
368
|
oo as CheckableList,
|
|
366
369
|
mo as Chip,
|
|
367
|
-
|
|
368
|
-
|
|
370
|
+
ga as ChipStatusFormatter,
|
|
371
|
+
xm as CircularProgress,
|
|
372
|
+
Kt as CodeEditor,
|
|
369
373
|
ao as ColorFieldPicker,
|
|
370
|
-
|
|
374
|
+
xa as ColorFormatter,
|
|
371
375
|
io as ColorPicker,
|
|
372
376
|
xo as ColorPickerField,
|
|
373
377
|
rr as ColumnBooleanFormatter,
|
|
374
378
|
tr as ColumnBooleanGroupFormatter,
|
|
375
379
|
te as ColumnChipStatusFormatter,
|
|
376
380
|
pe as ColumnChipStatusGroupFormatter,
|
|
377
|
-
|
|
378
|
-
|
|
381
|
+
ce as ColumnColorFormatter,
|
|
382
|
+
Fe as ColumnColorGroupFormatter,
|
|
379
383
|
nr as ColumnConcatenatedValueFormatter,
|
|
380
384
|
xr as ColumnConcatenatedValuesGroupFormatter,
|
|
381
385
|
ur as ColumnDateFormatter,
|
|
382
|
-
|
|
386
|
+
cr as ColumnDateGroupFormatter,
|
|
383
387
|
gr as ColumnIconFormatter,
|
|
384
|
-
|
|
388
|
+
Rr as ColumnIconGroupFormatter,
|
|
385
389
|
Ae as ColumnImageFormatter,
|
|
386
|
-
|
|
387
|
-
|
|
390
|
+
Ee as ColumnImageGroupFormatter,
|
|
391
|
+
Er as ColumnInteractiveCheckFormatter,
|
|
388
392
|
Or as ColumnNestedValueFormatter,
|
|
389
393
|
Mr as ColumnNestedValueGroupFormatter,
|
|
390
394
|
Br as ColumnPointsFormatter,
|
|
@@ -396,7 +400,7 @@ export {
|
|
|
396
400
|
se as ColumnTagsGroupFormatter,
|
|
397
401
|
Xr as ColumnUncertaintyFormatter,
|
|
398
402
|
$r as ColumnUncertaintyGroupFormatter,
|
|
399
|
-
|
|
403
|
+
Zp as ConcatenatedFormatter,
|
|
400
404
|
ko as ContainerFlow,
|
|
401
405
|
Xo as DATAGRID_ROW_HEADER_HEIGHTS,
|
|
402
406
|
Zo as DATAGRID_ROW_HEIGHTS,
|
|
@@ -407,343 +411,352 @@ export {
|
|
|
407
411
|
qe as DATE_TIME_RANGE_PICKER_DEFAULT_SHORTCUTS,
|
|
408
412
|
$e as DATE_TIME_RANGE_PICKER_DICTIONARY,
|
|
409
413
|
Qe as DATE_TIME_RANGE_PICKER_OPEN_BUTTON_LABEL,
|
|
414
|
+
Jt as DEFAULT_CODE_EDITOR_AT_LANGUAGE_TEMPLATE,
|
|
410
415
|
vo as DICTIONARY,
|
|
411
416
|
Vo as DataGrid,
|
|
412
|
-
|
|
413
|
-
|
|
417
|
+
zp as DateFormatter,
|
|
418
|
+
Gp as DatePicker,
|
|
414
419
|
he as DateRangeCalendarPicker,
|
|
415
|
-
|
|
420
|
+
We as DateTimeRangePicker,
|
|
416
421
|
Ge as DaysOfMonthPicker,
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
422
|
+
Ie as DaysOfWeekPicker,
|
|
423
|
+
Hp as Dialog,
|
|
424
|
+
Aa as DistanceToNowFormatter,
|
|
425
|
+
Bp as Divider,
|
|
421
426
|
Me as DragResizeWindowRND,
|
|
422
427
|
ft as DynamicFilter,
|
|
423
428
|
lt as DynamicForm,
|
|
424
|
-
|
|
425
|
-
|
|
429
|
+
Df as DynamicMFParmsContext,
|
|
430
|
+
Af as DynamicMFParmsProvider,
|
|
426
431
|
Nt as DynamicSort,
|
|
427
432
|
Dt as EMPTY_DATA,
|
|
428
433
|
Xe as EMPTY_DATE_TIME_RANGE_PICKER_VALUE,
|
|
429
434
|
Vt as FixedSizeList,
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
435
|
+
Oa as FormContainer,
|
|
436
|
+
li as FormProviderCustom,
|
|
437
|
+
Ma as GridLayout,
|
|
433
438
|
uo as HamburgerMenu,
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
439
|
+
Ua as HelmetPage,
|
|
440
|
+
Ka as HelperError,
|
|
441
|
+
Is as HostRuntimeContext,
|
|
442
|
+
_s as HostRuntimeProvider,
|
|
443
|
+
ep as ICON_CLASSES,
|
|
444
|
+
tp as ICON_KEY_COMPONENT,
|
|
445
|
+
mp as ICON_PREFIX,
|
|
446
|
+
Ei as Icon,
|
|
447
|
+
Em as IconButton,
|
|
443
448
|
f as IconButtonAnimate,
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
+
Ii as Image,
|
|
450
|
+
Bm as ImageButton,
|
|
451
|
+
sa as ImageFormatter,
|
|
452
|
+
Mi as ImageSelector,
|
|
453
|
+
ux as ImageText,
|
|
449
454
|
K as LABEL_FILTER_BUTTON,
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
455
|
+
Hi as Label,
|
|
456
|
+
Bi as LanguagePopover,
|
|
457
|
+
um as LinearProgress,
|
|
458
|
+
Gi as LinearProgressIndeterminate,
|
|
459
|
+
cm as LinkWithRoute,
|
|
460
|
+
hi as Loadable,
|
|
461
|
+
Fm as LoadingButton,
|
|
462
|
+
wi as LoadingError,
|
|
463
|
+
d as LoadingScreen,
|
|
464
|
+
ex as MFAppStorybook,
|
|
465
|
+
yf as MFHostRuntimeToolsContext,
|
|
466
|
+
If as MFHostRuntimeToolsProvider,
|
|
467
|
+
Qi as MFIsolationApp,
|
|
468
|
+
tx as MFIsolationAppStorybook,
|
|
469
|
+
nx as MFLoader,
|
|
470
|
+
Nf as MFObservabilityContext,
|
|
471
|
+
Mf as MFObservabilityProvider,
|
|
472
|
+
vf as MFRealtimeProducerToolsContext,
|
|
473
|
+
Bf as MFRealtimeProducerToolsProvider,
|
|
474
|
+
_f as MemoizedMFHostRuntimeToolsProvider,
|
|
475
|
+
Lf as MemoizedMFObservabilityProvider,
|
|
476
|
+
bf as MemoizedMFRealtimeProducerToolsProvider,
|
|
477
|
+
Sf as MemonizedDynamicMFParmsProvider,
|
|
478
|
+
ji as MemonizedMenuActions,
|
|
479
|
+
df as MemonizedWindowToolsMFContext,
|
|
480
|
+
Ji as MenuActions,
|
|
481
|
+
vs as ModalContext,
|
|
482
|
+
zf as ModalDialog,
|
|
483
|
+
Bs as ModalProvider,
|
|
479
484
|
l as MotionContainer,
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
+
C as MotionLazyContainer,
|
|
486
|
+
Mp as NavLink,
|
|
487
|
+
ua as NestedFormatter,
|
|
488
|
+
gx as NoItemPrivileges,
|
|
489
|
+
cx as NoItemSelected,
|
|
485
490
|
Ko as NumberEditor,
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
491
|
+
$n as NumberInputStyled,
|
|
492
|
+
Ex as ObjectLogs,
|
|
493
|
+
ql as ObjectQueue,
|
|
494
|
+
Ox as PDFViewer,
|
|
495
|
+
Cl as POPOVER_CONTAINER_ID,
|
|
496
|
+
cl as POPOVER_OVERLAY_ROOT_ATTRIBUTE,
|
|
497
|
+
dl as POPOVER_PAPER_ARIA_LABEL,
|
|
498
|
+
Fl as POPOVER_PAPER_SELECTOR,
|
|
499
|
+
jf as Pager,
|
|
500
|
+
Ix as PaperForm,
|
|
501
|
+
ra as PeriodFormatter,
|
|
502
|
+
oi as PeriodRootStyled,
|
|
503
|
+
qp as PointsFormatter,
|
|
504
|
+
Gm as Popover,
|
|
505
|
+
Hx as PopupsContext,
|
|
506
|
+
vx as PopupsProvider,
|
|
507
|
+
bx as PopupsViewer,
|
|
508
|
+
ma as PriceFormatter,
|
|
509
|
+
kx as PrintingSystem,
|
|
505
510
|
kt as PropagateLoaderSpinner,
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
511
|
+
Vx as PropertyValue,
|
|
512
|
+
Ri as RHFActionsGroup,
|
|
513
|
+
Ja as RHFAutocomplete,
|
|
514
|
+
Za as RHFAutocompleteAsync,
|
|
515
|
+
In as RHFCheckableList,
|
|
516
|
+
En as RHFCheckbox,
|
|
517
|
+
Rn as RHFCodeEditor,
|
|
518
|
+
gn as RHFColorPicker,
|
|
519
|
+
an as RHFDatePicker,
|
|
520
|
+
en as RHFDateTime,
|
|
521
|
+
mn as RHFDateTimePicker,
|
|
522
|
+
On as RHFDateTimeRangePicker,
|
|
523
|
+
Bn as RHFDaysOfMonthPicker,
|
|
524
|
+
Hn as RHFDaysOfWeekPicker,
|
|
525
|
+
un as RHFHelperError,
|
|
526
|
+
An as RHFImageSelector,
|
|
527
|
+
xn as RHFMultiCheckbox,
|
|
528
|
+
mi as RHFNumberInput,
|
|
529
|
+
jn as RHFPeriod,
|
|
530
|
+
ri as RHFPeriodRootStyled,
|
|
531
|
+
Xn as RHFPeriodSlots,
|
|
532
|
+
cn as RHFRadioGroup,
|
|
533
|
+
wn as RHFResourceDictionary,
|
|
534
|
+
sn as RHFSelect,
|
|
535
|
+
Ai as RHFSwitch,
|
|
536
|
+
Gn as RHFTextField,
|
|
537
|
+
hn as RHFTextFieldPassword,
|
|
538
|
+
Mn as RHFTimePicker,
|
|
539
|
+
ai as RHFUploadImage,
|
|
540
|
+
Fn as RHFUploadSingleFile,
|
|
541
|
+
qn as RHF_PERIOD_KEY_COMPONENT,
|
|
542
|
+
ui as RHFormProvider,
|
|
543
|
+
Mm as Radio,
|
|
544
|
+
Ut as ReactJsonViewer,
|
|
545
|
+
Lt as Resizable,
|
|
540
546
|
vt as ResizableBox,
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
547
|
+
Ha as Responsive,
|
|
548
|
+
tl as SKELETON_SVG_ICON,
|
|
549
|
+
Yx as ScrollBar,
|
|
544
550
|
Po as SectionCommercial,
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
551
|
+
hm as Select,
|
|
552
|
+
ei as SelectStyled,
|
|
553
|
+
Wf as SettingsLayout,
|
|
554
|
+
As as ShellObservabilityContext,
|
|
555
|
+
Ss as ShellObservabilityProvider,
|
|
556
|
+
Ux as SideBar,
|
|
557
|
+
wm as Skeleton,
|
|
558
|
+
yt as SortCompareValues,
|
|
553
559
|
bt as SplitLayout,
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
560
|
+
zm as Stack,
|
|
561
|
+
rs as Step,
|
|
562
|
+
Xf as Stepper,
|
|
563
|
+
us as StepperCancelButton,
|
|
564
|
+
$f as StepperContent,
|
|
565
|
+
ts as StepperFooter,
|
|
566
|
+
ps as StepperFooterLeftActions,
|
|
567
|
+
ns as StepperFooterRightActions,
|
|
568
|
+
xs as StepperNextButton,
|
|
569
|
+
ss as StepperPrevButton,
|
|
570
|
+
cs as StepperSubmitButton,
|
|
571
|
+
Hm as Switch,
|
|
572
|
+
Cp as TOGGLE_BUTTON_KEY_COMPONENT,
|
|
573
|
+
Sp as TOGGLE_ICON_BUTTON_CLASS_NAME_SPECIFY,
|
|
574
|
+
Ep as TOGGLE_ICON_BUTTON_KEY_COMPONENT,
|
|
575
|
+
pp as TYPOGRAPHY_CLASSES,
|
|
576
|
+
ap as TYPOGRAPHY_CLASS_NAME_SPECIFY,
|
|
577
|
+
np as TYPOGRAPHY_FONTS,
|
|
578
|
+
ip as TYPOGRAPHY_KEY_COMPONENT,
|
|
579
|
+
Wm as Tab,
|
|
580
|
+
qm as TabContent,
|
|
581
|
+
Xm as TabContext,
|
|
582
|
+
Zm as TabProvider,
|
|
583
|
+
jm as Tabs,
|
|
584
|
+
Qx as TabsNavigator,
|
|
585
|
+
na as TagsFormatter,
|
|
580
586
|
jo as TextEditor,
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
587
|
+
of as TimePicker,
|
|
588
|
+
Kx as ToastContainer,
|
|
589
|
+
Jx as ToastMessage,
|
|
590
|
+
lp as ToggleButton,
|
|
591
|
+
Pp as ToggleButtonRootStyled,
|
|
592
|
+
dp as ToggleButtonSlots,
|
|
593
|
+
Dp as ToggleIconButton,
|
|
594
|
+
Op as ToggleIconButtonRootStyled,
|
|
595
|
+
Ip as ToggleIconButtonSlots,
|
|
596
|
+
Am as Tooltip,
|
|
597
|
+
co as TopBar,
|
|
592
598
|
Yo as TreeDataGrid,
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
599
|
+
op as Typography,
|
|
600
|
+
Kp as UncertaintyFormatter,
|
|
601
|
+
ii as VALIDATION_OBJECT_BRAND,
|
|
602
|
+
xi as VALIDATION_PARTIAL_OBJECT_BRAND,
|
|
603
|
+
fi as VALIDATION_SCHEMA_BRAND,
|
|
598
604
|
Yt as VariableSizeList,
|
|
599
605
|
Be as WINDOW_SIZES,
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
606
|
+
ef as WindowBase,
|
|
607
|
+
kf as WindowConfirm,
|
|
608
|
+
Ff as WindowToolsMFContext,
|
|
609
|
+
Pf as WindowToolsMFProvider,
|
|
610
|
+
Ba as addLayoutItemToBreakPointIfNoExists,
|
|
611
|
+
ba as addLayoutItemToBreakPoints,
|
|
612
|
+
Ll as capitalizeFirstLetter,
|
|
613
|
+
Ga as cloneLayouts,
|
|
614
|
+
qt as createCodeEditorLezerSyntaxValidator,
|
|
615
|
+
px as createComponentsMFIsolationAppStorybookProps,
|
|
616
|
+
au as createCustomDeepShallow,
|
|
617
|
+
Tf as createDynamicMFStore,
|
|
618
|
+
di as createEmptyValidationSchema,
|
|
612
619
|
e as createToaster,
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
620
|
+
Fi as createValidationFullObject,
|
|
621
|
+
Pi as createValidationPartialObject,
|
|
622
|
+
gi as createValidationSchema,
|
|
623
|
+
nu as deepShallow,
|
|
617
624
|
Bo as defaultCommonActionsDictionary,
|
|
618
625
|
Ye as defaultDateRangeCalendarPickerDictionary,
|
|
619
626
|
ot as defaultDateTimeRangePickerDictionary,
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
627
|
+
He as dragResizeWindowRNDClasses,
|
|
628
|
+
Qt as ensureCodeEditorRuntimeDependencies,
|
|
629
|
+
Fs as evaluateVisibilityStepCondition,
|
|
630
|
+
ou as formatDistanceToNow,
|
|
623
631
|
a as getAccountPopoverDictionary,
|
|
624
|
-
|
|
632
|
+
L as getAppBarDictionary,
|
|
625
633
|
j as getAreasComponentsDictionary,
|
|
626
634
|
J as getAreasDictionary,
|
|
627
|
-
|
|
635
|
+
Fa as getBooleanFormatterComponentsDictionary,
|
|
628
636
|
eo as getCheckableListComponentsDictionary,
|
|
629
637
|
bo as getCommonActionsDictionary,
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
638
|
+
Xl as getComponentClasses,
|
|
639
|
+
Zl as getComponentSlotRoot,
|
|
640
|
+
bl as getComponentUtilityClass,
|
|
641
|
+
Uo as getDataGridComponentsDictionary,
|
|
634
642
|
qo as getDataGridRowsFromSet,
|
|
635
643
|
ze as getDateRangeCalendarPickerComponentsDictionary,
|
|
636
644
|
rt as getDateTimeRangePickerComponentsDictionary,
|
|
637
645
|
Oe as getDaysOfWeekPickerDictionary,
|
|
638
|
-
|
|
646
|
+
Ra as getDistanceToNowFormatterComponentsDictionary,
|
|
639
647
|
tt as getDynamicFilterComponentsDictionary,
|
|
640
|
-
|
|
648
|
+
Ct as getDynamicFormComponentsDictionary,
|
|
641
649
|
St as getDynamicSortComponentsDictionary,
|
|
642
650
|
pt as getFilterGroupFieldsByName,
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
651
|
+
Gs as getFormComponentsDictionary,
|
|
652
|
+
$p as getFormatConcatenated,
|
|
653
|
+
Up as getFormatDate,
|
|
654
|
+
Qp as getFormatPoints,
|
|
655
|
+
pa as getFormatPrice,
|
|
656
|
+
Ia as getFormattersComponentsDictionary,
|
|
657
|
+
Ul as getHeightSizeStyles,
|
|
658
|
+
Yl as getIconColor,
|
|
659
|
+
Oi as getImageSelectorComponentsDictionary,
|
|
660
|
+
jl as getInputAlignmentIconButtonOverrides,
|
|
653
661
|
at as getIsIfInDynamicFilter,
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
662
|
+
zi as getLoadingErrorComponentsDictionary,
|
|
663
|
+
xx as getMFLoaderComponentsDictionary,
|
|
664
|
+
Wi as getMenuActionsComponentsDictionary,
|
|
665
|
+
Vf as getModalDialogComponentsDictionary,
|
|
666
|
+
wf as getModalDictionary,
|
|
667
|
+
Rx as getNoItemPrivilegesComponentsDictionary,
|
|
668
|
+
Fx as getNoItemSelectedComponentsDictionary,
|
|
669
|
+
mu as getNullGuard,
|
|
670
|
+
Ax as getObjectLogsComponentsDictionary,
|
|
671
|
+
gm as getPagerComponentsDictionary,
|
|
672
|
+
kl as getPaletteColor,
|
|
673
|
+
zn as getPeriodComponetsDictionary,
|
|
674
|
+
on as getRHFAutocompleteAsyncComponentsDictionary,
|
|
675
|
+
Qa as getRHFAutocompleteComponentsDictionary,
|
|
668
676
|
it as getRawFiltersForNetwork,
|
|
669
677
|
_t as getRawSortsForNetwork,
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
678
|
+
Wl as getSizeStyles,
|
|
679
|
+
Rs as getStepperComponentsDictionary,
|
|
680
|
+
gs as getStepsAndValidationSchema,
|
|
681
|
+
Zx as getTabsNavigatorComponentsDictionary,
|
|
682
|
+
Vl as getTypographyStyles,
|
|
683
|
+
jp as getUncertaintyFormat,
|
|
684
|
+
eu as getValidDate,
|
|
685
|
+
Ws as getformAddEditDictionary,
|
|
686
|
+
ha as isEqualLayout,
|
|
687
|
+
Va as isEqualLayouts,
|
|
688
|
+
vl as isValidDate,
|
|
689
|
+
sx as projectMFHostRuntimeTools,
|
|
690
|
+
Xt as registerCodeEditorLanguage,
|
|
691
|
+
Zt as registerCodeEditorLanguageTemplate,
|
|
692
|
+
$t as registerCodeEditorSyntaxValidator,
|
|
693
|
+
Zi as registerMFIsolationRuntimeErrorHandler,
|
|
694
|
+
$i as reportMFIsolationRuntimeError,
|
|
695
|
+
om as resolveCodeEditorLanguage,
|
|
696
|
+
rm as resolveCodeEditorLanguageTemplate,
|
|
697
|
+
sl as resolvePopoverContainer,
|
|
698
|
+
gl as resolvePopoverPaperProps,
|
|
699
|
+
Wn as rhfPeriodStyles,
|
|
700
|
+
fp as toggleButtonStyles,
|
|
701
|
+
Tp as toggleIconButtonStyles,
|
|
702
|
+
ox as unregisterMFIsolationRuntimeErrorHandler,
|
|
703
|
+
Ls as useAppearanceComponentStore,
|
|
691
704
|
w as useAreasHasExpandedModule,
|
|
692
705
|
Y as useAreasStore,
|
|
693
706
|
pr as useColumnBoolean,
|
|
694
707
|
ne as useColumnChipStatus,
|
|
695
708
|
ge as useColumnColor,
|
|
696
709
|
sr as useColumnConcatenatedValue,
|
|
697
|
-
|
|
710
|
+
Fr as useColumnDate,
|
|
698
711
|
Ar as useColumnIcon,
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
712
|
+
Re as useColumnImage,
|
|
713
|
+
Ir as useColumnInteractiveCheck,
|
|
714
|
+
Hr as useColumnNestedValue,
|
|
702
715
|
hr as useColumnPoints,
|
|
703
|
-
|
|
716
|
+
Wr as useColumnPrice,
|
|
704
717
|
qr as useColumnSetCheck,
|
|
705
718
|
ue as useColumnTags,
|
|
706
719
|
re as useColumnUncertanity,
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
720
|
+
Xs as useComponentSize,
|
|
721
|
+
Ci as useCustomForm,
|
|
722
|
+
xl as useDataGridPersistence,
|
|
723
|
+
Ea as useDistanceToNowFormatter,
|
|
724
|
+
nl as useDynamicFilterAndSort,
|
|
725
|
+
dt as useDynamicForm,
|
|
726
|
+
Tt as useDynamicFormCoupled,
|
|
714
727
|
Pt as useDynamicFormData,
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
728
|
+
af as useDynamicMFParameters,
|
|
729
|
+
nf as useDynamicMFParametersStore,
|
|
730
|
+
hs as useFormAddEdit,
|
|
731
|
+
js as useFormFocus,
|
|
732
|
+
$s as useFormReadyForUpdate,
|
|
733
|
+
ea as useFormatPeriod,
|
|
734
|
+
Os as useHostRuntime,
|
|
735
|
+
qs as useInterval,
|
|
736
|
+
Dl as useIsVisible,
|
|
737
|
+
ff as useMFHostRuntimeTools,
|
|
738
|
+
lf as useMFObservability,
|
|
739
|
+
Cf as useMFRealtimeProducerTools,
|
|
740
|
+
ws as useModal,
|
|
741
|
+
ll as usePopoverContainer,
|
|
742
|
+
Tl as usePopoverPaperProps,
|
|
743
|
+
Mx as usePopupsStore,
|
|
744
|
+
Es as useShellObservability,
|
|
745
|
+
Sl as useSizeContainer,
|
|
746
|
+
rl as useStateRef,
|
|
747
|
+
qf as useStepper,
|
|
748
|
+
pl as useSvgColor,
|
|
749
|
+
zs as useTab,
|
|
750
|
+
yl as useWatchTyped,
|
|
751
|
+
Lo as useWindowCloseGuard,
|
|
752
|
+
mf as useWindowToolsMF,
|
|
740
753
|
D as varBounce,
|
|
741
754
|
S as varContainer,
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
755
|
+
T as varFade,
|
|
756
|
+
y as varTranEnter,
|
|
757
|
+
I as varTranExit,
|
|
745
758
|
_ as varTranHover,
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
759
|
+
Nl as withRHFController,
|
|
760
|
+
Ya as withSizeProvider,
|
|
761
|
+
_l as withToggle
|
|
749
762
|
};
|