@m4l/layouts 9.3.13 → 9.3.14-BE20251128-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.storybook/utils/getStylesColorsByMode.d.ts +8 -0
- package/components/ModuleDetailTabs/useModuleDatailTabs.d.ts +18 -18
- package/hooks/useFormAddEdit/index.d.ts +1 -0
- package/hooks/useNetworkActionConfirm/index.d.ts +1 -0
- package/layouts/NoAuthModuleLayout/constants.d.ts +1 -1
- package/layouts/NoAuthModuleLayout/slots/NoAuthModuleLayoutSlots.d.ts +1 -1
- package/package.json +4 -4
|
@@ -50,6 +50,7 @@ export declare const colorsLight: {
|
|
|
50
50
|
readonly primary: string;
|
|
51
51
|
readonly secondary: string;
|
|
52
52
|
readonly disabled: string;
|
|
53
|
+
readonly contrastText: string;
|
|
53
54
|
};
|
|
54
55
|
readonly background: {
|
|
55
56
|
readonly default: string;
|
|
@@ -59,6 +60,7 @@ export declare const colorsLight: {
|
|
|
59
60
|
readonly backdrop: string;
|
|
60
61
|
readonly base: string;
|
|
61
62
|
readonly blur: string;
|
|
63
|
+
readonly contrastDefault: string;
|
|
62
64
|
readonly paper: "#fff";
|
|
63
65
|
};
|
|
64
66
|
readonly chips: {
|
|
@@ -254,6 +256,7 @@ export declare const colorsLight: {
|
|
|
254
256
|
readonly primary: string;
|
|
255
257
|
readonly secondary: string;
|
|
256
258
|
readonly disabled: string;
|
|
259
|
+
readonly contrastText: string;
|
|
257
260
|
};
|
|
258
261
|
readonly divider: string;
|
|
259
262
|
readonly background: {
|
|
@@ -264,6 +267,7 @@ export declare const colorsLight: {
|
|
|
264
267
|
readonly backdrop: string;
|
|
265
268
|
readonly base: string;
|
|
266
269
|
readonly blur: string;
|
|
270
|
+
readonly contrastDefault: string;
|
|
267
271
|
readonly paper: "#000";
|
|
268
272
|
};
|
|
269
273
|
readonly chips: {
|
|
@@ -461,6 +465,7 @@ export declare const colorsDark: {
|
|
|
461
465
|
readonly primary: string;
|
|
462
466
|
readonly secondary: string;
|
|
463
467
|
readonly disabled: string;
|
|
468
|
+
readonly contrastText: string;
|
|
464
469
|
};
|
|
465
470
|
readonly background: {
|
|
466
471
|
readonly default: string;
|
|
@@ -470,6 +475,7 @@ export declare const colorsDark: {
|
|
|
470
475
|
readonly backdrop: string;
|
|
471
476
|
readonly base: string;
|
|
472
477
|
readonly blur: string;
|
|
478
|
+
readonly contrastDefault: string;
|
|
473
479
|
readonly paper: "#fff";
|
|
474
480
|
};
|
|
475
481
|
readonly chips: {
|
|
@@ -665,6 +671,7 @@ export declare const colorsDark: {
|
|
|
665
671
|
readonly primary: string;
|
|
666
672
|
readonly secondary: string;
|
|
667
673
|
readonly disabled: string;
|
|
674
|
+
readonly contrastText: string;
|
|
668
675
|
};
|
|
669
676
|
readonly divider: string;
|
|
670
677
|
readonly background: {
|
|
@@ -675,6 +682,7 @@ export declare const colorsDark: {
|
|
|
675
682
|
readonly backdrop: string;
|
|
676
683
|
readonly base: string;
|
|
677
684
|
readonly blur: string;
|
|
685
|
+
readonly contrastDefault: string;
|
|
678
686
|
readonly paper: "#000";
|
|
679
687
|
};
|
|
680
688
|
readonly chips: {
|
|
@@ -25,14 +25,13 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
|
|
|
25
25
|
id?: string | undefined | undefined;
|
|
26
26
|
disabled?: boolean | undefined;
|
|
27
27
|
action?: React.Ref<import('@mui/material').ButtonBaseActions> | undefined;
|
|
28
|
-
hidden?: boolean | undefined | undefined;
|
|
29
28
|
color?: Extract<import('@m4l/styles').ComponentPalletColor, "default"> | undefined;
|
|
30
29
|
content?: string | undefined | undefined;
|
|
31
|
-
style?: React.CSSProperties | undefined;
|
|
32
30
|
translate?: "yes" | "no" | undefined | undefined;
|
|
33
31
|
urlIcon?: string | undefined;
|
|
34
32
|
lang?: string | undefined | undefined;
|
|
35
33
|
slot?: string | undefined | undefined;
|
|
34
|
+
style?: React.CSSProperties | undefined;
|
|
36
35
|
dir?: string | undefined | undefined;
|
|
37
36
|
className?: string | undefined;
|
|
38
37
|
classes?: (Partial<import('@mui/material').TabClasses> & Partial<import('@mui/material').ClassNameMap<never>>) | undefined;
|
|
@@ -45,12 +44,13 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
|
|
|
45
44
|
accessKey?: string | undefined | undefined;
|
|
46
45
|
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
47
46
|
autoFocus?: boolean | undefined | undefined;
|
|
48
|
-
contentEditable?: "inherit" | (boolean | "
|
|
47
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
49
48
|
contextMenu?: string | undefined | undefined;
|
|
50
|
-
draggable?: (boolean | "
|
|
49
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
51
50
|
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
51
|
+
hidden?: boolean | undefined | undefined;
|
|
52
52
|
nonce?: string | undefined | undefined;
|
|
53
|
-
spellCheck?: (boolean | "
|
|
53
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
54
54
|
tabIndex?: NonNullable<React.HTMLAttributes<any>["tabIndex"]> | undefined;
|
|
55
55
|
radioGroup?: string | undefined | undefined;
|
|
56
56
|
role?: import('react').AriaRole | undefined;
|
|
@@ -79,11 +79,11 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
|
|
|
79
79
|
exportparts?: string | undefined | undefined;
|
|
80
80
|
part?: string | undefined | undefined;
|
|
81
81
|
"aria-activedescendant"?: string | undefined | undefined;
|
|
82
|
-
"aria-atomic"?: (boolean | "
|
|
82
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
83
83
|
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
84
84
|
"aria-braillelabel"?: string | undefined | undefined;
|
|
85
85
|
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
86
|
-
"aria-busy"?: (boolean | "
|
|
86
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
87
87
|
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
88
88
|
"aria-colcount"?: number | undefined | undefined;
|
|
89
89
|
"aria-colindex"?: number | undefined | undefined;
|
|
@@ -94,37 +94,37 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
|
|
|
94
94
|
"aria-describedby"?: string | undefined | undefined;
|
|
95
95
|
"aria-description"?: string | undefined | undefined;
|
|
96
96
|
"aria-details"?: string | undefined | undefined;
|
|
97
|
-
"aria-disabled"?: (boolean | "
|
|
97
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
98
98
|
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
99
99
|
"aria-errormessage"?: string | undefined | undefined;
|
|
100
|
-
"aria-expanded"?: (boolean | "
|
|
100
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
101
101
|
"aria-flowto"?: string | undefined | undefined;
|
|
102
|
-
"aria-grabbed"?: (boolean | "
|
|
102
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
103
103
|
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
104
|
-
"aria-hidden"?: (boolean | "
|
|
104
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
105
105
|
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
106
106
|
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
107
107
|
"aria-label"?: string | undefined | undefined;
|
|
108
108
|
"aria-labelledby"?: string | undefined | undefined;
|
|
109
109
|
"aria-level"?: number | undefined | undefined;
|
|
110
110
|
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
111
|
-
"aria-modal"?: (boolean | "
|
|
112
|
-
"aria-multiline"?: (boolean | "
|
|
113
|
-
"aria-multiselectable"?: (boolean | "
|
|
111
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
112
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
113
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
114
114
|
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
115
115
|
"aria-owns"?: string | undefined | undefined;
|
|
116
116
|
"aria-placeholder"?: string | undefined | undefined;
|
|
117
117
|
"aria-posinset"?: number | undefined | undefined;
|
|
118
118
|
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
119
|
-
"aria-readonly"?: (boolean | "
|
|
119
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
120
120
|
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
121
|
-
"aria-required"?: (boolean | "
|
|
121
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
122
122
|
"aria-roledescription"?: string | undefined | undefined;
|
|
123
123
|
"aria-rowcount"?: number | undefined | undefined;
|
|
124
124
|
"aria-rowindex"?: number | undefined | undefined;
|
|
125
125
|
"aria-rowindextext"?: string | undefined | undefined;
|
|
126
126
|
"aria-rowspan"?: number | undefined | undefined;
|
|
127
|
-
"aria-selected"?: (boolean | "
|
|
127
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
128
128
|
"aria-setsize"?: number | undefined | undefined;
|
|
129
129
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
130
130
|
"aria-valuemax"?: number | undefined | undefined;
|
|
@@ -292,6 +292,7 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
|
|
|
292
292
|
onAnimationIterationCapture?: import('react').AnimationEventHandler<HTMLDivElement> | undefined;
|
|
293
293
|
onTransitionEnd?: import('react').TransitionEventHandler<HTMLDivElement> | undefined;
|
|
294
294
|
onTransitionEndCapture?: import('react').TransitionEventHandler<HTMLDivElement> | undefined;
|
|
295
|
+
ariaLabel?: string | undefined;
|
|
295
296
|
dataTestId?: string | undefined;
|
|
296
297
|
centerRipple?: boolean | undefined;
|
|
297
298
|
disableRipple?: boolean | undefined;
|
|
@@ -303,7 +304,6 @@ export declare function useModuleDetailTabs<T extends Record<string, any> = Reco
|
|
|
303
304
|
TouchRippleProps?: Partial<import('@mui/material/ButtonBase/TouchRipple').TouchRippleProps> | undefined;
|
|
304
305
|
touchRippleRef?: React.Ref<import('@mui/material/ButtonBase/TouchRipple').TouchRippleActions> | undefined;
|
|
305
306
|
disableFocusRipple?: boolean | undefined;
|
|
306
|
-
ariaLabel?: string | undefined;
|
|
307
307
|
iconPosition?: "top" | "bottom" | "start" | "end" | undefined;
|
|
308
308
|
wrapped?: boolean | undefined;
|
|
309
309
|
}[];
|
|
@@ -13,4 +13,4 @@ export declare const DICTIONARY_KEYS: {
|
|
|
13
13
|
label_home_navigation: string;
|
|
14
14
|
};
|
|
15
15
|
export declare const DEFAULT_HOME_PATH = "/auth/login";
|
|
16
|
-
export declare const NO_AUTH_MODULE_LAYOUT_CLASSES: Record<
|
|
16
|
+
export declare const NO_AUTH_MODULE_LAYOUT_CLASSES: Record<"headerContainer" | "buttonHomeNavigation" | "containerModuleName" | "wrapperFormContent" | "containerLanguageAndSettings" | "containerCompanyLogo" | "desktopBanner" | "contentFormDesktop" | "baseNoAuthModuleLayoutRoot" | "formContent", string>;
|
|
@@ -5,6 +5,6 @@ export declare const ContainerModuleNameStyled: import('@emotion/styled').Styled
|
|
|
5
5
|
export declare const ContentFormDesktopStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
6
6
|
export declare const HeaderContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
7
7
|
export declare const ContainerLanguageAndSettingsStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
8
|
-
export declare const ButtonHomeNavigationStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('@m4l/components/src/components/mui_extended/Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "disabled" | "action" | "
|
|
8
|
+
export declare const ButtonHomeNavigationStyled: import('@emotion/styled').StyledComponent<Pick<Omit<import('@m4l/components/src/components/mui_extended/Button').ButtonProps, "ref"> & import('react').RefAttributes<HTMLButtonElement>, "value" | "size" | "children" | "title" | "component" | "name" | "id" | "type" | "disabled" | "action" | "color" | "content" | "translate" | "lang" | "form" | "label" | "slot" | "style" | "dir" | "variant" | "className" | "classes" | "sx" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "draggable" | "enterKeyHint" | "hidden" | "nonce" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "rel" | "resource" | "rev" | "typeof" | "vocab" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "exportparts" | "part" | "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" | "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" | "centerRipple" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "TouchRippleProps" | "touchRippleRef" | "disableFocusRipple" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "href" | "skeletonWidth" | "startIcon" | "endIcon" | keyof import('react').RefAttributes<HTMLButtonElement> | "disableElevation" | "fullWidth"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, {}, {}>;
|
|
9
9
|
export declare const ContainerCompanyLogoStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
10
10
|
export declare const FormContentStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown>, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m4l/layouts",
|
|
3
|
-
"version": "9.3.
|
|
3
|
+
"version": "9.3.14-BE20251128-beta.1",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"author": "M4L Team",
|
|
6
6
|
"lint-staged": {
|
|
7
7
|
"*.{js,ts,tsx}": "eslint --fix --max-warnings 0"
|
|
8
8
|
},
|
|
9
9
|
"peerDependencies": {
|
|
10
|
-
"@m4l/components": "
|
|
10
|
+
"@m4l/components": "9.3.35-BE20251128-beta.1",
|
|
11
11
|
"@m4l/core": "^2.0.0",
|
|
12
|
-
"@m4l/graphics": "
|
|
13
|
-
"@m4l/styles": "
|
|
12
|
+
"@m4l/graphics": "7.2.1-BE20251128-beta.1",
|
|
13
|
+
"@m4l/styles": "7.1.36-BE20251128-beta.1"
|
|
14
14
|
},
|
|
15
15
|
"resolutions": {
|
|
16
16
|
"glob": "^10.4.5",
|