@dt-frames/ui 1.0.30 → 1.0.32

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.
Files changed (46) hide show
  1. package/es/assets/locales/en.json +95 -1
  2. package/es/assets/locales/zh.json +96 -1
  3. package/es/components/curd/src/components/dialog.d.ts +24 -1
  4. package/es/components/forms/src/components/formButton.d.ts +8 -0
  5. package/es/components/forms/src/components/formIcon.d.ts +41 -0
  6. package/es/components/forms/src/components/formInputUseDialog.d.ts +8 -0
  7. package/es/components/forms/src/components/formItem.d.ts +14 -15
  8. package/es/components/forms/src/const/form.const.d.ts +2 -2
  9. package/es/components/forms/src/hooks/helper.d.ts +1 -1
  10. package/es/components/forms/src/types/form.type.d.ts +2 -0
  11. package/es/components/icons/index.less +6 -0
  12. package/es/components/icons/src/pick-icon.d.ts +8 -0
  13. package/es/components/modal/src/components/close-icon.d.ts +8 -0
  14. package/es/components/modal/src/components/modalFooter.d.ts +16 -0
  15. package/es/components/modal/src/index.d.ts +24 -0
  16. package/es/components/table/index.less +6 -0
  17. package/es/components/table/src/components/setting/Column.d.ts +8 -0
  18. package/es/components/table/src/components/setting/Download.d.ts +40 -0
  19. package/es/components/table/src/components/setting/DownloadCtrl.d.ts +32 -0
  20. package/es/components/table/src/components/setting/Fullscreen.d.ts +8 -0
  21. package/es/components/table/src/index.d.ts +8 -12
  22. package/es/components/table/src/props.d.ts +0 -1
  23. package/es/components/table/src/types/table.type.d.ts +0 -1
  24. package/es/components/tree/index.less +12 -0
  25. package/es/components/upload/src/helper.d.ts +2 -2
  26. package/es/components/upload/src/props.d.ts +1 -1
  27. package/es/components/upload/src/upload.d.ts +15 -10
  28. package/es/index.js +449 -406
  29. package/es/theme/header/components/bread-crumb.d.ts +1 -0
  30. package/es/theme/header/components/index.d.ts +2 -1
  31. package/es/theme/header/components/lang-picker.d.ts +1 -0
  32. package/es/theme/header/components/logo.d.ts +8 -0
  33. package/es/theme/header/components/size.d.ts +282 -0
  34. package/es/theme/header/components/theme-drawer/feature.d.ts +22 -5
  35. package/es/theme/header/components/theme-drawer/switch-item.d.ts +8 -0
  36. package/es/theme/header/index.less +9 -0
  37. package/es/theme/sider/components/basic-menu/basic-menu-item.d.ts +1 -0
  38. package/es/theme/sider/components/basic-menu/basic-menu.d.ts +2 -0
  39. package/es/theme/sider/components/basic-menu/basic-sub-menu-item.d.ts +2 -0
  40. package/es/theme/sider/components/basic-menu/menu-item-content.d.ts +1 -0
  41. package/es/theme/sider/index.less +9 -0
  42. package/package.json +1 -1
  43. package/es/assets/locales/en_US.json +0 -3
  44. package/es/assets/locales/zh_CN.json +0 -3
  45. package/es/components/table/src/components/setting/Size.d.ts +0 -1147
  46. package/es/theme/header/components/theme-drawer/enum.d.ts +0 -5
@@ -1,5 +1,13 @@
1
1
  import { getPopupContainer } from '@dt-frames/core';
2
2
  declare const _sfc_main: import("vue").DefineComponent<{}, {
3
+ t: {
4
+ (key: string): string;
5
+ (key: string, locale: string): string;
6
+ (key: string, locale: string, list: unknown[]): string;
7
+ (key: string, locale: string, named: Record<string, unknown>): string;
8
+ (key: string, list: unknown[]): string;
9
+ (key: string, named: Record<string, unknown>): string;
10
+ };
3
11
  registerDialog: import("../../../../modal/src/types/modal.type").RegisterFn;
4
12
  openModal: (data?: {
5
13
  data?: import("@dt-frames/core").Recordable<any>;
@@ -1148,6 +1156,14 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
1148
1156
  danger: boolean;
1149
1157
  }>;
1150
1158
  DownloadCtrl: import("vue").DefineComponent<{}, {
1159
+ t: {
1160
+ (key: string): string;
1161
+ (key: string, locale: string): string;
1162
+ (key: string, locale: string, list: unknown[]): string;
1163
+ (key: string, locale: string, named: Record<string, unknown>): string;
1164
+ (key: string, list: unknown[]): string;
1165
+ (key: string, named: Record<string, unknown>): string;
1166
+ };
1151
1167
  message: import("ant-design-vue/lib/message").MessageApi;
1152
1168
  state: {
1153
1169
  indeterminate: boolean;
@@ -2531,6 +2547,14 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
2531
2547
  default: boolean;
2532
2548
  };
2533
2549
  }, {
2550
+ t: {
2551
+ (key: string): string;
2552
+ (key: string, locale: string): string;
2553
+ (key: string, locale: string, list: unknown[]): string;
2554
+ (key: string, locale: string, named: Record<string, unknown>): string;
2555
+ (key: string, list: unknown[]): string;
2556
+ (key: string, named: Record<string, unknown>): string;
2557
+ };
2534
2558
  emits: (event: "handleSave" | "handleCancel", ...args: any[]) => void;
2535
2559
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
2536
2560
  buttons: import("vue").PropType<import("@dt-frames/core").ButtonProps[]>;
@@ -2581,6 +2605,14 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
2581
2605
  getAdvanceClass: import("vue").ComputedRef<(string | {
2582
2606
  'basic-arrow--active': boolean;
2583
2607
  })[]>;
2608
+ t: {
2609
+ (key: string): string;
2610
+ (key: string, locale: string): string;
2611
+ (key: string, locale: string, list: unknown[]): string;
2612
+ (key: string, locale: string, named: Record<string, unknown>): string;
2613
+ (key: string, list: unknown[]): string;
2614
+ (key: string, named: Record<string, unknown>): string;
2615
+ };
2584
2616
  toggleAdvanced: () => void;
2585
2617
  handleBtnClick: (button: import("@dt-frames/core").ButtonProps) => void;
2586
2618
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -2637,6 +2669,14 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
2637
2669
  type: BooleanConstructor;
2638
2670
  };
2639
2671
  }, {
2672
+ t: {
2673
+ (key: string): string;
2674
+ (key: string, locale: string): string;
2675
+ (key: string, locale: string, list: unknown[]): string;
2676
+ (key: string, locale: string, named: Record<string, unknown>): string;
2677
+ (key: string, list: unknown[]): string;
2678
+ (key: string, named: Record<string, unknown>): string;
2679
+ };
2640
2680
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
2641
2681
  canFullscreen: {
2642
2682
  type: BooleanConstructor;
@@ -1,4 +1,12 @@
1
1
  declare const _sfc_main: import("vue").DefineComponent<{}, {
2
+ t: {
3
+ (key: string): string;
4
+ (key: string, locale: string): string;
5
+ (key: string, locale: string, list: unknown[]): string;
6
+ (key: string, locale: string, named: Record<string, unknown>): string;
7
+ (key: string, list: unknown[]): string;
8
+ (key: string, named: Record<string, unknown>): string;
9
+ };
2
10
  message: import("ant-design-vue/lib/message").MessageApi;
3
11
  state: {
4
12
  indeterminate: boolean;
@@ -1382,6 +1390,14 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
1382
1390
  default: boolean;
1383
1391
  };
1384
1392
  }, {
1393
+ t: {
1394
+ (key: string): string;
1395
+ (key: string, locale: string): string;
1396
+ (key: string, locale: string, list: unknown[]): string;
1397
+ (key: string, locale: string, named: Record<string, unknown>): string;
1398
+ (key: string, list: unknown[]): string;
1399
+ (key: string, named: Record<string, unknown>): string;
1400
+ };
1385
1401
  emits: (event: "handleSave" | "handleCancel", ...args: any[]) => void;
1386
1402
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1387
1403
  buttons: import("vue").PropType<import("@dt-frames/core").ButtonProps[]>;
@@ -1432,6 +1448,14 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
1432
1448
  getAdvanceClass: import("vue").ComputedRef<(string | {
1433
1449
  'basic-arrow--active': boolean;
1434
1450
  })[]>;
1451
+ t: {
1452
+ (key: string): string;
1453
+ (key: string, locale: string): string;
1454
+ (key: string, locale: string, list: unknown[]): string;
1455
+ (key: string, locale: string, named: Record<string, unknown>): string;
1456
+ (key: string, list: unknown[]): string;
1457
+ (key: string, named: Record<string, unknown>): string;
1458
+ };
1435
1459
  toggleAdvanced: () => void;
1436
1460
  handleBtnClick: (button: import("@dt-frames/core").ButtonProps) => void;
1437
1461
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
@@ -1488,6 +1512,14 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
1488
1512
  type: BooleanConstructor;
1489
1513
  };
1490
1514
  }, {
1515
+ t: {
1516
+ (key: string): string;
1517
+ (key: string, locale: string): string;
1518
+ (key: string, locale: string, list: unknown[]): string;
1519
+ (key: string, locale: string, named: Record<string, unknown>): string;
1520
+ (key: string, list: unknown[]): string;
1521
+ (key: string, named: Record<string, unknown>): string;
1522
+ };
1491
1523
  props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
1492
1524
  canFullscreen: {
1493
1525
  type: BooleanConstructor;
@@ -1,4 +1,12 @@
1
1
  declare const _sfc_main: import("vue").DefineComponent<{}, {
2
+ t: {
3
+ (key: string): string;
4
+ (key: string, locale: string): string;
5
+ (key: string, locale: string, list: unknown[]): string;
6
+ (key: string, locale: string, named: Record<string, unknown>): string;
7
+ (key: string, list: unknown[]): string;
8
+ (key: string, named: Record<string, unknown>): string;
9
+ };
2
10
  table: Omit<import("../../types/table.type").TableActionType & {
3
11
  tableElRef: import("vue").Ref<HTMLElement>;
4
12
  getBind: import("vue").ComputedRef<import("@dt-frames/core").Recordable<any>>;
@@ -1,4 +1,3 @@
1
- import { ExtractPropTypes } from "vue";
2
1
  import { SizeType } from "./types/table.type";
3
2
  import { Recordable } from "@dt-frames/core";
4
3
  declare const _default: import("vue").DefineComponent<{
@@ -86,7 +85,7 @@ declare const _default: import("vue").DefineComponent<{
86
85
  default: boolean;
87
86
  };
88
87
  pagination: {
89
- type: import("vue").PropType<boolean | Partial<ExtractPropTypes<{
88
+ type: import("vue").PropType<boolean | Partial<import("vue").ExtractPropTypes<{
90
89
  total: NumberConstructor;
91
90
  defaultCurrent: NumberConstructor;
92
91
  disabled: {
@@ -161,7 +160,6 @@ declare const _default: import("vue").DefineComponent<{
161
160
  };
162
161
  size: {
163
162
  type: import("vue").PropType<SizeType>;
164
- default: string;
165
163
  };
166
164
  onTableChange: {
167
165
  type: FunctionConstructor;
@@ -212,7 +210,7 @@ declare const _default: import("vue").DefineComponent<{
212
210
  y: string | number;
213
211
  scrollToFirstRowOnChange: boolean;
214
212
  };
215
- loading: (boolean | Partial<ExtractPropTypes<{
213
+ loading: (boolean | Partial<import("vue").ExtractPropTypes<{
216
214
  prefixCls: StringConstructor;
217
215
  spinning: {
218
216
  type: BooleanConstructor;
@@ -225,7 +223,7 @@ declare const _default: import("vue").DefineComponent<{
225
223
  indicator: import("vue-types").VueTypeValidableDef<any>;
226
224
  }>>) & boolean;
227
225
  dataSource: any[];
228
- pagination: boolean | Partial<ExtractPropTypes<{
226
+ pagination: boolean | Partial<import("vue").ExtractPropTypes<{
229
227
  total: NumberConstructor;
230
228
  defaultCurrent: NumberConstructor;
231
229
  disabled: {
@@ -297,13 +295,13 @@ declare const _default: import("vue").DefineComponent<{
297
295
  onMouseleave: (event: Event) => void;
298
296
  };
299
297
  dropdownPrefixCls?: string;
300
- size: "small" | "middle";
298
+ size?: "small" | "middle";
301
299
  bordered: boolean;
302
300
  locale?: import("ant-design-vue/lib/table/interface").TableLocale;
303
301
  onChange?: (pagination: import("ant-design-vue").TablePaginationConfig, filters: Record<string, import("ant-design-vue/lib/table/interface").FilterValue>, sorter: import("ant-design-vue/lib/table/interface").SorterResult<any> | import("ant-design-vue/lib/table/interface").SorterResult<any>[], extra: import("ant-design-vue/lib/table/interface").TableCurrentDataSource<any>) => void;
304
302
  getPopupContainer?: import("ant-design-vue/lib/table/interface").GetPopupContainer;
305
303
  sortDirections?: import("ant-design-vue/lib/table/interface").SortOrder[];
306
- showSorterTooltip?: boolean | Partial<ExtractPropTypes<{
304
+ showSorterTooltip?: boolean | Partial<import("vue").ExtractPropTypes<{
307
305
  title: import("vue-types").VueTypeValidableDef<any>;
308
306
  trigger: import("vue").PropType<import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType | import("ant-design-vue/lib/tooltip/abstractTooltipProps").TriggerType[]>;
309
307
  visible: {
@@ -404,7 +402,7 @@ declare const _default: import("vue").DefineComponent<{
404
402
  onColumnsChange?: (data: import("./types/table.type").ColumnChangeParam[]) => void;
405
403
  }>;
406
404
  getRowClassName: (record: any, index: number) => string;
407
- handleTableChange: (pagination: Partial<ExtractPropTypes<{
405
+ handleTableChange: (pagination: Partial<import("vue").ExtractPropTypes<{
408
406
  total: NumberConstructor;
409
407
  defaultCurrent: NumberConstructor;
410
408
  disabled: {
@@ -463,7 +461,7 @@ declare const _default: import("vue").DefineComponent<{
463
461
  }>>, filters: Partial<Recordable<string[]>>, sorter: import("./types/table.type").SorterResult) => any;
464
462
  getSelectRows: () => Recordable<any>[];
465
463
  handleResizeColumn: (w: any, col: any) => void;
466
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("register" | "columns-change" | "selection-change" | "row-click" | "row-dbClick" | "row-contextmenu" | "row-mouseenter" | "row-mouseleave" | "expanded-rows-change" | "edit-change")[], "register" | "columns-change" | "selection-change" | "row-click" | "row-dbClick" | "row-contextmenu" | "row-mouseenter" | "row-mouseleave" | "expanded-rows-change" | "edit-change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
464
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("register" | "columns-change" | "selection-change" | "row-click" | "row-dbClick" | "row-contextmenu" | "row-mouseenter" | "row-mouseleave" | "expanded-rows-change" | "edit-change")[], "register" | "columns-change" | "selection-change" | "row-click" | "row-dbClick" | "row-contextmenu" | "row-mouseenter" | "row-mouseleave" | "expanded-rows-change" | "edit-change", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
467
465
  clickRowSelect: {
468
466
  type: BooleanConstructor;
469
467
  default: boolean;
@@ -548,7 +546,7 @@ declare const _default: import("vue").DefineComponent<{
548
546
  default: boolean;
549
547
  };
550
548
  pagination: {
551
- type: import("vue").PropType<boolean | Partial<ExtractPropTypes<{
549
+ type: import("vue").PropType<boolean | Partial<import("vue").ExtractPropTypes<{
552
550
  total: NumberConstructor;
553
551
  defaultCurrent: NumberConstructor;
554
552
  disabled: {
@@ -623,7 +621,6 @@ declare const _default: import("vue").DefineComponent<{
623
621
  };
624
622
  size: {
625
623
  type: import("vue").PropType<SizeType>;
626
- default: string;
627
624
  };
628
625
  onTableChange: {
629
626
  type: FunctionConstructor;
@@ -678,7 +675,6 @@ declare const _default: import("vue").DefineComponent<{
678
675
  "onExpanded-rows-change"?: (...args: any[]) => any;
679
676
  "onEdit-change"?: (...args: any[]) => any;
680
677
  }, {
681
- size: SizeType;
682
678
  loading: boolean;
683
679
  bordered: boolean;
684
680
  onDownload: Function;
@@ -163,7 +163,6 @@ export declare const TableProps: {
163
163
  };
164
164
  size: {
165
165
  type: PropType<SizeType>;
166
- default: string;
167
166
  };
168
167
  onTableChange: {
169
168
  type: FunctionConstructor;
@@ -13,7 +13,6 @@ export interface TableRowSelection<T = any> extends ITableRowSelection {
13
13
  }
14
14
  export declare type TableSetting = {
15
15
  download?: boolean;
16
- size?: boolean;
17
16
  setting?: boolean;
18
17
  fullscreen?: boolean;
19
18
  };
@@ -38,4 +38,16 @@
38
38
  font-size: 12px;
39
39
  }
40
40
  }
41
+ }
42
+
43
+ .dt-tree.middle .ant-spin-nested-loading{
44
+ .tree-title{
45
+ font-size: 13px;
46
+ }
47
+ }
48
+
49
+ .dt-tree.large .ant-spin-nested-loading{
50
+ .tree-title{
51
+ font-size: 14px;
52
+ }
41
53
  }
@@ -1,5 +1,5 @@
1
1
  import { Ref } from "vue";
2
- export declare function useHelpers(acceptRef: Ref<string[]>, helpTextRef: Ref<string>, maxNumberRef: Ref<number>, maxSizeRef: Ref<number>): {
2
+ export declare function useHelpers(acceptRef: Ref<string[]>, helpTextRef: Ref<string | boolean>, maxNumberRef: Ref<number>, maxSizeRef: Ref<number>): {
3
3
  getStringAccept: import("vue").ComputedRef<string>;
4
- getHelpText: import("vue").ComputedRef<string>;
4
+ getHelpText: import("vue").ComputedRef<string | boolean>;
5
5
  };
@@ -18,7 +18,7 @@ export declare const basicUploadProps: {
18
18
  default: () => void;
19
19
  };
20
20
  helpText: {
21
- type: PropType<string>;
21
+ type: PropType<string | boolean>;
22
22
  default: string;
23
23
  };
24
24
  multiple: {
@@ -12,7 +12,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
12
12
  default: () => void;
13
13
  };
14
14
  helpText: {
15
- type: import("vue").PropType<string>;
15
+ type: import("vue").PropType<string | boolean>;
16
16
  default: string;
17
17
  };
18
18
  multiple: {
@@ -39,6 +39,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
39
39
  default: boolean;
40
40
  };
41
41
  }, {
42
+ t: {
43
+ (key: string): string;
44
+ (key: string, locale: string): string;
45
+ (key: string, locale: string, list: unknown[]): string;
46
+ (key: string, locale: string, named: Record<string, unknown>): string;
47
+ (key: string, list: unknown[]): string;
48
+ (key: string, named: Record<string, unknown>): string;
49
+ };
42
50
  message: import("ant-design-vue/lib/message").MessageApi;
43
51
  filesRef: import("vue").Ref<any[]>;
44
52
  historyFilesRef: import("vue").Ref<any[]>;
@@ -60,7 +68,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
60
68
  default: () => void;
61
69
  };
62
70
  helpText: {
63
- type: import("vue").PropType<string>;
71
+ type: import("vue").PropType<string | boolean>;
64
72
  default: string;
65
73
  };
66
74
  multiple: {
@@ -90,11 +98,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
90
98
  [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any);
91
99
  }>>;
92
100
  accept: import("vue").Ref<string[]>;
93
- helpText: import("vue").Ref<string>;
101
+ helpText: import("vue").Ref<string | boolean>;
94
102
  maxNumber: import("vue").Ref<number>;
95
103
  maxSize: import("vue").Ref<number>;
96
104
  getStringAccept: import("vue").ComputedRef<string>;
97
- getHelpText: import("vue").ComputedRef<string>;
105
+ getHelpText: import("vue").ComputedRef<string | boolean>;
98
106
  isImage: (fileType: string) => boolean;
99
107
  registerTable: (...args: any) => void;
100
108
  beforeUpload: (file: File) => boolean;
@@ -1185,7 +1193,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
1185
1193
  };
1186
1194
  size: {
1187
1195
  type: import("vue").PropType<import("../../table/src/types/table.type").SizeType>;
1188
- default: string;
1189
1196
  };
1190
1197
  onTableChange: {
1191
1198
  type: FunctionConstructor;
@@ -1321,7 +1328,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1321
1328
  onMouseleave: (event: Event) => void;
1322
1329
  };
1323
1330
  dropdownPrefixCls?: string;
1324
- size: "small" | "middle";
1331
+ size?: "small" | "middle";
1325
1332
  bordered: boolean;
1326
1333
  locale?: import("ant-design-vue/lib/table/interface").TableLocale;
1327
1334
  onChange?: (pagination: import("ant-design-vue").TablePaginationConfig, filters: Record<string, import("ant-design-vue/lib/table/interface").FilterValue>, sorter: import("ant-design-vue/lib/table/interface").SorterResult<any> | import("ant-design-vue/lib/table/interface").SorterResult<any>[], extra: import("ant-design-vue/lib/table/interface").TableCurrentDataSource<any>) => void;
@@ -1647,7 +1654,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
1647
1654
  };
1648
1655
  size: {
1649
1656
  type: import("vue").PropType<import("../../table/src/types/table.type").SizeType>;
1650
- default: string;
1651
1657
  };
1652
1658
  onTableChange: {
1653
1659
  type: FunctionConstructor;
@@ -1702,7 +1708,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
1702
1708
  "onExpanded-rows-change"?: (...args: any[]) => any;
1703
1709
  "onEdit-change"?: (...args: any[]) => any;
1704
1710
  }, {
1705
- size: import("../../table/src/types/table.type").SizeType;
1706
1711
  loading: boolean;
1707
1712
  bordered: boolean;
1708
1713
  onDownload: Function;
@@ -1749,7 +1754,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1749
1754
  default: () => void;
1750
1755
  };
1751
1756
  helpText: {
1752
- type: import("vue").PropType<string>;
1757
+ type: import("vue").PropType<string | boolean>;
1753
1758
  default: string;
1754
1759
  };
1755
1760
  multiple: {
@@ -1779,7 +1784,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1779
1784
  uploadText: string;
1780
1785
  showTemplateDownload: boolean;
1781
1786
  templateDownload: import("@vueuse/shared").Fn;
1782
- helpText: string;
1787
+ helpText: string | boolean;
1783
1788
  multiple: boolean;
1784
1789
  accept: string[];
1785
1790
  maxNumber: number;