@m4l/components 9.4.49 → 9.4.50
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/components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.d.ts +15 -15
- package/components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.styles.d.ts.map +1 -1
- package/components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.styles.js +56 -23
- package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageEnum.d.ts +1 -0
- package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageEnum.d.ts.map +1 -1
- package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageEnum.js +1 -1
- package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.d.ts +3 -0
- package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.d.ts.map +1 -1
- package/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.js +13 -9
- package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/UploadImage.d.ts +1 -1
- package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/UploadImage.d.ts.map +1 -1
- package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/UploadImage.js +103 -68
- package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/dictionary.d.ts +2 -0
- package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/dictionary.d.ts.map +1 -1
- package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/dictionary.js +7 -5
- package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/types.d.ts +21 -5
- package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/types.d.ts.map +1 -1
- package/components/hook-form/RHFUpload/RHFUploadImage/types.d.ts +9 -1
- package/components/hook-form/RHFUpload/RHFUploadImage/types.d.ts.map +1 -1
- package/components/hook-form/RHFUpload/RHFUploadSingleFile/helpers/getReadableFileType.d.ts.map +1 -1
- package/components/hook-form/RHFUpload/RHFUploadSingleFile/helpers/getReadableFileType.js +3 -0
- package/package.json +7 -7
- package/test/mocks/dictionary-mock.d.ts +2 -0
- package/test/mocks/dictionary-mock.d.ts.map +1 -1
|
@@ -1,22 +1,22 @@
|
|
|
1
1
|
import { RHFUploadImageProps } from './types';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
5
|
-
* - **`useFormContext
|
|
6
|
-
* - **`useFormatter:`** Hook que permite acceder a los diferentes formatters de la aplicación.
|
|
3
|
+
* Image upload field for react-hook-form.
|
|
4
|
+
* ### Dependencies:
|
|
5
|
+
* - **`useFormContext`:** Access to react-hook-form methods and state.
|
|
7
6
|
* @example
|
|
8
7
|
* ```tsx
|
|
9
|
-
*
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
8
|
+
* // Inside a tree wrapped with FormProvider from react-hook-form:
|
|
9
|
+
* <RHFUploadImage
|
|
10
|
+
* name="image"
|
|
11
|
+
* size="medium"
|
|
12
|
+
* variant="outlined"
|
|
13
|
+
* label="Image"
|
|
14
|
+
* helperMessage="Select an image"
|
|
15
|
+
* imageFit="contain"
|
|
16
|
+
* height={180}
|
|
17
|
+
* maxHeight={240}
|
|
18
|
+
* />
|
|
19
|
+
* ```
|
|
20
20
|
*/
|
|
21
21
|
export declare function RHFUploadImage(props: RHFUploadImageProps): import("@emotion/react/jsx-runtime").JSX.Element;
|
|
22
22
|
//# sourceMappingURL=RHFUploadImage.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RHFUploadImage.styles.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAC;AAE/C,eAAO,MAAM,oBAAoB,EAAG,
|
|
1
|
+
{"version":3,"file":"RHFUploadImage.styles.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/RHFUploadImage.styles.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,SAAS,CAAC;AAE/C,eAAO,MAAM,oBAAoB,EAAG,oBA+KnC,CAAC"}
|
|
@@ -1,35 +1,36 @@
|
|
|
1
|
-
const
|
|
1
|
+
const a = {
|
|
2
2
|
/**
|
|
3
|
-
* rhfUploadImageRoot:
|
|
3
|
+
* rhfUploadImageRoot: outer wrapper
|
|
4
4
|
*/
|
|
5
5
|
rhfUploadImageRoot: ({ theme: e }) => ({
|
|
6
6
|
width: "100%",
|
|
7
7
|
display: "flex",
|
|
8
8
|
flexDirection: "column",
|
|
9
9
|
maxWidth: "100%",
|
|
10
|
-
gap: e.vars.size.baseSpacings["sp0-5"]
|
|
10
|
+
gap: e.vars.size.baseSpacings["sp0-5"],
|
|
11
|
+
minWidth: "130px"
|
|
11
12
|
}),
|
|
12
13
|
/**
|
|
13
|
-
* uploadImageRoot:
|
|
14
|
+
* uploadImageRoot: dropzone outer border
|
|
14
15
|
*/
|
|
15
|
-
uploadImageRoot: ({ theme: e, ownerState:
|
|
16
|
+
uploadImageRoot: ({ theme: e, ownerState: i }) => ({
|
|
16
17
|
padding: `${e.vars.size.baseSpacings.sp2}`,
|
|
17
18
|
border: e.vars.size.borderStroke.container,
|
|
18
19
|
borderRadius: e.vars.size.borderRadius.r1,
|
|
19
20
|
borderColor: e.vars.palette.border.default,
|
|
20
21
|
width: "100%",
|
|
21
|
-
...
|
|
22
|
+
...i?.isDragAccept && {
|
|
22
23
|
borderColor: e.vars.palette.primary.main
|
|
23
24
|
},
|
|
24
|
-
...
|
|
25
|
+
...i?.isDragReject && {
|
|
25
26
|
borderColor: e.vars.palette.error.main
|
|
26
27
|
},
|
|
27
|
-
...
|
|
28
|
+
...i?.error && {
|
|
28
29
|
borderColor: e.vars.palette.error.main
|
|
29
30
|
}
|
|
30
31
|
}),
|
|
31
32
|
/**
|
|
32
|
-
* contentModuleLayout:
|
|
33
|
+
* contentModuleLayout: inner content area
|
|
33
34
|
*/
|
|
34
35
|
contentModuleLayout: ({ theme: e }) => ({
|
|
35
36
|
padding: e.vars.size.baseSpacings["sp2-5"],
|
|
@@ -45,7 +46,7 @@ const r = {
|
|
|
45
46
|
}
|
|
46
47
|
}),
|
|
47
48
|
/**
|
|
48
|
-
* contentImage:
|
|
49
|
+
* contentImage: empty-state illustration column
|
|
49
50
|
*/
|
|
50
51
|
contentImage: ({ theme: e }) => ({
|
|
51
52
|
display: "flex",
|
|
@@ -57,7 +58,7 @@ const r = {
|
|
|
57
58
|
maxWidth: "200px"
|
|
58
59
|
}),
|
|
59
60
|
/**
|
|
60
|
-
* contentImageText:
|
|
61
|
+
* contentImageText: title stack under illustration
|
|
61
62
|
*/
|
|
62
63
|
contentImageText: ({ theme: e }) => ({
|
|
63
64
|
display: "flex",
|
|
@@ -66,7 +67,7 @@ const r = {
|
|
|
66
67
|
gap: e.vars.size.baseSpacings.sp1
|
|
67
68
|
}),
|
|
68
69
|
/**
|
|
69
|
-
* contentMessage:
|
|
70
|
+
* contentMessage: divider + helper text row
|
|
70
71
|
*/
|
|
71
72
|
contentMessage: ({ theme: e }) => ({
|
|
72
73
|
display: "flex",
|
|
@@ -74,11 +75,15 @@ const r = {
|
|
|
74
75
|
width: "100%",
|
|
75
76
|
gap: e.vars.size.baseSpacings.sp2
|
|
76
77
|
}),
|
|
78
|
+
/**
|
|
79
|
+
* typography: typography component
|
|
80
|
+
*/
|
|
77
81
|
typography: ({ theme: e }) => ({
|
|
78
|
-
color: e.vars.palette.text.secondary
|
|
82
|
+
color: e.vars.palette.text.secondary,
|
|
83
|
+
width: "auto"
|
|
79
84
|
}),
|
|
80
85
|
/**
|
|
81
|
-
*
|
|
86
|
+
* button: choose file trigger
|
|
82
87
|
*/
|
|
83
88
|
button: () => ({
|
|
84
89
|
width: "fit-content",
|
|
@@ -88,7 +93,7 @@ const r = {
|
|
|
88
93
|
}
|
|
89
94
|
}),
|
|
90
95
|
/**
|
|
91
|
-
* iconButtonRemove:
|
|
96
|
+
* iconButtonRemove: remove preview (shown on hover)
|
|
92
97
|
*/
|
|
93
98
|
iconButtonRemove: () => ({
|
|
94
99
|
display: "none !important",
|
|
@@ -101,17 +106,45 @@ const r = {
|
|
|
101
106
|
height: e.vars.size.borderStroke.container
|
|
102
107
|
}),
|
|
103
108
|
/**
|
|
104
|
-
* containPreview:
|
|
109
|
+
* containPreview: preview container and image (object-fit / height / max-height from ownerState)
|
|
105
110
|
*/
|
|
106
|
-
containPreview: () =>
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
111
|
+
containPreview: ({ ownerState: e }) => {
|
|
112
|
+
const i = e?.maxHeight ?? e?.height, r = typeof i == "number" ? `${i}px` : i;
|
|
113
|
+
return {
|
|
114
|
+
position: "relative",
|
|
115
|
+
display: "flex",
|
|
110
116
|
width: "100%",
|
|
111
|
-
|
|
112
|
-
|
|
117
|
+
"& img": {
|
|
118
|
+
width: "100%",
|
|
119
|
+
height: r ?? "auto",
|
|
120
|
+
...e?.imageFit !== null && { objectFit: e?.imageFit },
|
|
121
|
+
...r != null && {
|
|
122
|
+
maxHeight: r
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
};
|
|
126
|
+
},
|
|
127
|
+
/**
|
|
128
|
+
* previewFallback: clear UI state when preview fails to load
|
|
129
|
+
*/
|
|
130
|
+
previewFallback: ({ theme: e, ownerState: i }) => ({
|
|
131
|
+
width: "100%",
|
|
132
|
+
minHeight: i?.maxHeight !== null ? typeof i?.maxHeight == "number" ? `${i?.maxHeight}px` : i?.maxHeight : i?.height !== null ? typeof i?.height == "number" ? `${i?.height}px` : i?.height : "180px",
|
|
133
|
+
border: e.vars.size.borderStroke.container,
|
|
134
|
+
borderStyle: "dashed",
|
|
135
|
+
borderColor: e.vars.palette.border.default,
|
|
136
|
+
borderRadius: e.vars.size.borderRadius["r0-5"],
|
|
137
|
+
background: e.vars.palette.background.default,
|
|
138
|
+
color: e.vars.palette.text.secondary,
|
|
139
|
+
display: "flex",
|
|
140
|
+
flexDirection: "column",
|
|
141
|
+
alignItems: "center",
|
|
142
|
+
justifyContent: "center",
|
|
143
|
+
gap: e.vars.size.baseSpacings.sp1,
|
|
144
|
+
textAlign: "center",
|
|
145
|
+
padding: e.vars.size.baseSpacings.sp2
|
|
113
146
|
})
|
|
114
147
|
};
|
|
115
148
|
export {
|
|
116
|
-
|
|
149
|
+
a as rhfUploadImageStyles
|
|
117
150
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RHFUploadImageEnum.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageEnum.ts"],"names":[],"mappings":"AAAA,oBAAY,gBAAgB;IAC1B,kBAAkB,uBAAuB;IACzC,eAAe,oBAAoB;IACnC,mBAAmB,wBAAwB;IAC3C,YAAY,iBAAiB;IAC7B,gBAAgB,qBAAqB;IACrC,cAAc,mBAAmB;IACjC,UAAU,eAAe;IACzB,MAAM,WAAW;IACjB,gBAAgB,qBAAqB;IACrC,cAAc,mBAAmB;IACjC,OAAO,YAAY;CACpB"}
|
|
1
|
+
{"version":3,"file":"RHFUploadImageEnum.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageEnum.ts"],"names":[],"mappings":"AAAA,oBAAY,gBAAgB;IAC1B,kBAAkB,uBAAuB;IACzC,eAAe,oBAAoB;IACnC,mBAAmB,wBAAwB;IAC3C,YAAY,iBAAiB;IAC7B,gBAAgB,qBAAqB;IACrC,cAAc,mBAAmB;IACjC,UAAU,eAAe;IACzB,MAAM,WAAW;IACjB,gBAAgB,qBAAqB;IACrC,cAAc,mBAAmB;IACjC,eAAe,oBAAoB;IACnC,OAAO,YAAY;CACpB"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var n = /* @__PURE__ */ ((
|
|
1
|
+
var n = /* @__PURE__ */ ((e) => (e.rhfUploadImageRoot = "rhfUploadImageRoot", e.uploadImageRoot = "uploadImageRoot", e.contentModuleLayout = "contentModuleLayout", e.contentImage = "contentImage", e.contentImageText = "contentImageText", e.contentMessage = "contentMessage", e.typography = "typography", e.button = "button", e.iconButtonRemove = "iconButtonRemove", e.containPreview = "containPreview", e.previewFallback = "previewFallback", e.divider = "divider", e))(n || {});
|
|
2
2
|
export {
|
|
3
3
|
n as UploadImageSlots
|
|
4
4
|
};
|
|
@@ -28,6 +28,9 @@ export declare const IconButtonRemoveStyled: import('@emotion/styled').StyledCom
|
|
|
28
28
|
export declare const ContainPreviewStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
|
|
29
29
|
ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
|
|
30
30
|
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
31
|
+
export declare const PreviewFallbackStyled: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
|
|
32
|
+
ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
|
|
33
|
+
}, Pick<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, keyof import('react').ClassAttributes<HTMLDivElement> | keyof import('react').HTMLAttributes<HTMLDivElement>>, {}>;
|
|
31
34
|
export declare const DividerStyled: import('@emotion/styled').StyledComponent<Pick<import('../../../../extended/mui/Divider/types').DividerProps, keyof import('../../../../extended/mui/Divider/types').DividerProps> & import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme> & Record<string, unknown> & {
|
|
32
35
|
ownerState?: (Partial<import('../types').RHFUploadImageOwnerState> & Record<string, unknown>) | undefined;
|
|
33
36
|
}, {}, {}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"RHFUploadImageSlots.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.tsx"],"names":[],"mappings":"AASA,eAAO,MAAM,wBAAwB;;6NAGM,CAAC;AAE5C,eAAO,MAAM,qBAAqB;;6NAGM,CAAC;AAEzC,eAAO,MAAM,yBAAyB;;6NAGM,CAAC;AAE7C,eAAO,MAAM,kBAAkB;;6NAGM,CAAC;AAEtC,eAAO,MAAM,sBAAsB;;6NAGM,CAAC;AAE1C,eAAO,MAAM,oBAAoB;;6NAGM,CAAC;AAExC,eAAO,MAAM,gBAAgB;;UAGM,CAAC;AAEpC,eAAO,MAAM,YAAY;;UAGM,CAAC;AAEhC,eAAO,MAAM,sBAAsB;;UAGM,CAAC;AAE1C,eAAO,MAAM,oBAAoB;;6NAGM,CAAC;AAExC,eAAO,MAAM,aAAa;;UAGM,CAAC"}
|
|
1
|
+
{"version":3,"file":"RHFUploadImageSlots.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/slots/RHFUploadImageSlots.tsx"],"names":[],"mappings":"AASA,eAAO,MAAM,wBAAwB;;6NAGM,CAAC;AAE5C,eAAO,MAAM,qBAAqB;;6NAGM,CAAC;AAEzC,eAAO,MAAM,yBAAyB;;6NAGM,CAAC;AAE7C,eAAO,MAAM,kBAAkB;;6NAGM,CAAC;AAEtC,eAAO,MAAM,sBAAsB;;6NAGM,CAAC;AAE1C,eAAO,MAAM,oBAAoB;;6NAGM,CAAC;AAExC,eAAO,MAAM,gBAAgB;;UAGM,CAAC;AAEpC,eAAO,MAAM,YAAY;;UAGM,CAAC;AAEhC,eAAO,MAAM,sBAAsB;;UAGM,CAAC;AAE1C,eAAO,MAAM,oBAAoB;;6NAGM,CAAC;AAExC,eAAO,MAAM,qBAAqB;;6NAGM,CAAC;AAEzC,eAAO,MAAM,aAAa;;UAGM,CAAC"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { styled as t } from "@mui/material/styles";
|
|
2
2
|
import { Button as a } from "../../../../extended/mui/Button/Button.js";
|
|
3
3
|
import { Divider as m } from "../../../../extended/mui/Divider/Divider.js";
|
|
4
|
-
import { IconButton as
|
|
5
|
-
import { Typography as
|
|
4
|
+
import { IconButton as l } from "../../../../extended/mui/IconButton/IconButton.js";
|
|
5
|
+
import { Typography as d } from "../../../../extended/mui/Typography/Typography.js";
|
|
6
6
|
import { RHF_UPLOAD_IMAGE_KEY_COMPONENT as o } from "../constants.js";
|
|
7
7
|
import { rhfUploadImageStyles as e } from "../RHFUploadImage.styles.js";
|
|
8
8
|
import { UploadImageSlots as n } from "./RHFUploadImageEnum.js";
|
|
@@ -24,31 +24,35 @@ const I = t("div", {
|
|
|
24
24
|
})(e.contentImageText), M = t("div", {
|
|
25
25
|
slot: n.contentMessage,
|
|
26
26
|
name: o
|
|
27
|
-
})(e.contentMessage), h = t(
|
|
27
|
+
})(e.contentMessage), h = t(d, {
|
|
28
28
|
slot: n.typography,
|
|
29
29
|
name: o
|
|
30
30
|
})(e.typography), U = t(a, {
|
|
31
31
|
slot: n.button,
|
|
32
32
|
name: o
|
|
33
|
-
})(e.button),
|
|
33
|
+
})(e.button), w = t(l, {
|
|
34
34
|
slot: n.iconButtonRemove,
|
|
35
35
|
name: o
|
|
36
|
-
})(e.iconButtonRemove),
|
|
36
|
+
})(e.iconButtonRemove), B = t("div", {
|
|
37
37
|
slot: n.containPreview,
|
|
38
38
|
name: o
|
|
39
|
-
})(e.containPreview),
|
|
39
|
+
})(e.containPreview), C = t("div", {
|
|
40
|
+
slot: n.previewFallback,
|
|
41
|
+
name: o
|
|
42
|
+
})(e.previewFallback), P = t(m, {
|
|
40
43
|
slot: n.divider,
|
|
41
44
|
name: o
|
|
42
45
|
})(e.divider);
|
|
43
46
|
export {
|
|
44
47
|
U as ButtonStyled,
|
|
45
|
-
|
|
48
|
+
B as ContainPreviewStyled,
|
|
46
49
|
f as ContentImageStyled,
|
|
47
50
|
R as ContentImageTextStyled,
|
|
48
51
|
M as ContentMessageStyled,
|
|
49
52
|
S as ContentModuleLayoutStyled,
|
|
50
|
-
|
|
51
|
-
|
|
53
|
+
P as DividerStyled,
|
|
54
|
+
w as IconButtonRemoveStyled,
|
|
55
|
+
C as PreviewFallbackStyled,
|
|
52
56
|
I as RHFUploadImageRootStyled,
|
|
53
57
|
h as TypographyStyled,
|
|
54
58
|
u as UploadImageRootStyled
|
package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/UploadImage.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { UploadImageProps } from './types';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Presentational image upload (dropzone + preview).
|
|
4
4
|
*/
|
|
5
5
|
export declare const UploadImage: (props: UploadImageProps) => import("@emotion/react/jsx-runtime").JSX.Element;
|
|
6
6
|
//# sourceMappingURL=UploadImage.d.ts.map
|
package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/UploadImage.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"UploadImage.d.ts","sourceRoot":"","sources":["../../../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/UploadImage.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"UploadImage.d.ts","sourceRoot":"","sources":["../../../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/UploadImage.tsx"],"names":[],"mappings":"AA0BA,OAAO,EAAE,gBAAgB,EAAE,MAAM,SAAS,CAAC;AAE3C;;GAEG;AACH,eAAO,MAAM,WAAW,GAAI,OAAO,gBAAgB,qDA8IlD,CAAC"}
|
package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/UploadImage.js
CHANGED
|
@@ -1,99 +1,134 @@
|
|
|
1
1
|
import { jsx as e, jsxs as o } from "@emotion/react/jsx-runtime";
|
|
2
|
-
import {
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
|
|
15
|
-
|
|
2
|
+
import { useState as L, useEffect as $ } from "react";
|
|
3
|
+
import { useHostTools as W, useEnvironment as Y, useModuleDictionary as B } from "@m4l/core";
|
|
4
|
+
import K from "lodash-es/isString";
|
|
5
|
+
import { useDropzone as V } from "react-dropzone";
|
|
6
|
+
import { getPropDataTestId as w } from "../../../../../../test/getNameDataTestId.js";
|
|
7
|
+
import { Image as C } from "../../../../../Image/Image.js";
|
|
8
|
+
import { RHF_UPLOAD_IMAGE_KEY_COMPONENT as p } from "../../constants.js";
|
|
9
|
+
import { UploadImageSlots as g } from "../../slots/RHFUploadImageEnum.js";
|
|
10
|
+
import { UploadImageRootStyled as G, ContentModuleLayoutStyled as q, ContainPreviewStyled as J, IconButtonRemoveStyled as Q, PreviewFallbackStyled as X, TypographyStyled as l, ContentImageStyled as Z, ContentImageTextStyled as ee, ContentMessageStyled as te, DividerStyled as b, ButtonStyled as oe } from "../../slots/RHFUploadImageSlots.js";
|
|
11
|
+
import { getUploadImageDictionary as r, COMPONENTS_DICTIONARY_KEYS as s } from "./dictionary.js";
|
|
12
|
+
import { useComponentSize as ie } from "../../../../../../hooks/useComponentSize/useComponentSize.js";
|
|
13
|
+
import { Typography as ne } from "../../../../../extended/mui/Typography/Typography.js";
|
|
14
|
+
import { getComponentClasses as re } from "../../../../../../utils/getComponentSlotRoot.js";
|
|
15
|
+
const ze = (D) => {
|
|
16
|
+
const {
|
|
17
|
+
file: i,
|
|
18
|
+
size: u,
|
|
19
|
+
onDrop: R,
|
|
20
|
+
onRemove: x,
|
|
21
|
+
maxSize: E,
|
|
22
|
+
dataTestId: h,
|
|
23
|
+
error: P = !1,
|
|
24
|
+
multiple: se,
|
|
25
|
+
disabled: f,
|
|
26
|
+
imageFit: v,
|
|
27
|
+
height: m,
|
|
28
|
+
maxHeight: c,
|
|
29
|
+
...k
|
|
30
|
+
} = D, { currentSize: d } = ie(u), { toast: T } = W(), t = d === "small" || d === "medium" ? d : "medium", { getInputProps: M, getRootProps: O, open: j, isDragReject: N, isDragAccept: U } = V({
|
|
16
31
|
multiple: !1,
|
|
17
|
-
accept: { "image/png": [], "image/jpeg": [], "image/gif": [] },
|
|
18
|
-
onDrop:
|
|
32
|
+
accept: { "image/png": [], "image/jpeg": [], "image/gif": [], "image/ico": [], "image/vnd.microsoft.icon": [], "image/x-icon": [], "image/svg+xml": [] },
|
|
33
|
+
onDrop: R,
|
|
19
34
|
/**
|
|
20
|
-
*
|
|
35
|
+
* Runs when a dropped file is rejected (type/size/etc.).
|
|
21
36
|
*/
|
|
22
|
-
onDropRejected: (
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
{ title:
|
|
37
|
+
onDropRejected: (A) => {
|
|
38
|
+
A.forEach((_) => {
|
|
39
|
+
T(
|
|
40
|
+
{ title: _.file.name, description: _.errors[0].message },
|
|
26
41
|
{ type: "error" }
|
|
27
42
|
);
|
|
28
43
|
});
|
|
29
44
|
},
|
|
30
45
|
noClick: !0,
|
|
31
|
-
maxSize:
|
|
32
|
-
...
|
|
33
|
-
}), { host_static_assets:
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
46
|
+
maxSize: E,
|
|
47
|
+
...k
|
|
48
|
+
}), { host_static_assets: y, environment_assets: S } = Y(), { getLabel: n } = B(), I = K(i) ? i : i?.preview || "", [F, z] = L(!1);
|
|
49
|
+
$(() => {
|
|
50
|
+
z(!1);
|
|
51
|
+
}, [I]);
|
|
52
|
+
const a = {
|
|
53
|
+
isDragReject: N,
|
|
54
|
+
isDragAccept: U,
|
|
55
|
+
error: P,
|
|
56
|
+
hasFile: !!i,
|
|
57
|
+
height: m,
|
|
58
|
+
maxHeight: c
|
|
59
|
+
}, H = re(p, g);
|
|
38
60
|
return /* @__PURE__ */ e(
|
|
39
|
-
|
|
61
|
+
G,
|
|
40
62
|
{
|
|
41
|
-
className:
|
|
42
|
-
ownerState: { ...
|
|
43
|
-
...
|
|
63
|
+
className: H.uploadImageRoot,
|
|
64
|
+
ownerState: { ...a },
|
|
65
|
+
...w(p, g.uploadImageRoot, h),
|
|
44
66
|
children: /* @__PURE__ */ o(
|
|
45
|
-
|
|
67
|
+
q,
|
|
46
68
|
{
|
|
47
|
-
...
|
|
48
|
-
...
|
|
69
|
+
ownerState: { ...a },
|
|
70
|
+
...w(p, g.contentModuleLayout, h),
|
|
71
|
+
...O(),
|
|
49
72
|
children: [
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
{
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
73
|
+
i ? /* @__PURE__ */ o(
|
|
74
|
+
J,
|
|
75
|
+
{
|
|
76
|
+
ownerState: { ...a, imageFit: v, height: m, maxHeight: c },
|
|
77
|
+
children: [
|
|
78
|
+
/* @__PURE__ */ e(
|
|
79
|
+
Q,
|
|
80
|
+
{
|
|
81
|
+
variant: "contained",
|
|
82
|
+
icon: `${y}/${S}/frontend/components/chip/assets/icons/closeSmall.svg`,
|
|
83
|
+
onClick: x,
|
|
84
|
+
size: t,
|
|
85
|
+
disabled: f
|
|
86
|
+
}
|
|
87
|
+
),
|
|
88
|
+
F ? /* @__PURE__ */ o(X, { ownerState: { ...a, imageFit: v, height: m, maxHeight: c }, children: [
|
|
89
|
+
/* @__PURE__ */ e(l, { variant: "bodyDens", size: t, children: n(r(s.preview_unavailable_title)) }),
|
|
90
|
+
/* @__PURE__ */ e(l, { variant: "body", size: t, children: n(r(s.preview_unavailable_description)) })
|
|
91
|
+
] }) : /* @__PURE__ */ e(
|
|
92
|
+
C,
|
|
93
|
+
{
|
|
94
|
+
src: I,
|
|
95
|
+
enableIntersectionObserver: !1,
|
|
96
|
+
onError: () => {
|
|
97
|
+
z(!0);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
)
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
) : /* @__PURE__ */ o("div", { style: { display: "flex", flexDirection: "column", justifyContent: "center", alignItems: "center" }, children: [
|
|
69
104
|
/* @__PURE__ */ e(
|
|
70
105
|
"input",
|
|
71
106
|
{
|
|
72
|
-
...
|
|
107
|
+
...M()
|
|
73
108
|
}
|
|
74
109
|
),
|
|
75
|
-
/* @__PURE__ */ o(
|
|
76
|
-
/* @__PURE__ */ o(
|
|
110
|
+
/* @__PURE__ */ o(Z, { children: [
|
|
111
|
+
/* @__PURE__ */ o(ee, { children: [
|
|
77
112
|
/* @__PURE__ */ e(
|
|
78
|
-
|
|
113
|
+
C,
|
|
79
114
|
{
|
|
80
115
|
height: 100,
|
|
81
116
|
width: 100,
|
|
82
|
-
sizes:
|
|
83
|
-
src: `${
|
|
117
|
+
sizes: u,
|
|
118
|
+
src: `${y}/${S}/frontend/components/RHFUploadImage/assets/icons/uploadImage.svg`
|
|
84
119
|
}
|
|
85
120
|
),
|
|
86
|
-
/* @__PURE__ */ e(
|
|
121
|
+
/* @__PURE__ */ e(ne, { skeletonWidth: 100, variant: "bodyDens", size: t, children: n(r(s.title_upload)) })
|
|
87
122
|
] }),
|
|
88
|
-
/* @__PURE__ */ e(
|
|
89
|
-
/* @__PURE__ */ o(
|
|
90
|
-
/* @__PURE__ */ e(
|
|
91
|
-
/* @__PURE__ */ e(
|
|
92
|
-
/* @__PURE__ */ e(
|
|
123
|
+
/* @__PURE__ */ e(l, { skeletonWidth: 200, skeletonRows: 2, variant: "body", size: t, children: n(r(s.description)) }),
|
|
124
|
+
/* @__PURE__ */ o(te, { children: [
|
|
125
|
+
/* @__PURE__ */ e(b, { orientation: "horizontal", customVariant: "solid", size: t }),
|
|
126
|
+
/* @__PURE__ */ e(l, { skeletonWidth: 10, variant: "body", size: t, children: n(r(s.divider_text)) }),
|
|
127
|
+
/* @__PURE__ */ e(b, { orientation: "horizontal", customVariant: "solid", size: t })
|
|
93
128
|
] })
|
|
94
129
|
] })
|
|
95
130
|
] }),
|
|
96
|
-
|
|
131
|
+
i ? null : /* @__PURE__ */ e(oe, { variant: "contained", color: "primary", onClick: j, label: n(r(s.click_button)), size: t, disabled: f })
|
|
97
132
|
]
|
|
98
133
|
}
|
|
99
134
|
)
|
|
@@ -101,5 +136,5 @@ const ce = (v) => {
|
|
|
101
136
|
);
|
|
102
137
|
};
|
|
103
138
|
export {
|
|
104
|
-
|
|
139
|
+
ze as UploadImage
|
|
105
140
|
};
|
package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/dictionary.d.ts
CHANGED
|
@@ -5,6 +5,8 @@ export declare const COMPONENTS_DICTIONARY_KEYS: {
|
|
|
5
5
|
readonly description: "description";
|
|
6
6
|
readonly title_upload: "title_upload";
|
|
7
7
|
readonly divider_text: "divider_text";
|
|
8
|
+
readonly preview_unavailable_title: "preview_unavailable_title";
|
|
9
|
+
readonly preview_unavailable_description: "preview_unavailable_description";
|
|
8
10
|
};
|
|
9
11
|
export type TypeDictionary = typeof COMPONENTS_DICTIONARY_KEYS;
|
|
10
12
|
export declare const getUploadImageDictionary: (key: keyof TypeDictionary) => string;
|
package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/dictionary.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dictionary.d.ts","sourceRoot":"","sources":["../../../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/dictionary.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,0BAA0B,oBAAoB,CAAC;AAC5D,wBAAgB,kCAAkC,aAEjD;AAED,eAAO,MAAM,0BAA0B
|
|
1
|
+
{"version":3,"file":"dictionary.d.ts","sourceRoot":"","sources":["../../../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/dictionary.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,0BAA0B,oBAAoB,CAAC;AAC5D,wBAAgB,kCAAkC,aAEjD;AAED,eAAO,MAAM,0BAA0B;;;;;;;CAO7B,CAAC;AAEX,MAAM,MAAM,cAAc,GAAG,OAAO,0BAA0B,CAAC;AAE/D,eAAO,MAAM,wBAAwB,GAAI,KAAK,MAAM,cAAc,WAEjE,CAAC"}
|
package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/dictionary.js
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
const i = "rhf_uploadimage",
|
|
1
|
+
const i = "rhf_uploadimage", t = {
|
|
2
2
|
click_button: "click_button",
|
|
3
3
|
description: "description",
|
|
4
4
|
title_upload: "title_upload",
|
|
5
|
-
divider_text: "divider_text"
|
|
6
|
-
|
|
5
|
+
divider_text: "divider_text",
|
|
6
|
+
preview_unavailable_title: "preview_unavailable_title",
|
|
7
|
+
preview_unavailable_description: "preview_unavailable_description"
|
|
8
|
+
}, _ = (e) => `${i}.${e}`;
|
|
7
9
|
export {
|
|
8
|
-
|
|
10
|
+
t as COMPONENTS_DICTIONARY_KEYS,
|
|
9
11
|
i as UPLOAD_IMAGE_DICTIONARY_ID,
|
|
10
|
-
|
|
12
|
+
_ as getUploadImageDictionary
|
|
11
13
|
};
|
|
@@ -1,33 +1,49 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
1
2
|
import { Sizes } from '@m4l/styles';
|
|
2
3
|
import { SxProps } from '@mui/material';
|
|
3
4
|
import { Theme } from '@mui/material/styles';
|
|
4
5
|
import { DropzoneOptions } from 'react-dropzone';
|
|
5
6
|
import { CustomFile } from '../../../types';
|
|
6
7
|
export interface UploadImageProps extends DropzoneOptions {
|
|
8
|
+
/**
|
|
9
|
+
* When true, shows error styling on the dropzone.
|
|
10
|
+
*/
|
|
7
11
|
error?: boolean;
|
|
8
12
|
/**
|
|
9
|
-
* file
|
|
13
|
+
* Current file, URL string, or null when empty.
|
|
10
14
|
*/
|
|
11
15
|
file: CustomFile | string | null;
|
|
12
16
|
/**
|
|
13
|
-
* sx
|
|
17
|
+
* MUI `sx` prop for the component.
|
|
14
18
|
*/
|
|
15
19
|
sx?: SxProps<Theme>;
|
|
16
20
|
/**
|
|
17
|
-
*
|
|
21
|
+
* Visual size (small | medium).
|
|
18
22
|
*/
|
|
19
23
|
size?: Extract<Sizes, 'small' | 'medium'>;
|
|
20
24
|
/**
|
|
21
|
-
*
|
|
25
|
+
* Called when the user removes the preview.
|
|
22
26
|
*/
|
|
23
27
|
onRemove: () => void;
|
|
24
28
|
/**
|
|
25
|
-
*
|
|
29
|
+
* Drag-accept state (optional override).
|
|
26
30
|
*/
|
|
27
31
|
isDragAccept?: boolean;
|
|
28
32
|
/**
|
|
29
33
|
* dataTestId
|
|
30
34
|
*/
|
|
31
35
|
dataTestId?: string;
|
|
36
|
+
/**
|
|
37
|
+
* CSS `object-fit` for the preview image (`img` in preview state).
|
|
38
|
+
*/
|
|
39
|
+
imageFit?: CSSProperties['objectFit'];
|
|
40
|
+
/**
|
|
41
|
+
* CSS `height` for the preview image (`img` in preview state). Use a number for pixels (e.g. `200` -> `200px`) or a CSS string (e.g. `'40vh'`).
|
|
42
|
+
*/
|
|
43
|
+
height?: number | string;
|
|
44
|
+
/**
|
|
45
|
+
* CSS `max-height` for the preview image (`img` in preview state). Use a number for pixels (e.g. `200` → `200px`) or a CSS string (e.g. `'50vh'`).
|
|
46
|
+
*/
|
|
47
|
+
maxHeight?: number | string;
|
|
32
48
|
}
|
|
33
49
|
//# sourceMappingURL=types.d.ts.map
|
package/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAC7C,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAE5C,MAAM,WAAW,gBAAiB,SAAQ,eAAe;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/subcomponents/UploadImage/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAC3C,OAAO,EAAE,KAAK,EAAE,MAAM,aAAa,CAAC;AACpC,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,eAAe,CAAC;AAC7C,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,gBAAgB,CAAC;AACtD,OAAO,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAE5C,MAAM,WAAW,gBAAiB,SAAQ,eAAe;IACzD;;OAEG;IACF,KAAK,CAAC,EAAE,OAAO,CAAC;IACjB;;OAEG;IACH,IAAI,EAAE,UAAU,GAAG,MAAM,GAAG,IAAI,CAAC;IACjC;;OAEG;IACH,EAAE,CAAC,EAAE,OAAO,CAAC,KAAK,CAAC,CAAC;IACpB;;OAEG;IACH,IAAI,CAAC,EAAE,OAAO,CAAC,KAAK,EAAE,OAAO,GAAC,QAAQ,CAAC,CAAC;IAExC;;OAEG;IACH,QAAQ,EAAE,MAAM,IAAI,CAAC;IAErB;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IAEvB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,QAAQ,CAAC,EAAE,aAAa,CAAC,WAAW,CAAC,CAAC;IAEtC;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAEzB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC3B"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { CSSProperties } from 'react';
|
|
1
2
|
import { Theme } from '@mui/material/styles';
|
|
2
3
|
import { LabelProps } from '../../../../components/Label';
|
|
3
4
|
import { RHF_UPLOAD_IMAGE_KEY_COMPONENT } from './constants';
|
|
@@ -5,9 +6,12 @@ import { UploadImageSlots as Slots } from './slots/RHFUploadImageEnum';
|
|
|
5
6
|
import { UploadImageProps } from './subcomponents/UploadImage/types';
|
|
6
7
|
import { M4LOverridesStyleRules } from '../../../../@types/augmentations';
|
|
7
8
|
export interface RHFUploadImageProps extends Omit<UploadImageProps, 'file' | 'onDrop' | 'onRemove'>, Omit<LabelProps, 'size' | 'error' | 'disabled' | 'children'> {
|
|
9
|
+
/**
|
|
10
|
+
* Field name for react-hook-form.
|
|
11
|
+
*/
|
|
8
12
|
name: string;
|
|
9
13
|
/**
|
|
10
|
-
*
|
|
14
|
+
* When true, the control is disabled.
|
|
11
15
|
*/
|
|
12
16
|
disabled?: boolean;
|
|
13
17
|
}
|
|
@@ -16,6 +20,10 @@ export type RHFUploadImageOwnerState = {
|
|
|
16
20
|
isDragAccept: boolean;
|
|
17
21
|
isDragReject: boolean;
|
|
18
22
|
error: boolean;
|
|
23
|
+
hasFile?: boolean;
|
|
24
|
+
imageFit?: CSSProperties['objectFit'];
|
|
25
|
+
height?: number | string;
|
|
26
|
+
maxHeight?: number | string;
|
|
19
27
|
};
|
|
20
28
|
export type RHFUploadImageStyles = M4LOverridesStyleRules<RHFUploadImageSlotsType, typeof RHF_UPLOAD_IMAGE_KEY_COMPONENT, Theme>;
|
|
21
29
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAC1D,OAAO,EAAE,8BAA8B,EAAE,MAAM,aAAa,CAAC;AAC7D,OAAO,EAAE,gBAAgB,IAAI,KAAK,EAAE,MAAM,4BAA4B,CAAC;AACvE,OAAO,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,kCAAkC,CAAC;AAG1E,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAAG,UAAU,CAAC,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadImage/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAC3C,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,sBAAsB,CAAC;AAClD,OAAO,EAAE,UAAU,EAAE,MAAM,8BAA8B,CAAC;AAC1D,OAAO,EAAE,8BAA8B,EAAE,MAAM,aAAa,CAAC;AAC7D,OAAO,EAAE,gBAAgB,IAAI,KAAK,EAAE,MAAM,4BAA4B,CAAC;AACvE,OAAO,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAC;AACrE,OAAO,EAAE,sBAAsB,EAAE,MAAM,kCAAkC,CAAC;AAG1E,MAAM,WAAW,mBAAoB,SAAQ,IAAI,CAAC,gBAAgB,EAAE,MAAM,GAAG,QAAQ,GAAG,UAAU,CAAC,EAAE,IAAI,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,UAAU,CAAC;IAC/J;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;OAEG;IACH,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB;AAED,MAAM,MAAM,uBAAuB,GAAG,MAAM,OAAO,KAAK,CAAC;AAEzD,MAAM,MAAM,wBAAwB,GAAG;IACrC,YAAY,EAAE,OAAO,CAAC;IACtB,YAAY,EAAE,OAAO,CAAC;IACtB,KAAK,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,QAAQ,CAAC,EAAE,aAAa,CAAC,WAAW,CAAC,CAAC;IACtC,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;CAC7B,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG,sBAAsB,CAAC,uBAAuB,EAAE,OAAO,8BAA8B,EAAE,KAAK,CAAC,CAAA"}
|
package/components/hook-form/RHFUpload/RHFUploadSingleFile/helpers/getReadableFileType.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getReadableFileType.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadSingleFile/helpers/getReadableFileType.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"getReadableFileType.d.ts","sourceRoot":"","sources":["../../../../../../../../../packages/components/src/components/hook-form/RHFUpload/RHFUploadSingleFile/helpers/getReadableFileType.ts"],"names":[],"mappings":"AAsDA;;;;GAIG;AACH,eAAO,MAAM,mBAAmB,GAAI,UAAU,MAAM,KAAG,MAqBtD,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m4l/components",
|
|
3
|
-
"version": "9.4.
|
|
3
|
+
"version": "9.4.50",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -52,20 +52,20 @@
|
|
|
52
52
|
"nprogress": "^0.2.0",
|
|
53
53
|
"date-fns": "^2.30.0",
|
|
54
54
|
"react-transition-group": "^4.4.5",
|
|
55
|
-
"react-rnd": "^10.5.2",
|
|
56
|
-
"react-draggable": "^4.4.5",
|
|
57
55
|
"react-dropzone": "^14.2.2",
|
|
56
|
+
"react-rnd": "^10.5.2",
|
|
58
57
|
"react-spinners": "^0.13.8",
|
|
59
|
-
"
|
|
58
|
+
"react-draggable": "^4.4.5",
|
|
60
59
|
"chart.js": "^4.4.0",
|
|
61
60
|
"chartjs-chart-error-bars": "^4.3.3",
|
|
62
61
|
"qrcode.react": "^3.1.0",
|
|
62
|
+
"react-color": "^2.19.3",
|
|
63
|
+
"@mui/x-date-pickers": "6.20.2",
|
|
64
|
+
"react-resizable-panels": "^2.1.8",
|
|
65
|
+
"simplebar-react": "3.2.6",
|
|
63
66
|
"react-data-grid": "7.0.0-beta.47",
|
|
64
67
|
"react-dnd": "^16.0.1",
|
|
65
68
|
"react-dnd-html5-backend": "^16.0.1",
|
|
66
|
-
"@mui/x-date-pickers": "6.20.2",
|
|
67
|
-
"react-resizable-panels": "^2.1.8",
|
|
68
|
-
"react-color": "^2.19.3",
|
|
69
69
|
"react-resizable": "^3.0.4",
|
|
70
70
|
"@tanstack/react-virtual": "3.13.23"
|
|
71
71
|
}
|
|
@@ -377,6 +377,8 @@ export interface DictionaryMockData {
|
|
|
377
377
|
click_button: string;
|
|
378
378
|
description: string;
|
|
379
379
|
divider_text: string;
|
|
380
|
+
preview_unavailable_description: string;
|
|
381
|
+
preview_unavailable_title: string;
|
|
380
382
|
title_upload: string;
|
|
381
383
|
};
|
|
382
384
|
rhfcolorpicker: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dictionary-mock.d.ts","sourceRoot":"","sources":["../../../../../../packages/components/src/test/mocks/dictionary-mock.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"dictionary-mock.d.ts","sourceRoot":"","sources":["../../../../../../packages/components/src/test/mocks/dictionary-mock.ts"],"names":[],"mappings":"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"}
|