@dazhicheng/ui 1.5.153 → 1.5.154

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.
@@ -67,11 +67,6 @@ export declare const ttUploadProps: {
67
67
  readonly type: PropType<boolean>;
68
68
  readonly default: true;
69
69
  };
70
- /** 已上传文件列表(v-model) */
71
- readonly modelValue: {
72
- readonly type: PropType<TtUploadFileItem[]>;
73
- readonly default: () => never[];
74
- };
75
70
  /** 获取 OSS 签名信息的接口 ,不传则使用全局 setup 的 uploadOssApi */
76
71
  readonly uploadOssApi: {
77
72
  readonly type: PropType<(file: File) => Promise<any>> | undefined | null;
@@ -261,7 +256,6 @@ export declare const ttUploadProps: {
261
256
  };
262
257
  export type TtUploadProps = ExtractPropTypes<typeof ttUploadProps>;
263
258
  export interface TtUploadEmits {
264
- (e: "update:modelValue", val: TtUploadFileItem[]): void;
265
259
  /** 每次上传成功后抛出:当前文件项与后端返回的 url */
266
260
  (e: "afterUpload", file: TtUploadFileItem, url: string): void;
267
261
  (e: "preview", file: TtUploadFileItem): void;