@m4l/components 9.3.41-JT04122025.beta.1 → 9.3.41-JT04122025.beta.2
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/DataGrid/DataGrid.js +7 -1
- package/components/DataGrid/contexts/DataGridContext/index.js +56 -275
- package/components/DataGrid/contexts/DataGridContext/types.d.ts +24 -23
- 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/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/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/getViewMode/getViewMode.d.ts +41 -0
- package/components/DataGrid/helpers/getViewMode/getViewMode.js +19 -0
- package/components/DataGrid/helpers/getViewMode/getViewMode.test.d.ts +1 -0
- package/components/DataGrid/helpers/getViewMode/index.d.ts +1 -0
- package/components/DataGrid/helpers/getViewMode/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 +13 -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 +31 -0
- package/components/DataGrid/hooks/useViewMode/useViewMode.js +44 -0
- package/components/DataGrid/hooks/useViewMode/useViewMode.test.d.ts +1 -0
- package/components/DataGrid/index.d.ts +5 -4
- package/components/DataGrid/types.d.ts +30 -6
- package/components/DataGrid/types.helpers.d.ts +55 -0
- package/components/DataGrid/types.helpers.js +1 -0
- package/components/DataGrid/types.hooks.d.ts +81 -0
- package/components/Stepper/hooks/useDynamicValidation/index.d.ts +1 -2
- package/components/Stepper/hooks/useDynamicValidation/index.js +6 -31
- package/components/Stepper/index.d.ts +0 -1
- package/{components/Stepper/helpers → helpers}/getStepsAndValidationSchema/getStepsAndValidationSchema.d.ts +4 -4
- package/{components/Stepper/helpers → helpers}/getStepsAndValidationSchema/getStepsAndValidationSchema.js +12 -6
- package/helpers/getStepsAndValidationSchema/index.js +1 -0
- package/{components/Stepper/helpers → helpers}/getStepsAndValidationSchema/types.d.ts +3 -6
- package/helpers/getStepsAndValidationSchema/types.js +1 -0
- package/helpers/index.d.ts +1 -0
- package/helpers/index.js +1 -0
- package/hooks/useDataGridPersistence/constants.d.ts +1 -0
- package/hooks/useDataGridPersistence/constants.js +4 -2
- package/hooks/useDataGridPersistence/useDataGridPersistence.d.ts +11 -3
- package/hooks/useDataGridPersistence/useDataGridPersistence.js +13 -6
- package/index.d.ts +1 -0
- package/index.js +24 -24
- package/package.json +1 -1
- /package/components/{Stepper/helpers/getStepsAndValidationSchema → DataGrid/helpers/getAllViewModes}/index.js +0 -0
- /package/components/{Stepper/helpers/getStepsAndValidationSchema/types.js → DataGrid/helpers/getColumnsWidth/index.js} +0 -0
- /package/{components/Stepper/helpers → helpers}/getStepsAndValidationSchema/index.d.ts +0 -0
|
@@ -1,18 +1,24 @@
|
|
|
1
|
-
import { b as createValidationPartialObject, c as createValidationSchema, a as createValidationFullObject } from "
|
|
1
|
+
import { b as createValidationPartialObject, c as createValidationSchema, a as createValidationFullObject } from "../../components/hook-form/RHFormProvider/schema.js";
|
|
2
|
+
import { e as evaluateVisibilityStepCondition } from "../../components/Stepper/helpers/evaluateVisibilityStepCondition/index.js";
|
|
2
3
|
function getStepsAndValidationSchema({
|
|
3
|
-
steps
|
|
4
|
+
steps,
|
|
5
|
+
visibilityData
|
|
4
6
|
}) {
|
|
5
7
|
const validationSchema = (() => {
|
|
6
8
|
const combinedValidations = createValidationPartialObject({});
|
|
7
|
-
steps.
|
|
9
|
+
const visibleSteps = steps.filter((step) => {
|
|
10
|
+
if (!step.visibilityCondition) {
|
|
11
|
+
return true;
|
|
12
|
+
}
|
|
13
|
+
return evaluateVisibilityStepCondition(step, void 0, visibilityData);
|
|
14
|
+
});
|
|
15
|
+
visibleSteps.forEach((step) => {
|
|
8
16
|
if (step.validationFunction) {
|
|
9
17
|
const validationResult = step.validationFunction();
|
|
10
18
|
Object.assign(combinedValidations, validationResult);
|
|
11
19
|
}
|
|
12
20
|
});
|
|
13
|
-
return createValidationSchema(
|
|
14
|
-
createValidationFullObject(combinedValidations)
|
|
15
|
-
);
|
|
21
|
+
return createValidationSchema(createValidationFullObject(combinedValidations));
|
|
16
22
|
})();
|
|
17
23
|
const processedSteps = steps.map((step) => {
|
|
18
24
|
let validationFields = [];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { RHFormValues, ValidationPartialObject } from '
|
|
2
|
-
import { Step } from '../../types';
|
|
1
|
+
import { RHFormValues, ValidationPartialObject } from '../../components/hook-form/RHFormProvider/types';
|
|
2
|
+
import { Step } from '../../components/Stepper/types';
|
|
3
3
|
/**
|
|
4
4
|
* Configuración completa de un step con validaciones incluidas
|
|
5
5
|
*/
|
|
@@ -16,10 +16,7 @@ export interface GetStepsAndValidationSchemaProps<T extends RHFormValues> {
|
|
|
16
16
|
*/
|
|
17
17
|
steps: StepWithValidation<T>[];
|
|
18
18
|
/**
|
|
19
|
-
*
|
|
20
|
-
* El schema ahora incluye validaciones de TODOS los steps, no solo los visibles.
|
|
21
|
-
* visibilityData se debe pasar directamente al componente Stepper para evaluar
|
|
22
|
-
* visibilityCondition en tiempo real. Se eliminará en futuras versiones.
|
|
19
|
+
* Datos adicionales para visibilityCondition (ej: objectId)
|
|
23
20
|
*/
|
|
24
21
|
visibilityData?: any;
|
|
25
22
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './getStepsAndValidationSchema';
|
package/helpers/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
const COOKIE_COLUMNS_WIDTHS = "columns_widths";
|
|
2
2
|
const COOKIE_COLUMNS_CONFIG = "columns_config";
|
|
3
|
+
const COOKIE_VIEW_MODE = "view_mode";
|
|
3
4
|
export {
|
|
4
|
-
|
|
5
|
-
|
|
5
|
+
COOKIE_VIEW_MODE as C,
|
|
6
|
+
COOKIE_COLUMNS_CONFIG as a,
|
|
7
|
+
COOKIE_COLUMNS_WIDTHS as b
|
|
6
8
|
};
|
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
import { UseDataGridPersistenceProps } from './types';
|
|
2
|
-
import {
|
|
2
|
+
import { ChangeConfig, IGridConfigExtended } from '../../components/DataGrid';
|
|
3
3
|
/**
|
|
4
|
-
* Hook para manejar
|
|
4
|
+
* Hook para manejar la persistencia de configuración del DataGrid en cookies de red.
|
|
5
|
+
*
|
|
6
|
+
* Retorna:
|
|
7
|
+
* - `defaultConfig`: Configuración inicial cargada desde cookies
|
|
8
|
+
* - `onChangeConfig`: Callback para persistir cambios en cookies
|
|
9
|
+
* - `defaultUserColumns`: @deprecated Alias de defaultConfig
|
|
10
|
+
* - `onChangeUserColumns`: @deprecated Alias de onChangeConfig
|
|
5
11
|
*/
|
|
6
12
|
export declare const useDataGridPersistence: (props: UseDataGridPersistenceProps) => {
|
|
7
|
-
|
|
13
|
+
defaultConfig: IGridConfigExtended;
|
|
14
|
+
onChangeConfig: (newProps: ChangeConfig) => void;
|
|
8
15
|
defaultUserColumns: IGridConfigExtended;
|
|
16
|
+
onChangeUserColumns: (newProps: ChangeConfig) => void;
|
|
9
17
|
};
|
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
import { useState, useCallback } from "react";
|
|
2
2
|
import { g as getColumnsConfigCookie } from "./helpers.js";
|
|
3
|
-
import { C as
|
|
3
|
+
import { C as COOKIE_VIEW_MODE, a as COOKIE_COLUMNS_CONFIG, b as COOKIE_COLUMNS_WIDTHS } from "./constants.js";
|
|
4
4
|
import { u as useWindowToolsMF } from "../../components/WindowBase/hooks/useWindowToolsMF/index.js";
|
|
5
5
|
const useDataGridPersistence = (props) => {
|
|
6
6
|
const { prefixCookie } = props;
|
|
7
7
|
const { setCookie, getCookie } = useWindowToolsMF();
|
|
8
|
-
const [
|
|
8
|
+
const [defaultConfig] = useState(() => {
|
|
9
9
|
return {
|
|
10
10
|
columnsWidths: getCookie(prefixCookie ? `${prefixCookie}_${COOKIE_COLUMNS_WIDTHS}` : COOKIE_COLUMNS_WIDTHS) || {},
|
|
11
|
-
columnsConfig: getColumnsConfigCookie(getCookie(prefixCookie ? `${prefixCookie}_${COOKIE_COLUMNS_CONFIG}` : COOKIE_COLUMNS_CONFIG)) || []
|
|
11
|
+
columnsConfig: getColumnsConfigCookie(getCookie(prefixCookie ? `${prefixCookie}_${COOKIE_COLUMNS_CONFIG}` : COOKIE_COLUMNS_CONFIG)) || [],
|
|
12
|
+
viewMode: getCookie(prefixCookie ? `${prefixCookie}_${COOKIE_VIEW_MODE}` : COOKIE_VIEW_MODE) || "table"
|
|
12
13
|
};
|
|
13
14
|
});
|
|
14
|
-
const
|
|
15
|
+
const onChangeConfig = useCallback((newProps) => {
|
|
15
16
|
const { reason, userConfig } = newProps;
|
|
16
17
|
if (userConfig === void 0) {
|
|
17
18
|
return;
|
|
@@ -20,13 +21,19 @@ const useDataGridPersistence = (props) => {
|
|
|
20
21
|
setCookie(prefixCookie ? `${prefixCookie}_${COOKIE_COLUMNS_CONFIG}` : COOKIE_COLUMNS_CONFIG, "window", userConfig);
|
|
21
22
|
} else if (reason === "columnsWidths") {
|
|
22
23
|
setCookie(prefixCookie ? `${prefixCookie}_${COOKIE_COLUMNS_WIDTHS}` : COOKIE_COLUMNS_WIDTHS, "window", userConfig);
|
|
24
|
+
} else if (reason === "viewMode") {
|
|
25
|
+
setCookie(prefixCookie ? `${prefixCookie}_${COOKIE_VIEW_MODE}` : COOKIE_VIEW_MODE, "window", userConfig);
|
|
23
26
|
} else {
|
|
24
27
|
setCookie(prefixCookie ? `${prefixCookie}_${reason}` : reason, "window", userConfig);
|
|
25
28
|
}
|
|
26
29
|
}, [setCookie, prefixCookie]);
|
|
27
30
|
return {
|
|
28
|
-
|
|
29
|
-
|
|
31
|
+
// Nuevos nombres
|
|
32
|
+
defaultConfig,
|
|
33
|
+
onChangeConfig,
|
|
34
|
+
// Deprecated aliases para backward compatibility
|
|
35
|
+
defaultUserColumns: defaultConfig,
|
|
36
|
+
onChangeUserColumns: onChangeConfig
|
|
30
37
|
};
|
|
31
38
|
};
|
|
32
39
|
export {
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -230,16 +230,15 @@ import { S as S18 } from "./components/Stepper/subcomponents/StepperButtons/Step
|
|
|
230
230
|
import { S as S19 } from "./components/Stepper/subcomponents/StepperButtons/StepperCancelButton/index.js";
|
|
231
231
|
import { S as S20 } from "./components/Stepper/subcomponents/StepperButtons/StepperSubmitButton/index.js";
|
|
232
232
|
import { e as e2 } from "./components/Stepper/helpers/evaluateVisibilityStepCondition/index.js";
|
|
233
|
-
import { g as g30 } from "./components/Stepper/
|
|
234
|
-
import { g as g31 } from "./components/
|
|
235
|
-
import { g as g32 } from "./components/hook-form/RHFormProvider/dictionary.js";
|
|
233
|
+
import { g as g30 } from "./components/Stepper/dictionary.js";
|
|
234
|
+
import { g as g31 } from "./components/hook-form/RHFormProvider/dictionary.js";
|
|
236
235
|
import { u as u23 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
|
|
237
236
|
import { A as A17 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
|
|
238
237
|
import { a as a17, M as M10 } from "./contexts/ModalContext/index.js";
|
|
239
238
|
import { u as u24 } from "./hooks/useFormAddEdit/useFormAddEdit.js";
|
|
240
239
|
import { u as u25 } from "./hooks/useModal/index.js";
|
|
241
240
|
import { u as u26 } from "./hooks/useTab/index.js";
|
|
242
|
-
import { g as
|
|
241
|
+
import { g as g32 } from "./hooks/useFormAddEdit/dictionary.js";
|
|
243
242
|
import { u as u27 } from "./hooks/useFormFocus/index.js";
|
|
244
243
|
import { u as u28 } from "./hooks/useInterval/index.js";
|
|
245
244
|
import { u as u29 } from "./hooks/useComponentSize/useComponentSize.js";
|
|
@@ -255,17 +254,18 @@ import { u as u37 } from "./hooks/useSizeContainer/index.js";
|
|
|
255
254
|
import { u as u38 } from "./hooks/useWatchTyped/useTypedWatch.js";
|
|
256
255
|
import { c as c5 } from "./utils/capitalizeFirstLetter.js";
|
|
257
256
|
import { i as i2 } from "./utils/isValidDate.js";
|
|
258
|
-
import { g as
|
|
259
|
-
import { g as
|
|
260
|
-
import { g as
|
|
261
|
-
import { g as
|
|
262
|
-
import { a as a18, g as
|
|
257
|
+
import { g as g33 } from "./utils/getComponentUtilityClass.js";
|
|
258
|
+
import { g as g34 } from "./utils/getPaletteColor.js";
|
|
259
|
+
import { g as g35 } from "./utils/getTypographyStyles.js";
|
|
260
|
+
import { g as g36 } from "./utils/getIconColor.js";
|
|
261
|
+
import { a as a18, g as g37 } from "./utils/getSizeStyles/getSizeStyles.js";
|
|
263
262
|
import { O as O2 } from "./utils/ObjectQueue.js";
|
|
264
|
-
import { g as
|
|
263
|
+
import { g as g38, a as a19 } from "./utils/getComponentSlotRoot.js";
|
|
265
264
|
import { f as f2 } from "./utils/formatDistanceToNow/formatDistanteToNow.js";
|
|
266
|
-
import { g as
|
|
267
|
-
import { g as
|
|
265
|
+
import { g as g39 } from "./utils/getValidDate.js";
|
|
266
|
+
import { g as g40 } from "./utils/getNullGuard.js";
|
|
268
267
|
import { c as c6, d as d5 } from "./utils/deepShallow.js";
|
|
268
|
+
import { g as g41 } from "./helpers/getStepsAndValidationSchema/getStepsAndValidationSchema.js";
|
|
269
269
|
export {
|
|
270
270
|
A8 as AREAS_DICCTIONARY,
|
|
271
271
|
a3 as AREAS_DICTIONARY_ID,
|
|
@@ -487,23 +487,23 @@ export {
|
|
|
487
487
|
b2 as getAreasComponentsDictionary,
|
|
488
488
|
g3 as getAreasDictionary,
|
|
489
489
|
g4 as getCommonActionsDictionary,
|
|
490
|
-
|
|
490
|
+
g38 as getComponentClasses,
|
|
491
491
|
a19 as getComponentSlotRoot,
|
|
492
|
-
|
|
492
|
+
g33 as getComponentUtilityClass,
|
|
493
493
|
g5 as getDataGridComponentsDictionary,
|
|
494
494
|
g6 as getDataGridRowsFromSet,
|
|
495
495
|
g17 as getDistanceToNowFormatterComponentsDictionary,
|
|
496
496
|
g7 as getDynamicFilterComponentsDictionary,
|
|
497
497
|
a6 as getDynamicSortComponentsDictionary,
|
|
498
498
|
a5 as getFilterGroupFieldsByName,
|
|
499
|
-
|
|
499
|
+
g31 as getFormComponentsDictionary,
|
|
500
500
|
g15 as getFormatConcatenated,
|
|
501
501
|
g12 as getFormatDate,
|
|
502
502
|
g14 as getFormatPoints,
|
|
503
503
|
g16 as getFormatPrice,
|
|
504
504
|
g18 as getFormattersComponentsDictionary,
|
|
505
505
|
a18 as getHeightSizeStyles,
|
|
506
|
-
|
|
506
|
+
g36 as getIconColor,
|
|
507
507
|
g8 as getIsIfInDynamicFilter,
|
|
508
508
|
g22 as getLoadingErrorComponentsDictionary,
|
|
509
509
|
g24 as getMFLoaderComponentsDictionary,
|
|
@@ -512,23 +512,23 @@ export {
|
|
|
512
512
|
g29 as getModalDictionary,
|
|
513
513
|
g26 as getNoItemPrivilegesComponentsDictionary,
|
|
514
514
|
g25 as getNoItemSelectedComponentsDictionary,
|
|
515
|
-
|
|
515
|
+
g40 as getNullGuard,
|
|
516
516
|
g27 as getObjectLogsComponentsDictionary,
|
|
517
517
|
g11 as getPagerComponentsDictionary,
|
|
518
|
-
|
|
518
|
+
g34 as getPaletteColor,
|
|
519
519
|
g21 as getPeriodComponetsDictionary,
|
|
520
520
|
g20 as getRHFAutocompleteAsyncComponentsDictionary,
|
|
521
521
|
g19 as getRHFAutocompleteComponentsDictionary,
|
|
522
522
|
g9 as getRawFiltersForNetwork,
|
|
523
523
|
g10 as getRawSortsForNetwork,
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
524
|
+
g37 as getSizeStyles,
|
|
525
|
+
g30 as getStepperComponentsDictionary,
|
|
526
|
+
g41 as getStepsAndValidationSchema,
|
|
527
527
|
g28 as getTabsNavigatorComponentsDictionary,
|
|
528
|
-
|
|
528
|
+
g35 as getTypographyStyles,
|
|
529
529
|
g13 as getUncertaintyFormat,
|
|
530
|
-
|
|
531
|
-
|
|
530
|
+
g39 as getValidDate,
|
|
531
|
+
g32 as getformAddEditDictionary,
|
|
532
532
|
i as isEqualLayout,
|
|
533
533
|
k as isEqualLayouts,
|
|
534
534
|
i2 as isValidDate,
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|