vrfi-design-system 1.0.35 → 1.0.37
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 -2
- package/dist/main.es.js +5977 -5969
- package/dist/main.umd.js +102 -102
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -188,7 +188,7 @@ export declare type CustomAvatarProps = {
|
|
|
188
188
|
declare interface CustomDropDownFileUploadProps extends Omit<UploadProps_2, 'onChange'> {
|
|
189
189
|
value?: UploadFile_2[];
|
|
190
190
|
onChange: (fileList: UploadFile_2[]) => void | boolean;
|
|
191
|
-
uploadIcon?:
|
|
191
|
+
uploadIcon?: string;
|
|
192
192
|
uploadHint?: ReactNode;
|
|
193
193
|
fileTypes?: string;
|
|
194
194
|
actionURL?: string;
|
|
@@ -223,7 +223,7 @@ export declare interface CustomInputProps {
|
|
|
223
223
|
declare interface CustomUploadProps extends Omit<UploadProps, 'onChange'> {
|
|
224
224
|
value?: UploadFile_2[];
|
|
225
225
|
onChange: (fileList: UploadFile_2[]) => void | boolean;
|
|
226
|
-
uploadIcon?:
|
|
226
|
+
uploadIcon?: string;
|
|
227
227
|
uploadHint?: ReactNode;
|
|
228
228
|
fileTypes?: string;
|
|
229
229
|
actionURL?: string;
|