@mindly/ui-components 3.34.1 → 3.34.2
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 +1 -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 +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -8,5 +8,6 @@ declare const ImageInput: React.ForwardRefExoticComponent<{
|
|
|
8
8
|
isVideoContent?: boolean | undefined;
|
|
9
9
|
isError?: boolean | undefined;
|
|
10
10
|
loadedFileValue?: string | undefined;
|
|
11
|
+
renderMediaAfterLoad?: boolean | undefined;
|
|
11
12
|
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>;
|
|
12
13
|
export default ImageInput;
|
package/dist/index.d.ts
CHANGED
|
@@ -899,6 +899,7 @@ declare const ImageInput: React.ForwardRefExoticComponent<{
|
|
|
899
899
|
isVideoContent?: boolean | undefined;
|
|
900
900
|
isError?: boolean | undefined;
|
|
901
901
|
loadedFileValue?: string | undefined;
|
|
902
|
+
renderMediaAfterLoad?: boolean | undefined;
|
|
902
903
|
} & Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> & React.RefAttributes<HTMLInputElement>>;
|
|
903
904
|
|
|
904
905
|
declare const PasswordInput: React.ForwardRefExoticComponent<{
|