bm-admin-ui 1.2.46-alpha → 1.2.48-alpha
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/es/components/attachment/index.d.ts +54 -31
- package/es/components/attachment/index.js +10 -10
- package/es/components/attachment/src/attachment.vue.d.ts +54 -31
- package/es/components/edit-form/index.d.ts +54 -31
- package/es/components/edit-form/src/edit-form.vue.d.ts +54 -31
- package/es/components/editor/index.d.ts +134 -134
- package/es/components/editor/index.js +25 -25
- package/es/components/editor/src/editor.vue.d.ts +134 -134
- package/es/components/float-table/index.d.ts +136 -62
- package/es/components/float-table/index.js +8 -8
- package/es/components/float-table/src/float-table.vue.d.ts +136 -62
- package/es/components/form-create/index.js +10 -2
- package/es/components/over-tooltips/index.d.ts +56 -33
- package/es/components/over-tooltips/index.js +10 -10
- package/es/components/over-tooltips/src/over-tooltips.vue.d.ts +56 -33
- package/es/components/staffs-selector/index.d.ts +13 -0
- package/es/components/staffs-selector/index.js +7 -1
- package/es/components/staffs-selector/src/action.d.ts +4 -0
- package/es/components/staffs-selector/src/staffs-selector.vue.d.ts +13 -0
- package/es/components/upload/index.d.ts +134 -134
- package/es/components/upload/index.js +25 -25
- package/es/components/upload/src/upload.vue.d.ts +134 -134
- package/lib/components/attachment/index.d.ts +54 -31
- package/lib/components/attachment/index.js +9 -9
- package/lib/components/attachment/src/attachment.vue.d.ts +54 -31
- package/lib/components/edit-form/index.d.ts +54 -31
- package/lib/components/edit-form/src/edit-form.vue.d.ts +54 -31
- package/lib/components/editor/index.d.ts +134 -134
- package/lib/components/editor/index.js +24 -24
- package/lib/components/editor/src/editor.vue.d.ts +134 -134
- package/lib/components/float-table/index.d.ts +136 -62
- package/lib/components/float-table/index.js +7 -7
- package/lib/components/float-table/src/float-table.vue.d.ts +136 -62
- package/lib/components/form-create/index.js +10 -2
- package/lib/components/over-tooltips/index.d.ts +56 -33
- package/lib/components/over-tooltips/index.js +9 -9
- package/lib/components/over-tooltips/src/over-tooltips.vue.d.ts +56 -33
- package/lib/components/staffs-selector/index.d.ts +13 -0
- package/lib/components/staffs-selector/index.js +7 -1
- package/lib/components/staffs-selector/src/action.d.ts +4 -0
- package/lib/components/staffs-selector/src/staffs-selector.vue.d.ts +13 -0
- package/lib/components/upload/index.d.ts +134 -134
- package/lib/components/upload/index.js +24 -24
- package/lib/components/upload/src/upload.vue.d.ts +134 -134
- package/package.json +1 -1
- package/types/components/attachment/index.d.ts +54 -31
- package/types/components/attachment/src/attachment.vue.d.ts +54 -31
- package/types/components/edit-form/index.d.ts +54 -31
- package/types/components/edit-form/src/edit-form.vue.d.ts +54 -31
- package/types/components/editor/index.d.ts +134 -134
- package/types/components/editor/src/editor.vue.d.ts +134 -134
- package/types/components/float-table/index.d.ts +136 -62
- package/types/components/float-table/src/float-table.vue.d.ts +136 -62
- package/types/components/over-tooltips/index.d.ts +56 -33
- package/types/components/over-tooltips/src/over-tooltips.vue.d.ts +56 -33
- package/types/components/staffs-selector/index.d.ts +13 -0
- package/types/components/staffs-selector/src/action.d.ts +4 -0
- package/types/components/staffs-selector/src/staffs-selector.vue.d.ts +13 -0
- package/types/components/upload/index.d.ts +134 -134
- package/types/components/upload/src/upload.vue.d.ts +134 -134
|
@@ -119,143 +119,143 @@ declare const BmEditor: import("bm-admin-ui/es/utils/with-install").SFCWithInsta
|
|
|
119
119
|
initialize: () => void;
|
|
120
120
|
handleUploadSuccess: (e: any) => void;
|
|
121
121
|
handlePaste: (evt: any) => void;
|
|
122
|
-
upload: {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
OverTooltips: import("bm-admin-ui/es/utils/with-install").SFCWithInstall<{
|
|
127
|
-
name: string;
|
|
128
|
-
props: {
|
|
129
|
-
title: {
|
|
130
|
-
type: StringConstructor;
|
|
131
|
-
default: undefined;
|
|
132
|
-
};
|
|
133
|
-
labelTitle: {
|
|
134
|
-
type: StringConstructor;
|
|
135
|
-
default: undefined;
|
|
136
|
-
};
|
|
137
|
-
line: {
|
|
138
|
-
type: NumberConstructor;
|
|
139
|
-
default: number;
|
|
140
|
-
};
|
|
141
|
-
width: {
|
|
142
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
143
|
-
default: number;
|
|
144
|
-
};
|
|
145
|
-
showAlways: {
|
|
146
|
-
type: BooleanConstructor;
|
|
147
|
-
default: boolean;
|
|
148
|
-
};
|
|
149
|
-
};
|
|
150
|
-
setup(props: any, context: any): {
|
|
151
|
-
mySelf: import("vue").Ref<any>;
|
|
152
|
-
handleVisibleChange: (val: any) => void;
|
|
153
|
-
getPopupContainer: () => HTMLElement;
|
|
154
|
-
mSlots: import("vue").Ref<{}>;
|
|
155
|
-
isShow: import("vue").Ref<boolean>;
|
|
156
|
-
openShow: import("vue").Ref<boolean>;
|
|
157
|
-
};
|
|
158
|
-
}>;
|
|
159
|
-
UploadOutlined: import("@ant-design/icons-vue/lib/icons/UploadOutlined").UploadOutlinedIconType;
|
|
160
|
-
LoadingOutlined: import("@ant-design/icons-vue/lib/icons/LoadingOutlined").LoadingOutlinedIconType;
|
|
161
|
-
InboxOutlined: import("@ant-design/icons-vue/lib/icons/InboxOutlined").InboxOutlinedIconType;
|
|
122
|
+
upload: import("vue").DefineComponent<{
|
|
123
|
+
uploadProps: {
|
|
124
|
+
type: import("vue").PropType<import("..").UploadPropsInner>;
|
|
125
|
+
default: () => {};
|
|
162
126
|
};
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
default: () => {};
|
|
167
|
-
};
|
|
168
|
-
extraProps: {
|
|
169
|
-
type: import("vue").PropType<import("..").ExtraProps>;
|
|
170
|
-
default: () => {};
|
|
171
|
-
};
|
|
172
|
-
defaultList: {
|
|
173
|
-
type: import("vue").PropType<import("..").DefaultList>;
|
|
174
|
-
default: () => never[];
|
|
175
|
-
};
|
|
176
|
-
uploadRequest: {
|
|
177
|
-
type: import("vue").PropType<import("..").UploadRequest>;
|
|
178
|
-
default(): () => void;
|
|
179
|
-
};
|
|
180
|
-
cloudReadUrl: {
|
|
181
|
-
type: import("vue").PropType<string>;
|
|
182
|
-
default: string;
|
|
183
|
-
};
|
|
184
|
-
holdProgress: {
|
|
185
|
-
type: import("vue").PropType<number>;
|
|
186
|
-
default: number;
|
|
187
|
-
};
|
|
188
|
-
customErrors: {
|
|
189
|
-
type: import("vue").PropType<import("..").CustomErrors>;
|
|
190
|
-
default(): undefined;
|
|
191
|
-
};
|
|
127
|
+
extraProps: {
|
|
128
|
+
type: import("vue").PropType<import("..").ExtraProps>;
|
|
129
|
+
default: () => {};
|
|
192
130
|
};
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
expose: any;
|
|
197
|
-
}): {
|
|
198
|
-
uploadDisabled: import("vue").ComputedRef<boolean>;
|
|
199
|
-
updateUploadProgress(file: any, progress: any): void;
|
|
200
|
-
customUploadRequest(file: any): void;
|
|
201
|
-
fileIsDelete(file: any): boolean;
|
|
202
|
-
uploadSuccess(data: any, file: any): void;
|
|
203
|
-
uploadError(error: any, file?: any): void;
|
|
204
|
-
deleteFile(uid: any): Promise<void>;
|
|
205
|
-
pictureHoverEnter(uid: string): void;
|
|
206
|
-
pictureHoverLeave(uid: string): void;
|
|
207
|
-
viewOnePicture(item: any): void;
|
|
208
|
-
handleClosePictureView(): void;
|
|
209
|
-
reUpload(e: any, uid: any): void;
|
|
210
|
-
paste(event: ClipboardEvent): void;
|
|
211
|
-
handleReject(e: any): void;
|
|
212
|
-
icons: {
|
|
213
|
-
pdf: string;
|
|
214
|
-
ppt: string;
|
|
215
|
-
excel: string;
|
|
216
|
-
doc: string;
|
|
217
|
-
others: string;
|
|
218
|
-
};
|
|
219
|
-
uploadBarColor: import("vue").Ref<string>;
|
|
220
|
-
uploadedList: import("vue").Ref<any[]>;
|
|
221
|
-
fileList: import("vue").Ref<{}>;
|
|
222
|
-
onepViewImageHover: import("vue").Ref<{}>;
|
|
223
|
-
previewVisible: import("vue").Ref<boolean>;
|
|
224
|
-
onepViewImage: import("vue").Ref<{}>;
|
|
225
|
-
extraConfigs: import("vue").Ref<{
|
|
226
|
-
maxSize: number;
|
|
227
|
-
maxCount: number;
|
|
228
|
-
isAllowDownloadFieldProps: boolean;
|
|
229
|
-
hideDisabledBtn: boolean;
|
|
230
|
-
tips: string;
|
|
231
|
-
showTips: boolean;
|
|
232
|
-
btnClass: string;
|
|
233
|
-
picClass: string;
|
|
234
|
-
alignCenter: boolean;
|
|
235
|
-
canNotViewAccept: string;
|
|
236
|
-
myBtn: boolean;
|
|
237
|
-
showFileName: boolean;
|
|
238
|
-
drag: boolean;
|
|
239
|
-
}>;
|
|
240
|
-
uploadConfigs: import("vue").Ref<{
|
|
241
|
-
multiple: boolean;
|
|
242
|
-
showUploadList: boolean;
|
|
243
|
-
showSlotList: boolean;
|
|
244
|
-
listType: string;
|
|
245
|
-
text: string;
|
|
246
|
-
accept: string;
|
|
247
|
-
data: {};
|
|
248
|
-
name: string;
|
|
249
|
-
disabled: boolean;
|
|
250
|
-
customRequest: ({ file, fileField, data }: {
|
|
251
|
-
file: any;
|
|
252
|
-
fileField: any;
|
|
253
|
-
data: any;
|
|
254
|
-
}) => Promise<void>;
|
|
255
|
-
}>;
|
|
256
|
-
pictureFileTypes: import("vue").Ref<string[]>;
|
|
131
|
+
defaultList: {
|
|
132
|
+
type: import("vue").PropType<import("..").DefaultList>;
|
|
133
|
+
default: () => never[];
|
|
257
134
|
};
|
|
258
|
-
|
|
135
|
+
uploadRequest: {
|
|
136
|
+
type: import("vue").PropType<import("..").UploadRequest>;
|
|
137
|
+
default: () => () => void;
|
|
138
|
+
};
|
|
139
|
+
cloudReadUrl: {
|
|
140
|
+
type: import("vue").PropType<string>;
|
|
141
|
+
default: string;
|
|
142
|
+
};
|
|
143
|
+
holdProgress: {
|
|
144
|
+
type: import("vue").PropType<number>;
|
|
145
|
+
default: number;
|
|
146
|
+
};
|
|
147
|
+
customErrors: {
|
|
148
|
+
type: import("vue").PropType<import("..").CustomErrors>;
|
|
149
|
+
default: () => {};
|
|
150
|
+
};
|
|
151
|
+
}, {
|
|
152
|
+
uploadDisabled: import("vue").ComputedRef<boolean>;
|
|
153
|
+
updateUploadProgress(file: any, progress: any): void;
|
|
154
|
+
customUploadRequest(file: any): void;
|
|
155
|
+
fileIsDelete(file: any): boolean;
|
|
156
|
+
uploadSuccess(data: any, file: any): void;
|
|
157
|
+
uploadError(error: any, file?: any): void;
|
|
158
|
+
deleteFile(uid: any): Promise<void>;
|
|
159
|
+
pictureHoverEnter(uid: string): void;
|
|
160
|
+
pictureHoverLeave(uid: string): void;
|
|
161
|
+
viewOnePicture(item: any): void;
|
|
162
|
+
handleClosePictureView(): void;
|
|
163
|
+
reUpload(e: any, uid: any): void;
|
|
164
|
+
paste(event: ClipboardEvent): void;
|
|
165
|
+
handleReject(e: any): void;
|
|
166
|
+
icons: {
|
|
167
|
+
pdf: string;
|
|
168
|
+
ppt: string;
|
|
169
|
+
excel: string;
|
|
170
|
+
doc: string;
|
|
171
|
+
others: string;
|
|
172
|
+
};
|
|
173
|
+
uploadBarColor: import("vue").Ref<string>;
|
|
174
|
+
uploadedList: import("vue").Ref<any[]>;
|
|
175
|
+
fileList: import("vue").Ref<{}>;
|
|
176
|
+
onepViewImageHover: import("vue").Ref<{}>;
|
|
177
|
+
previewVisible: import("vue").Ref<boolean>;
|
|
178
|
+
onepViewImage: import("vue").Ref<{}>;
|
|
179
|
+
extraConfigs: import("vue").Ref<{
|
|
180
|
+
maxSize: number;
|
|
181
|
+
maxCount: number;
|
|
182
|
+
isAllowDownloadFieldProps: boolean;
|
|
183
|
+
hideDisabledBtn: boolean;
|
|
184
|
+
tips: string;
|
|
185
|
+
showTips: boolean;
|
|
186
|
+
btnClass: string;
|
|
187
|
+
picClass: string;
|
|
188
|
+
alignCenter: boolean;
|
|
189
|
+
canNotViewAccept: string;
|
|
190
|
+
myBtn: boolean;
|
|
191
|
+
showFileName: boolean;
|
|
192
|
+
drag: boolean;
|
|
193
|
+
}>;
|
|
194
|
+
uploadConfigs: import("vue").Ref<{
|
|
195
|
+
multiple: boolean;
|
|
196
|
+
showUploadList: boolean;
|
|
197
|
+
showSlotList: boolean;
|
|
198
|
+
listType: string;
|
|
199
|
+
text: string;
|
|
200
|
+
accept: string;
|
|
201
|
+
data: {};
|
|
202
|
+
name: string;
|
|
203
|
+
disabled: boolean;
|
|
204
|
+
customRequest: ({ file, fileField, data }: {
|
|
205
|
+
file: any;
|
|
206
|
+
fileField: any;
|
|
207
|
+
data: any;
|
|
208
|
+
}) => Promise<void>;
|
|
209
|
+
}>;
|
|
210
|
+
pictureFileTypes: import("vue").Ref<string[]>;
|
|
211
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "success" | "delete" | "update" | "previewFile" | "successFile" | "deleteFile" | "updateDisabledStatus" | "updateIsUploadingStatus")[], "error" | "success" | "delete" | "update" | "previewFile" | "successFile" | "deleteFile" | "updateDisabledStatus" | "updateIsUploadingStatus", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
212
|
+
uploadProps: {
|
|
213
|
+
type: import("vue").PropType<import("..").UploadPropsInner>;
|
|
214
|
+
default: () => {};
|
|
215
|
+
};
|
|
216
|
+
extraProps: {
|
|
217
|
+
type: import("vue").PropType<import("..").ExtraProps>;
|
|
218
|
+
default: () => {};
|
|
219
|
+
};
|
|
220
|
+
defaultList: {
|
|
221
|
+
type: import("vue").PropType<import("..").DefaultList>;
|
|
222
|
+
default: () => never[];
|
|
223
|
+
};
|
|
224
|
+
uploadRequest: {
|
|
225
|
+
type: import("vue").PropType<import("..").UploadRequest>;
|
|
226
|
+
default: () => () => void;
|
|
227
|
+
};
|
|
228
|
+
cloudReadUrl: {
|
|
229
|
+
type: import("vue").PropType<string>;
|
|
230
|
+
default: string;
|
|
231
|
+
};
|
|
232
|
+
holdProgress: {
|
|
233
|
+
type: import("vue").PropType<number>;
|
|
234
|
+
default: number;
|
|
235
|
+
};
|
|
236
|
+
customErrors: {
|
|
237
|
+
type: import("vue").PropType<import("..").CustomErrors>;
|
|
238
|
+
default: () => {};
|
|
239
|
+
};
|
|
240
|
+
}>> & {
|
|
241
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
242
|
+
onSuccess?: ((...args: any[]) => any) | undefined;
|
|
243
|
+
onDelete?: ((...args: any[]) => any) | undefined;
|
|
244
|
+
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
245
|
+
onPreviewFile?: ((...args: any[]) => any) | undefined;
|
|
246
|
+
onSuccessFile?: ((...args: any[]) => any) | undefined;
|
|
247
|
+
onDeleteFile?: ((...args: any[]) => any) | undefined;
|
|
248
|
+
onUpdateDisabledStatus?: ((...args: any[]) => any) | undefined;
|
|
249
|
+
onUpdateIsUploadingStatus?: ((...args: any[]) => any) | undefined;
|
|
250
|
+
}, {
|
|
251
|
+
uploadRequest: import("..").UploadRequest;
|
|
252
|
+
uploadProps: import("..").UploadPropsInner;
|
|
253
|
+
extraProps: import("..").ExtraProps;
|
|
254
|
+
defaultList: import("..").DefaultList;
|
|
255
|
+
cloudReadUrl: string;
|
|
256
|
+
holdProgress: number;
|
|
257
|
+
customErrors: import("..").CustomErrors;
|
|
258
|
+
}>;
|
|
259
259
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "ready" | "change" | "blur" | "update:value" | "getCount")[], "focus" | "ready" | "change" | "blur" | "update:value" | "getCount", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
260
260
|
value: import("vue-types").VueTypeValidableDef<string> & {
|
|
261
261
|
default: string;
|
|
@@ -119,143 +119,143 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
119
119
|
initialize: () => void;
|
|
120
120
|
handleUploadSuccess: (e: any) => void;
|
|
121
121
|
handlePaste: (evt: any) => void;
|
|
122
|
-
upload: {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
OverTooltips: import("../../../utils/with-install").SFCWithInstall<{
|
|
127
|
-
name: string;
|
|
128
|
-
props: {
|
|
129
|
-
title: {
|
|
130
|
-
type: StringConstructor;
|
|
131
|
-
default: undefined;
|
|
132
|
-
};
|
|
133
|
-
labelTitle: {
|
|
134
|
-
type: StringConstructor;
|
|
135
|
-
default: undefined;
|
|
136
|
-
};
|
|
137
|
-
line: {
|
|
138
|
-
type: NumberConstructor;
|
|
139
|
-
default: number;
|
|
140
|
-
};
|
|
141
|
-
width: {
|
|
142
|
-
type: (StringConstructor | NumberConstructor)[];
|
|
143
|
-
default: number;
|
|
144
|
-
};
|
|
145
|
-
showAlways: {
|
|
146
|
-
type: BooleanConstructor;
|
|
147
|
-
default: boolean;
|
|
148
|
-
};
|
|
149
|
-
};
|
|
150
|
-
setup(props: any, context: any): {
|
|
151
|
-
mySelf: import("vue").Ref<any>;
|
|
152
|
-
handleVisibleChange: (val: any) => void;
|
|
153
|
-
getPopupContainer: () => HTMLElement;
|
|
154
|
-
mSlots: import("vue").Ref<{}>;
|
|
155
|
-
isShow: import("vue").Ref<boolean>;
|
|
156
|
-
openShow: import("vue").Ref<boolean>;
|
|
157
|
-
};
|
|
158
|
-
}>;
|
|
159
|
-
UploadOutlined: import("@ant-design/icons-vue/lib/icons/UploadOutlined").UploadOutlinedIconType;
|
|
160
|
-
LoadingOutlined: import("@ant-design/icons-vue/lib/icons/LoadingOutlined").LoadingOutlinedIconType;
|
|
161
|
-
InboxOutlined: import("@ant-design/icons-vue/lib/icons/InboxOutlined").InboxOutlinedIconType;
|
|
122
|
+
upload: import("vue").DefineComponent<{
|
|
123
|
+
uploadProps: {
|
|
124
|
+
type: import("vue").PropType<import("../..").UploadPropsInner>;
|
|
125
|
+
default: () => {};
|
|
162
126
|
};
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
default: () => {};
|
|
167
|
-
};
|
|
168
|
-
extraProps: {
|
|
169
|
-
type: import("vue").PropType<import("../..").ExtraProps>;
|
|
170
|
-
default: () => {};
|
|
171
|
-
};
|
|
172
|
-
defaultList: {
|
|
173
|
-
type: import("vue").PropType<import("../..").DefaultList>;
|
|
174
|
-
default: () => never[];
|
|
175
|
-
};
|
|
176
|
-
uploadRequest: {
|
|
177
|
-
type: import("vue").PropType<import("../..").UploadRequest>;
|
|
178
|
-
default(): () => void;
|
|
179
|
-
};
|
|
180
|
-
cloudReadUrl: {
|
|
181
|
-
type: import("vue").PropType<string>;
|
|
182
|
-
default: string;
|
|
183
|
-
};
|
|
184
|
-
holdProgress: {
|
|
185
|
-
type: import("vue").PropType<number>;
|
|
186
|
-
default: number;
|
|
187
|
-
};
|
|
188
|
-
customErrors: {
|
|
189
|
-
type: import("vue").PropType<import("../..").CustomErrors>;
|
|
190
|
-
default(): undefined;
|
|
191
|
-
};
|
|
127
|
+
extraProps: {
|
|
128
|
+
type: import("vue").PropType<import("../..").ExtraProps>;
|
|
129
|
+
default: () => {};
|
|
192
130
|
};
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
expose: any;
|
|
197
|
-
}): {
|
|
198
|
-
uploadDisabled: import("vue").ComputedRef<boolean>;
|
|
199
|
-
updateUploadProgress(file: any, progress: any): void;
|
|
200
|
-
customUploadRequest(file: any): void;
|
|
201
|
-
fileIsDelete(file: any): boolean;
|
|
202
|
-
uploadSuccess(data: any, file: any): void;
|
|
203
|
-
uploadError(error: any, file?: any): void;
|
|
204
|
-
deleteFile(uid: any): Promise<void>;
|
|
205
|
-
pictureHoverEnter(uid: string): void;
|
|
206
|
-
pictureHoverLeave(uid: string): void;
|
|
207
|
-
viewOnePicture(item: any): void;
|
|
208
|
-
handleClosePictureView(): void;
|
|
209
|
-
reUpload(e: any, uid: any): void;
|
|
210
|
-
paste(event: ClipboardEvent): void;
|
|
211
|
-
handleReject(e: any): void;
|
|
212
|
-
icons: {
|
|
213
|
-
pdf: string;
|
|
214
|
-
ppt: string;
|
|
215
|
-
excel: string;
|
|
216
|
-
doc: string;
|
|
217
|
-
others: string;
|
|
218
|
-
};
|
|
219
|
-
uploadBarColor: import("vue").Ref<string>;
|
|
220
|
-
uploadedList: import("vue").Ref<any[]>;
|
|
221
|
-
fileList: import("vue").Ref<{}>;
|
|
222
|
-
onepViewImageHover: import("vue").Ref<{}>;
|
|
223
|
-
previewVisible: import("vue").Ref<boolean>;
|
|
224
|
-
onepViewImage: import("vue").Ref<{}>;
|
|
225
|
-
extraConfigs: import("vue").Ref<{
|
|
226
|
-
maxSize: number;
|
|
227
|
-
maxCount: number;
|
|
228
|
-
isAllowDownloadFieldProps: boolean;
|
|
229
|
-
hideDisabledBtn: boolean;
|
|
230
|
-
tips: string;
|
|
231
|
-
showTips: boolean;
|
|
232
|
-
btnClass: string;
|
|
233
|
-
picClass: string;
|
|
234
|
-
alignCenter: boolean;
|
|
235
|
-
canNotViewAccept: string;
|
|
236
|
-
myBtn: boolean;
|
|
237
|
-
showFileName: boolean;
|
|
238
|
-
drag: boolean;
|
|
239
|
-
}>;
|
|
240
|
-
uploadConfigs: import("vue").Ref<{
|
|
241
|
-
multiple: boolean;
|
|
242
|
-
showUploadList: boolean;
|
|
243
|
-
showSlotList: boolean;
|
|
244
|
-
listType: string;
|
|
245
|
-
text: string;
|
|
246
|
-
accept: string;
|
|
247
|
-
data: {};
|
|
248
|
-
name: string;
|
|
249
|
-
disabled: boolean;
|
|
250
|
-
customRequest: ({ file, fileField, data }: {
|
|
251
|
-
file: any;
|
|
252
|
-
fileField: any;
|
|
253
|
-
data: any;
|
|
254
|
-
}) => Promise<void>;
|
|
255
|
-
}>;
|
|
256
|
-
pictureFileTypes: import("vue").Ref<string[]>;
|
|
131
|
+
defaultList: {
|
|
132
|
+
type: import("vue").PropType<import("../..").DefaultList>;
|
|
133
|
+
default: () => never[];
|
|
257
134
|
};
|
|
258
|
-
|
|
135
|
+
uploadRequest: {
|
|
136
|
+
type: import("vue").PropType<import("../..").UploadRequest>;
|
|
137
|
+
default: () => () => void;
|
|
138
|
+
};
|
|
139
|
+
cloudReadUrl: {
|
|
140
|
+
type: import("vue").PropType<string>;
|
|
141
|
+
default: string;
|
|
142
|
+
};
|
|
143
|
+
holdProgress: {
|
|
144
|
+
type: import("vue").PropType<number>;
|
|
145
|
+
default: number;
|
|
146
|
+
};
|
|
147
|
+
customErrors: {
|
|
148
|
+
type: import("vue").PropType<import("../..").CustomErrors>;
|
|
149
|
+
default: () => {};
|
|
150
|
+
};
|
|
151
|
+
}, {
|
|
152
|
+
uploadDisabled: import("vue").ComputedRef<boolean>;
|
|
153
|
+
updateUploadProgress(file: any, progress: any): void;
|
|
154
|
+
customUploadRequest(file: any): void;
|
|
155
|
+
fileIsDelete(file: any): boolean;
|
|
156
|
+
uploadSuccess(data: any, file: any): void;
|
|
157
|
+
uploadError(error: any, file?: any): void;
|
|
158
|
+
deleteFile(uid: any): Promise<void>;
|
|
159
|
+
pictureHoverEnter(uid: string): void;
|
|
160
|
+
pictureHoverLeave(uid: string): void;
|
|
161
|
+
viewOnePicture(item: any): void;
|
|
162
|
+
handleClosePictureView(): void;
|
|
163
|
+
reUpload(e: any, uid: any): void;
|
|
164
|
+
paste(event: ClipboardEvent): void;
|
|
165
|
+
handleReject(e: any): void;
|
|
166
|
+
icons: {
|
|
167
|
+
pdf: string;
|
|
168
|
+
ppt: string;
|
|
169
|
+
excel: string;
|
|
170
|
+
doc: string;
|
|
171
|
+
others: string;
|
|
172
|
+
};
|
|
173
|
+
uploadBarColor: import("vue").Ref<string>;
|
|
174
|
+
uploadedList: import("vue").Ref<any[]>;
|
|
175
|
+
fileList: import("vue").Ref<{}>;
|
|
176
|
+
onepViewImageHover: import("vue").Ref<{}>;
|
|
177
|
+
previewVisible: import("vue").Ref<boolean>;
|
|
178
|
+
onepViewImage: import("vue").Ref<{}>;
|
|
179
|
+
extraConfigs: import("vue").Ref<{
|
|
180
|
+
maxSize: number;
|
|
181
|
+
maxCount: number;
|
|
182
|
+
isAllowDownloadFieldProps: boolean;
|
|
183
|
+
hideDisabledBtn: boolean;
|
|
184
|
+
tips: string;
|
|
185
|
+
showTips: boolean;
|
|
186
|
+
btnClass: string;
|
|
187
|
+
picClass: string;
|
|
188
|
+
alignCenter: boolean;
|
|
189
|
+
canNotViewAccept: string;
|
|
190
|
+
myBtn: boolean;
|
|
191
|
+
showFileName: boolean;
|
|
192
|
+
drag: boolean;
|
|
193
|
+
}>;
|
|
194
|
+
uploadConfigs: import("vue").Ref<{
|
|
195
|
+
multiple: boolean;
|
|
196
|
+
showUploadList: boolean;
|
|
197
|
+
showSlotList: boolean;
|
|
198
|
+
listType: string;
|
|
199
|
+
text: string;
|
|
200
|
+
accept: string;
|
|
201
|
+
data: {};
|
|
202
|
+
name: string;
|
|
203
|
+
disabled: boolean;
|
|
204
|
+
customRequest: ({ file, fileField, data }: {
|
|
205
|
+
file: any;
|
|
206
|
+
fileField: any;
|
|
207
|
+
data: any;
|
|
208
|
+
}) => Promise<void>;
|
|
209
|
+
}>;
|
|
210
|
+
pictureFileTypes: import("vue").Ref<string[]>;
|
|
211
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("error" | "success" | "delete" | "update" | "previewFile" | "successFile" | "deleteFile" | "updateDisabledStatus" | "updateIsUploadingStatus")[], "error" | "success" | "delete" | "update" | "previewFile" | "successFile" | "deleteFile" | "updateDisabledStatus" | "updateIsUploadingStatus", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
212
|
+
uploadProps: {
|
|
213
|
+
type: import("vue").PropType<import("../..").UploadPropsInner>;
|
|
214
|
+
default: () => {};
|
|
215
|
+
};
|
|
216
|
+
extraProps: {
|
|
217
|
+
type: import("vue").PropType<import("../..").ExtraProps>;
|
|
218
|
+
default: () => {};
|
|
219
|
+
};
|
|
220
|
+
defaultList: {
|
|
221
|
+
type: import("vue").PropType<import("../..").DefaultList>;
|
|
222
|
+
default: () => never[];
|
|
223
|
+
};
|
|
224
|
+
uploadRequest: {
|
|
225
|
+
type: import("vue").PropType<import("../..").UploadRequest>;
|
|
226
|
+
default: () => () => void;
|
|
227
|
+
};
|
|
228
|
+
cloudReadUrl: {
|
|
229
|
+
type: import("vue").PropType<string>;
|
|
230
|
+
default: string;
|
|
231
|
+
};
|
|
232
|
+
holdProgress: {
|
|
233
|
+
type: import("vue").PropType<number>;
|
|
234
|
+
default: number;
|
|
235
|
+
};
|
|
236
|
+
customErrors: {
|
|
237
|
+
type: import("vue").PropType<import("../..").CustomErrors>;
|
|
238
|
+
default: () => {};
|
|
239
|
+
};
|
|
240
|
+
}>> & {
|
|
241
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
242
|
+
onSuccess?: ((...args: any[]) => any) | undefined;
|
|
243
|
+
onDelete?: ((...args: any[]) => any) | undefined;
|
|
244
|
+
onUpdate?: ((...args: any[]) => any) | undefined;
|
|
245
|
+
onPreviewFile?: ((...args: any[]) => any) | undefined;
|
|
246
|
+
onSuccessFile?: ((...args: any[]) => any) | undefined;
|
|
247
|
+
onDeleteFile?: ((...args: any[]) => any) | undefined;
|
|
248
|
+
onUpdateDisabledStatus?: ((...args: any[]) => any) | undefined;
|
|
249
|
+
onUpdateIsUploadingStatus?: ((...args: any[]) => any) | undefined;
|
|
250
|
+
}, {
|
|
251
|
+
uploadRequest: import("../..").UploadRequest;
|
|
252
|
+
uploadProps: import("../..").UploadPropsInner;
|
|
253
|
+
extraProps: import("../..").ExtraProps;
|
|
254
|
+
defaultList: import("../..").DefaultList;
|
|
255
|
+
cloudReadUrl: string;
|
|
256
|
+
holdProgress: number;
|
|
257
|
+
customErrors: import("../..").CustomErrors;
|
|
258
|
+
}>;
|
|
259
259
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("focus" | "ready" | "change" | "blur" | "update:value" | "getCount")[], "focus" | "ready" | "change" | "blur" | "update:value" | "getCount", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
260
260
|
value: import("vue-types").VueTypeValidableDef<string> & {
|
|
261
261
|
default: string;
|