@m4l/components 9.1.51 → 9.1.53
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/export.d.ts +0 -6
- package/@types/types.d.ts +31 -26
- package/components/Color/Color.d.ts +7 -0
- package/components/Color/Color.js +58 -0
- package/components/Color/Color.styles.d.ts +8 -0
- package/components/Color/Color.styles.js +130 -0
- package/components/Color/Color.test.d.ts +1 -0
- package/components/Color/constants.d.ts +3 -0
- package/components/Color/constants.js +6 -0
- package/components/Color/index.d.ts +1 -0
- package/components/Color/index.js +1 -0
- package/components/Color/slots/ColorEnum.d.ts +5 -0
- package/components/Color/slots/ColorEnum.js +9 -0
- package/components/Color/slots/ColorSlots.d.ts +23 -0
- package/components/Color/slots/ColorSlots.js +23 -0
- package/components/Color/slots/index.d.ts +2 -0
- package/components/Color/slots/index.js +1 -0
- package/components/Color/types.d.ts +64 -0
- package/components/HelperError/HelperError.js +6 -3
- package/components/HelperError/HelperError.styles.js +2 -2
- package/components/HelperError/constant.d.ts +2 -1
- package/components/HelperError/constant.js +6 -3
- package/components/HelperError/slots/HelperErrorSlots.js +1 -1
- package/components/HelperError/types.d.ts +1 -1
- package/components/Label/Label.js +42 -27
- package/components/Label/types.d.ts +1 -2
- package/components/PrintingSystem/types.d.ts +2 -2
- package/components/areas/components/AreasAdmin/subcomponents/AreaChip/index.js +0 -2
- package/components/areas/components/AreasAdmin/subcomponents/AreaChipMobile/subcomponents/ChipMobile/ChipMobile.js +0 -2
- package/components/hook-form/RHFColorPicker/RFHColorPicker.js +90 -68
- package/components/hook-form/RHFColorPicker/RHFColorPicker.styles.d.ts +5 -0
- package/components/hook-form/RHFColorPicker/RHFColorPicker.styles.js +105 -0
- package/components/hook-form/RHFColorPicker/RHFColorPicker.test.d.ts +1 -0
- package/components/hook-form/RHFColorPicker/constants.d.ts +5 -0
- package/components/hook-form/RHFColorPicker/constants.js +6 -0
- package/components/hook-form/RHFColorPicker/index.d.ts +0 -1
- package/components/hook-form/RHFColorPicker/slots/RHFColorPickerEnum.d.ts +5 -0
- package/components/hook-form/RHFColorPicker/slots/RHFColorPickerEnum.js +9 -0
- package/components/hook-form/RHFColorPicker/slots/RHFColorPickerSlots.d.ts +24 -0
- package/components/hook-form/RHFColorPicker/slots/RHFColorPickerSlots.js +23 -0
- package/components/hook-form/RHFColorPicker/slots/index.d.ts +2 -0
- package/components/hook-form/RHFColorPicker/types.d.ts +51 -7
- package/components/hook-form/RHFTextField/RHFTextField.js +18 -29
- package/components/hook-form/RHFTextField/RHFTextField.styles.js +3 -1
- package/components/hook-form/RHFTextField/types.d.ts +11 -11
- package/components/hook-form/RHFTextFieldPassword/RHFTextFieldPassword.js +0 -4
- package/components/maps/components/MapGpsTools/subcomponents/TabsGpsTools/subcomponents/GeofenceAddEdit/subcomponents/GeneralData/index.js +0 -6
- package/components/mui_extended/TextField/TextField.js +11 -13
- package/components/mui_extended/TextField/TextField.styles.js +16 -16
- package/components/mui_extended/TextField/constants.js +2 -3
- package/components/mui_extended/TextField/types.d.ts +9 -17
- package/components/mui_extended/Typography/types.d.ts +5 -3
- package/components/mui_extended/Typography/typography.styles.js +7 -298
- package/hooks/useFormFocus/index.d.ts +1 -0
- package/index.js +42 -44
- package/package.json +2 -2
- package/test/TestFormAutoValidation.d.ts +4 -0
- package/utils/getTypographyStyles.d.ts +11 -0
- package/utils/getTypographyStyles.js +8 -0
- package/components/hook-form/RHFColorPicker/classes/constants.d.ts +0 -1
- package/components/hook-form/RHFColorPicker/classes/constants.js +0 -4
- package/components/hook-form/RHFColorPicker/classes/index.d.ts +0 -15
- package/components/hook-form/RHFColorPicker/classes/index.js +0 -44
- package/components/hook-form/RHFColorPicker/classes/types.d.ts +0 -15
- package/components/hook-form/RHFColorPicker/dictionary.d.ts +0 -1
- package/components/hook-form/RHFColorPicker/dictionary.js +0 -6
- package/components/hook-form/RHFColorPicker/styles.d.ts +0 -1
- package/components/hook-form/RHFColorPicker/styles.js +0 -7
- package/components/hook-form/RHFColorPicker/subcomponents/Skeleton/indext.d.ts +0 -5
- package/components/hook-form/RHFColorPicker/subcomponents/Skeleton/indext.js +0 -21
- package/components/hook-form/RHFColorPicker/subcomponents/Skeleton/types.d.ts +0 -2
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { useUtilityClasses } from '.';
|
|
2
|
-
export interface RHFColorPickerClassesType {
|
|
3
|
-
root: string;
|
|
4
|
-
popoverRoot: string;
|
|
5
|
-
containerFieldColor: string;
|
|
6
|
-
fieldColor: string;
|
|
7
|
-
containerPicker: string;
|
|
8
|
-
skeleton: string;
|
|
9
|
-
sizeSmall: string;
|
|
10
|
-
sizeMedium: string;
|
|
11
|
-
isFocus: string;
|
|
12
|
-
isTabSelected: string;
|
|
13
|
-
}
|
|
14
|
-
export type RHFColorPickerClassesKey = keyof RHFColorPickerClassesType;
|
|
15
|
-
export type Classes = ReturnType<typeof useUtilityClasses>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function getRHFColorPickerComponentsDictionary(): string[];
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const RHFColorPickerRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
import { Skeleton } from "@mui/material";
|
|
3
|
-
import { c as colorPickerClasses } from "../../classes/index.js";
|
|
4
|
-
const RHFColorPickerSkeleton = (props) => {
|
|
5
|
-
const { label } = props;
|
|
6
|
-
return /* @__PURE__ */ jsxs("div", { className: colorPickerClasses.skeleton, children: [
|
|
7
|
-
label && /* @__PURE__ */ jsx(Skeleton, { variant: "text", width: "30%", height: "14px" }),
|
|
8
|
-
/* @__PURE__ */ jsx(
|
|
9
|
-
Skeleton,
|
|
10
|
-
{
|
|
11
|
-
className: colorPickerClasses.skeleton,
|
|
12
|
-
variant: "rectangular",
|
|
13
|
-
width: 20,
|
|
14
|
-
height: 20
|
|
15
|
-
}
|
|
16
|
-
)
|
|
17
|
-
] });
|
|
18
|
-
};
|
|
19
|
-
export {
|
|
20
|
-
RHFColorPickerSkeleton as R
|
|
21
|
-
};
|