@voicenter-team/voicenter-ui-plus 0.2.44 → 0.2.45
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.
|
@@ -72,6 +72,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
72
72
|
type: PropType<ReturnFileType>;
|
|
73
73
|
default: string;
|
|
74
74
|
};
|
|
75
|
+
hideClearAction: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
75
79
|
}, unknown, {
|
|
76
80
|
items: FileUploaded[];
|
|
77
81
|
innerErrorText: string;
|
|
@@ -90,6 +94,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
90
94
|
processFileSize(files: FileUploaded[]): FileUploaded[];
|
|
91
95
|
onTagClose(index: number): void;
|
|
92
96
|
triggerInputClick(): void;
|
|
97
|
+
onClear(): void;
|
|
93
98
|
}, import("vue").DefineComponent<{
|
|
94
99
|
modelValue: {
|
|
95
100
|
type: PropType<string | number | undefined>;
|
|
@@ -376,6 +381,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
376
381
|
type: PropType<ReturnFileType>;
|
|
377
382
|
default: string;
|
|
378
383
|
};
|
|
384
|
+
hideClearAction: {
|
|
385
|
+
type: BooleanConstructor;
|
|
386
|
+
default: boolean;
|
|
387
|
+
};
|
|
379
388
|
}>> & {
|
|
380
389
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
381
390
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
@@ -397,5 +406,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
397
406
|
buttonText: string;
|
|
398
407
|
tagMaxContentWidth: string;
|
|
399
408
|
fileType: ReturnFileType;
|
|
409
|
+
hideClearAction: boolean;
|
|
400
410
|
}, {}>;
|
|
401
411
|
export default _sfc_main;
|