identity-admin-ui 1.12.10 → 1.12.12
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/lib/cjs/index.js +3 -3
- package/lib/cjs/types/sections/dashboard/ImageCard.d.ts +2 -1
- package/lib/cjs/types/utils/AwsConfig.d.ts +1 -1
- package/lib/esm/index.js +3 -3
- package/lib/esm/types/sections/dashboard/ImageCard.d.ts +2 -1
- package/lib/esm/types/utils/AwsConfig.d.ts +1 -1
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export interface IImageProps {
|
|
|
16
16
|
handleRemoveImage: (key: string) => void;
|
|
17
17
|
handleEditImage: (key: string) => void;
|
|
18
18
|
imageOptimizingCategory?: ImageOptimizingCategories;
|
|
19
|
+
disableImageOptimization?: boolean;
|
|
19
20
|
setImageDialogState: React.Dispatch<React.SetStateAction<{
|
|
20
21
|
[key: string]: boolean;
|
|
21
22
|
}>>;
|
|
@@ -38,4 +39,4 @@ export interface IImageProps {
|
|
|
38
39
|
shouldTouch: boolean;
|
|
39
40
|
}> | undefined) => void;
|
|
40
41
|
}
|
|
41
|
-
export default function ImageCard({ image, keyValue, isEnglish, imageDialogState, imageOptimizingCategory, label, multiple, fileType, dismissDialogState, setImages, handleEditImage, handleRemoveImage, setImageDialogState, setImage, setValue, }: IImageProps): import("react/jsx-runtime").JSX.Element;
|
|
42
|
+
export default function ImageCard({ image, keyValue, isEnglish, imageDialogState, imageOptimizingCategory, label, multiple, fileType, dismissDialogState, setImages, handleEditImage, handleRemoveImage, setImageDialogState, setImage, setValue, disableImageOptimization, }: IImageProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { FileTypes, ImageOptimizingCategories } from '../helpers/Types';
|
|
2
2
|
export declare const uploadFile: (file: any, isImage: boolean, imageOptimizingCategory: ImageOptimizingCategories, callBack?: ((link: string) => void) | undefined) => Promise<unknown>;
|
|
3
|
-
export declare const uploadFiles: (files: File[], fileType: FileTypes) => Promise<string[]>;
|
|
3
|
+
export declare const uploadFiles: (files: File[], fileType: FileTypes, callBack?: ((link: string) => void) | undefined) => Promise<string[]>;
|