easy-email-extensions 4.1.7 → 4.1.12
Sign up to get free protection for your applications and to get access to all the features.
- package/License +0 -2
- package/lib/components/Form/ImageUploader/index.d.ts +5 -0
- package/lib/index2.js +306 -258
- package/lib/index2.js.map +1 -1
- package/package.json +2 -2
package/License
CHANGED
@@ -1,8 +1,13 @@
|
|
1
|
+
import React from 'react';
|
1
2
|
import { UploaderServer } from '../../../AttributePanel/utils/Uploader';
|
2
3
|
export interface ImageUploaderProps {
|
3
4
|
onChange: (val: string) => void;
|
4
5
|
value: string;
|
5
6
|
label: string;
|
6
7
|
uploadHandler?: UploaderServer;
|
8
|
+
autoCompleteOptions?: Array<{
|
9
|
+
value: string;
|
10
|
+
label: React.ReactNode;
|
11
|
+
}>;
|
7
12
|
}
|
8
13
|
export declare function ImageUploader(props: ImageUploaderProps): JSX.Element;
|