@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
package/index.js
CHANGED
|
@@ -73,6 +73,7 @@ import { S as S3 } from "./components/extended/React-resizable-panels/SplitLayou
|
|
|
73
73
|
import { P } from "./components/extended/React-Spinners/PropagateLoaderSpinner/PropagateLoaderSpinner.js";
|
|
74
74
|
import { F } from "./components/extended/React-Window/FixedSizeList/FixedSizeList.js";
|
|
75
75
|
import { V } from "./components/extended/React-Window/VariableSizeList/VariableSizeList.js";
|
|
76
|
+
import { R as R3 } from "./components/extended/React-Json-Viewer/ReactJsonViewer.js";
|
|
76
77
|
import { A as A14 } from "./components/mui_extended/Avatar/Avatar.js";
|
|
77
78
|
import { B as B2 } from "./components/mui_extended/BoxIcon/index.js";
|
|
78
79
|
import { B as B3 } from "./components/mui_extended/Breadcrumbs/index.js";
|
|
@@ -122,34 +123,34 @@ import { g as g17 } from "./components/formatters/DistanceToNowFormatter/diction
|
|
|
122
123
|
import { D as D9 } from "./components/formatters/DistanceToNowFormatter/DistanceToNowFormatter.js";
|
|
123
124
|
import { g as g18 } from "./components/formatters/dictionary.js";
|
|
124
125
|
import { G } from "./components/GridLayout/GridLayout.js";
|
|
125
|
-
import { R as
|
|
126
|
+
import { R as R4 } from "./components/GridLayout/subcomponents/Responsive/index.js";
|
|
126
127
|
import { c as c2, e as e2, d as d3 } from "./components/GridLayout/subcomponents/Responsive/responsiveUtils.js";
|
|
127
128
|
import { i, k } from "./components/GridLayout/utils.js";
|
|
128
129
|
import { w } from "./components/GridLayout/subcomponents/withSizeProvider/index.js";
|
|
129
130
|
import { H as H2 } from "./components/HelmetPage/index.js";
|
|
130
131
|
import { H as H3 } from "./components/HelperError/HelperError.js";
|
|
131
|
-
import { R as
|
|
132
|
+
import { R as R5 } from "./components/hook-form/RHFAutocomplete/RHFAutocomplete.js";
|
|
132
133
|
import { g as g19 } from "./components/hook-form/RHFAutocomplete/dictionary.js";
|
|
133
|
-
import { R as
|
|
134
|
+
import { R as R6 } from "./components/hook-form/RHFAutocompleteAsync/RHFAutocompleteAsync.js";
|
|
134
135
|
import { g as g20 } from "./components/hook-form/RHFAutocompleteAsync/dictionary.js";
|
|
135
|
-
import { R as
|
|
136
|
-
import { R as
|
|
137
|
-
import { R as
|
|
138
|
-
import { R as
|
|
139
|
-
import { R as
|
|
140
|
-
import { R as
|
|
141
|
-
import { R as
|
|
142
|
-
import { R as
|
|
143
|
-
import { R as
|
|
144
|
-
import { R as
|
|
136
|
+
import { R as R7 } from "./components/hook-form/RHFDateTime/RHFDateTime.js";
|
|
137
|
+
import { R as R8 } from "./components/hook-form/RHFMultiCheckbox/index.js";
|
|
138
|
+
import { R as R9 } from "./components/hook-form/RHFSelect/RHFSelect.js";
|
|
139
|
+
import { R as R10 } from "./components/hook-form/RHFHelperError/index.js";
|
|
140
|
+
import { R as R11 } from "./components/hook-form/RHFRadioGroup/RHFRadioGroup.js";
|
|
141
|
+
import { R as R12 } from "./components/hook-form/RHFUpload/RHFUploadSingleFile/RHFUploadSingleFile.js";
|
|
142
|
+
import { R as R13 } from "./components/hook-form/RHFColorPicker/RFHColorPicker.js";
|
|
143
|
+
import { R as R14 } from "./components/hook-form/RHFCheckbox/RHFCheckbox.js";
|
|
144
|
+
import { R as R15 } from "./components/hook-form/RHFTextField/RHFTextField.js";
|
|
145
|
+
import { R as R16 } from "./components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js";
|
|
145
146
|
import { g as g21 } from "./components/hook-form/RHFPeriod/subcomponents/Period/dictionary.js";
|
|
146
147
|
import { r } from "./components/hook-form/RHFPeriod/RHFPeriod.styles.js";
|
|
147
|
-
import { R as
|
|
148
|
-
import { R as
|
|
149
|
-
import { R as
|
|
150
|
-
import { P as P6, R as
|
|
151
|
-
import { R as
|
|
152
|
-
import { R as
|
|
148
|
+
import { R as R17 } from "./components/hook-form/RHFPeriod/RHFPeriod.js";
|
|
149
|
+
import { R as R18 } from "./components/hook-form/RHFPeriod/constants.js";
|
|
150
|
+
import { R as R19 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodEnum.js";
|
|
151
|
+
import { N as N3, P as P6, R as R20, S as S7 } from "./components/hook-form/RHFPeriod/slots/RHFPeriodSlots.js";
|
|
152
|
+
import { R as R21 } from "./components/hook-form/RHFNumberInput/RHFNumberInput.js";
|
|
153
|
+
import { R as R22 } from "./components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.js";
|
|
153
154
|
import { I as I4 } from "./components/Icon/Icon.js";
|
|
154
155
|
import { I as I5 } from "./components/Image/Image.js";
|
|
155
156
|
import { L as L6 } from "./components/Label/Label.js";
|
|
@@ -163,11 +164,11 @@ import { a as a9, M as M3 } from "./components/MenuActions/MenuActions.js";
|
|
|
163
164
|
import { M as M4 } from "./components/MFIsolationApp/MFIsolationApp.js";
|
|
164
165
|
import { M as M5 } from "./components/MFLoader/MFLoader.js";
|
|
165
166
|
import { g as g24 } from "./components/MFLoader/dictionary.js";
|
|
166
|
-
import {
|
|
167
|
-
import {
|
|
168
|
-
import {
|
|
169
|
-
import {
|
|
170
|
-
import {
|
|
167
|
+
import { I as I6 } from "./components/ImageText/ImageText.js";
|
|
168
|
+
import { N as N4 } from "./components/NoItemSelected/NoItemSelected.js";
|
|
169
|
+
import { g as g25 } from "./components/NoItemSelected/dictionary.js";
|
|
170
|
+
import { N as N5 } from "./components/NoItemPrivileges/NoItemPrivileges.js";
|
|
171
|
+
import { g as g26 } from "./components/NoItemPrivileges/dictionary.js";
|
|
171
172
|
import { g as g27 } from "./components/ObjectLogs/dictionary.js";
|
|
172
173
|
import { O } from "./components/ObjectLogs/ObjectLogs.js";
|
|
173
174
|
import { P as P7 } from "./components/PaperForm/PaperForm.js";
|
|
@@ -179,8 +180,8 @@ import { P as P11 } from "./components/PrintingSystem/PrintingSystem.js";
|
|
|
179
180
|
import { P as P12 } from "./components/PropertyValue/PropertyValue.js";
|
|
180
181
|
import { S as S8 } from "./components/ScrollBar/ScrollBar.js";
|
|
181
182
|
import { S as S9 } from "./components/SideBar/SideBar.js";
|
|
182
|
-
import { T as
|
|
183
|
-
import { T as
|
|
183
|
+
import { T as T17 } from "./components/ToastContainer/ToastContainer.js";
|
|
184
|
+
import { T as T18 } from "./components/ToastContainer/subcomponents/ToastMessage/ToastMessage.js";
|
|
184
185
|
import { W as W2 } from "./components/WindowBase/WindowBase.js";
|
|
185
186
|
import { u as u14 } from "./components/WindowBase/hooks/useWindowToolsMF/index.js";
|
|
186
187
|
import { u as u15, a as a11 } from "./components/WindowBase/hooks/useDynamicMFParameters/index.js";
|
|
@@ -190,8 +191,9 @@ import { D as D10, a as a13, M as M7 } from "./components/WindowBase/contexts/Dy
|
|
|
190
191
|
import { W as W4 } from "./components/WindowConfirm/WindowConfirm.js";
|
|
191
192
|
import { a as a14, g as g28 } from "./components/ModalDialog/dictionary.js";
|
|
192
193
|
import { M as M8 } from "./components/ModalDialog/ModalDialog.js";
|
|
194
|
+
import { S as S10 } from "./components/SettingsLayout/SettingsLayout.js";
|
|
193
195
|
import { P as P13 } from "./components/Pager/Pager.js";
|
|
194
|
-
import { F as F2, R as
|
|
196
|
+
import { F as F2, R as R23, u as u16 } from "./components/hook-form/RHFormContext/index.js";
|
|
195
197
|
import { g as g29 } from "./components/hook-form/RHFormContext/dictionary.js";
|
|
196
198
|
import { u as u17 } from "./contexts/AppearanceComponentContext/useAppearanceComponentStore.js";
|
|
197
199
|
import { A as A16 } from "./contexts/AppearanceComponentContext/AppearanceComponentContext.js";
|
|
@@ -205,11 +207,12 @@ import { u as u22 } from "./hooks/useInterval/index.js";
|
|
|
205
207
|
import { u as u23 } from "./hooks/useComponentSize/useComponentSize.js";
|
|
206
208
|
import { u as u24 } from "./hooks/useFormReadyForUpdate/index.js";
|
|
207
209
|
import { u as u25 } from "./hooks/useStateRef/index.js";
|
|
208
|
-
import { S as
|
|
210
|
+
import { S as S11 } from "./hooks/useSvgColor/constants.js";
|
|
209
211
|
import { u as u26 } from "./hooks/useSvgColor/useSvgColor.js";
|
|
210
212
|
import { u as u27 } from "./hooks/useDynamicFilterAndSort/useDynamicFilterAndSort.js";
|
|
211
213
|
import { u as u28 } from "./hooks/useDataGridPersistence/useDataGridPersistence.js";
|
|
212
214
|
import { u as u29 } from "./hooks/usePopoverContainer/usePopoverContainer.js";
|
|
215
|
+
import { u as u30 } from "./hooks/useIsVisible/useIsVisible.js";
|
|
213
216
|
import { c as c4 } from "./utils/capitalizeFirstLetter.js";
|
|
214
217
|
import { i as i2 } from "./utils/isValidDate.js";
|
|
215
218
|
import { g as g31 } from "./utils/getComponentUtilityClass.js";
|
|
@@ -289,7 +292,7 @@ export {
|
|
|
289
292
|
I as IconButtonAnimate,
|
|
290
293
|
I5 as Image,
|
|
291
294
|
I3 as ImageButton,
|
|
292
|
-
I6 as
|
|
295
|
+
I6 as ImageText,
|
|
293
296
|
L2 as LABEL_FILTER_BUTTON,
|
|
294
297
|
L6 as Label,
|
|
295
298
|
L7 as LanguagePopover,
|
|
@@ -312,9 +315,10 @@ export {
|
|
|
312
315
|
M as MotionContainer,
|
|
313
316
|
M2 as MotionLazyContainer,
|
|
314
317
|
N2 as NavLink,
|
|
315
|
-
|
|
318
|
+
N5 as NoItemPrivileges,
|
|
316
319
|
N4 as NoItemSelected,
|
|
317
320
|
N as NumberEditor,
|
|
321
|
+
N3 as NumberInputStyled,
|
|
318
322
|
O as ObjectLogs,
|
|
319
323
|
O2 as ObjectQueue,
|
|
320
324
|
P8 as PDFViewer,
|
|
@@ -331,33 +335,35 @@ export {
|
|
|
331
335
|
P11 as PrintingSystem,
|
|
332
336
|
P as PropagateLoaderSpinner,
|
|
333
337
|
P12 as PropertyValue,
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
338
|
+
R5 as RHFAutocomplete,
|
|
339
|
+
R6 as RHFAutocompleteAsync,
|
|
340
|
+
R14 as RHFCheckbox,
|
|
341
|
+
R13 as RHFColorPicker,
|
|
342
|
+
R7 as RHFDateTime,
|
|
343
|
+
R10 as RHFHelperError,
|
|
344
|
+
R8 as RHFMultiCheckbox,
|
|
345
|
+
R21 as RHFNumberInput,
|
|
346
|
+
R17 as RHFPeriod,
|
|
347
|
+
R20 as RHFPeriodRootStyled,
|
|
348
|
+
R19 as RHFPeriodSlots,
|
|
349
|
+
R11 as RHFRadioGroup,
|
|
350
|
+
R9 as RHFSelect,
|
|
351
|
+
R15 as RHFTextField,
|
|
352
|
+
R16 as RHFTextFieldPassword,
|
|
353
|
+
R22 as RHFUploadImage,
|
|
354
|
+
R12 as RHFUploadSingleFile,
|
|
355
|
+
R18 as RHF_PERIOD_KEY_COMPONENT,
|
|
356
|
+
R23 as RHFormProvider,
|
|
357
|
+
R3 as ReactJsonViewer,
|
|
353
358
|
R as Resizable,
|
|
354
359
|
R2 as ResizableBox,
|
|
355
|
-
|
|
356
|
-
|
|
360
|
+
R4 as Responsive,
|
|
361
|
+
S11 as SKELETON_SVG_ICON,
|
|
357
362
|
S8 as ScrollBar,
|
|
358
363
|
S as SectionCommercial,
|
|
359
364
|
S4 as Select,
|
|
360
365
|
S7 as SelectStyled,
|
|
366
|
+
S10 as SettingsLayout,
|
|
361
367
|
S9 as SideBar,
|
|
362
368
|
S5 as Skeleton,
|
|
363
369
|
S2 as SortCompareValues,
|
|
@@ -372,9 +378,8 @@ export {
|
|
|
372
378
|
a7 as TabProvider,
|
|
373
379
|
T5 as Tabs,
|
|
374
380
|
T2 as TextEditor,
|
|
375
|
-
T17 as
|
|
376
|
-
T18 as
|
|
377
|
-
T19 as ToastMessage,
|
|
381
|
+
T17 as ToastContainer,
|
|
382
|
+
T18 as ToastMessage,
|
|
378
383
|
T9 as ToggleButton,
|
|
379
384
|
T12 as ToggleButtonRootStyled,
|
|
380
385
|
T11 as ToggleButtonSlots,
|
|
@@ -428,8 +433,8 @@ export {
|
|
|
428
433
|
g23 as getMenuActionsComponentsDictionary,
|
|
429
434
|
a14 as getModalDialogComponentsDictionary,
|
|
430
435
|
g28 as getModalDictionary,
|
|
431
|
-
|
|
432
|
-
|
|
436
|
+
g26 as getNoItemPrivilegesComponentsDictionary,
|
|
437
|
+
g25 as getNoItemSelectedComponentsDictionary,
|
|
433
438
|
g38 as getNullGuard,
|
|
434
439
|
g27 as getObjectLogsComponentsDictionary,
|
|
435
440
|
g11 as getPagerComponentsDictionary,
|
|
@@ -473,6 +478,7 @@ export {
|
|
|
473
478
|
u24 as useFormReadyForUpdate,
|
|
474
479
|
u12 as useFormatPeriod,
|
|
475
480
|
u22 as useInterval,
|
|
481
|
+
u30 as useIsVisible,
|
|
476
482
|
u19 as useModal,
|
|
477
483
|
u29 as usePopoverContainer,
|
|
478
484
|
u13 as usePopupsStore,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m4l/components",
|
|
3
|
-
"version": "9.3.2-
|
|
3
|
+
"version": "9.3.2-B11082025-beta.2",
|
|
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": "7.
|
|
15
|
-
"@m4l/styles": "7.
|
|
14
|
+
"@m4l/graphics": "^7.0.0",
|
|
15
|
+
"@m4l/styles": "^7.0.0",
|
|
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",
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { Card } from '../../../src/components/Card';
|
|
3
|
+
declare const meta: Meta<typeof Card>;
|
|
4
|
+
type Story = StoryObj<typeof Card>;
|
|
5
|
+
/**
|
|
6
|
+
* Base story for `Card` with variant outlined.
|
|
7
|
+
*/
|
|
8
|
+
export declare const H001_Variant_Outlined: Story;
|
|
9
|
+
/**
|
|
10
|
+
* Base story for `Card` with variant text.
|
|
11
|
+
*/
|
|
12
|
+
export declare const H002_Variant_Text: Story;
|
|
13
|
+
/**
|
|
14
|
+
* Base story for `Card` with variant outlined and hover.
|
|
15
|
+
*/
|
|
16
|
+
export declare const H003_Variant_Outlined_Hover: Story;
|
|
17
|
+
/**
|
|
18
|
+
* Base story for `Card` with variant outlined and selected.
|
|
19
|
+
*/
|
|
20
|
+
export declare const H004_Variant_Outlined_Selected: Story;
|
|
21
|
+
/**
|
|
22
|
+
* Base story for `Card` with variant outlined and active.
|
|
23
|
+
*/
|
|
24
|
+
export declare const H005_Variant_Outlined_Active: Story;
|
|
25
|
+
/**
|
|
26
|
+
* Base story for `Card` with variant outlined and focus visible.
|
|
27
|
+
*/
|
|
28
|
+
export declare const H006_Variant_Outlined_Focus_Visible: Story;
|
|
29
|
+
/**
|
|
30
|
+
* Base story for `Card` with variant text and hover.
|
|
31
|
+
*/
|
|
32
|
+
export declare const H007_Variant_Text_Hover: Story;
|
|
33
|
+
/**
|
|
34
|
+
* Base story for `Card` with variant text and hover.
|
|
35
|
+
*/
|
|
36
|
+
export declare const H008_Variant_Text_Selected: Story;
|
|
37
|
+
/**
|
|
38
|
+
* Base story for `Card` with variant text and active.
|
|
39
|
+
*/
|
|
40
|
+
export declare const H009_Variant_Text_Active: Story;
|
|
41
|
+
/**
|
|
42
|
+
* Base story for `Card` with variant text and focus visible.
|
|
43
|
+
*/
|
|
44
|
+
export declare const H010_Variant_Text_Focus_Visible: Story;
|
|
45
|
+
export default meta;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { CardProps } from '../../../../src/components/Card/types';
|
|
2
|
+
/**
|
|
3
|
+
* Componente que se renderiza en el contenido de la tarjeta
|
|
4
|
+
* @returns {React.ReactElement}
|
|
5
|
+
*/
|
|
6
|
+
export declare const ContentCard: ({ gap }: {
|
|
7
|
+
gap?: CardProps["gap"];
|
|
8
|
+
}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { NoItemPrivileges } from '../../../src/components/
|
|
2
|
+
import { NoItemPrivileges } from '../../../src/components/NoItemPrivileges';
|
|
3
3
|
declare const meta: Meta<typeof NoItemPrivileges>;
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof NoItemPrivileges>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
-
import { NoItemSelected } from '../../../src/components/
|
|
2
|
+
import { NoItemSelected } from '../../../src/components/NoItemSelected';
|
|
3
3
|
declare const meta: Meta<typeof NoItemSelected>;
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof NoItemSelected>;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { SettingsLayout } from '../../../src/components/SettingsLayout/SettingsLayout';
|
|
3
|
+
declare const meta: Meta<typeof SettingsLayout>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof SettingsLayout>;
|
|
6
|
+
export declare const Open: Story;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { SettingsLayoutProps } from '../../../../../src/components/SettingsLayout/';
|
|
2
|
+
/**
|
|
3
|
+
* Wrapper para el componente SettingsLayout encargado de aplicar estilos y props por defecto
|
|
4
|
+
*/
|
|
5
|
+
export declare const SettingsLayoutRender: (props: Partial<SettingsLayoutProps>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { SettingsLayoutRender } from './SettingsLayoutsRender';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react';
|
|
2
|
+
import { ReactJsonViewer } from '../../../../src/components/extended/React-Json-Viewer';
|
|
3
|
+
declare const meta: Meta<typeof ReactJsonViewer>;
|
|
4
|
+
export default meta;
|
|
5
|
+
type Story = StoryObj<typeof ReactJsonViewer>;
|
|
6
|
+
/**
|
|
7
|
+
* ReactJsonViewer historia por defecto.
|
|
8
|
+
*/
|
|
9
|
+
export declare const ReactJsonViewerDefault: Story;
|
|
@@ -24,7 +24,7 @@ export declare const WhitAdorment: Story;
|
|
|
24
24
|
/**
|
|
25
25
|
* Se aplica cuando el input tiene un limite de caracteres.
|
|
26
26
|
*/
|
|
27
|
-
export declare const
|
|
27
|
+
export declare const WithMaxLength: Story;
|
|
28
28
|
/**
|
|
29
29
|
* Se aplica cuando el input tiene un skeleton.
|
|
30
30
|
*/
|
|
@@ -19,4 +19,8 @@ export declare const WithChildren: Story;
|
|
|
19
19
|
********************************************************/
|
|
20
20
|
export declare const WithPropertyValues: Story;
|
|
21
21
|
export declare const WithSimpleContent: Story;
|
|
22
|
+
/**
|
|
23
|
+
* State Skeleton
|
|
24
|
+
*/
|
|
25
|
+
export declare const Skeleton: Story;
|
|
22
26
|
export default meta;
|
|
@@ -16,6 +16,10 @@ export declare const RHFTextFieldReadOnly: Story;
|
|
|
16
16
|
* endAdornment
|
|
17
17
|
*/
|
|
18
18
|
export declare const RHFTextFieldAdornment: Story;
|
|
19
|
+
/**
|
|
20
|
+
* Input con límite de caracteres.
|
|
21
|
+
*/
|
|
22
|
+
export declare const RHFTextFieldMaxLength: Story;
|
|
19
23
|
export declare const RHFTextFieldError: Story;
|
|
20
24
|
export declare const SkeletonBase: Story;
|
|
21
25
|
export default meta;
|
|
@@ -2,7 +2,26 @@ import { Meta, StoryObj } from '@storybook/react';
|
|
|
2
2
|
import { RHFTextFieldPassword } from '../../../src/components/hook-form/RHFTextFieldPassword';
|
|
3
3
|
declare const meta: Meta<typeof RHFTextFieldPassword>;
|
|
4
4
|
type Story = StoryObj<typeof RHFTextFieldPassword>;
|
|
5
|
+
/**
|
|
6
|
+
* Input con valor por defecto.
|
|
7
|
+
*/
|
|
5
8
|
export declare const RHFTextFieldPasswordDefault: Story;
|
|
9
|
+
/**
|
|
10
|
+
* Input con límite de caracteres.
|
|
11
|
+
*
|
|
12
|
+
* maxLength
|
|
13
|
+
*/
|
|
14
|
+
export declare const RHFTextFieldPasswordMaxLength: Story;
|
|
15
|
+
/**
|
|
16
|
+
* Input con error.
|
|
17
|
+
*
|
|
18
|
+
* error
|
|
19
|
+
*/
|
|
6
20
|
export declare const RHFTextFieldPasswordError: Story;
|
|
21
|
+
/**
|
|
22
|
+
* Input con skeleton.
|
|
23
|
+
*
|
|
24
|
+
* skeleton
|
|
25
|
+
*/
|
|
7
26
|
export declare const SkeletonBase: Story;
|
|
8
27
|
export default meta;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { GetLimitCharactersProps } from './types';
|
|
2
2
|
/**
|
|
3
3
|
* Obtiene el valor limitado de caracteres del campo de texto.
|
|
4
4
|
* @param props - Propiedades del campo de texto.
|
|
5
5
|
* @returns El valor limitado de caracteres del campo de texto.
|
|
6
6
|
*/
|
|
7
|
-
export declare const getLimitCharacters: (props:
|
|
7
|
+
export declare const getLimitCharacters: (props: GetLimitCharactersProps) => unknown;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { TextFieldProps } from '../../components/mui_extended/TextField/types';
|
|
2
|
+
export interface GetLimitCharactersProps {
|
|
3
|
+
/**
|
|
4
|
+
* Límite de caracteres.
|
|
5
|
+
*/
|
|
6
|
+
limitCharacters?: number;
|
|
7
|
+
/**
|
|
8
|
+
* Valor a limitar.
|
|
9
|
+
*/
|
|
10
|
+
value?: TextFieldProps['value'];
|
|
11
|
+
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { ImageTextContainerProps } from './types';
|
|
2
|
-
/**
|
|
3
|
-
* Componente que representa un contenedor agrupar mensajes con imagen y texto.
|
|
4
|
-
* @param props - Propiedades del componente.
|
|
5
|
-
* @returns Un componente de tipo ReactNode.
|
|
6
|
-
*/
|
|
7
|
-
export declare const ImageTextContainer: (props: ImageTextContainerProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { jsx } from "react/jsx-runtime";
|
|
2
|
-
import { I as ImageTextContainerSlots } from "./slots/ImageTextContainerEnum.js";
|
|
3
|
-
import { I as ImageTextContainerRoot } from "./slots/ImageTextContainerSlots.js";
|
|
4
|
-
import { g as getPropDataTestId } from "../../../../test/getNameDataTestId.js";
|
|
5
|
-
import { I as IMAGE_TEXT_CONTAINER_CLASSES, a as IMAGE_TEXT_CONTAINER_KEY_COMPONENT } from "./constants.js";
|
|
6
|
-
import { clsx } from "clsx";
|
|
7
|
-
const ImageTextContainer = (props) => {
|
|
8
|
-
const { className, dataTestId, children, ...others } = props;
|
|
9
|
-
return /* @__PURE__ */ jsx(
|
|
10
|
-
ImageTextContainerRoot,
|
|
11
|
-
{
|
|
12
|
-
...others,
|
|
13
|
-
...getPropDataTestId(
|
|
14
|
-
IMAGE_TEXT_CONTAINER_KEY_COMPONENT,
|
|
15
|
-
ImageTextContainerSlots.root,
|
|
16
|
-
dataTestId
|
|
17
|
-
),
|
|
18
|
-
className: clsx(IMAGE_TEXT_CONTAINER_CLASSES.root, className),
|
|
19
|
-
children
|
|
20
|
-
}
|
|
21
|
-
);
|
|
22
|
-
};
|
|
23
|
-
export {
|
|
24
|
-
ImageTextContainer as I
|
|
25
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
const imageTextContainerStyles = {
|
|
2
|
-
/**
|
|
3
|
-
* Estilos para el contenedor principal del componente ImageTextContainer.
|
|
4
|
-
*/
|
|
5
|
-
root: ({ theme }) => ({
|
|
6
|
-
display: "flex",
|
|
7
|
-
flexDirection: "column",
|
|
8
|
-
alignItems: "center",
|
|
9
|
-
justifyContent: "center",
|
|
10
|
-
height: "80%",
|
|
11
|
-
width: "100%",
|
|
12
|
-
maxWidth: "600px",
|
|
13
|
-
minWidth: "200px",
|
|
14
|
-
padding: "10px",
|
|
15
|
-
gap: theme.vars.size.baseSpacings.sp2,
|
|
16
|
-
minHeight: "60px",
|
|
17
|
-
backgroundColor: theme.palette.background.default
|
|
18
|
-
})
|
|
19
|
-
};
|
|
20
|
-
export {
|
|
21
|
-
imageTextContainerStyles as i
|
|
22
|
-
};
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Clave del componente ImageTextContainer.
|
|
3
|
-
*/
|
|
4
|
-
export declare const IMAGE_TEXT_CONTAINER_KEY_COMPONENT = "M4LImageTextContainer";
|
|
5
|
-
/**
|
|
6
|
-
* Clases del componente ImageTextContainer.
|
|
7
|
-
*/
|
|
8
|
-
export declare const IMAGE_TEXT_CONTAINER_CLASSES: Record<string, string>;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { g as getComponentClasses } from "../../../../utils/getComponentSlotRoot.js";
|
|
2
|
-
import { I as ImageTextContainerSlots } from "./slots/ImageTextContainerEnum.js";
|
|
3
|
-
const IMAGE_TEXT_CONTAINER_KEY_COMPONENT = "M4LImageTextContainer";
|
|
4
|
-
const IMAGE_TEXT_CONTAINER_CLASSES = getComponentClasses(IMAGE_TEXT_CONTAINER_KEY_COMPONENT, ImageTextContainerSlots);
|
|
5
|
-
export {
|
|
6
|
-
IMAGE_TEXT_CONTAINER_CLASSES as I,
|
|
7
|
-
IMAGE_TEXT_CONTAINER_KEY_COMPONENT as a
|
|
8
|
-
};
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export { ImageTextContainer } from './ImageTextContainer';
|
package/components/ImageText/components/ImageTextContainer/slots/ImageTextContainerSlots.d.ts
DELETED
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export declare const ImageTextContainerRoot: import('@emotion/styled').StyledComponent<Pick<import('@mui/system').BoxOwnProps<import('@mui/material').Theme> & Omit<Omit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
|
2
|
-
ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
|
|
3
|
-
}, keyof import('@mui/system').BoxOwnProps<import('@mui/material').Theme>>, "title" | "id" | "hidden" | "content" | "style" | "translate" | "className" | "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" | keyof import('@mui/system').BoxOwnProps<import('@mui/material').Theme>> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown>, {}, {}>;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { styled } from "@mui/material/styles";
|
|
2
|
-
import { Box } from "@mui/material";
|
|
3
|
-
import { a as IMAGE_TEXT_CONTAINER_KEY_COMPONENT } from "../constants.js";
|
|
4
|
-
import { I as ImageTextContainerSlots } from "./ImageTextContainerEnum.js";
|
|
5
|
-
import { i as imageTextContainerStyles } from "../ImageTextContainerStyle.js";
|
|
6
|
-
const ImageTextContainerRoot = styled(Box, {
|
|
7
|
-
name: IMAGE_TEXT_CONTAINER_KEY_COMPONENT,
|
|
8
|
-
slot: ImageTextContainerSlots.root
|
|
9
|
-
})(imageTextContainerStyles?.root);
|
|
10
|
-
export {
|
|
11
|
-
ImageTextContainerRoot as I
|
|
12
|
-
};
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { ImageTextContainerSlots } from './slots/ImageTextContainerEnum';
|
|
3
|
-
import { M4LOverridesStyleRules } from '../../../../@types/augmentations';
|
|
4
|
-
import { IMAGE_TEXT_CONTAINER_KEY_COMPONENT } from './constants';
|
|
5
|
-
import { Theme } from '@mui/material';
|
|
6
|
-
export interface ImageTextContainerProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
7
|
-
/**
|
|
8
|
-
* Contenido del componente.
|
|
9
|
-
*/
|
|
10
|
-
children: ReactNode;
|
|
11
|
-
/**
|
|
12
|
-
* Clase del componente.
|
|
13
|
-
*/
|
|
14
|
-
className?: string;
|
|
15
|
-
/**
|
|
16
|
-
* ID de prueba.
|
|
17
|
-
*/
|
|
18
|
-
dataTestId?: string;
|
|
19
|
-
}
|
|
20
|
-
export type ImageTextContainerOwnerState = {};
|
|
21
|
-
export type ImageTextContainerSlotsType = keyof typeof ImageTextContainerSlots;
|
|
22
|
-
export type ImageTextContainerStyles = M4LOverridesStyleRules<ImageTextContainerSlotsType, typeof IMAGE_TEXT_CONTAINER_KEY_COMPONENT, Theme>;
|