@m4l/components 9.2.15-beta.1 → 9.2.15
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/formatters/{ColumnConcatenatedValueFormatter → ColumnConcatenatedValuesFormatter}/formatter.d.ts +1 -1
- package/components/DataGrid/formatters/{ColumnConcatenatedValueFormatter → ColumnConcatenatedValuesFormatter}/formatter.js +2 -2
- package/components/DataGrid/formatters/ColumnConcatenatedValuesFormatter/index.d.ts +3 -0
- package/components/DataGrid/formatters/{ColumnConcatenatedValueFormatter/useColumnConcatenatedValue.d.ts → ColumnConcatenatedValuesFormatter/useColumnConcatenatedValues.d.ts} +1 -1
- package/components/DataGrid/formatters/{ColumnConcatenatedValueFormatter/useColumnConcatenatedValue.js → ColumnConcatenatedValuesFormatter/useColumnConcatenatedValues.js} +4 -4
- package/components/DataGrid/formatters/ColumnNestedValueFormatter/formatter.js +2 -2
- package/components/DataGrid/formatters/index.d.ts +1 -1
- package/components/MenuActions/index.d.ts +1 -0
- package/components/PropertyValue/PropertyValue.js +1 -1
- package/components/extended/React-Splitter-Layout/index.d.ts +1 -0
- package/components/index.d.ts +1 -4
- package/components/mui_extended/Tabs/index.d.ts +1 -0
- package/components/mui_extended/Tabs/slots/TabsSlots.d.ts +2 -2
- package/components/mui_extended/index.d.ts +2 -2
- package/index.js +136 -138
- package/package.json +8 -9
- package/components/DataGrid/formatters/ColumnConcatenatedValueFormatter/index.d.ts +0 -3
- package/components/ScrollToTop/index.d.ts +0 -4
- package/components/ScrollToTop/index.js +0 -12
- package/components/WrapperComponent/index.js +0 -14
- /package/components/DataGrid/formatters/{ColumnConcatenatedValueFormatter → ColumnConcatenatedValuesFormatter}/index.js +0 -0
- /package/components/DataGrid/formatters/{ColumnConcatenatedValueFormatter → ColumnConcatenatedValuesFormatter}/types.d.ts +0 -0
|
@@ -4,4 +4,4 @@ import { ColumnConcatenatedValuesFormatterProps } from './types';
|
|
|
4
4
|
* @param props
|
|
5
5
|
* @returns
|
|
6
6
|
*/
|
|
7
|
-
export declare function
|
|
7
|
+
export declare function ColumnConcatenatedValuesFormatter(props: ColumnConcatenatedValuesFormatterProps): (obProps: any) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -2,7 +2,7 @@ import { jsx } from "react/jsx-runtime";
|
|
|
2
2
|
import { getPropertyByString } from "@m4l/core";
|
|
3
3
|
import React from "react";
|
|
4
4
|
import { C as ConcatenatedFormatter } from "../../../formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
|
|
5
|
-
function
|
|
5
|
+
function ColumnConcatenatedValuesFormatter(props) {
|
|
6
6
|
const { fieldValue, fieldSeparator, Component = React.Fragment } = props;
|
|
7
7
|
return (obProps) => {
|
|
8
8
|
const values = fieldValue.map((element) => {
|
|
@@ -19,5 +19,5 @@ function ColumnConcatenatedValueFormatter(props) {
|
|
|
19
19
|
};
|
|
20
20
|
}
|
|
21
21
|
export {
|
|
22
|
-
|
|
22
|
+
ColumnConcatenatedValuesFormatter as C
|
|
23
23
|
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export { ColumnConcatenatedValuesFormatter as ColumnConcatenatedValueFormatter } from './formatter';
|
|
2
|
+
export type { ColumnConcatenatedValuesFormatterProps } from './types';
|
|
3
|
+
export { useColumnConcatenatedValues as useColumnConcatenatedValue } from './useColumnConcatenatedValues';
|
|
@@ -2,7 +2,7 @@ import { ColumnConcatenatedValuesFormatterProps } from './types';
|
|
|
2
2
|
/**
|
|
3
3
|
* Funcion helper que retorna el formatter, filter y customSort de la columna concatenada.
|
|
4
4
|
*/
|
|
5
|
-
export declare const
|
|
5
|
+
export declare const useColumnConcatenatedValues: <TRow>(props: ColumnConcatenatedValuesFormatterProps) => {
|
|
6
6
|
formatter: (obProps: any) => import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
customFilter: (row: TRow, value: string) => boolean;
|
|
8
8
|
customSort: (a: TRow, b: TRow) => 0 | 1 | -1;
|
|
@@ -3,7 +3,7 @@ import { deepEqual } from "fast-equals";
|
|
|
3
3
|
import { g as getColumnKey } from "../../helpers/getColumnKey.js";
|
|
4
4
|
import { g as getFormatConcatenated } from "../../../formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
|
|
5
5
|
import { useState, useRef, useEffect, useMemo } from "react";
|
|
6
|
-
import { C as
|
|
6
|
+
import { C as ColumnConcatenatedValuesFormatter } from "./formatter.js";
|
|
7
7
|
const getArrayValuesWithFieldValue = (row, fieldValue) => {
|
|
8
8
|
const values = fieldValue.map((element) => {
|
|
9
9
|
const keyWiouthRow = getColumnKey(element);
|
|
@@ -39,7 +39,7 @@ const getCustomConcatenatedValueSort = (props) => {
|
|
|
39
39
|
return 0;
|
|
40
40
|
};
|
|
41
41
|
};
|
|
42
|
-
const
|
|
42
|
+
const useColumnConcatenatedValues = (props) => {
|
|
43
43
|
const [stateProps, setStateProps] = useState(props);
|
|
44
44
|
const refProps = useRef({ ...props });
|
|
45
45
|
useEffect(() => {
|
|
@@ -49,11 +49,11 @@ const useColumnConcatenatedValue = (props) => {
|
|
|
49
49
|
}
|
|
50
50
|
}, [props]);
|
|
51
51
|
return useMemo(() => ({
|
|
52
|
-
formatter:
|
|
52
|
+
formatter: ColumnConcatenatedValuesFormatter(stateProps),
|
|
53
53
|
customFilter: getCustomContatenatedValueFilter(stateProps),
|
|
54
54
|
customSort: getCustomConcatenatedValueSort(stateProps)
|
|
55
55
|
}), [stateProps]);
|
|
56
56
|
};
|
|
57
57
|
export {
|
|
58
|
-
|
|
58
|
+
useColumnConcatenatedValues as u
|
|
59
59
|
};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { getPropertyByString } from "@m4l/core";
|
|
3
|
-
import
|
|
3
|
+
import React from "react";
|
|
4
4
|
function ColumnNestedValueFormatter(props) {
|
|
5
|
-
const { fieldValue, Component =
|
|
5
|
+
const { fieldValue, Component = React.Fragment } = props;
|
|
6
6
|
return (obProps) => {
|
|
7
7
|
const property = getPropertyByString(obProps, fieldValue);
|
|
8
8
|
const value = typeof property === "object" ? JSON.stringify(property) : property;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export * from './ColumnBooleanFormatter';
|
|
2
|
-
export * from './
|
|
2
|
+
export * from './ColumnConcatenatedValuesFormatter';
|
|
3
3
|
export * from './ColumnDateFormatter';
|
|
4
4
|
export * from './ColumnIconFormatter';
|
|
5
5
|
export * from './ColumnInteractiveCheckFormatter';
|
|
@@ -55,7 +55,7 @@ function PropertyValue(props) {
|
|
|
55
55
|
return startAdornment;
|
|
56
56
|
};
|
|
57
57
|
const renderValue = () => {
|
|
58
|
-
if (typeof value === "string" || typeof value === "number") {
|
|
58
|
+
if (typeof value === "string" || typeof value === "number" || value === null || value === void 0) {
|
|
59
59
|
return /* @__PURE__ */ jsx(Typography, { id: inputId, size: normalizedSize, variant: "body", children: getNullGuard(value) });
|
|
60
60
|
}
|
|
61
61
|
if (React.isValidElement(value)) {
|
package/components/index.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export * from './DragResizeWindowRND';
|
|
|
13
13
|
export * from './DynamicFilter';
|
|
14
14
|
export * from './DynamicSort';
|
|
15
15
|
export * from './extended';
|
|
16
|
-
export
|
|
16
|
+
export * from './mui_extended';
|
|
17
17
|
export * from './formatters';
|
|
18
18
|
export * from './formatters/dictionary';
|
|
19
19
|
export * from './formatters/types';
|
|
@@ -29,10 +29,8 @@ export * from './LinearProgressIndeterminate';
|
|
|
29
29
|
export * from './Loadable';
|
|
30
30
|
export * from './LoadingError';
|
|
31
31
|
export * from './MenuActions';
|
|
32
|
-
export type { MenuAction, ComponentActionProps } from './MenuActions/types';
|
|
33
32
|
export * from './MFIsolationApp';
|
|
34
33
|
export * from './MFLoader';
|
|
35
|
-
export * from './mui_extended';
|
|
36
34
|
export * from './NoItemSelected';
|
|
37
35
|
export * from './ObjectLogs';
|
|
38
36
|
export * from './ObjectLogs/dictionary';
|
|
@@ -42,7 +40,6 @@ export * from './popups';
|
|
|
42
40
|
export * from './PrintingSystem';
|
|
43
41
|
export * from './PropertyValue/PropertyValue';
|
|
44
42
|
export * from './ScrollBar/ScrollBar';
|
|
45
|
-
export { ScrollToTop } from './ScrollToTop';
|
|
46
43
|
export * from './SideBar';
|
|
47
44
|
export * from './ToastContainer';
|
|
48
45
|
export * from './WindowBase';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const RootStyled: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').TabsOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
2
2
|
ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
|
|
3
|
-
}, "value" | "children" | "action" | "style" | "variant" | "className" | "classes" | "sx" | "slots" | "slotProps" | "aria-label" | "aria-labelledby" | "onChange" | "orientation" | "allowScrollButtonsMobile" | "centered" | "indicatorColor" | "ScrollButtonComponent" | "scrollButtons" | "selectionFollowsFocus" | "TabIndicatorProps" | "TabScrollButtonProps" | "textColor" | "visibleScrollbar">, "value" | "children" | "ref" | "title" | "id" | "action" | "hidden" | "color" | "content" | "style" | "variant" | "translate" | "className" | "classes" | "sx" | "slots" | "slotProps" | "slot" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "orientation" | "allowScrollButtonsMobile" | "centered" | "indicatorColor" | "ScrollButtonComponent" | "scrollButtons" | "selectionFollowsFocus" | "TabIndicatorProps" | "TabScrollButtonProps" | "textColor" | "visibleScrollbar"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('
|
|
4
|
-
ownerState: Partial<import('
|
|
3
|
+
}, "value" | "children" | "action" | "style" | "variant" | "className" | "classes" | "sx" | "slots" | "slotProps" | "aria-label" | "aria-labelledby" | "onChange" | "orientation" | "allowScrollButtonsMobile" | "centered" | "indicatorColor" | "ScrollButtonComponent" | "scrollButtons" | "selectionFollowsFocus" | "TabIndicatorProps" | "TabScrollButtonProps" | "textColor" | "visibleScrollbar">, "value" | "children" | "ref" | "title" | "id" | "action" | "hidden" | "color" | "content" | "style" | "variant" | "translate" | "className" | "classes" | "sx" | "slots" | "slotProps" | "slot" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "lang" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "orientation" | "allowScrollButtonsMobile" | "centered" | "indicatorColor" | "ScrollButtonComponent" | "scrollButtons" | "selectionFollowsFocus" | "TabIndicatorProps" | "TabScrollButtonProps" | "textColor" | "visibleScrollbar"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Partial<import('..').TabsProps> & Record<string, unknown> & {
|
|
4
|
+
ownerState: Partial<import('..').TabsProps> & Record<string, unknown>;
|
|
5
5
|
}, {}, {}>;
|
|
@@ -17,13 +17,13 @@ export { LoadingButton } from './LoadingButton/LoadingButton';
|
|
|
17
17
|
export * from './Popover';
|
|
18
18
|
export * from './Skeleton';
|
|
19
19
|
export * from './Stack';
|
|
20
|
+
export * from './Tab/';
|
|
20
21
|
export * from './Tabs';
|
|
21
22
|
export * from './TabContent';
|
|
23
|
+
export * from './TabContext';
|
|
22
24
|
export { Pager } from '../Pager/Pager';
|
|
23
25
|
export type { PagerProps } from '../Pager/types';
|
|
24
26
|
export { getPagerComponentsDictionary } from '../Pager/dicctionary';
|
|
25
|
-
export * from './Tab/';
|
|
26
|
-
export * from './TabContext';
|
|
27
27
|
export * from './Typography/Typography';
|
|
28
28
|
export * from './ToggleButton';
|
|
29
29
|
export * from './ToggleIconButton';
|
package/index.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { c } from "./components/ToastContainer/helpers/toaster.js";
|
|
2
|
-
import { S } from "./components/ScrollToTop/index.js";
|
|
3
2
|
import { A } from "./components/AccountPopover/AccountPopover.js";
|
|
4
3
|
import { g } from "./components/AccountPopover/dictionary.js";
|
|
5
4
|
import { I } from "./components/animate/IconButtonAnimate/index.js";
|
|
@@ -24,7 +23,7 @@ import { C } from "./components/Chip/Chip.js";
|
|
|
24
23
|
import { A as A8 } from "./components/commercial/AppBarCommercial/index.js";
|
|
25
24
|
import { H } from "./components/commercial/HamburgerMenu/HamburgerMenu.js";
|
|
26
25
|
import { T } from "./components/commercial/TopBar/TopBar.js";
|
|
27
|
-
import { S
|
|
26
|
+
import { S } from "./components/commercial/SectionCommercial/index.js";
|
|
28
27
|
import { A as A9 } from "./components/CommonActions/components/ActionsContainer/ActionsContainer.js";
|
|
29
28
|
import { A as A10 } from "./components/CommonActions/components/ActionCancel/ActionCancel.js";
|
|
30
29
|
import { A as A11 } from "./components/CommonActions/components/ActionIntro/ActionIntro.js";
|
|
@@ -37,8 +36,8 @@ import { N, T as T2 } from "./components/DataGrid/subcomponents/editors/TextEdit
|
|
|
37
36
|
import { g as g6 } from "./components/DataGrid/utils/getDataGridRowsFromSet.js";
|
|
38
37
|
import { C as C2 } from "./components/DataGrid/formatters/ColumnBooleanFormatter/formatter.js";
|
|
39
38
|
import { u as u3 } from "./components/DataGrid/formatters/ColumnBooleanFormatter/useColumnBoolean.js";
|
|
40
|
-
import { C as C3 } from "./components/DataGrid/formatters/
|
|
41
|
-
import { u as u4 } from "./components/DataGrid/formatters/
|
|
39
|
+
import { C as C3 } from "./components/DataGrid/formatters/ColumnConcatenatedValuesFormatter/formatter.js";
|
|
40
|
+
import { u as u4 } from "./components/DataGrid/formatters/ColumnConcatenatedValuesFormatter/useColumnConcatenatedValues.js";
|
|
42
41
|
import { C as C4 } from "./components/DataGrid/formatters/ColumnDateFormatter/formatter.js";
|
|
43
42
|
import { u as u5 } from "./components/DataGrid/formatters/ColumnDateFormatter/useColumnDate.js";
|
|
44
43
|
import { C as C5 } from "./components/DataGrid/formatters/ColumnIconFormatter/formatter.js";
|
|
@@ -62,25 +61,61 @@ import { a as a4 } from "./components/DynamicFilter/dictionary.js";
|
|
|
62
61
|
import { a as a5, g as g7 } from "./components/DynamicFilter/helpers/frontEndHelpers.js";
|
|
63
62
|
import { D as D4 } from "./components/DynamicFilter/DynamicFilter.js";
|
|
64
63
|
import { b as b3 } from "./components/DynamicSort/dictionary.js";
|
|
65
|
-
import { S as
|
|
64
|
+
import { S as S2 } from "./components/DynamicSort/helpers/frontEndHelpers.js";
|
|
66
65
|
import { D as D5 } from "./components/DynamicSort/DynamicSort.js";
|
|
67
66
|
import { R } from "./components/extended/React-Resizable/Resizable/Resizable.js";
|
|
68
67
|
import { R as R2 } from "./components/extended/React-Resizable/ResizableBox/ResizableBox.js";
|
|
69
|
-
import { S as
|
|
68
|
+
import { S as S3 } from "./components/extended/React-Splitter-Layout/SplitLayout.js";
|
|
70
69
|
import { P } from "./components/extended/React-Spinners/PropagateLoaderSpinner/PropagateLoaderSpinner.js";
|
|
71
70
|
import { F } from "./components/extended/React-Window/FixedSizeList/FixedSizeList.js";
|
|
72
71
|
import { V } from "./components/extended/React-Window/VariableSizeList/VariableSizeList.js";
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
72
|
+
import { A as A14 } from "./components/mui_extended/Avatar/Avatar.js";
|
|
73
|
+
import { B as B2 } from "./components/mui_extended/BoxIcon/index.js";
|
|
74
|
+
import { B as B3 } from "./components/mui_extended/Breadcrumbs/index.js";
|
|
75
|
+
import { C as C13 } from "./components/mui_extended/CircularProgress/CircularProgress.js";
|
|
76
|
+
import { B as B4 } from "./components/mui_extended/Badge/Badge.js";
|
|
77
|
+
import { L as L3 } from "./components/mui_extended/LinearProgress/index.js";
|
|
78
|
+
import { L as L4 } from "./components/mui_extended/LinkWithRoute/index.js";
|
|
79
|
+
import { L as L5 } from "./components/mui_extended/LoadingButton/LoadingButton.js";
|
|
80
|
+
import { P as P2 } from "./components/Pager/Pager.js";
|
|
81
|
+
import { g as g8 } from "./components/Pager/dicctionary.js";
|
|
82
|
+
import { A as A15 } from "./components/mui_extended/Accordion/Accordion.js";
|
|
83
|
+
import { T as T3 } from "./components/mui_extended/Tooltip/Tooltip.js";
|
|
84
|
+
import { I as I2 } from "./components/mui_extended/IconButton/IconButton.js";
|
|
85
|
+
import { B as B5 } from "./components/mui_extended/Button/Button.js";
|
|
86
|
+
import { C as C14 } from "./components/mui_extended/CheckBox/CheckBox.js";
|
|
87
|
+
import { I as I3 } from "./components/mui_extended/ImageButton/ImageButton.js";
|
|
88
|
+
import { P as P3 } from "./components/mui_extended/Popover/Popover.js";
|
|
89
|
+
import { S as S4 } from "./components/mui_extended/Skeleton/Skeleton.js";
|
|
90
|
+
import { S as S5 } from "./components/mui_extended/Stack/Stack.js";
|
|
91
|
+
import { T as T4 } from "./components/mui_extended/Tab/Tab.js";
|
|
92
|
+
import { T as T5 } from "./components/mui_extended/Tabs/Tabs.js";
|
|
93
|
+
import { T as T6 } from "./components/mui_extended/TabContent/TabContent.js";
|
|
94
|
+
import { T as T7, a as a6 } from "./components/mui_extended/TabContext/index.js";
|
|
95
|
+
import { T as T8 } from "./components/mui_extended/Typography/Typography.js";
|
|
96
|
+
import { t } from "./components/mui_extended/ToggleButton/ToggleButton.styles.js";
|
|
97
|
+
import { T as T9 } from "./components/mui_extended/ToggleButton/ToggleButton.js";
|
|
98
|
+
import { T as T10 } from "./components/mui_extended/ToggleButton/constants.js";
|
|
99
|
+
import { T as T11 } from "./components/mui_extended/ToggleButton/slots/ToggleButtonEnum.js";
|
|
100
|
+
import { T as T12 } from "./components/mui_extended/ToggleButton/slots/ToggleButtonSlots.js";
|
|
101
|
+
import { t as t2 } from "./components/mui_extended/ToggleIconButton/ToggleIconButton.styles.js";
|
|
102
|
+
import { T as T13 } from "./components/mui_extended/ToggleIconButton/ToggleIconButton.js";
|
|
103
|
+
import { T as T14 } from "./components/mui_extended/ToggleIconButton/constants.js";
|
|
104
|
+
import { T as T15 } from "./components/mui_extended/ToggleIconButton/slots/ToggleIconButtonEnum.js";
|
|
105
|
+
import { T as T16 } from "./components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.js";
|
|
106
|
+
import { N as N2 } from "./components/mui_extended/NavLink/NavLink.js";
|
|
107
|
+
import { D as D6 } from "./components/mui_extended/Dialog/Dialog.js";
|
|
108
|
+
import { B as B6 } from "./components/formatters/BooleanFormatter/BooleanFormatter.js";
|
|
109
|
+
import { C as C15 } from "./components/formatters/ChipStatusFormatter/ChipStatusFormatter.js";
|
|
110
|
+
import { D as D7, g as g9 } from "./components/formatters/DateFormatter/DateFormatter.js";
|
|
111
|
+
import { U, g as g10 } from "./components/formatters/UncertaintyFormatter/UncertaintyFormatter.js";
|
|
112
|
+
import { P as P4, g as g11 } from "./components/formatters/PointsFormatter/PointsFormatter.js";
|
|
113
|
+
import { C as C16, g as g12 } from "./components/formatters/ConcatenatedFormatter/ConcatenatedFormatter.js";
|
|
114
|
+
import { P as P5, u as u13 } from "./components/formatters/PeriodFormatter/PeriodFormatter.js";
|
|
115
|
+
import { P as P6, g as g13 } from "./components/formatters/PriceFormatter/PriceFormatter.js";
|
|
116
|
+
import { g as g14 } from "./components/formatters/DistanceToNowFormatter/dictionary.js";
|
|
117
|
+
import { D as D8 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
|
|
118
|
+
import { g as g15 } from "./components/formatters/dictionary.js";
|
|
84
119
|
import { G } from "./components/GridLayout/GridLayout.js";
|
|
85
120
|
import { R as R3 } from "./components/GridLayout/subcomponents/Responsive/index.js";
|
|
86
121
|
import { c as c2, d as d3, e } from "./components/GridLayout/subcomponents/Responsive/responsiveUtils.js";
|
|
@@ -89,9 +124,9 @@ import { w } from "./components/GridLayout/subcomponents/withSizeProvider/index.
|
|
|
89
124
|
import { H as H2 } from "./components/HelmetPage/index.js";
|
|
90
125
|
import { H as H3 } from "./components/HelperError/HelperError.js";
|
|
91
126
|
import { R as R4 } from "./components/hook-form/RHFAutocomplete/RHFAutocomplete.js";
|
|
92
|
-
import { g as
|
|
127
|
+
import { g as g16 } from "./components/hook-form/RHFAutocomplete/dictionary.js";
|
|
93
128
|
import { R as R5 } from "./components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.js";
|
|
94
|
-
import { g as
|
|
129
|
+
import { g as g17 } from "./components/hook-form/RHFAutocompleteAsync/dictionary.js";
|
|
95
130
|
import { R as R6 } from "./components/hook-form/RHFDateTime/RHFDateTime.js";
|
|
96
131
|
import { R as R7 } from "./components/hook-form/RHFMultiCheckbox/index.js";
|
|
97
132
|
import { R as R8 } from "./components/hook-form/RHFSelect/RHFSelect.js";
|
|
@@ -103,62 +138,26 @@ import { R as R13 } from "./components/hook-form/RHFColorPicker/RFHColorPicker.j
|
|
|
103
138
|
import { R as R14 } from "./components/hook-form/RHFCheckbox/RHFCheckbox.js";
|
|
104
139
|
import { R as R15 } from "./components/hook-form/RHFTextField/RHFTextField.js";
|
|
105
140
|
import { R as R16 } from "./components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js";
|
|
106
|
-
import { g as
|
|
141
|
+
import { g as g18 } from "./components/hook-form/RHFPeriod/subcomponents/Period/dictionary.js";
|
|
107
142
|
import { r } from "./components/hook-form/RHFPeriod/RHFPeriod.styles.js";
|
|
108
143
|
import { R as R17 } from "./components/hook-form/RHFPeriod/RHFPeriod.js";
|
|
109
144
|
import { R as R18 } from "./components/hook-form/RHFPeriod/constants.js";
|
|
110
145
|
import { R as R19 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js";
|
|
111
|
-
import { P as
|
|
146
|
+
import { P as P7, R as R20, S as S6, T as T17 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js";
|
|
112
147
|
import { R as R21 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
|
|
113
|
-
import { I as
|
|
114
|
-
import { I as
|
|
115
|
-
import { L as
|
|
116
|
-
import { L as
|
|
117
|
-
import { L as
|
|
118
|
-
import { L as
|
|
119
|
-
import { L as
|
|
120
|
-
import { g as
|
|
121
|
-
import { a as
|
|
122
|
-
import { a as
|
|
148
|
+
import { I as I4 } from "./components/Icon/Icon.js";
|
|
149
|
+
import { I as I5 } from "./components/Image/Image.js";
|
|
150
|
+
import { L as L6 } from "./components/Label/Label.js";
|
|
151
|
+
import { L as L7 } from "./components/LanguagePopover/LanguagePopover.js";
|
|
152
|
+
import { L as L8 } from "./components/LinearProgressIndeterminate/LinearProgressIndeterminate.js";
|
|
153
|
+
import { L as L9 } from "./components/Loadable/index.js";
|
|
154
|
+
import { L as L10 } from "./components/LoadingError/LoadingError.js";
|
|
155
|
+
import { g as g19 } from "./components/LoadingError/dictionary.js";
|
|
156
|
+
import { a as a7 } from "./components/MenuActions/dictionary.js";
|
|
157
|
+
import { a as a8, M as M3 } from "./components/MenuActions/MenuActions.js";
|
|
123
158
|
import { M as M4 } from "./components/MFIsolationApp/MFIsolationApp.js";
|
|
124
159
|
import { M as M5 } from "./components/MFLoader/MFLoader.js";
|
|
125
|
-
import { g as
|
|
126
|
-
import { A as A14 } from "./components/mui_extended/Avatar/Avatar.js";
|
|
127
|
-
import { B as B3 } from "./components/mui_extended/BoxIcon/index.js";
|
|
128
|
-
import { B as B4 } from "./components/mui_extended/Breadcrumbs/index.js";
|
|
129
|
-
import { C as C15 } from "./components/mui_extended/CircularProgress/CircularProgress.js";
|
|
130
|
-
import { B as B5 } from "./components/mui_extended/Badge/Badge.js";
|
|
131
|
-
import { L as L8 } from "./components/mui_extended/LinearProgress/index.js";
|
|
132
|
-
import { L as L9 } from "./components/mui_extended/LinkWithRoute/index.js";
|
|
133
|
-
import { L as L10 } from "./components/mui_extended/LoadingButton/LoadingButton.js";
|
|
134
|
-
import { P as P6 } from "./components/Pager/Pager.js";
|
|
135
|
-
import { g as g20 } from "./components/Pager/dicctionary.js";
|
|
136
|
-
import { A as A15 } from "./components/mui_extended/Accordion/Accordion.js";
|
|
137
|
-
import { T as T4 } from "./components/mui_extended/Tooltip/Tooltip.js";
|
|
138
|
-
import { I as I4 } from "./components/mui_extended/IconButton/IconButton.js";
|
|
139
|
-
import { B as B6 } from "./components/mui_extended/Button/Button.js";
|
|
140
|
-
import { C as C16 } from "./components/mui_extended/CheckBox/CheckBox.js";
|
|
141
|
-
import { I as I5 } from "./components/mui_extended/ImageButton/ImageButton.js";
|
|
142
|
-
import { P as P7 } from "./components/mui_extended/Popover/Popover.js";
|
|
143
|
-
import { S as S6 } from "./components/mui_extended/Skeleton/Skeleton.js";
|
|
144
|
-
import { S as S7 } from "./components/mui_extended/Stack/Stack.js";
|
|
145
|
-
import { T as T5 } from "./components/mui_extended/Tabs/Tabs.js";
|
|
146
|
-
import { T as T6 } from "./components/mui_extended/TabContent/TabContent.js";
|
|
147
|
-
import { T as T7 } from "./components/mui_extended/Tab/Tab.js";
|
|
148
|
-
import { T as T8, a as a8 } from "./components/mui_extended/TabContext/index.js";
|
|
149
|
-
import { T as T9 } from "./components/mui_extended/Typography/Typography.js";
|
|
150
|
-
import { t } from "./components/mui_extended/ToggleButton/ToggleButton.styles.js";
|
|
151
|
-
import { T as T10 } from "./components/mui_extended/ToggleButton/ToggleButton.js";
|
|
152
|
-
import { T as T11 } from "./components/mui_extended/ToggleButton/constants.js";
|
|
153
|
-
import { T as T12 } from "./components/mui_extended/ToggleButton/slots/ToggleButtonEnum.js";
|
|
154
|
-
import { T as T13 } from "./components/mui_extended/ToggleButton/slots/ToggleButtonSlots.js";
|
|
155
|
-
import { t as t2 } from "./components/mui_extended/ToggleIconButton/ToggleIconButton.styles.js";
|
|
156
|
-
import { T as T14 } from "./components/mui_extended/ToggleIconButton/ToggleIconButton.js";
|
|
157
|
-
import { T as T15 } from "./components/mui_extended/ToggleIconButton/constants.js";
|
|
158
|
-
import { T as T16 } from "./components/mui_extended/ToggleIconButton/slots/ToggleIconButtonEnum.js";
|
|
159
|
-
import { T as T17 } from "./components/mui_extended/ToggleIconButton/slots/ToggleIconButtonSlots.js";
|
|
160
|
-
import { N as N2 } from "./components/mui_extended/NavLink/NavLink.js";
|
|
161
|
-
import { D as D8 } from "./components/mui_extended/Dialog/Dialog.js";
|
|
160
|
+
import { g as g20 } from "./components/MFLoader/dictionary.js";
|
|
162
161
|
import { N as N3 } from "./components/NoItemSelected/NoItemSelected.js";
|
|
163
162
|
import { g as g21 } from "./components/NoItemSelected/dictionary.js";
|
|
164
163
|
import { O } from "./components/ObjectLogs/index.js";
|
|
@@ -170,8 +169,8 @@ import { a as a9, P as P10 } from "./components/popups/components/PopupsProvider
|
|
|
170
169
|
import { P as P11 } from "./components/popups/components/PopupsViewer/PopupsViewer.js";
|
|
171
170
|
import { P as P12 } from "./components/PrintingSystem/PrintingSystem.js";
|
|
172
171
|
import { P as P13 } from "./components/PropertyValue/PropertyValue.js";
|
|
173
|
-
import { S as
|
|
174
|
-
import { S as
|
|
172
|
+
import { S as S7 } from "./components/ScrollBar/ScrollBar.js";
|
|
173
|
+
import { S as S8 } from "./components/SideBar/SideBar.js";
|
|
175
174
|
import { T as T18 } from "./components/ToastContainer/ToastContainer.js";
|
|
176
175
|
import { T as T19 } from "./components/ToastContainer/subcomponents/ToastMessage/ToastMessage.js";
|
|
177
176
|
import { W } from "./components/WindowBase/WindowBase.js";
|
|
@@ -232,16 +231,16 @@ export {
|
|
|
232
231
|
A6 as AreasProvider,
|
|
233
232
|
A5 as AreasViewer,
|
|
234
233
|
A14 as Avatar,
|
|
235
|
-
|
|
234
|
+
B4 as Badge,
|
|
236
235
|
B as BaseModule,
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
236
|
+
B6 as BooleanFormatter,
|
|
237
|
+
B2 as BoxIcon,
|
|
238
|
+
B3 as Breadcrumbs,
|
|
239
|
+
B5 as Button,
|
|
240
|
+
C14 as CheckBox,
|
|
242
241
|
C as Chip,
|
|
243
|
-
|
|
244
|
-
|
|
242
|
+
C15 as ChipStatusFormatter,
|
|
243
|
+
C13 as CircularProgress,
|
|
245
244
|
C2 as ColumnBooleanFormatter,
|
|
246
245
|
C12 as ColumnChipStatusFormatter,
|
|
247
246
|
C3 as ColumnConcatenatedValueFormatter,
|
|
@@ -253,12 +252,12 @@ export {
|
|
|
253
252
|
C9 as ColumnPriceFormatter,
|
|
254
253
|
C10 as ColumnSetCheckFormatter,
|
|
255
254
|
C11 as ColumnUncertaintyFormatter,
|
|
256
|
-
|
|
255
|
+
C16 as ConcatenatedFormatter,
|
|
257
256
|
D as DICTIONARY,
|
|
258
257
|
D2 as DataGrid,
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
258
|
+
D7 as DateFormatter,
|
|
259
|
+
D6 as Dialog,
|
|
260
|
+
D8 as DistanceToNowFormatter,
|
|
262
261
|
D3 as DragResizeWindowRND,
|
|
263
262
|
D4 as DynamicFilter,
|
|
264
263
|
D9 as DynamicMFParmsContext,
|
|
@@ -270,25 +269,25 @@ export {
|
|
|
270
269
|
H as HamburgerMenu,
|
|
271
270
|
H2 as HelmetPage,
|
|
272
271
|
H3 as HelperError,
|
|
273
|
-
|
|
274
|
-
|
|
272
|
+
I4 as Icon,
|
|
273
|
+
I2 as IconButton,
|
|
275
274
|
I as IconButtonAnimate,
|
|
276
|
-
|
|
277
|
-
|
|
275
|
+
I5 as Image,
|
|
276
|
+
I3 as ImageButton,
|
|
278
277
|
L2 as LABEL_FILTER_BUTTON,
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
278
|
+
L6 as Label,
|
|
279
|
+
L7 as LanguagePopover,
|
|
280
|
+
L3 as LinearProgress,
|
|
281
|
+
L8 as LinearProgressIndeterminate,
|
|
282
|
+
L4 as LinkWithRoute,
|
|
283
|
+
L9 as Loadable,
|
|
284
|
+
L5 as LoadingButton,
|
|
285
|
+
L10 as LoadingError,
|
|
287
286
|
L as LoadingScreen,
|
|
288
287
|
M4 as MFIsolationApp,
|
|
289
288
|
M5 as MFLoader,
|
|
290
289
|
M7 as MemonizedDynamicMFParmsProvider,
|
|
291
|
-
|
|
290
|
+
a8 as MemonizedMenuActions,
|
|
292
291
|
M6 as MemonizedWindowToolsMFContext,
|
|
293
292
|
M3 as MenuActions,
|
|
294
293
|
a14 as ModalContext,
|
|
@@ -302,16 +301,16 @@ export {
|
|
|
302
301
|
O as ObjectLogs,
|
|
303
302
|
O2 as ObjectQueue,
|
|
304
303
|
P9 as PDFViewer,
|
|
305
|
-
|
|
304
|
+
P2 as Pager,
|
|
306
305
|
P8 as PaperForm,
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
306
|
+
P5 as PeriodFormatter,
|
|
307
|
+
P7 as PeriodRootStyled,
|
|
308
|
+
P4 as PointsFormatter,
|
|
309
|
+
P3 as Popover,
|
|
311
310
|
a9 as PopupsContext,
|
|
312
311
|
P10 as PopupsProvider,
|
|
313
312
|
P11 as PopupsViewer,
|
|
314
|
-
|
|
313
|
+
P6 as PriceFormatter,
|
|
315
314
|
P12 as PrintingSystem,
|
|
316
315
|
P as PropagateLoaderSpinner,
|
|
317
316
|
P13 as PropertyValue,
|
|
@@ -338,35 +337,34 @@ export {
|
|
|
338
337
|
R2 as ResizableBox,
|
|
339
338
|
R3 as Responsive,
|
|
340
339
|
a15 as SKELETON_SVG_ICON,
|
|
341
|
-
|
|
342
|
-
S as
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
S3 as
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
T7 as Tab,
|
|
340
|
+
S7 as ScrollBar,
|
|
341
|
+
S as SectionCommercial,
|
|
342
|
+
S6 as SelectStyled,
|
|
343
|
+
S8 as SideBar,
|
|
344
|
+
S4 as Skeleton,
|
|
345
|
+
S2 as SortCompareValues,
|
|
346
|
+
S3 as SplitLayout,
|
|
347
|
+
S5 as Stack,
|
|
348
|
+
T10 as TOGGLE_BUTTON_KEY_COMPONENT,
|
|
349
|
+
T14 as TOGGLE_ICON_BUTTON_KEY_COMPONENT,
|
|
350
|
+
T4 as Tab,
|
|
353
351
|
T6 as TabContent,
|
|
354
|
-
|
|
355
|
-
|
|
352
|
+
T7 as TabContext,
|
|
353
|
+
a6 as TabProvider,
|
|
356
354
|
T5 as Tabs,
|
|
357
355
|
T2 as TextEditor,
|
|
358
|
-
|
|
356
|
+
T17 as TextFieldStyled,
|
|
359
357
|
T18 as ToastContainer,
|
|
360
358
|
T19 as ToastMessage,
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
359
|
+
T9 as ToggleButton,
|
|
360
|
+
T12 as ToggleButtonRootStyled,
|
|
361
|
+
T11 as ToggleButtonSlots,
|
|
362
|
+
T13 as ToggleIconButton,
|
|
363
|
+
T16 as ToggleIconButtonRootStyled,
|
|
364
|
+
T15 as ToggleIconButtonSlots,
|
|
365
|
+
T3 as Tooltip,
|
|
368
366
|
T as TopBar,
|
|
369
|
-
|
|
367
|
+
T8 as Typography,
|
|
370
368
|
U as UncertaintyFormatter,
|
|
371
369
|
V as VariableSizeList,
|
|
372
370
|
W as WindowBase,
|
|
@@ -393,34 +391,34 @@ export {
|
|
|
393
391
|
g26 as getComponentUtilityClass,
|
|
394
392
|
g5 as getDataGridComponentsDictionary,
|
|
395
393
|
g6 as getDataGridRowsFromSet,
|
|
396
|
-
|
|
394
|
+
g14 as getDistanceToNowFormatterComponentsDictionary,
|
|
397
395
|
a4 as getDynamicFilterComponentsDictionary,
|
|
398
396
|
b3 as getDynamicSortComponentsDictionary,
|
|
399
397
|
a5 as getFilterGroupFieldsByName,
|
|
400
398
|
g24 as getFormComponentsDictionary,
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
399
|
+
g12 as getFormatConcatenated,
|
|
400
|
+
g9 as getFormatDate,
|
|
401
|
+
g11 as getFormatPoints,
|
|
402
|
+
g13 as getFormatPrice,
|
|
403
|
+
g15 as getFormattersComponentsDictionary,
|
|
406
404
|
a16 as getHeightSizeStyles,
|
|
407
405
|
g29 as getIconColor,
|
|
408
406
|
g7 as getIsIfInDynamicFilter,
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
407
|
+
g19 as getLoadingErrorComponentsDictionary,
|
|
408
|
+
g20 as getMFLoaderComponentsDictionary,
|
|
409
|
+
a7 as getMenuActionsComponentsDictionary,
|
|
412
410
|
a13 as getModalDialogComponentsDictionary,
|
|
413
411
|
g23 as getModalDictionary,
|
|
414
412
|
g21 as getNoItemSelectedComponentsDictionary,
|
|
415
413
|
g32 as getNullGuard,
|
|
416
414
|
g22 as getObjectLogsComponentsDictionary,
|
|
417
|
-
|
|
415
|
+
g8 as getPagerComponentsDictionary,
|
|
418
416
|
g27 as getPaletteColor,
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
417
|
+
g18 as getPeriodComponetsDictionary,
|
|
418
|
+
g17 as getRHFAutocompleteAsyncComponentsDictionary,
|
|
419
|
+
g16 as getRHFAutocompleteComponentsDictionary,
|
|
422
420
|
g28 as getTypographyStyles,
|
|
423
|
-
|
|
421
|
+
g10 as getUncertaintyFormat,
|
|
424
422
|
g31 as getValidDate,
|
|
425
423
|
g25 as getformAddEditDictionary,
|
|
426
424
|
i as isEqualLayout,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m4l/components",
|
|
3
|
-
"version": "9.2.15
|
|
3
|
+
"version": "9.2.15",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"lint-staged": {
|
|
6
6
|
"*.{js,ts,tsx}": "eslint --fix --max-warnings 0 --no-warn-ignored"
|
|
@@ -9,7 +9,14 @@
|
|
|
9
9
|
"@geoman-io/leaflet-geoman-free": "^2.14.2",
|
|
10
10
|
"@googlemaps/js-api-loader": "^1.16.6",
|
|
11
11
|
"@hookform/resolvers": "^2.9.5",
|
|
12
|
+
"@m4l/core": "^2.0.0",
|
|
13
|
+
"@m4l/graphics": "^7.0.0",
|
|
14
|
+
"@m4l/styles": "^7.0.0",
|
|
15
|
+
"@m4l/testing": "^0.0.0",
|
|
12
16
|
"@microlink/react-json-view": "^1.23.3",
|
|
17
|
+
"@mui/lab": "5.0.0-alpha.173",
|
|
18
|
+
"@mui/material": "5.16.7",
|
|
19
|
+
"@mui/x-date-pickers": "6.20.2",
|
|
13
20
|
"atmosphere.js": "^4.0.0",
|
|
14
21
|
"chart.js": "^4.4.0",
|
|
15
22
|
"chartjs-chart-error-bars": "^4.3.3",
|
|
@@ -54,14 +61,6 @@
|
|
|
54
61
|
"yup": "^0.32.11",
|
|
55
62
|
"zustand": "4.3.6"
|
|
56
63
|
},
|
|
57
|
-
"peerDependencies": {
|
|
58
|
-
"@m4l/core": "^2.0.0",
|
|
59
|
-
"@m4l/graphics": "^7.0.0",
|
|
60
|
-
"@m4l/styles": "^7.0.0",
|
|
61
|
-
"@mui/lab": "5.0.0-alpha.173",
|
|
62
|
-
"@mui/material": "5.16.7",
|
|
63
|
-
"@mui/x-date-pickers": "6.20.2"
|
|
64
|
-
},
|
|
65
64
|
"resolutions": {
|
|
66
65
|
"react": "^18.0.0",
|
|
67
66
|
"@types/react": "^18.0.0",
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { useEffect } from "react";
|
|
2
|
-
import { useLocation } from "react-router-dom";
|
|
3
|
-
function ScrollToTop() {
|
|
4
|
-
const { pathname } = useLocation();
|
|
5
|
-
useEffect(() => {
|
|
6
|
-
window.scrollTo(0, 0);
|
|
7
|
-
}, [pathname]);
|
|
8
|
-
return null;
|
|
9
|
-
}
|
|
10
|
-
export {
|
|
11
|
-
ScrollToTop as S
|
|
12
|
-
};
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { jsx, Fragment, jsxs } from "react/jsx-runtime";
|
|
2
|
-
function WrapperComponent(props) {
|
|
3
|
-
const { children, type = "fragment" } = props;
|
|
4
|
-
if (type === "fragment") {
|
|
5
|
-
return /* @__PURE__ */ jsx(Fragment, { children });
|
|
6
|
-
}
|
|
7
|
-
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
8
|
-
" ",
|
|
9
|
-
children
|
|
10
|
-
] });
|
|
11
|
-
}
|
|
12
|
-
export {
|
|
13
|
-
WrapperComponent as W
|
|
14
|
-
};
|
|
File without changes
|