@underverse-ui/underverse 0.2.13 → 0.2.15
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/dist/index.cjs +1002 -1084
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +765 -847
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1014,13 +1014,13 @@ interface ImageUploadProps {
|
|
|
1014
1014
|
disabled?: boolean;
|
|
1015
1015
|
className?: string;
|
|
1016
1016
|
showPreview?: boolean;
|
|
1017
|
-
previewSize?:
|
|
1017
|
+
previewSize?: "sm" | "md" | "lg";
|
|
1018
1018
|
dragDropText?: string;
|
|
1019
1019
|
browseText?: string;
|
|
1020
1020
|
supportedFormatsText?: string;
|
|
1021
1021
|
}
|
|
1022
1022
|
declare function ImageUpload({ onUpload, onRemove, maxSize, // Convert bytes to MB
|
|
1023
|
-
accept, multiple, disabled, className, showPreview, previewSize, dragDropText, browseText, supportedFormatsText }: ImageUploadProps): react_jsx_runtime.JSX.Element;
|
|
1023
|
+
accept, multiple, disabled, className, showPreview, previewSize, dragDropText, browseText, supportedFormatsText, }: ImageUploadProps): react_jsx_runtime.JSX.Element;
|
|
1024
1024
|
|
|
1025
1025
|
type AnimationVariant$1 = "slide" | "fade" | "scale";
|
|
1026
1026
|
type Orientation = "horizontal" | "vertical";
|
package/dist/index.d.ts
CHANGED
|
@@ -1014,13 +1014,13 @@ interface ImageUploadProps {
|
|
|
1014
1014
|
disabled?: boolean;
|
|
1015
1015
|
className?: string;
|
|
1016
1016
|
showPreview?: boolean;
|
|
1017
|
-
previewSize?:
|
|
1017
|
+
previewSize?: "sm" | "md" | "lg";
|
|
1018
1018
|
dragDropText?: string;
|
|
1019
1019
|
browseText?: string;
|
|
1020
1020
|
supportedFormatsText?: string;
|
|
1021
1021
|
}
|
|
1022
1022
|
declare function ImageUpload({ onUpload, onRemove, maxSize, // Convert bytes to MB
|
|
1023
|
-
accept, multiple, disabled, className, showPreview, previewSize, dragDropText, browseText, supportedFormatsText }: ImageUploadProps): react_jsx_runtime.JSX.Element;
|
|
1023
|
+
accept, multiple, disabled, className, showPreview, previewSize, dragDropText, browseText, supportedFormatsText, }: ImageUploadProps): react_jsx_runtime.JSX.Element;
|
|
1024
1024
|
|
|
1025
1025
|
type AnimationVariant$1 = "slide" | "fade" | "scale";
|
|
1026
1026
|
type Orientation = "horizontal" | "vertical";
|