@vtj/ui 0.12.55 → 0.12.57
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.mjs +2 -2
- package/dist/index.umd.js +2 -2
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/types/components/attachment/Attachment.d.ts +6 -6
- package/types/components/dialog-form/DialogForm.d.ts +6 -2283
- package/types/components/form/Form.d.ts +6 -2283
- package/types/components/grid/renderers/components/PickerEdit.d.ts +4 -4
- package/types/components/picker/Picker.d.ts +4 -4
- package/types/components/query-form/QueryForm.d.ts +10 -4563
- package/types/version.d.ts +2 -2
@@ -63,7 +63,6 @@ declare function __VLS_template(): {
|
|
63
63
|
readonly action: string;
|
64
64
|
readonly onRemove: (uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
65
65
|
readonly multiple: boolean;
|
66
|
-
readonly method: string;
|
67
66
|
readonly accept: string;
|
68
67
|
readonly listType: "picture" | "text" | "picture-card";
|
69
68
|
readonly beforeUpload: (rawFile: UploadRawFile) => boolean | void | File | Blob | Promise<boolean | void | File | Blob | null | undefined> | null | undefined;
|
@@ -72,6 +71,7 @@ declare function __VLS_template(): {
|
|
72
71
|
readonly onPreview: (uploadFile: UploadFile) => void;
|
73
72
|
readonly onSuccess: (response: any, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
74
73
|
readonly onExceed: (files: File[], uploadFiles: UploadUserFile[]) => void;
|
74
|
+
readonly method: string;
|
75
75
|
readonly withCredentials: boolean;
|
76
76
|
readonly showFileList: boolean;
|
77
77
|
readonly httpRequest: UploadRequestHandler;
|
@@ -79,7 +79,7 @@ declare function __VLS_template(): {
|
|
79
79
|
readonly limit?: number | undefined;
|
80
80
|
readonly beforeRemove?: ((uploadFile: UploadFile, uploadFiles: UploadFiles) => boolean | Promise<boolean>) | undefined;
|
81
81
|
readonly headers?: (Record<string, any> | Headers) | undefined;
|
82
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "disabled" | "name" | "data" | "onChange" | "onError" | "onProgress" | "drag" | "action" | "onRemove" | "multiple" | "
|
82
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "disabled" | "name" | "data" | "onChange" | "onError" | "onProgress" | "drag" | "action" | "onRemove" | "multiple" | "accept" | "listType" | "beforeUpload" | "autoUpload" | "fileList" | "onPreview" | "onSuccess" | "onExceed" | "method" | "withCredentials" | "showFileList" | "httpRequest">;
|
83
83
|
$attrs: {
|
84
84
|
[x: string]: unknown;
|
85
85
|
};
|
@@ -534,7 +534,7 @@ declare function __VLS_template(): {
|
|
534
534
|
};
|
535
535
|
readonly disabled: BooleanConstructor;
|
536
536
|
readonly limit: NumberConstructor;
|
537
|
-
}>>, "disabled" | "name" | "data" | "onChange" | "onError" | "onProgress" | "submit" | "abort" | "drag" | "action" | "onRemove" | "multiple" | "
|
537
|
+
}>>, "disabled" | "name" | "data" | "onChange" | "onError" | "onProgress" | "submit" | "abort" | "drag" | "action" | "onRemove" | "multiple" | "accept" | "listType" | "beforeUpload" | "autoUpload" | "fileList" | "onPreview" | "onSuccess" | "onExceed" | "method" | "withCredentials" | "showFileList" | "httpRequest" | "clearFiles" | "handleStart" | "handleRemove"> & ShallowUnwrapRef<{
|
538
538
|
abort: (file: UploadFile) => void;
|
539
539
|
submit: () => void;
|
540
540
|
clearFiles: (states?: UploadStatus[]) => void;
|
@@ -830,7 +830,6 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
830
830
|
readonly action: string;
|
831
831
|
readonly onRemove: (uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
832
832
|
readonly multiple: boolean;
|
833
|
-
readonly method: string;
|
834
833
|
readonly accept: string;
|
835
834
|
readonly listType: "picture" | "text" | "picture-card";
|
836
835
|
readonly beforeUpload: (rawFile: UploadRawFile) => boolean | void | File | Blob | Promise<boolean | void | File | Blob | null | undefined> | null | undefined;
|
@@ -839,6 +838,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
839
838
|
readonly onPreview: (uploadFile: UploadFile) => void;
|
840
839
|
readonly onSuccess: (response: any, uploadFile: UploadFile, uploadFiles: UploadFiles) => void;
|
841
840
|
readonly onExceed: (files: File[], uploadFiles: UploadUserFile[]) => void;
|
841
|
+
readonly method: string;
|
842
842
|
readonly withCredentials: boolean;
|
843
843
|
readonly showFileList: boolean;
|
844
844
|
readonly httpRequest: UploadRequestHandler;
|
@@ -846,7 +846,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
846
846
|
readonly limit?: number | undefined;
|
847
847
|
readonly beforeRemove?: ((uploadFile: UploadFile, uploadFiles: UploadFiles) => boolean | Promise<boolean>) | undefined;
|
848
848
|
readonly headers?: (Record<string, any> | Headers) | undefined;
|
849
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "disabled" | "name" | "data" | "onChange" | "onError" | "onProgress" | "drag" | "action" | "onRemove" | "multiple" | "
|
849
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, "disabled" | "name" | "data" | "onChange" | "onError" | "onProgress" | "drag" | "action" | "onRemove" | "multiple" | "accept" | "listType" | "beforeUpload" | "autoUpload" | "fileList" | "onPreview" | "onSuccess" | "onExceed" | "method" | "withCredentials" | "showFileList" | "httpRequest">;
|
850
850
|
$attrs: {
|
851
851
|
[x: string]: unknown;
|
852
852
|
};
|
@@ -1301,7 +1301,7 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
|
|
1301
1301
|
};
|
1302
1302
|
readonly disabled: BooleanConstructor;
|
1303
1303
|
readonly limit: NumberConstructor;
|
1304
|
-
}>>, "disabled" | "name" | "data" | "onChange" | "onError" | "onProgress" | "submit" | "abort" | "drag" | "action" | "onRemove" | "multiple" | "
|
1304
|
+
}>>, "disabled" | "name" | "data" | "onChange" | "onError" | "onProgress" | "submit" | "abort" | "drag" | "action" | "onRemove" | "multiple" | "accept" | "listType" | "beforeUpload" | "autoUpload" | "fileList" | "onPreview" | "onSuccess" | "onExceed" | "method" | "withCredentials" | "showFileList" | "httpRequest" | "clearFiles" | "handleStart" | "handleRemove"> & ShallowUnwrapRef<{
|
1305
1305
|
abort: (file: UploadFile) => void;
|
1306
1306
|
submit: () => void;
|
1307
1307
|
clearFiles: (states?: UploadStatus[]) => void;
|