@m4l/components 9.2.60-16062025.beta.2 → 9.2.60-19062025.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/@types/types.d.ts +8 -0
- package/components/DynamicFilter/DynamicFilter.styles.js +14 -1
- package/components/DynamicFilter/subcomponents/FieldTypes/BooleanFilter/index.js +2 -2
- package/components/DynamicFilter/subcomponents/FieldTypes/DateTimeFilter/index.js +2 -2
- package/components/DynamicFilter/subcomponents/FieldTypes/NumberFilter/index.js +2 -2
- package/components/DynamicFilter/subcomponents/FieldTypes/SelectAsyncFilter/index.js +2 -2
- package/components/DynamicFilter/subcomponents/FieldTypes/SelectFilter/index.js +2 -2
- package/components/DynamicFilter/subcomponents/FieldTypes/StringFilter/index.js +2 -2
- package/components/DynamicSort/DynamicSort.styles.js +9 -6
- package/components/DynamicSort/subcomponents/FieldTypes/StringSort/index.js +2 -2
- package/components/LanguagePopover/LanguagePopover.js +8 -6
- package/components/LanguagePopover/LanguagePopover.styles.js +25 -4
- package/components/LanguagePopover/slots/LanguagePopoverSlots.d.ts +9 -3
- package/components/LanguagePopover/slots/LanguagePopoverSlots.js +1 -3
- package/components/LanguagePopover/types.d.ts +6 -1
- package/components/PropertyValue/PropertyValue.styles.js +1 -1
- package/components/WindowBase/constants.d.ts +1 -0
- package/components/WindowBase/constants.js +5 -1
- package/components/WindowBase/subcomponents/Header/HeaderWindowBase.js +3 -1
- package/components/extended/React-resizable-panels/SplitLayout.styles.js +3 -3
- package/components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.styles.js +1 -1
- package/components/mui_extended/TextField/TextField.styles.js +11 -9
- package/index.d.ts +1 -0
- package/index.js +8 -7
- package/package.json +3 -3
- package/storybook/components/extended/mui/TextField/TextFieldText.stories.d.ts +1 -0
- package/utils/index.d.ts +1 -0
package/@types/types.d.ts
CHANGED
|
@@ -148,6 +148,7 @@ import { ScrollBarOwnerState, ScrollBarSlotsType } from '../components/ScrollBar
|
|
|
148
148
|
|
|
149
149
|
import { SplitLayoutOwnerState } from '../components/extended/React-resizable-panels/types';
|
|
150
150
|
import { ObjectLogsOwnerState, ObjectLogsSlotsType } from '../components/ObjectLogs/types';
|
|
151
|
+
import { LanguagePopoverOwnerState, LanguagePopoverSlotsType } from '../components/LanguagePopover/types';
|
|
151
152
|
declare module '@mui/material/styles' {
|
|
152
153
|
// Define the slots in the theme
|
|
153
154
|
interface ComponentNameToClassKey {
|
|
@@ -226,6 +227,7 @@ declare module '@mui/material/styles' {
|
|
|
226
227
|
M4LScrollbar: ScrollBarSlotsType;
|
|
227
228
|
M4LSplitLayout: SplitLayoutOwnerState;
|
|
228
229
|
M4LObjectLogs: ObjectLogsSlotsType;
|
|
230
|
+
M4LLanguagePopover: LanguagePopoverSlotsType;
|
|
229
231
|
}
|
|
230
232
|
interface ComponentsPropsList {
|
|
231
233
|
// Extend ComponentsProps or ComponentsOwnerState(this extend ComponentProps)
|
|
@@ -304,6 +306,7 @@ declare module '@mui/material/styles' {
|
|
|
304
306
|
M4LScrollBar: Partial<ScrollBarOwnerState>;
|
|
305
307
|
M4LSplitLayout: Partial<SplitLayoutOwnerState>;
|
|
306
308
|
M4LObjectLogs: Partial<ObjectLogsOwnerState>;
|
|
309
|
+
M4LLanguagePopover: Partial<LanguagePopoverOwnerState>;
|
|
307
310
|
}
|
|
308
311
|
interface Components {
|
|
309
312
|
M4LDynamicFilter?: {
|
|
@@ -691,5 +694,10 @@ declare module '@mui/material/styles' {
|
|
|
691
694
|
styleOverrides?: ComponentsOverrides<Theme>['M4LObjectLogs'];
|
|
692
695
|
variants?: ComponentsVariants['M4LObjectLogs'];
|
|
693
696
|
};
|
|
697
|
+
M4LLanguagePopover?: {
|
|
698
|
+
defaultProps?: ComponentsPropsList['M4LLanguagePopover'];
|
|
699
|
+
styleOverrides?: ComponentsOverrides<Theme>['M4LLanguagePopover'];
|
|
700
|
+
variants?: ComponentsVariants['M4LLanguagePopover'];
|
|
701
|
+
};
|
|
694
702
|
}
|
|
695
703
|
}
|
|
@@ -250,6 +250,12 @@ const dynamicFilterStyles = {
|
|
|
250
250
|
minWidth: "220px",
|
|
251
251
|
maxWidth: "420px",
|
|
252
252
|
height: "fit-content"
|
|
253
|
+
},
|
|
254
|
+
"& .M4LWindowBase-root": {
|
|
255
|
+
border: "unset!important",
|
|
256
|
+
"& .M4LWindowBase-headerWindowComponent": {
|
|
257
|
+
cursor: "unset"
|
|
258
|
+
}
|
|
253
259
|
}
|
|
254
260
|
}
|
|
255
261
|
}),
|
|
@@ -276,7 +282,14 @@ const dynamicFilterStyles = {
|
|
|
276
282
|
})
|
|
277
283
|
)
|
|
278
284
|
}),
|
|
279
|
-
|
|
285
|
+
/**
|
|
286
|
+
* popoverFilterContainerFields: Estilos del contenedor de los campos del menú emergente de filtro.
|
|
287
|
+
*/
|
|
288
|
+
popoverFilterContainerFields: ({ theme }) => ({
|
|
289
|
+
display: "flex",
|
|
290
|
+
flexDirection: "column",
|
|
291
|
+
gap: theme.vars.size.baseSpacings.sp4
|
|
292
|
+
})
|
|
280
293
|
};
|
|
281
294
|
export {
|
|
282
295
|
dynamicFilterStyles as d
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
1
|
+
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useModuleDictionary } from "@m4l/core";
|
|
3
3
|
import { useMemo } from "react";
|
|
4
4
|
import { B as BOOLEAN_OPERATORS } from "../../../constants.js";
|
|
@@ -29,7 +29,7 @@ function BooleanFilter() {
|
|
|
29
29
|
],
|
|
30
30
|
[getLabel]
|
|
31
31
|
);
|
|
32
|
-
return /* @__PURE__ */ jsxs(
|
|
32
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
33
33
|
/* @__PURE__ */ jsx(
|
|
34
34
|
RHFAutocomplete,
|
|
35
35
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
1
|
+
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useModuleDictionary } from "@m4l/core";
|
|
3
3
|
import { useMemo } from "react";
|
|
4
4
|
import { useFormContext, useWatch } from "react-hook-form";
|
|
@@ -23,7 +23,7 @@ function DateTimeFilter() {
|
|
|
23
23
|
})).filter((o) => restritcOperatorsTo ? restritcOperatorsTo.includes(o.id) : true),
|
|
24
24
|
[getLabel, restritcOperatorsTo]
|
|
25
25
|
);
|
|
26
|
-
return /* @__PURE__ */ jsxs(
|
|
26
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
27
27
|
/* @__PURE__ */ jsx(
|
|
28
28
|
RHFAutocomplete,
|
|
29
29
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
1
|
+
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useModuleDictionary } from "@m4l/core";
|
|
3
3
|
import { useMemo } from "react";
|
|
4
4
|
import { useFormContext, useWatch } from "react-hook-form";
|
|
@@ -24,7 +24,7 @@ function NumberFilter() {
|
|
|
24
24
|
})).filter((o) => restritcOperatorsTo ? restritcOperatorsTo.includes(o.id) : true),
|
|
25
25
|
[getLabel, restritcOperatorsTo]
|
|
26
26
|
);
|
|
27
|
-
return /* @__PURE__ */ jsxs(
|
|
27
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
28
28
|
/* @__PURE__ */ jsx(
|
|
29
29
|
RHFAutocomplete,
|
|
30
30
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
1
|
+
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useModuleDictionary } from "@m4l/core";
|
|
3
3
|
import { useMemo } from "react";
|
|
4
4
|
import { S as SELECT_ASYNC_OPERATORS_MULTIPLE, c as SELECT_ASYNC_OPERATORS_SINGLE } from "../../../constants.js";
|
|
@@ -22,7 +22,7 @@ function SelectAsyncFilter() {
|
|
|
22
22
|
})).filter((o) => restritcOperatorsTo ? restritcOperatorsTo.includes(o.id) : true),
|
|
23
23
|
[getLabel, isMultiple, restritcOperatorsTo]
|
|
24
24
|
);
|
|
25
|
-
return /* @__PURE__ */ jsxs(
|
|
25
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
26
26
|
/* @__PURE__ */ jsx(
|
|
27
27
|
RHFAutocomplete,
|
|
28
28
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
1
|
+
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useModuleDictionary } from "@m4l/core";
|
|
3
3
|
import { useMemo } from "react";
|
|
4
4
|
import { d as SELECT_OPERATORS_MULTIPLE, e as SELECT_OPERATORS_SINGLE } from "../../../constants.js";
|
|
@@ -19,7 +19,7 @@ function SelectFilter() {
|
|
|
19
19
|
})).filter((o) => restritcOperatorsTo ? restritcOperatorsTo.includes(o.id) : true),
|
|
20
20
|
[getLabel, isMultiple, restritcOperatorsTo]
|
|
21
21
|
);
|
|
22
|
-
return /* @__PURE__ */ jsxs(
|
|
22
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
23
23
|
/* @__PURE__ */ jsx(
|
|
24
24
|
RHFAutocomplete,
|
|
25
25
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
1
|
+
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useModuleDictionary } from "@m4l/core";
|
|
3
3
|
import { useMemo } from "react";
|
|
4
4
|
import { f as STRING_OPERATORS } from "../../../constants.js";
|
|
@@ -17,7 +17,7 @@ function StringFilter() {
|
|
|
17
17
|
})).filter((o) => restritcOperatorsTo ? restritcOperatorsTo.includes(o.id) : true),
|
|
18
18
|
[getLabel, restritcOperatorsTo]
|
|
19
19
|
);
|
|
20
|
-
return /* @__PURE__ */ jsxs(
|
|
20
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
21
21
|
/* @__PURE__ */ jsx(
|
|
22
22
|
RHFAutocomplete,
|
|
23
23
|
{
|
|
@@ -250,6 +250,12 @@ const dynamicSortStyles = {
|
|
|
250
250
|
minWidth: "220px",
|
|
251
251
|
maxWidth: "420px",
|
|
252
252
|
height: "fit-content"
|
|
253
|
+
},
|
|
254
|
+
"& .M4LWindowBase-root": {
|
|
255
|
+
border: "unset!important",
|
|
256
|
+
"& .M4LWindowBase-headerWindowComponent": {
|
|
257
|
+
cursor: "unset"
|
|
258
|
+
}
|
|
253
259
|
}
|
|
254
260
|
}
|
|
255
261
|
}),
|
|
@@ -257,12 +263,9 @@ const dynamicSortStyles = {
|
|
|
257
263
|
* popoverSortContainerFields: Estilos del contenedor de campos del menú emergente de ordenamiento.
|
|
258
264
|
*/
|
|
259
265
|
popoverSortContainerFields: ({ theme }) => ({
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
flexDirection: "column",
|
|
264
|
-
gap: theme.vars.size.baseSpacings.sp2
|
|
265
|
-
}
|
|
266
|
+
display: "flex",
|
|
267
|
+
flexDirection: "column",
|
|
268
|
+
gap: theme.vars.size.baseSpacings.sp4
|
|
266
269
|
}),
|
|
267
270
|
/**
|
|
268
271
|
* popoverSortActions: Estilos del contenedor de acciones del menú emergente de ordenamiento.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
1
|
+
import { jsx, Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { useModuleDictionary, useEnvironment } from "@m4l/core";
|
|
3
3
|
import { useMemo } from "react";
|
|
4
4
|
import { S as SORT_ICONS } from "../../../icons.js";
|
|
@@ -25,7 +25,7 @@ function StringSort() {
|
|
|
25
25
|
],
|
|
26
26
|
[getLabel, host_static_assets, environment_assets]
|
|
27
27
|
);
|
|
28
|
-
return /* @__PURE__ */ jsx(
|
|
28
|
+
return /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsx(
|
|
29
29
|
RHFSelect,
|
|
30
30
|
{
|
|
31
31
|
size,
|
|
@@ -5,17 +5,16 @@ import { useEnvironment, useNetwork } from "@m4l/core";
|
|
|
5
5
|
import { g as getPropDataTestId } from "../../test/getNameDataTestId.js";
|
|
6
6
|
import { a as getComponentSlotRoot } from "../../utils/getComponentSlotRoot.js";
|
|
7
7
|
import { I as Image } from "../Image/Image.js";
|
|
8
|
-
import { L as LanguagePopoverRootStyled, P as PaperStyled
|
|
8
|
+
import { L as LanguagePopoverRootStyled, P as PaperStyled } from "./slots/LanguagePopoverSlots.js";
|
|
9
9
|
import { L as LANGUAGE_POPOVER_KEY_COMPONENT } from "./constants.js";
|
|
10
10
|
import { L as LanguagePopoverSlots } from "./slots/LanguagePopoverEnum.js";
|
|
11
11
|
import { u as useComponentSize } from "../../hooks/useComponentSize/useComponentSize.js";
|
|
12
12
|
function LanguagePopover(props) {
|
|
13
13
|
const {
|
|
14
14
|
disabled,
|
|
15
|
-
size
|
|
15
|
+
size
|
|
16
16
|
} = props;
|
|
17
17
|
const { currentSize } = useComponentSize(size);
|
|
18
|
-
const adjustedSize = currentSize === "small" || currentSize === "medium" ? currentSize : "medium";
|
|
19
18
|
const isFirstRender = useFirstRender();
|
|
20
19
|
const { currentLocale, onChangeLocale } = useLocales();
|
|
21
20
|
const { domain_token } = useEnvironment();
|
|
@@ -59,7 +58,7 @@ function LanguagePopover(props) {
|
|
|
59
58
|
return {
|
|
60
59
|
type: "menuItem",
|
|
61
60
|
label: option?.name,
|
|
62
|
-
startIcon: /* @__PURE__ */ jsx(Image, { src: option?.urlIcon, enableIntersectionObserver: false }),
|
|
61
|
+
startIcon: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Image, { src: option?.urlIcon, enableIntersectionObserver: false }) }),
|
|
63
62
|
onClick: () => onChangeLocale(option)
|
|
64
63
|
};
|
|
65
64
|
});
|
|
@@ -68,11 +67,14 @@ function LanguagePopover(props) {
|
|
|
68
67
|
return /* @__PURE__ */ jsx(
|
|
69
68
|
LanguagePopoverRootStyled,
|
|
70
69
|
{
|
|
71
|
-
|
|
70
|
+
ownerState: {
|
|
71
|
+
size: currentSize
|
|
72
|
+
},
|
|
73
|
+
size: currentSize,
|
|
72
74
|
className: classRoot,
|
|
73
75
|
...getPropDataTestId(LANGUAGE_POPOVER_KEY_COMPONENT, LanguagePopoverSlots.root),
|
|
74
76
|
disabled,
|
|
75
|
-
icon: /* @__PURE__ */ jsx(
|
|
77
|
+
icon: /* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsx(Image, { src: currentLocale?.urlIcon, enableIntersectionObserver: false }) }),
|
|
76
78
|
menuActions: getMenuActionsOptions(),
|
|
77
79
|
onOpen: handleMenuOpenChange,
|
|
78
80
|
slots: {
|
|
@@ -1,8 +1,29 @@
|
|
|
1
|
+
import { g as getSizeStyles } from "../../utils/getSizeStyles/getSizeStyles.js";
|
|
1
2
|
const languagePopoverStyles = {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
}
|
|
3
|
+
/**
|
|
4
|
+
* Estilos del root
|
|
5
|
+
*/
|
|
6
|
+
root: ({ theme, ownerState }) => ({
|
|
7
|
+
"&": {
|
|
8
|
+
display: "flex",
|
|
9
|
+
justifyContent: "center",
|
|
10
|
+
alignItems: "center",
|
|
11
|
+
...getSizeStyles(
|
|
12
|
+
theme,
|
|
13
|
+
ownerState?.size || "medium",
|
|
14
|
+
"action",
|
|
15
|
+
(size) => ({
|
|
16
|
+
width: size,
|
|
17
|
+
height: size
|
|
18
|
+
})
|
|
19
|
+
),
|
|
20
|
+
"& .MuiButtonBase-root > div": {
|
|
21
|
+
position: "absolute",
|
|
22
|
+
inset: theme.vars.size.baseSpacings.sp1
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}),
|
|
26
|
+
image: {},
|
|
6
27
|
/**
|
|
7
28
|
* Estilos del paper
|
|
8
29
|
*/
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
export declare const LanguagePopoverRootStyled: import('@emotion/styled').StyledComponent<Pick<import('../../MenuActions/types').MenuActionsProps, keyof import('../../MenuActions/types').MenuActionsProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown
|
|
2
|
-
|
|
1
|
+
export declare const LanguagePopoverRootStyled: import('@emotion/styled').StyledComponent<Pick<import('../../MenuActions/types').MenuActionsProps, keyof import('../../MenuActions/types').MenuActionsProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
|
|
2
|
+
ownerState?: (Partial<import('..').LanguagePopoverOwnerState> & Record<string, unknown>) | undefined;
|
|
3
|
+
}, {}, {}>;
|
|
4
|
+
export declare const ImageStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
|
|
5
|
+
ownerState?: (Partial<import('..').LanguagePopoverOwnerState> & Record<string, unknown>) | undefined;
|
|
6
|
+
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
3
7
|
export declare const PaperStyled: import('@emotion/styled').StyledComponent<Pick<import('@mui/material').PaperOwnProps & import('@mui/material/OverridableComponent').CommonProps & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
4
8
|
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;
|
|
5
|
-
}, "children" | "style" | "square" | "variant" | "className" | "classes" | "sx" | "elevation">, "children" | "ref" | "title" | "id" | "hidden" | "color" | "content" | "style" | "square" | "variant" | "translate" | "className" | "classes" | "sx" | "slot" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "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" | "elevation"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown
|
|
9
|
+
}, "children" | "style" | "square" | "variant" | "className" | "classes" | "sx" | "elevation">, "children" | "ref" | "title" | "id" | "hidden" | "color" | "content" | "style" | "square" | "variant" | "translate" | "className" | "classes" | "sx" | "slot" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "autoCapitalize" | "autoFocus" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "enterKeyHint" | "lang" | "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" | "elevation"> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
|
|
10
|
+
ownerState?: (Partial<import('..').LanguagePopoverOwnerState> & Record<string, unknown>) | undefined;
|
|
11
|
+
}, {}, {}>;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { styled } from "@mui/material/styles";
|
|
2
|
-
import { I as Image } from "../../Image/Image.js";
|
|
3
2
|
import { M as MenuActions } from "../../MenuActions/MenuActions.js";
|
|
4
3
|
import { L as LANGUAGE_POPOVER_KEY_COMPONENT } from "../constants.js";
|
|
5
4
|
import { l as languagePopoverStyles } from "../LanguagePopover.styles.js";
|
|
@@ -9,7 +8,7 @@ const LanguagePopoverRootStyled = styled(MenuActions, {
|
|
|
9
8
|
name: LANGUAGE_POPOVER_KEY_COMPONENT,
|
|
10
9
|
slot: LanguagePopoverSlots.root
|
|
11
10
|
})(languagePopoverStyles.root);
|
|
12
|
-
|
|
11
|
+
styled("div", {
|
|
13
12
|
name: LANGUAGE_POPOVER_KEY_COMPONENT,
|
|
14
13
|
slot: LanguagePopoverSlots.image
|
|
15
14
|
})(languagePopoverStyles.image);
|
|
@@ -18,7 +17,6 @@ const PaperStyled = styled(Paper, {
|
|
|
18
17
|
slot: LanguagePopoverSlots.paper
|
|
19
18
|
})(languagePopoverStyles.paper);
|
|
20
19
|
export {
|
|
21
|
-
ImageStyled as I,
|
|
22
20
|
LanguagePopoverRootStyled as L,
|
|
23
21
|
PaperStyled as P
|
|
24
22
|
};
|
|
@@ -17,4 +17,9 @@ export interface LanguagePopoverProps {
|
|
|
17
17
|
*/
|
|
18
18
|
size?: Extract<Sizes, 'small' | 'medium'>;
|
|
19
19
|
}
|
|
20
|
-
export type
|
|
20
|
+
export type LanguagePopoverSlotsType = keyof typeof Slots;
|
|
21
|
+
export interface LanguagePopoverOwnerState {
|
|
22
|
+
size: LanguagePopoverProps['size'];
|
|
23
|
+
image?: string;
|
|
24
|
+
}
|
|
25
|
+
export type LanguagePopoverStyles = M4LOverridesStyleRules<LanguagePopoverSlotsType, typeof LANGUAGE_POPOVER_KEY_COMPONENT, Theme>;
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
+
import { g as getComponentClasses } from "../../utils/getComponentSlotRoot.js";
|
|
2
|
+
import { W as WindowBaseSlots } from "./slots/WindowBaseEnum.js";
|
|
1
3
|
const WINDOW_BASE_KEY_COMPONENT = "M4LWindowBase";
|
|
4
|
+
const WINDOW_BASE_CLASSES = getComponentClasses(WINDOW_BASE_KEY_COMPONENT, WindowBaseSlots);
|
|
2
5
|
export {
|
|
3
|
-
WINDOW_BASE_KEY_COMPONENT as W
|
|
6
|
+
WINDOW_BASE_KEY_COMPONENT as W,
|
|
7
|
+
WINDOW_BASE_CLASSES as a
|
|
4
8
|
};
|
|
@@ -8,6 +8,8 @@ import { deepEqual } from "fast-equals";
|
|
|
8
8
|
import { useFormatter } from "@m4l/graphics";
|
|
9
9
|
import { u as useButtonActions } from "./useButtonActions.js";
|
|
10
10
|
import { H as HeaderWindowComponentStyled, c as HeaderContentStyled, I as IconWindowStyled, d as ContainerTitleSubtitleStyled, e as TitleWindowStyled, P as PointIconStyled, S as SubtitleWindowStyled, f as IconsWrapperStyled, g as ContainerLeftActionsStyled, M as MenuActionsWindowsStyled } from "../../slots/WindowBaseSlots.js";
|
|
11
|
+
import { a as WINDOW_BASE_CLASSES } from "../../constants.js";
|
|
12
|
+
import clsx from "clsx";
|
|
11
13
|
const HeaderWindowBase = (props) => {
|
|
12
14
|
const {
|
|
13
15
|
title,
|
|
@@ -105,7 +107,7 @@ const HeaderWindowBase = (props) => {
|
|
|
105
107
|
};
|
|
106
108
|
const IconButtonLeftActions = useButtonActions(leftActions);
|
|
107
109
|
const IconButtonRightActions = useButtonActions(rightActions);
|
|
108
|
-
return /* @__PURE__ */ jsxs(HeaderWindowComponentStyled, { className: dragResizeWindowRNDClasses.draggableHandle, ownerState, children: [
|
|
110
|
+
return /* @__PURE__ */ jsxs(HeaderWindowComponentStyled, { className: clsx(dragResizeWindowRNDClasses.draggableHandle, WINDOW_BASE_CLASSES.headerWindowComponent), ownerState, children: [
|
|
109
111
|
/* @__PURE__ */ jsxs(HeaderContentStyled, { ownerState, children: [
|
|
110
112
|
iconUrl && /* @__PURE__ */ jsx(IconWindowStyled, { size, ownerState, src: iconUrl, "aria-label": "main icon" }),
|
|
111
113
|
/* @__PURE__ */ jsxs(ContainerTitleSubtitleStyled, { size, ownerState, children: [
|
|
@@ -73,7 +73,7 @@ const splitLayoutStyles = {
|
|
|
73
73
|
width: theme.vars.size.baseSpacings.sp5,
|
|
74
74
|
height: theme.vars.size.baseSpacings.sp5,
|
|
75
75
|
"& .M4LIcon-icon": {
|
|
76
|
-
backgroundColor: theme.vars.palette.primary.
|
|
76
|
+
backgroundColor: theme.vars.palette.primary.focusVisible
|
|
77
77
|
},
|
|
78
78
|
"&::before": {
|
|
79
79
|
content: `""`,
|
|
@@ -138,12 +138,12 @@ const splitLayoutStyles = {
|
|
|
138
138
|
},
|
|
139
139
|
"&.M4LSplitLayout-splitResizeHandle-vertical": {
|
|
140
140
|
"&:after": {
|
|
141
|
-
boxShadow: `inset 0px 1px 0px 0px ${theme.vars.palette.primary.
|
|
141
|
+
boxShadow: `inset 0px 1px 0px 0px ${theme.vars.palette.primary.focusVisible}`
|
|
142
142
|
}
|
|
143
143
|
},
|
|
144
144
|
"&.M4LSplitLayout-splitResizeHandle-horizontal": {
|
|
145
145
|
"&:after": {
|
|
146
|
-
boxShadow: `inset 1px 0px 0px 0px ${theme.vars.palette.primary.
|
|
146
|
+
boxShadow: `inset 1px 0px 0px 0px ${theme.vars.palette.primary.focusVisible}`
|
|
147
147
|
}
|
|
148
148
|
}
|
|
149
149
|
}
|
|
@@ -6,8 +6,8 @@ const rhfTextFieldPasswordStyles = {
|
|
|
6
6
|
root: ({ theme, ownerState }) => ({
|
|
7
7
|
display: "flex",
|
|
8
8
|
flexDirection: "column",
|
|
9
|
-
borderAlingment: "center",
|
|
10
9
|
gap: theme.vars.size.baseSpacings["sp0-5"],
|
|
10
|
+
width: "100%",
|
|
11
11
|
"& .MuiFormControl-root": {
|
|
12
12
|
minHeight: "100%",
|
|
13
13
|
...getHeightSizeStyles(
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { g as getTypographyStyles } from "../../../utils/getTypographyStyles.js";
|
|
2
|
-
import { a as getHeightSizeStyles } from "../../../utils/getSizeStyles/getSizeStyles.js";
|
|
2
|
+
import { a as getHeightSizeStyles, g as getSizeStyles } from "../../../utils/getSizeStyles/getSizeStyles.js";
|
|
3
3
|
import { T as TEXT_FIELD_CLASSES } from "./constants.js";
|
|
4
4
|
const textFieldStyles = {
|
|
5
5
|
/**
|
|
@@ -28,17 +28,19 @@ const textFieldStyles = {
|
|
|
28
28
|
// transición
|
|
29
29
|
transition: "all 0.2s ease",
|
|
30
30
|
// Espaciado entre elementos
|
|
31
|
-
...
|
|
32
|
-
theme
|
|
31
|
+
...getSizeStyles(
|
|
32
|
+
theme,
|
|
33
33
|
ownerState?.size || "medium",
|
|
34
34
|
"action",
|
|
35
|
-
(
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
};
|
|
40
|
-
}
|
|
35
|
+
(size) => ({
|
|
36
|
+
height: "auto",
|
|
37
|
+
minHeight: size
|
|
38
|
+
})
|
|
41
39
|
),
|
|
40
|
+
"& .MuiInputBase-input.MuiInputBase-inputMultiline": {
|
|
41
|
+
paddingTop: theme.vars.size.baseSpacings.sp1,
|
|
42
|
+
paddingBottom: theme.vars.size.baseSpacings.sp1
|
|
43
|
+
},
|
|
42
44
|
...ownerState?.readOnly ? {
|
|
43
45
|
backgroundColor: theme.vars.palette.background.neutral
|
|
44
46
|
} : {}
|
package/index.d.ts
CHANGED
package/index.js
CHANGED
|
@@ -210,12 +210,12 @@ import { g as g30 } from "./utils/getComponentUtilityClass.js";
|
|
|
210
210
|
import { g as g31 } from "./utils/getPaletteColor.js";
|
|
211
211
|
import { g as g32 } from "./utils/getTypographyStyles.js";
|
|
212
212
|
import { g as g33 } from "./utils/getIconColor.js";
|
|
213
|
-
import { a as a16 } from "./utils/getSizeStyles/getSizeStyles.js";
|
|
213
|
+
import { a as a16, g as g34 } from "./utils/getSizeStyles/getSizeStyles.js";
|
|
214
214
|
import { O as O2 } from "./utils/ObjectQueue.js";
|
|
215
|
-
import { g as
|
|
215
|
+
import { g as g35, a as a17 } from "./utils/getComponentSlotRoot.js";
|
|
216
216
|
import { f } from "./utils/formatDistanceToNow/formatDistanteToNow.js";
|
|
217
|
-
import { g as
|
|
218
|
-
import { g as
|
|
217
|
+
import { g as g36 } from "./utils/getValidDate.js";
|
|
218
|
+
import { g as g37 } from "./utils/getNullGuard.js";
|
|
219
219
|
export {
|
|
220
220
|
A7 as AREAS_DICCTIONARY,
|
|
221
221
|
a3 as AREAS_DICTIONARY_ID,
|
|
@@ -394,7 +394,7 @@ export {
|
|
|
394
394
|
b2 as getAreasComponentsDictionary,
|
|
395
395
|
g3 as getAreasDictionary,
|
|
396
396
|
g4 as getCommonActionsDictionary,
|
|
397
|
-
|
|
397
|
+
g35 as getComponentClasses,
|
|
398
398
|
a17 as getComponentSlotRoot,
|
|
399
399
|
g30 as getComponentUtilityClass,
|
|
400
400
|
g5 as getDataGridComponentsDictionary,
|
|
@@ -418,7 +418,7 @@ export {
|
|
|
418
418
|
a14 as getModalDialogComponentsDictionary,
|
|
419
419
|
g27 as getModalDictionary,
|
|
420
420
|
g25 as getNoItemSelectedComponentsDictionary,
|
|
421
|
-
|
|
421
|
+
g37 as getNullGuard,
|
|
422
422
|
g26 as getObjectLogsComponentsDictionary,
|
|
423
423
|
g11 as getPagerComponentsDictionary,
|
|
424
424
|
g31 as getPaletteColor,
|
|
@@ -427,9 +427,10 @@ export {
|
|
|
427
427
|
g19 as getRHFAutocompleteComponentsDictionary,
|
|
428
428
|
g9 as getRawFiltersForNetwork,
|
|
429
429
|
g10 as getRawSortsForNetwork,
|
|
430
|
+
g34 as getSizeStyles,
|
|
430
431
|
g32 as getTypographyStyles,
|
|
431
432
|
g13 as getUncertaintyFormat,
|
|
432
|
-
|
|
433
|
+
g36 as getValidDate,
|
|
433
434
|
g29 as getformAddEditDictionary,
|
|
434
435
|
i as isEqualLayout,
|
|
435
436
|
k as isEqualLayouts,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m4l/components",
|
|
3
|
-
"version": "9.2.60-
|
|
3
|
+
"version": "9.2.60-19062025.beta.1",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"description": "M4L Components",
|
|
6
6
|
"lint-staged": {
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
"@googlemaps/js-api-loader": "^1.16.6",
|
|
12
12
|
"@hookform/resolvers": "2.9.11",
|
|
13
13
|
"@m4l/core": "^2.0.0",
|
|
14
|
-
"@m4l/graphics": "
|
|
15
|
-
"@m4l/styles": "7.1.29-
|
|
14
|
+
"@m4l/graphics": "7.1.2-19062025.beta.1",
|
|
15
|
+
"@m4l/styles": "7.1.29-19062025.beta.1",
|
|
16
16
|
"@microlink/react-json-view": "^1.23.3",
|
|
17
17
|
"@mui/lab": "5.0.0-alpha.173",
|
|
18
18
|
"@mui/material": "5.16.7",
|
package/utils/index.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ export * from './getComponentSlotRoot';
|
|
|
7
7
|
export { getTypographyStyles } from './getTypographyStyles';
|
|
8
8
|
export { getIconColor } from './getIconColor';
|
|
9
9
|
export { getHeightSizeStyles } from './getSizeStyles';
|
|
10
|
+
export { getSizeStyles } from './getSizeStyles';
|
|
10
11
|
export * from './formatDistanceToNow';
|
|
11
12
|
export * from './getValidDate';
|
|
12
13
|
export * from './getNullGuard';
|