@m4l/components 9.3.2-B04082025-beta.3 → 9.3.2-B11082025-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@types/types.d.ts +33 -3
- package/components/Card/Card.d.ts +7 -0
- package/components/Card/Card.styles.d.ts +2 -0
- package/components/Card/constants.d.ts +7 -0
- package/components/Card/helpers/getSizeSpacing.d.ts +7 -0
- package/components/Card/index.d.ts +1 -0
- package/components/Card/slots/CardEnum.d.ts +3 -0
- package/components/Card/slots/CardSlots.d.ts +3 -0
- package/components/Card/types.d.ts +59 -0
- package/components/DynamicFilter/DynamicFilter.styles.js +6 -2
- package/components/DynamicSort/DynamicSort.styles.js +6 -2
- package/components/ImageText/ImageText.d.ts +7 -0
- package/components/ImageText/ImageText.js +62 -0
- package/components/ImageText/ImageText.styles.d.ts +2 -0
- package/components/ImageText/{components/NoItemPrivileges/NoItemPrivilegesStyles.js → ImageText.styles.js} +21 -4
- package/components/ImageText/constants.d.ts +16 -0
- package/components/ImageText/constants.js +10 -0
- package/components/ImageText/index.d.ts +1 -3
- package/components/ImageText/slots/ImageTextEnum.d.ts +8 -0
- package/components/ImageText/slots/ImageTextEnum.js +12 -0
- package/components/ImageText/slots/ImageTextSlots.d.ts +18 -0
- package/components/ImageText/slots/ImageTextSlots.js +38 -0
- package/components/ImageText/types.d.ts +40 -0
- package/components/NoItemPrivileges/NoItemPrivileges.js +33 -0
- package/components/NoItemPrivileges/NoItemPrivilegesStyles.js +6 -0
- package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/constants.d.ts +0 -1
- package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/constants.js +3 -4
- package/components/NoItemPrivileges/slots/NoItemPrivilegesEnum.d.ts +3 -0
- package/components/NoItemPrivileges/slots/NoItemPrivilegesEnum.js +7 -0
- package/components/NoItemPrivileges/slots/NoItemPrivilegesSlots.d.ts +3 -0
- package/components/NoItemPrivileges/slots/NoItemPrivilegesSlots.js +12 -0
- package/components/NoItemPrivileges/test/NoItemPrivileges.test.d.ts +1 -0
- package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/types.d.ts +1 -1
- package/components/NoItemSelected/NoItemSelected.js +34 -0
- package/components/NoItemSelected/NoItemSelected.styles.js +6 -0
- package/components/NoItemSelected/constant.d.ts +2 -0
- package/components/NoItemSelected/constant.js +8 -0
- package/components/{ImageText/components/NoItemSelected → NoItemSelected}/dictionary.d.ts +0 -2
- package/components/NoItemSelected/dictionary.js +12 -0
- package/components/NoItemSelected/slots/NoItemSelectedEnum.d.ts +3 -0
- package/components/NoItemSelected/slots/NoItemSelectedEnum.js +7 -0
- package/components/NoItemSelected/slots/NoItemSelectedSlots.d.ts +3 -0
- package/components/NoItemSelected/slots/NoItemSelectedSlots.js +12 -0
- package/components/NoItemSelected/test/NoItemSelected.test.d.ts +1 -0
- package/components/{ImageText/components/NoItemSelected → NoItemSelected}/types.d.ts +6 -7
- package/components/NumberInput/NumberInput.styles.js +1 -0
- package/components/ObjectLogs/helpers/Fields/filterFields.d.ts +1 -1
- package/components/ObjectLogs/hooks/useDetailFormatter.js +1 -1
- package/components/ObjectLogs/hooks/useFilterAndSort.js +2 -1
- package/components/ObjectLogs/subcomponents/DetailDialog/index.js +3 -8
- package/components/ObjectLogs/types.d.ts +0 -2
- package/components/PaperForm/PaperForm.js +1 -2
- package/components/PaperForm/components/Header.js +1 -10
- package/components/PaperForm/styles.js +1 -4
- package/components/PropertyValue/PropertyValue.js +1 -1
- package/components/SettingsLayout/SettingsLayout.d.ts +5 -0
- package/components/SettingsLayout/SettingsLayout.js +34 -0
- package/components/SettingsLayout/SettingsLayout.styles.d.ts +2 -0
- package/components/SettingsLayout/SettingsLayout.styles.js +270 -0
- package/components/SettingsLayout/constants.d.ts +7 -0
- package/components/SettingsLayout/constants.js +10 -0
- package/components/SettingsLayout/dictionary.d.ts +8 -0
- package/components/SettingsLayout/dictionary.js +11 -0
- package/components/SettingsLayout/icons.d.ts +14 -0
- package/components/SettingsLayout/icons.js +17 -0
- package/components/SettingsLayout/index.d.ts +2 -0
- package/components/SettingsLayout/slots/SettingsLayoutEnum.d.ts +17 -0
- package/components/SettingsLayout/slots/SettingsLayoutEnum.js +21 -0
- package/components/SettingsLayout/slots/SettingsLayoutSlots.d.ts +47 -0
- package/components/SettingsLayout/slots/SettingsLayoutSlots.js +83 -0
- package/components/SettingsLayout/subcomponents/SettingColorPresets/SettingColorPresets.d.ts +5 -0
- package/components/SettingsLayout/subcomponents/SettingColorPresets/SettingColorPresets.js +37 -0
- package/components/SettingsLayout/subcomponents/SettingColorPresets/index.d.ts +1 -0
- package/components/SettingsLayout/subcomponents/SettingColorPresets/types.d.ts +3 -0
- package/components/SettingsLayout/subcomponents/SettingDirection/SettingDirection.d.ts +5 -0
- package/components/SettingsLayout/subcomponents/SettingDirection/SettingDirection.js +37 -0
- package/components/SettingsLayout/subcomponents/SettingDirection/index.d.ts +1 -0
- package/components/SettingsLayout/subcomponents/SettingDirection/types.d.ts +3 -0
- package/components/SettingsLayout/subcomponents/SettingFullscreen/SettingFullscreen.d.ts +5 -0
- package/components/SettingsLayout/subcomponents/SettingFullscreen/SettingFullscreen.js +40 -0
- package/components/SettingsLayout/subcomponents/SettingFullscreen/index.d.ts +1 -0
- package/components/SettingsLayout/subcomponents/SettingFullscreen/index.js +1 -0
- package/components/SettingsLayout/subcomponents/SettingFullscreen/types.d.ts +3 -0
- package/components/SettingsLayout/subcomponents/SettingItem/SettingItem.d.ts +8 -0
- package/components/SettingsLayout/subcomponents/SettingItem/SettingItem.js +23 -0
- package/components/SettingsLayout/subcomponents/SettingItem/index.d.ts +1 -0
- package/components/SettingsLayout/subcomponents/SettingItem/index.js +1 -0
- package/components/SettingsLayout/subcomponents/SettingItem/types.d.ts +5 -0
- package/components/SettingsLayout/subcomponents/SettingItemColor/SettingItemColor.d.ts +8 -0
- package/components/SettingsLayout/subcomponents/SettingItemColor/SettingItemColor.js +24 -0
- package/components/SettingsLayout/subcomponents/SettingItemColor/index.d.ts +1 -0
- package/components/SettingsLayout/subcomponents/SettingItemColor/index.js +1 -0
- package/components/SettingsLayout/subcomponents/SettingItemColor/types.d.ts +6 -0
- package/components/SettingsLayout/subcomponents/SettingMode/SettingMode.d.ts +5 -0
- package/components/SettingsLayout/subcomponents/SettingMode/SettingMode.js +36 -0
- package/components/SettingsLayout/subcomponents/SettingMode/index.d.ts +1 -0
- package/components/SettingsLayout/subcomponents/SettingMode/index.js +1 -0
- package/components/SettingsLayout/subcomponents/SettingMode/types.d.ts +3 -0
- package/components/SettingsLayout/subcomponents/SettingsLayoutBase/SettingsLayoutBase.d.ts +5 -0
- package/components/SettingsLayout/subcomponents/SettingsLayoutBase/SettingsLayoutBase.js +76 -0
- package/components/SettingsLayout/subcomponents/SettingsLayoutBase/index.d.ts +1 -0
- package/components/SettingsLayout/subcomponents/SettingsLayoutBase/index.js +1 -0
- package/components/SettingsLayout/subcomponents/SettingsLayoutBase/types.d.ts +5 -0
- package/components/SettingsLayout/test/SettingsLayout.test.d.ts +18 -0
- package/components/SettingsLayout/types.d.ts +47 -0
- package/components/SideBar/subcomponents/ContentComponent/style.js +3 -0
- package/components/ToastContainer/ToastContainer.js +0 -1
- package/components/ToastContainer/ToastContainer.styles.js +126 -122
- package/components/ToastContainer/constants.d.ts +670 -0
- package/components/ToastContainer/constants.js +672 -1
- package/components/extended/React-Json-Viewer/ReactJsonViewer.d.ts +7 -0
- package/components/extended/React-Json-Viewer/ReactJsonViewer.js +31 -0
- package/components/extended/React-Json-Viewer/ReactJsonViewer.styles.d.ts +2 -0
- package/components/extended/React-Json-Viewer/ReactJsonViewer.styles.js +12 -0
- package/components/extended/React-Json-Viewer/constants.d.ts +2 -0
- package/components/extended/React-Json-Viewer/constants.js +8 -0
- package/components/extended/React-Json-Viewer/helpers/getReactJsonViewerTheme/getReactJsonViewerTheme.d.ts +8 -0
- package/components/extended/React-Json-Viewer/helpers/getReactJsonViewerTheme/getReactJsonViewerTheme.js +23 -0
- package/components/extended/React-Json-Viewer/helpers/getReactJsonViewerTheme/index.d.ts +1 -0
- package/components/extended/React-Json-Viewer/index.d.ts +1 -0
- package/components/extended/React-Json-Viewer/index.js +1 -0
- package/components/extended/React-Json-Viewer/slots/ReactJsonViewerEnum.d.ts +3 -0
- package/components/extended/React-Json-Viewer/slots/ReactJsonViewerEnum.js +7 -0
- package/components/extended/React-Json-Viewer/slots/ReactJsonViewerSlots.d.ts +1 -0
- package/components/extended/React-Json-Viewer/slots/ReactJsonViewerSlots.js +11 -0
- package/components/extended/React-Json-Viewer/test/ReactJsonViewer.test.d.ts +1 -0
- package/components/extended/React-Json-Viewer/types.d.ts +12 -0
- package/components/extended/index.d.ts +1 -0
- package/components/hook-form/RHFColorPicker/RHFColorPicker.styles.js +2 -1
- package/components/hook-form/RHFDateTime/RHFDateTime.styles.js +2 -1
- package/components/hook-form/RHFNumberInput/RHFNumberInput.styles.js +2 -1
- package/components/hook-form/RHFPeriod/RHFPeriod.styles.js +2 -5
- package/components/hook-form/RHFPeriod/slots/RHFPeriodEnum.d.ts +1 -1
- package/components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js +1 -1
- package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.d.ts +1 -1
- package/components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js +6 -6
- package/components/hook-form/RHFPeriod/subcomponents/Period/Period.js +13 -11
- package/components/hook-form/RHFPeriod/subcomponents/Period/dictionary.js +1 -1
- package/components/hook-form/RHFPeriod/subcomponents/Period/types.d.ts +2 -2
- package/components/hook-form/RHFSelect/RHFSelect.styles.js +2 -1
- package/components/hook-form/RHFTextField/RHFTextField.js +5 -3
- package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +1 -1
- package/components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js +63 -55
- package/components/hook-form/RHFTextFieldPassword/slots/RHFTextFieldPasswordSlots.d.ts +1 -1
- package/components/index.d.ts +3 -0
- package/components/mui_extended/Autocomplete/slots/AutocompleteSlots.d.ts +1 -1
- package/components/mui_extended/Button/ButtonStyles.js +2 -1
- package/components/mui_extended/IconButton/IconButton.styles.js +1 -1
- package/components/mui_extended/MenuItem/MenuItem.styles.js +2 -1
- package/components/mui_extended/Tab/Tab.styles.js +3 -3
- package/components/mui_extended/TabContent/TabContent.styles.js +1 -0
- package/components/mui_extended/TextField/TextField.js +9 -11
- package/components/mui_extended/TextField/TextField.styles.js +23 -2
- package/components/mui_extended/TextField/constants.d.ts +6 -5
- package/components/mui_extended/TextField/constants.js +2 -2
- package/components/mui_extended/TextField/index.d.ts +1 -0
- package/components/mui_extended/TextField/slots/TextFieldEnum.d.ts +2 -1
- package/components/mui_extended/TextField/slots/TextFieldEnum.js +9 -8
- package/components/mui_extended/TextField/slots/TextFieldSlots.d.ts +5 -0
- package/components/mui_extended/TextField/slots/TextFieldSlots.js +6 -1
- package/components/mui_extended/TextField/types.d.ts +1 -1
- package/hooks/index.d.ts +1 -0
- package/hooks/useIsVisible/constants.d.ts +1 -0
- package/hooks/useIsVisible/constants.js +4 -0
- package/hooks/useIsVisible/index.d.ts +1 -0
- package/hooks/useIsVisible/index.js +1 -0
- package/hooks/useIsVisible/useIsVisible.d.ts +28 -0
- package/{components/ImageText/hooks/useIsVisible/index.js → hooks/useIsVisible/useIsVisible.js} +4 -3
- package/index.js +62 -56
- package/package.json +3 -3
- package/storybook/components/Card/Card.stories.d.ts +45 -0
- package/storybook/components/Card/subcomponents/ContentCard.d.ts +8 -0
- package/storybook/components/Card/subcomponents/constants.d.ts +9 -0
- package/storybook/components/NoItemPrivileges/NoItemPrivileges.stories.d.ts +1 -1
- package/storybook/components/NoItemSelect/NoItemSelect.stories.d.ts +1 -1
- package/storybook/components/SettingsLayout/SettingsLayout.stories.d.ts +6 -0
- package/storybook/components/SettingsLayout/subcomponents/SettingsLayoutRender/SettingsLayoutsRender.d.ts +5 -0
- package/storybook/components/SettingsLayout/subcomponents/SettingsLayoutRender/index.d.ts +1 -0
- package/storybook/components/extended/React-Json-Viewer/ReactJsonViewer.stories.d.ts +9 -0
- package/storybook/components/extended/mui/TextField/TextFieldText.stories.d.ts +1 -1
- package/storybook/components/paperForm/PaperForm.stories.d.ts +4 -0
- package/storybook/hook-form/RHFTextField/RHFTextField.stories.d.ts +4 -0
- package/storybook/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.stories.d.ts +19 -0
- package/{components/mui_extended/TextField/helpers → utils}/getLimitCharacters/getLimitCharacters.d.ts +2 -2
- package/utils/getLimitCharacters/index.js +1 -0
- package/utils/getLimitCharacters/test/getLimitCharacters.test.d.ts +1 -0
- package/utils/getLimitCharacters/types.d.ts +11 -0
- package/components/ImageText/components/ImageTextContainer/ImageTextContainer.d.ts +0 -7
- package/components/ImageText/components/ImageTextContainer/ImageTextContainer.js +0 -25
- package/components/ImageText/components/ImageTextContainer/ImageTextContainerStyle.d.ts +0 -2
- package/components/ImageText/components/ImageTextContainer/ImageTextContainerStyle.js +0 -22
- package/components/ImageText/components/ImageTextContainer/constants.d.ts +0 -8
- package/components/ImageText/components/ImageTextContainer/constants.js +0 -8
- package/components/ImageText/components/ImageTextContainer/index.d.ts +0 -1
- package/components/ImageText/components/ImageTextContainer/slots/ImageTextContainerEnum.d.ts +0 -3
- package/components/ImageText/components/ImageTextContainer/slots/ImageTextContainerEnum.js +0 -7
- package/components/ImageText/components/ImageTextContainer/slots/ImageTextContainerSlots.d.ts +0 -3
- package/components/ImageText/components/ImageTextContainer/slots/ImageTextContainerSlots.js +0 -12
- package/components/ImageText/components/ImageTextContainer/types.d.ts +0 -22
- package/components/ImageText/components/NoItemPrivileges/NoItemPrivileges.js +0 -65
- package/components/ImageText/components/NoItemPrivileges/slots/NoItemPrivilegesEnum.d.ts +0 -7
- package/components/ImageText/components/NoItemPrivileges/slots/NoItemPrivilegesEnum.js +0 -11
- package/components/ImageText/components/NoItemPrivileges/slots/NoItemPrivilegesSlots.d.ts +0 -15
- package/components/ImageText/components/NoItemPrivileges/slots/NoItemPrivilegesSlots.js +0 -33
- package/components/ImageText/components/NoItemSelected/NoItemSelected.js +0 -62
- package/components/ImageText/components/NoItemSelected/NoItemSelected.styles.js +0 -89
- package/components/ImageText/components/NoItemSelected/constant.d.ts +0 -2
- package/components/ImageText/components/NoItemSelected/constant.js +0 -8
- package/components/ImageText/components/NoItemSelected/dictionary.js +0 -11
- package/components/ImageText/components/NoItemSelected/slots/NoItemSelectedEnum.d.ts +0 -8
- package/components/ImageText/components/NoItemSelected/slots/NoItemSelectedEnum.js +0 -12
- package/components/ImageText/components/NoItemSelected/slots/NoItemSelectedSlots.d.ts +0 -18
- package/components/ImageText/components/NoItemSelected/slots/NoItemSelectedSlots.js +0 -39
- package/components/ImageText/hooks/useIsVisible/index.d.ts +0 -6
- package/components/hook-form/RHFDateTime/styles.d.ts +0 -1
- package/components/mui_extended/TextField/helpers/getLimitCharacters/types.d.ts +0 -5
- /package/components/{ImageText/components/NoItemPrivileges/test/NoItemPrivileges.test.d.ts → Card/helpers/getSizeSpacing.test.d.ts} +0 -0
- /package/components/{mui_extended/TextField/helpers/getLimitCharacters/test/getLimitCharacters.test.d.ts → Card/test/Card.test.d.ts} +0 -0
- /package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/NoItemPrivileges.d.ts +0 -0
- /package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/NoItemPrivilegesStyles.d.ts +0 -0
- /package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/dictionary.d.ts +0 -0
- /package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/dictionary.js +0 -0
- /package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/index.d.ts +0 -0
- /package/components/{ImageText/components/ImageTextContainer → NoItemPrivileges}/index.js +0 -0
- /package/components/{ImageText/components/NoItemSelected → NoItemSelected}/NoItemSelected.d.ts +0 -0
- /package/components/{ImageText/components/NoItemSelected → NoItemSelected}/NoItemSelected.styles.d.ts +0 -0
- /package/components/{ImageText/components/NoItemSelected → NoItemSelected}/index.d.ts +0 -0
- /package/components/{ImageText/components/NoItemPrivileges → NoItemSelected}/index.js +0 -0
- /package/components/{ImageText/components/NoItemSelected → SettingsLayout}/index.js +0 -0
- /package/components/{mui_extended/TextField/helpers/getLimitCharacters → SettingsLayout/subcomponents/SettingColorPresets}/index.js +0 -0
- /package/{components/mui_extended/TextField/helpers → utils}/getLimitCharacters/getLimitCharacters.js +0 -0
- /package/{components/mui_extended/TextField/helpers → utils}/getLimitCharacters/index.d.ts +0 -0
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
import { useModuleDictionary, useEnvironment } from "@m4l/core";
|
|
3
|
-
import { I as ImageContainerStyled, a as ImgStyled, W as WrapperTitleMessageStyled, T as TypographyStyledTitle, b as TypographyStyledMessage } from "./slots/NoItemPrivilegesSlots.js";
|
|
4
|
-
import { D as DICTIONARY } from "./dictionary.js";
|
|
5
|
-
import { I as IMG_ALT, D as DEFAULT_IMAGE_URL, N as NO_ITEM_PRIVILEGES_CLASSES } from "./constants.js";
|
|
6
|
-
import clsx from "clsx";
|
|
7
|
-
import { useRef } from "react";
|
|
8
|
-
import { u as useIsVisible } from "../../hooks/useIsVisible/index.js";
|
|
9
|
-
import { u as useComponentSize } from "../../../../hooks/useComponentSize/useComponentSize.js";
|
|
10
|
-
import { I as ImageTextContainer } from "../ImageTextContainer/ImageTextContainer.js";
|
|
11
|
-
const NoItemPrivileges = (props) => {
|
|
12
|
-
const { image, title, message, className, dataTestId, size } = props;
|
|
13
|
-
const { getLabel } = useModuleDictionary();
|
|
14
|
-
const { host_static_assets, environment_assets } = useEnvironment();
|
|
15
|
-
const imageUrl = image || `${host_static_assets}/${environment_assets}/${DEFAULT_IMAGE_URL}`;
|
|
16
|
-
const titleText = title || getLabel(DICTIONARY.LABEL_TITLE);
|
|
17
|
-
const messageText = message || getLabel(DICTIONARY.LABEL_MESSAGE);
|
|
18
|
-
const { currentSize } = useComponentSize(size);
|
|
19
|
-
const containerRef = useRef(null);
|
|
20
|
-
const isVisible = useIsVisible(containerRef);
|
|
21
|
-
return /* @__PURE__ */ jsxs(
|
|
22
|
-
ImageTextContainer,
|
|
23
|
-
{
|
|
24
|
-
className: clsx(className, NO_ITEM_PRIVILEGES_CLASSES.root),
|
|
25
|
-
dataTestId,
|
|
26
|
-
role: "alert",
|
|
27
|
-
"aria-label": "NoItemPrivileges",
|
|
28
|
-
children: [
|
|
29
|
-
/* @__PURE__ */ jsx(ImageContainerStyled, { ref: containerRef, ownerState: { isVisible }, children: /* @__PURE__ */ jsx(
|
|
30
|
-
ImgStyled,
|
|
31
|
-
{
|
|
32
|
-
src: imageUrl,
|
|
33
|
-
alt: IMG_ALT,
|
|
34
|
-
role: "presentation",
|
|
35
|
-
"aria-label": "illustration no item privileges",
|
|
36
|
-
ownerState: { isVisible }
|
|
37
|
-
}
|
|
38
|
-
) }),
|
|
39
|
-
/* @__PURE__ */ jsxs(WrapperTitleMessageStyled, { children: [
|
|
40
|
-
/* @__PURE__ */ jsx(
|
|
41
|
-
TypographyStyledTitle,
|
|
42
|
-
{
|
|
43
|
-
size: currentSize,
|
|
44
|
-
skeletonWidth: 100,
|
|
45
|
-
variant: "bodyDens",
|
|
46
|
-
children: titleText
|
|
47
|
-
}
|
|
48
|
-
),
|
|
49
|
-
/* @__PURE__ */ jsx(
|
|
50
|
-
TypographyStyledMessage,
|
|
51
|
-
{
|
|
52
|
-
size: currentSize,
|
|
53
|
-
skeletonWidth: 200,
|
|
54
|
-
variant: "body",
|
|
55
|
-
children: messageText
|
|
56
|
-
}
|
|
57
|
-
)
|
|
58
|
-
] })
|
|
59
|
-
]
|
|
60
|
-
}
|
|
61
|
-
);
|
|
62
|
-
};
|
|
63
|
-
export {
|
|
64
|
-
NoItemPrivileges as N
|
|
65
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
var NoItemPrivilegesSlots = /* @__PURE__ */ ((NoItemPrivilegesSlots2) => {
|
|
2
|
-
NoItemPrivilegesSlots2["imageContainer"] = "imageContainer";
|
|
3
|
-
NoItemPrivilegesSlots2["img"] = "img";
|
|
4
|
-
NoItemPrivilegesSlots2["wrapperTitleMessage"] = "wrapperTitleMessage";
|
|
5
|
-
NoItemPrivilegesSlots2["typographyStyledTitle"] = "typographyStyledTitle";
|
|
6
|
-
NoItemPrivilegesSlots2["typographyStyledMessage"] = "typographyStyledMessage";
|
|
7
|
-
return NoItemPrivilegesSlots2;
|
|
8
|
-
})(NoItemPrivilegesSlots || {});
|
|
9
|
-
export {
|
|
10
|
-
NoItemPrivilegesSlots as N
|
|
11
|
-
};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
export declare const ImageContainerStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
2
|
-
ownerState?: (Partial<import('..').NoItemPrivilegesOwnerState> & Record<string, unknown>) | undefined;
|
|
3
|
-
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
4
|
-
export declare const ImgStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../../Image').ImageProps, keyof import('../../../../Image').ImageProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
5
|
-
ownerState?: (Partial<import('..').NoItemPrivilegesOwnerState> & Record<string, unknown>) | undefined;
|
|
6
|
-
}, {}, {}>;
|
|
7
|
-
export declare const WrapperTitleMessageStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
8
|
-
ownerState?: (Partial<import('..').NoItemPrivilegesOwnerState> & Record<string, unknown>) | undefined;
|
|
9
|
-
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
10
|
-
export declare const TypographyStyledTitle: import('@emotion/styled').StyledComponent<Pick<import('../../../../mui_extended/Typography/types').TypographyProps, keyof import('../../../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
11
|
-
ownerState?: (Partial<import('..').NoItemPrivilegesOwnerState> & Record<string, unknown>) | undefined;
|
|
12
|
-
}, {}, {}>;
|
|
13
|
-
export declare const TypographyStyledMessage: import('@emotion/styled').StyledComponent<Pick<import('../../../../mui_extended/Typography/types').TypographyProps, keyof import('../../../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
14
|
-
ownerState?: (Partial<import('..').NoItemPrivilegesOwnerState> & Record<string, unknown>) | undefined;
|
|
15
|
-
}, {}, {}>;
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import { styled } from "@mui/material/styles";
|
|
2
|
-
import { N as NoItemPrivilegesSlots } from "./NoItemPrivilegesEnum.js";
|
|
3
|
-
import { N as NO_ITEM_SELECT_KEY_COMPONENT } from "../../NoItemSelected/constant.js";
|
|
4
|
-
import { n as noItemPrivilegesStyles } from "../NoItemPrivilegesStyles.js";
|
|
5
|
-
import { T as Typography } from "../../../../mui_extended/Typography/Typography.js";
|
|
6
|
-
import { I as Image } from "../../../../Image/Image.js";
|
|
7
|
-
const ImageContainerStyled = styled("div", {
|
|
8
|
-
name: NO_ITEM_SELECT_KEY_COMPONENT,
|
|
9
|
-
slot: NoItemPrivilegesSlots.imageContainer
|
|
10
|
-
})(noItemPrivilegesStyles?.imageContainer);
|
|
11
|
-
const ImgStyled = styled(Image, {
|
|
12
|
-
name: NO_ITEM_SELECT_KEY_COMPONENT,
|
|
13
|
-
slot: NoItemPrivilegesSlots.img
|
|
14
|
-
})(noItemPrivilegesStyles?.img);
|
|
15
|
-
const WrapperTitleMessageStyled = styled("div", {
|
|
16
|
-
name: NO_ITEM_SELECT_KEY_COMPONENT,
|
|
17
|
-
slot: NoItemPrivilegesSlots.wrapperTitleMessage
|
|
18
|
-
})(noItemPrivilegesStyles?.wrapperTitleMessage);
|
|
19
|
-
const TypographyStyledTitle = styled(Typography, {
|
|
20
|
-
name: NO_ITEM_SELECT_KEY_COMPONENT,
|
|
21
|
-
slot: NoItemPrivilegesSlots.typographyStyledTitle
|
|
22
|
-
})(noItemPrivilegesStyles?.typographyStyledTitle);
|
|
23
|
-
const TypographyStyledMessage = styled(Typography, {
|
|
24
|
-
name: NO_ITEM_SELECT_KEY_COMPONENT,
|
|
25
|
-
slot: NoItemPrivilegesSlots.typographyStyledMessage
|
|
26
|
-
})(noItemPrivilegesStyles?.typographyStyledMessage);
|
|
27
|
-
export {
|
|
28
|
-
ImageContainerStyled as I,
|
|
29
|
-
TypographyStyledTitle as T,
|
|
30
|
-
WrapperTitleMessageStyled as W,
|
|
31
|
-
ImgStyled as a,
|
|
32
|
-
TypographyStyledMessage as b
|
|
33
|
-
};
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
2
|
-
import { useEnvironment, useModuleDictionary } from "@m4l/core";
|
|
3
|
-
import { useMemo, useRef } from "react";
|
|
4
|
-
import { N as NoItemSelectedContainer, I as ImgStyled, W as WrapperTpography, T as TypographyStyledTitle, a as TypographyStyledDetail, L as LabelDetail } from "./slots/NoItemSelectedSlots.js";
|
|
5
|
-
import { clsx } from "clsx";
|
|
6
|
-
import { c as classNoItemSelected, N as NO_ITEM_SELECT_KEY_COMPONENT } from "./constant.js";
|
|
7
|
-
import { g as getPropDataTestId } from "../../../../test/getNameDataTestId.js";
|
|
8
|
-
import { N as NoItemSelectedSlots } from "./slots/NoItemSelectedEnum.js";
|
|
9
|
-
import { D as DICTIONARY } from "./dictionary.js";
|
|
10
|
-
import { u as useIsVisible } from "../../hooks/useIsVisible/index.js";
|
|
11
|
-
import { u as useComponentSize } from "../../../../hooks/useComponentSize/useComponentSize.js";
|
|
12
|
-
import { I as ImageTextContainer } from "../ImageTextContainer/ImageTextContainer.js";
|
|
13
|
-
function NoItemSelected(props) {
|
|
14
|
-
const { image, message, size = "medium", className, dataTestId } = props;
|
|
15
|
-
const { host_static_assets, environment_assets } = useEnvironment();
|
|
16
|
-
const { currentSize } = useComponentSize(size);
|
|
17
|
-
const adjustedSize = currentSize === "small" || currentSize === "medium" ? currentSize : "medium";
|
|
18
|
-
const { getLabel } = useModuleDictionary();
|
|
19
|
-
const defaultImage = useMemo(() => {
|
|
20
|
-
return `${host_static_assets}/${environment_assets}/frontend/components/no_item_selected/assets/icons/no_selected.svg`;
|
|
21
|
-
}, []);
|
|
22
|
-
const ownerState = {
|
|
23
|
-
size
|
|
24
|
-
};
|
|
25
|
-
const containerRef = useRef(null);
|
|
26
|
-
const isVisible = useIsVisible(containerRef);
|
|
27
|
-
return /* @__PURE__ */ jsxs(ImageTextContainer, { dataTestId, children: [
|
|
28
|
-
/* @__PURE__ */ jsx(NoItemSelectedContainer, { ref: containerRef, ownerState: { isVisible }, children: /* @__PURE__ */ jsx(
|
|
29
|
-
ImgStyled,
|
|
30
|
-
{
|
|
31
|
-
className: clsx(classNoItemSelected.img, "noItemSelectedImg", className),
|
|
32
|
-
src: image || defaultImage,
|
|
33
|
-
alt: "No item selected"
|
|
34
|
-
}
|
|
35
|
-
) }),
|
|
36
|
-
!message ? /* @__PURE__ */ jsx(Fragment, { children: /* @__PURE__ */ jsxs(WrapperTpography, { size: adjustedSize, children: [
|
|
37
|
-
/* @__PURE__ */ jsx(
|
|
38
|
-
TypographyStyledTitle,
|
|
39
|
-
{
|
|
40
|
-
ownerState: { ...ownerState },
|
|
41
|
-
skeletonWidth: 100,
|
|
42
|
-
size: adjustedSize,
|
|
43
|
-
"data-testid": getPropDataTestId(NO_ITEM_SELECT_KEY_COMPONENT, NoItemSelectedSlots.typographyStyledTitle, dataTestId),
|
|
44
|
-
children: getLabel(DICTIONARY.LABEL_TITLE)
|
|
45
|
-
}
|
|
46
|
-
),
|
|
47
|
-
/* @__PURE__ */ jsx(
|
|
48
|
-
TypographyStyledDetail,
|
|
49
|
-
{
|
|
50
|
-
ownerState: { ...ownerState },
|
|
51
|
-
skeletonWidth: 200,
|
|
52
|
-
size: adjustedSize,
|
|
53
|
-
"data-testid": getPropDataTestId(NO_ITEM_SELECT_KEY_COMPONENT, NoItemSelectedSlots.typographyStyledDetail, dataTestId),
|
|
54
|
-
children: getLabel(DICTIONARY.LABEL_DETAIL)
|
|
55
|
-
}
|
|
56
|
-
)
|
|
57
|
-
] }) }) : /* @__PURE__ */ jsx(LabelDetail, { children: message })
|
|
58
|
-
] });
|
|
59
|
-
}
|
|
60
|
-
export {
|
|
61
|
-
NoItemSelected as N
|
|
62
|
-
};
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
import { g as getTypographyStyles } from "../../../../utils/getTypographyStyles.js";
|
|
2
|
-
const noItemSelectedStyles = {
|
|
3
|
-
/**
|
|
4
|
-
* 📸 Estilos para la imagen del componente NoItemSelected 📸.
|
|
5
|
-
*/
|
|
6
|
-
img: {},
|
|
7
|
-
/**
|
|
8
|
-
* 🏷️ Estilos para la etiqueta TypographyTitle del componente NoItemSelected 🏷️.
|
|
9
|
-
*/
|
|
10
|
-
typographyStyledTitle: ({ theme, ownerState }) => ({
|
|
11
|
-
"&.MuiTypography-root": {
|
|
12
|
-
"&.M4lclassCssSpecificity": {
|
|
13
|
-
display: "flex",
|
|
14
|
-
color: theme.vars.palette.primary.semanticText,
|
|
15
|
-
...getTypographyStyles(
|
|
16
|
-
theme.generalSettings.isMobile,
|
|
17
|
-
ownerState?.size || "medium",
|
|
18
|
-
"bodyDens"
|
|
19
|
-
),
|
|
20
|
-
...getTypographyStyles(
|
|
21
|
-
theme.generalSettings.isMobile,
|
|
22
|
-
ownerState?.size || "small",
|
|
23
|
-
"bodyDens"
|
|
24
|
-
)
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
}),
|
|
28
|
-
/**
|
|
29
|
-
* 🏷️ Estilos para la etiqueta TypographyDetail del componente NoItemSelected 🏷️.
|
|
30
|
-
*/
|
|
31
|
-
typographyStyledDetail: ({ theme, ownerState }) => ({
|
|
32
|
-
"&.MuiTypography-root": {
|
|
33
|
-
"&.M4lclassCssSpecificity": {
|
|
34
|
-
color: theme.vars.palette.text.secondary,
|
|
35
|
-
...getTypographyStyles(
|
|
36
|
-
theme.generalSettings.isMobile,
|
|
37
|
-
ownerState?.size || "medium",
|
|
38
|
-
"bodyDens"
|
|
39
|
-
),
|
|
40
|
-
...getTypographyStyles(
|
|
41
|
-
theme.generalSettings.isMobile,
|
|
42
|
-
ownerState?.size || "small",
|
|
43
|
-
"body"
|
|
44
|
-
)
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}),
|
|
48
|
-
/**
|
|
49
|
-
* 🎁 Estilos para el wrapper de la typography de NoItemSelect. 🎁
|
|
50
|
-
*/
|
|
51
|
-
wrapperTpography: ({ theme }) => ({
|
|
52
|
-
display: "flex",
|
|
53
|
-
justifyContent: "center",
|
|
54
|
-
alignItems: "center",
|
|
55
|
-
flexDirection: "column",
|
|
56
|
-
gap: theme.vars.size.baseSpacings["sp0-5"],
|
|
57
|
-
"& .MuiTypography-root": {
|
|
58
|
-
width: "auto"
|
|
59
|
-
}
|
|
60
|
-
}),
|
|
61
|
-
/**
|
|
62
|
-
* 🎁 Estilos para el wrapper de la imagen de NoItemSelect. 🎁
|
|
63
|
-
*/
|
|
64
|
-
noItemSelectedContainer: ({ ownerState }) => ({
|
|
65
|
-
visibility: ownerState?.isVisible ? "visible" : "hidden",
|
|
66
|
-
display: "flex",
|
|
67
|
-
justifyContent: "center",
|
|
68
|
-
height: "100%",
|
|
69
|
-
width: "100%",
|
|
70
|
-
maxWidth: "150px",
|
|
71
|
-
maxHeight: "106px",
|
|
72
|
-
minWidth: "70px",
|
|
73
|
-
'& [class*="M4LImage-imgSkeleton"]': {
|
|
74
|
-
opacity: 0
|
|
75
|
-
},
|
|
76
|
-
'& [class*="M4LImage"]': {
|
|
77
|
-
width: "100%",
|
|
78
|
-
height: "auto ",
|
|
79
|
-
maxWidth: "150px",
|
|
80
|
-
maxHeight: "106px",
|
|
81
|
-
minWidth: "70px",
|
|
82
|
-
minHeight: "50px"
|
|
83
|
-
}
|
|
84
|
-
}),
|
|
85
|
-
labelDetail: {}
|
|
86
|
-
};
|
|
87
|
-
export {
|
|
88
|
-
noItemSelectedStyles as n
|
|
89
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { g as getComponentClasses } from "../../../../utils/getComponentSlotRoot.js";
|
|
2
|
-
import { N as NoItemSelectedSlots } from "./slots/NoItemSelectedEnum.js";
|
|
3
|
-
const NO_ITEM_SELECT_KEY_COMPONENT = "M4LNoItemSelected";
|
|
4
|
-
const classNoItemSelected = getComponentClasses(NO_ITEM_SELECT_KEY_COMPONENT, NoItemSelectedSlots);
|
|
5
|
-
export {
|
|
6
|
-
NO_ITEM_SELECT_KEY_COMPONENT as N,
|
|
7
|
-
classNoItemSelected as c
|
|
8
|
-
};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
function getNoItemSelectedComponentsDictionary() {
|
|
2
|
-
return ["no_item_selected"];
|
|
3
|
-
}
|
|
4
|
-
const DICTIONARY = {
|
|
5
|
-
LABEL_TITLE: "no_item_selected.title",
|
|
6
|
-
LABEL_DETAIL: "no_item_selected.detail"
|
|
7
|
-
};
|
|
8
|
-
export {
|
|
9
|
-
DICTIONARY as D,
|
|
10
|
-
getNoItemSelectedComponentsDictionary as g
|
|
11
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export declare enum NoItemSelectedSlots {
|
|
2
|
-
img = "img",
|
|
3
|
-
typographyStyledTitle = "typographyStyledTitle",
|
|
4
|
-
typographyStyledDetail = "typographyStyledDetail",
|
|
5
|
-
labelDetail = "labelDetail",
|
|
6
|
-
noItemSelectedContainer = "noItemSelectedContainer",
|
|
7
|
-
wrapperTpography = "wrapperTpography"
|
|
8
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
var NoItemSelectedSlots = /* @__PURE__ */ ((NoItemSelectedSlots2) => {
|
|
2
|
-
NoItemSelectedSlots2["img"] = "img";
|
|
3
|
-
NoItemSelectedSlots2["typographyStyledTitle"] = "typographyStyledTitle";
|
|
4
|
-
NoItemSelectedSlots2["typographyStyledDetail"] = "typographyStyledDetail";
|
|
5
|
-
NoItemSelectedSlots2["labelDetail"] = "labelDetail";
|
|
6
|
-
NoItemSelectedSlots2["noItemSelectedContainer"] = "noItemSelectedContainer";
|
|
7
|
-
NoItemSelectedSlots2["wrapperTpography"] = "wrapperTpography";
|
|
8
|
-
return NoItemSelectedSlots2;
|
|
9
|
-
})(NoItemSelectedSlots || {});
|
|
10
|
-
export {
|
|
11
|
-
NoItemSelectedSlots as N
|
|
12
|
-
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export declare const ImgStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../../Image').ImageProps, keyof import('../../../../Image').ImageProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
2
|
-
ownerState?: (Partial<import('../types').NoItemSelectedOwnerState> & Record<string, unknown>) | undefined;
|
|
3
|
-
}, {}, {}>;
|
|
4
|
-
export declare const TypographyStyledTitle: import('@emotion/styled').StyledComponent<Pick<import('../../../../mui_extended/Typography/types').TypographyProps, keyof import('../../../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
5
|
-
ownerState?: (Partial<import('../types').NoItemSelectedOwnerState> & Record<string, unknown>) | undefined;
|
|
6
|
-
}, {}, {}>;
|
|
7
|
-
export declare const TypographyStyledDetail: import('@emotion/styled').StyledComponent<Pick<import('../../../../mui_extended/Typography/types').TypographyProps, keyof import('../../../../mui_extended/Typography/types').TypographyProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
8
|
-
ownerState?: (Partial<import('../types').NoItemSelectedOwnerState> & Record<string, unknown>) | undefined;
|
|
9
|
-
}, {}, {}>;
|
|
10
|
-
export declare const LabelDetail: import('@emotion/styled').StyledComponent<Pick<import('../../../../Label').LabelProps, keyof import('../../../../Label').LabelProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
11
|
-
ownerState?: (Partial<import('../types').NoItemSelectedOwnerState> & Record<string, unknown>) | undefined;
|
|
12
|
-
}, {}, {}>;
|
|
13
|
-
export declare const NoItemSelectedContainer: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
14
|
-
ownerState?: (Partial<import('../types').NoItemSelectedOwnerState> & Record<string, unknown>) | undefined;
|
|
15
|
-
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
16
|
-
export declare const WrapperTpography: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material/styles').Theme> & Record<string, unknown> & {
|
|
17
|
-
ownerState?: (Partial<import('../types').NoItemSelectedOwnerState> & Record<string, unknown>) | undefined;
|
|
18
|
-
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
import { styled } from "@mui/material/styles";
|
|
2
|
-
import { N as NoItemSelectedSlots } from "./NoItemSelectedEnum.js";
|
|
3
|
-
import { N as NO_ITEM_SELECT_KEY_COMPONENT } from "../constant.js";
|
|
4
|
-
import { n as noItemSelectedStyles } from "../NoItemSelected.styles.js";
|
|
5
|
-
import { T as Typography } from "../../../../mui_extended/Typography/Typography.js";
|
|
6
|
-
import { L as Label } from "../../../../Label/Label.js";
|
|
7
|
-
import { I as Image } from "../../../../Image/Image.js";
|
|
8
|
-
const ImgStyled = styled(Image, {
|
|
9
|
-
name: NO_ITEM_SELECT_KEY_COMPONENT,
|
|
10
|
-
slot: NoItemSelectedSlots.img
|
|
11
|
-
})(noItemSelectedStyles?.img);
|
|
12
|
-
const TypographyStyledTitle = styled(Typography, {
|
|
13
|
-
name: NO_ITEM_SELECT_KEY_COMPONENT,
|
|
14
|
-
slot: NoItemSelectedSlots.typographyStyledTitle
|
|
15
|
-
})(noItemSelectedStyles?.typographyStyledTitle);
|
|
16
|
-
const TypographyStyledDetail = styled(Typography, {
|
|
17
|
-
name: NO_ITEM_SELECT_KEY_COMPONENT,
|
|
18
|
-
slot: NoItemSelectedSlots.typographyStyledDetail
|
|
19
|
-
})(noItemSelectedStyles?.typographyStyledDetail);
|
|
20
|
-
const LabelDetail = styled(Label, {
|
|
21
|
-
name: NO_ITEM_SELECT_KEY_COMPONENT,
|
|
22
|
-
slot: NoItemSelectedSlots.labelDetail
|
|
23
|
-
})(noItemSelectedStyles?.labelDetail);
|
|
24
|
-
const NoItemSelectedContainer = styled("div", {
|
|
25
|
-
name: NO_ITEM_SELECT_KEY_COMPONENT,
|
|
26
|
-
slot: NoItemSelectedSlots.noItemSelectedContainer
|
|
27
|
-
})(noItemSelectedStyles?.noItemSelectedContainer);
|
|
28
|
-
const WrapperTpography = styled("div", {
|
|
29
|
-
name: NO_ITEM_SELECT_KEY_COMPONENT,
|
|
30
|
-
slot: NoItemSelectedSlots.wrapperTpography
|
|
31
|
-
})(noItemSelectedStyles?.wrapperTpography);
|
|
32
|
-
export {
|
|
33
|
-
ImgStyled as I,
|
|
34
|
-
LabelDetail as L,
|
|
35
|
-
NoItemSelectedContainer as N,
|
|
36
|
-
TypographyStyledTitle as T,
|
|
37
|
-
WrapperTpography as W,
|
|
38
|
-
TypographyStyledDetail as a
|
|
39
|
-
};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Hook para verificar si el componente es visible en la pantalla.
|
|
3
|
-
* @param containerRef - Referencia al contenedor del componente.
|
|
4
|
-
* @returns true si el componente es visible, false en caso contrario.
|
|
5
|
-
*/
|
|
6
|
-
export declare const useIsVisible: (containerRef: React.RefObject<HTMLDivElement>) => boolean;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const RHFDateTimeRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
File without changes
|
|
File without changes
|
/package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/NoItemPrivileges.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/dictionary.d.ts
RENAMED
|
File without changes
|
/package/components/{ImageText/components/NoItemPrivileges → NoItemPrivileges}/dictionary.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/components/{ImageText/components/NoItemSelected → NoItemSelected}/NoItemSelected.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|