@mindly/ui-components 3.59.1 → 3.60.1
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/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/lib/Inputs/ImageInput/ImageInput.d.ts +2 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/lib/Inputs/ImageInput/ImageInput.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -7,7 +7,9 @@ declare const ImageInput: React.ForwardRefExoticComponent<{
|
|
|
7
7
|
onCloseClick?: (() => void) | undefined;
|
|
8
8
|
isVideoContent?: boolean | undefined;
|
|
9
9
|
isError?: boolean | undefined;
|
|
10
|
+
errorMessage?: string | undefined;
|
|
10
11
|
loadedFileValue?: string | undefined;
|
|
11
12
|
renderMediaAfterLoad?: boolean | undefined;
|
|
13
|
+
isFilledButton?: boolean | undefined;
|
|
12
14
|
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>;
|
|
13
15
|
export default ImageInput;
|
package/dist/index.d.ts
CHANGED
|
@@ -1048,8 +1048,10 @@ declare const ImageInput: React.ForwardRefExoticComponent<{
|
|
|
1048
1048
|
onCloseClick?: (() => void) | undefined;
|
|
1049
1049
|
isVideoContent?: boolean | undefined;
|
|
1050
1050
|
isError?: boolean | undefined;
|
|
1051
|
+
errorMessage?: string | undefined;
|
|
1051
1052
|
loadedFileValue?: string | undefined;
|
|
1052
1053
|
renderMediaAfterLoad?: boolean | undefined;
|
|
1054
|
+
isFilledButton?: boolean | undefined;
|
|
1053
1055
|
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>;
|
|
1054
1056
|
|
|
1055
1057
|
declare const PasswordInput: React.ForwardRefExoticComponent<{
|