@m4l/components 3.1.8 → 3.1.9

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.
Files changed (34) hide show
  1. package/@types/export.d.ts +0 -3
  2. package/@types/types.d.ts +29 -11
  3. package/components/DynamicSort/constants.d.ts +12 -0
  4. package/components/DynamicSort/slots/DynamicSortSlots.d.ts +84 -0
  5. package/components/DynamicSort/slots/SlotsEnum.d.ts +30 -0
  6. package/components/DynamicSort/slots/index.d.ts +2 -0
  7. package/components/DynamicSort/types.d.ts +183 -0
  8. package/components/FieldLabel/types.d.ts +1 -0
  9. package/components/ObjectLogs/types.d.ts +1 -1
  10. package/components/areas/contexts/AreasContext/helper.d.ts +3 -0
  11. package/components/hook-form/RHFTextField/constant.d.ts +1 -0
  12. package/components/hook-form/RHFTextField/index.d.ts +0 -1
  13. package/components/hook-form/RHFTextField/slots/RHFTextFieldEnum.d.ts +7 -0
  14. package/components/hook-form/RHFTextField/slots/RHFTextFieldSlots.d.ts +18 -0
  15. package/components/hook-form/RHFTextField/slots/index.d.ts +2 -0
  16. package/components/hook-form/RHFTextField/subcomponents/Skeleton/types.d.ts +3 -4
  17. package/components/hook-form/RHFTextField/types.d.ts +11 -3
  18. package/helpers/cookies/cookies.d.ts +4 -0
  19. package/helpers/cookies/index.d.ts +1 -0
  20. package/helpers/cookies/types.d.ts +42 -0
  21. package/index.js +145 -148
  22. package/package.json +1 -1
  23. package/styles/DynamicSort.styles.d.ts +2 -0
  24. package/styles/MenuActions.styles.d.ts +1 -1
  25. package/styles/RHFTextField.styles.d.ts +2 -0
  26. package/utils/index.d.ts +1 -1
  27. package/{vendor-AfIOyqRr.js → vendor-BDLrgGjq.js} +575 -519
  28. package/components/hook-form/RHFTextField/classes/constants.d.ts +0 -1
  29. package/components/hook-form/RHFTextField/classes/index.d.ts +0 -8
  30. package/components/hook-form/RHFTextField/classes/types.d.ts +0 -17
  31. package/components/hook-form/RHFTextField/styles.d.ts +0 -3
  32. package/components/hook-form/RHFTextField/subcomponents/Skeleton/styles.d.ts +0 -3
  33. package/components/hook-form/RHFTextField/tests/constants.d.ts +0 -3
  34. package/components/hook-form/RHFTextField/tests/utils.d.ts +0 -2
@@ -1 +0,0 @@
1
- export declare const componentName = "M4LRHFTextField";
@@ -1,8 +0,0 @@
1
- import { RHFTextFieldClassesType } from './types';
2
- import { RHFTextFieldState } from '../types';
3
- export declare const RHFTextFieldClasses: RHFTextFieldClassesType;
4
- export declare const getRHFTextFieldClassesByState: (ownerState: RHFTextFieldState) => {
5
- label: string;
6
- root: string;
7
- skeleton: string;
8
- };
@@ -1,17 +0,0 @@
1
- export interface RHFTextFieldClassesType {
2
- root: string;
3
- label: string;
4
- skeleton: string;
5
- variantText: string;
6
- variantPassword: string;
7
- variantInfo: string;
8
- variantSuccess: string;
9
- variantWarning: string;
10
- variantError: string;
11
- sizeSmall: string;
12
- sizeMedium: string;
13
- isFocus: string;
14
- isTabSelected: string;
15
- isDisabled: string;
16
- }
17
- export declare type RHFTextFieldClassesKey = keyof RHFTextFieldClassesType;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const RHFTextFieldRoot: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
3
- export declare const SKTRHFWrapperTextField: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,3 +0,0 @@
1
- /// <reference types="react" />
2
- export declare const SkeletonTextFieldRoot: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
3
- export declare const WrapperSkeletonRHFTextField: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
@@ -1,3 +0,0 @@
1
- export declare const RHFTEXTFIELD_ROOT_TEST_ID = "RHFTextFieldRoot";
2
- export declare const RHFTEXTFIELD_INPUT_TEST_ID = "RHFTextFieldInput";
3
- export declare const RHFTEXTFIELD_PREFIX = "RHFTextField";
@@ -1,2 +0,0 @@
1
- import { RHFTextFieldClassesType } from '../classes/types';
2
- export declare const getNameDataTestId: (KEY: keyof RHFTextFieldClassesType) => string;