@mcurros2/microm 1.1.331-0 → 1.1.332-0
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.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +45 -31
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -3080,6 +3080,7 @@ export type AvatarUploaderLabels = {
|
|
|
3080
3080
|
export const AvatarUploaderDefaultProps: Partial<useAvatarUploaderProps>;
|
|
3081
3081
|
export interface AvatarUploaderAPI {
|
|
3082
3082
|
imageURL?: string;
|
|
3083
|
+
thumbnailURL?: string;
|
|
3083
3084
|
fileID?: string;
|
|
3084
3085
|
fileProcessID?: string;
|
|
3085
3086
|
fileGUID?: string;
|
|
@@ -3091,6 +3092,7 @@ export function useAvatarUploader(props: useAvatarUploaderProps): AvatarUploader
|
|
|
3091
3092
|
export interface AvatarUploaderProps extends Omit<AvatarProps, 'src'> {
|
|
3092
3093
|
API: AvatarUploaderAPI;
|
|
3093
3094
|
PlaceHolderIcon?: React.ReactNode;
|
|
3095
|
+
showFullImage?: boolean;
|
|
3094
3096
|
readOnlyMode?: boolean;
|
|
3095
3097
|
}
|
|
3096
3098
|
export function AvatarUploader(props: AvatarUploaderProps): JSX.Element;
|