next-ui3 1.4.2 → 1.4.4

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 (41) hide show
  1. package/dist/index.full.min.js +19 -19
  2. package/dist/index.full.min.mjs +20 -20
  3. package/dist/locale/en.min.js +1 -0
  4. package/dist/locale/en.min.mjs +1 -0
  5. package/dist/locale/zh-cn.min.js +1 -1
  6. package/dist/locale/zh-cn.min.mjs +1 -1
  7. package/dist/utils/index.min.js +2 -2
  8. package/dist/utils/index.min.mjs +2 -2
  9. package/es/components/building/src/index.vue.d.ts +1 -7
  10. package/es/components/cascader/src/index.vue.d.ts +1 -4
  11. package/es/components/checkbox/src/index.vue.d.ts +1 -1
  12. package/es/components/checkbox-group/src/index.vue.d.ts +1 -7
  13. package/es/components/date-picker/src/QuarterPicker.vue.d.ts +1 -1
  14. package/es/components/date-picker/src/SemiAnnualPicker.vue.d.ts +1 -1
  15. package/es/components/filter/src/index.vue.d.ts +0 -6
  16. package/es/components/input-number/src/index.vue.d.ts +1 -1
  17. package/es/components/radio-group/src/index.vue.d.ts +1 -10
  18. package/es/components/select/src/index.vue.d.ts +1 -7
  19. package/es/components/tag/src/index.vue.d.ts +1 -1
  20. package/es/components/tree-panel/src/index.vue.d.ts +1 -16
  21. package/es/components/tree-select/src/index.vue.d.ts +1 -7
  22. package/es/locale/lang/en.d.ts +83 -0
  23. package/es/locale/lang/zh-cn.d.ts +76 -2
  24. package/es/version.d.ts +1 -1
  25. package/lib/components/building/src/index.vue.d.ts +1 -7
  26. package/lib/components/cascader/src/index.vue.d.ts +1 -4
  27. package/lib/components/checkbox/src/index.vue.d.ts +1 -1
  28. package/lib/components/checkbox-group/src/index.vue.d.ts +1 -7
  29. package/lib/components/date-picker/src/QuarterPicker.vue.d.ts +1 -1
  30. package/lib/components/date-picker/src/SemiAnnualPicker.vue.d.ts +1 -1
  31. package/lib/components/filter/src/index.vue.d.ts +0 -6
  32. package/lib/components/input-number/src/index.vue.d.ts +1 -1
  33. package/lib/components/radio-group/src/index.vue.d.ts +1 -10
  34. package/lib/components/select/src/index.vue.d.ts +1 -7
  35. package/lib/components/tag/src/index.vue.d.ts +1 -1
  36. package/lib/components/tree-panel/src/index.vue.d.ts +1 -16
  37. package/lib/components/tree-select/src/index.vue.d.ts +1 -7
  38. package/lib/locale/lang/en.d.ts +83 -0
  39. package/lib/locale/lang/zh-cn.d.ts +76 -2
  40. package/lib/version.d.ts +1 -1
  41. package/package.json +1 -1
@@ -23,8 +23,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
23
23
  loadError: string;
24
24
  loaded: boolean;
25
25
  data: () => never[];
26
- loadingText: string;
27
- noDataText: string;
28
26
  valueKey: string;
29
27
  labelKey: string;
30
28
  disabledKey: string;
@@ -38,8 +36,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
38
36
  loadError: string;
39
37
  loaded: boolean;
40
38
  data: () => never[];
41
- loadingText: string;
42
- noDataText: string;
43
39
  valueKey: string;
44
40
  labelKey: string;
45
41
  disabledKey: string;
@@ -52,13 +48,11 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
52
48
  data: any[];
53
49
  valueKey: string;
54
50
  loading: boolean;
55
- loadError: string;
56
51
  loaded: boolean;
57
- loadingText: string;
52
+ loadError: string;
58
53
  labelKey: string;
59
54
  disabledKey: string;
60
55
  childrenKey: string;
61
- noDataText: string;
62
56
  defaultRoot: boolean;
63
57
  }>;
64
58
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -0,0 +1,83 @@
1
+ declare const _default: {
2
+ name: string;
3
+ nt: {
4
+ common: {
5
+ loading: string;
6
+ loadError: string;
7
+ empty: string;
8
+ noMatch: string;
9
+ success: string;
10
+ checkAll: string;
11
+ all: string;
12
+ };
13
+ building: {
14
+ text: string;
15
+ };
16
+ datePicker: {
17
+ quarter: {
18
+ year: string;
19
+ firstQuarter: string;
20
+ secondQuarter: string;
21
+ thirdQuarter: string;
22
+ fourthQuarter: string;
23
+ first: string;
24
+ second: string;
25
+ third: string;
26
+ fourth: string;
27
+ format: string;
28
+ };
29
+ semiAnnual: {
30
+ year: string;
31
+ firstHalf: string;
32
+ secondHalf: string;
33
+ };
34
+ };
35
+ downloadButton: {
36
+ downloadError: string;
37
+ };
38
+ fileSelect: {
39
+ dragAndDrop: string;
40
+ selectFile: string;
41
+ changeFile: string;
42
+ supportFileTypes: string;
43
+ maxFileSize: string;
44
+ maxFileCount: string;
45
+ };
46
+ fileUpload: {
47
+ drop: string;
48
+ drag: string;
49
+ unsupportedFileType: string;
50
+ maxFileSize: string;
51
+ maxFileCount: string;
52
+ someFilesFailed: string;
53
+ uploadFailed: string;
54
+ retryTip: string;
55
+ };
56
+ filter: {
57
+ search: string;
58
+ reset: string;
59
+ expand: string;
60
+ collapse: string;
61
+ };
62
+ form: {
63
+ requiredInput: string;
64
+ requiredSelect: string;
65
+ };
66
+ table: {
67
+ confirm: string;
68
+ reset: string;
69
+ };
70
+ treePanel: {
71
+ filterPlaceholder: string;
72
+ currentSelected: string;
73
+ };
74
+ upload: {
75
+ upload: string;
76
+ uploadFailed: string;
77
+ supportFileTypes: string;
78
+ maxFileSize: string;
79
+ maxFileCount: string;
80
+ };
81
+ };
82
+ };
83
+ export default _default;
@@ -1,8 +1,82 @@
1
1
  declare const _default: {
2
2
  name: string;
3
3
  nt: {
4
- input: {
5
- label: string;
4
+ common: {
5
+ loading: string;
6
+ loadError: string;
7
+ empty: string;
8
+ noMatch: string;
9
+ success: string;
10
+ checkAll: string;
11
+ all: string;
12
+ };
13
+ building: {
14
+ text: string;
15
+ };
16
+ datePicker: {
17
+ quarter: {
18
+ year: string;
19
+ firstQuarter: string;
20
+ secondQuarter: string;
21
+ thirdQuarter: string;
22
+ fourthQuarter: string;
23
+ first: string;
24
+ second: string;
25
+ third: string;
26
+ fourth: string;
27
+ format: string;
28
+ };
29
+ semiAnnual: {
30
+ year: string;
31
+ firstHalf: string;
32
+ secondHalf: string;
33
+ };
34
+ };
35
+ downloadButton: {
36
+ downloadError: string;
37
+ };
38
+ fileSelect: {
39
+ dragAndDrop: string;
40
+ selectFile: string;
41
+ changeFile: string;
42
+ supportFileTypes: string;
43
+ maxFileSize: string;
44
+ maxFileCount: string;
45
+ };
46
+ fileUpload: {
47
+ drop: string;
48
+ drag: string;
49
+ unsupportedFileType: string;
50
+ maxFileSize: string;
51
+ maxFileCount: string;
52
+ someFilesFailed: string;
53
+ uploadFailed: string;
54
+ retryTip: string;
55
+ };
56
+ filter: {
57
+ search: string;
58
+ reset: string;
59
+ expand: string;
60
+ collapse: string;
61
+ };
62
+ form: {
63
+ requiredInput: string;
64
+ requiredSelect: string;
65
+ };
66
+ table: {
67
+ confirm: string;
68
+ reset: string;
69
+ };
70
+ treePanel: {
71
+ filterPlaceholder: string;
72
+ currentSelected: string;
73
+ };
74
+ upload: {
75
+ upload: string;
76
+ uploadFailed: string;
77
+ supportFileTypes: string;
78
+ maxFileSize: string;
79
+ maxFileCount: string;
6
80
  };
7
81
  };
8
82
  };
package/es/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "1.4.2";
1
+ export declare const version = "1.4.4";
@@ -1,13 +1,7 @@
1
1
  type __VLS_Props = {
2
2
  text?: string;
3
3
  };
4
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_Props>, {
5
- text: string;
6
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_Props>, {
7
- text: string;
8
- }>>>, {
9
- text: string;
10
- }>;
4
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_Props>, {}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_Props>, {}>>>, {}>;
11
5
  export default _default;
12
6
  type __VLS_WithDefaults<P, D> = {
13
7
  [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
@@ -22,7 +22,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
22
22
  loading: boolean;
23
23
  loadError: string;
24
24
  loaded: boolean;
25
- loadingText: string;
26
25
  valueKey: string;
27
26
  labelKey: string;
28
27
  disabledKey: string;
@@ -36,7 +35,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
36
35
  loading: boolean;
37
36
  loadError: string;
38
37
  loaded: boolean;
39
- loadingText: string;
40
38
  valueKey: string;
41
39
  labelKey: string;
42
40
  disabledKey: string;
@@ -49,9 +47,8 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
49
47
  }, {
50
48
  valueKey: string;
51
49
  loading: boolean;
52
- loadError: string;
53
50
  loaded: boolean;
54
- loadingText: string;
51
+ loadError: string;
55
52
  labelKey: string;
56
53
  disabledKey: string;
57
54
  childrenKey: string;
@@ -47,11 +47,11 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
47
47
  size: "default" | "small" | "large";
48
48
  disabled: boolean;
49
49
  validateEvent: boolean;
50
+ border: boolean;
50
51
  trueLabel: string | number | boolean;
51
52
  falseLabel: string | number | boolean;
52
53
  trueValue: string | number | boolean;
53
54
  falseValue: string | number | boolean;
54
- border: boolean;
55
55
  indeterminate: boolean;
56
56
  }>;
57
57
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -42,8 +42,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
42
42
  loading: boolean;
43
43
  loadError: string;
44
44
  loaded: boolean;
45
- loadingText: string;
46
- noDataText: string;
47
45
  valueKey: string;
48
46
  labelKey: string;
49
47
  disabledKey: string;
@@ -57,8 +55,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
57
55
  loading: boolean;
58
56
  loadError: string;
59
57
  loaded: boolean;
60
- loadingText: string;
61
- noDataText: string;
62
58
  valueKey: string;
63
59
  labelKey: string;
64
60
  disabledKey: string;
@@ -69,12 +65,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
69
65
  type: "default" | "button" | "border" | "block";
70
66
  valueKey: string;
71
67
  loading: boolean;
72
- loadError: string;
73
68
  loaded: boolean;
74
- loadingText: string;
69
+ loadError: string;
75
70
  labelKey: string;
76
71
  disabledKey: string;
77
- noDataText: string;
78
72
  }>;
79
73
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
80
74
  export default _default;
@@ -70,9 +70,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
70
70
  modelValue: string;
71
71
  placeholder: string;
72
72
  clearable: boolean;
73
+ width: string;
73
74
  format: string;
74
75
  valueFormat: string;
75
- width: string;
76
76
  disabledDate: (val: Date) => boolean;
77
77
  customStyle: string | object;
78
78
  }>;
@@ -66,9 +66,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
66
66
  modelValue: string;
67
67
  placeholder: string;
68
68
  clearable: boolean;
69
+ width: string;
69
70
  format: string;
70
71
  valueFormat: string;
71
- width: string;
72
72
  disabledDate: (val: Date) => boolean;
73
73
  }>;
74
74
  export default _default;
@@ -32,8 +32,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
32
32
  itemWidth: number;
33
33
  lines: number;
34
34
  showReset: boolean;
35
- searchButtonText: string;
36
- resetButtonText: string;
37
35
  useConfirm: boolean;
38
36
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
39
37
  search: (...args: any[]) => void;
@@ -44,8 +42,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
44
42
  itemWidth: number;
45
43
  lines: number;
46
44
  showReset: boolean;
47
- searchButtonText: string;
48
- resetButtonText: string;
49
45
  useConfirm: boolean;
50
46
  }>>> & {
51
47
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
@@ -56,8 +52,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
56
52
  lines: number;
57
53
  itemWidth: number;
58
54
  showReset: boolean;
59
- searchButtonText: string;
60
- resetButtonText: string;
61
55
  useConfirm: boolean;
62
56
  }>;
63
57
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -78,9 +78,9 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
78
78
  lazy: boolean;
79
79
  validateEvent: boolean;
80
80
  bold: boolean;
81
+ align: "left" | "right" | "center";
81
82
  min: number;
82
83
  max: number;
83
- align: "left" | "right" | "center";
84
84
  precision: number | number[];
85
85
  padding: boolean;
86
86
  cursorEndWhenFocus: boolean;
@@ -37,14 +37,11 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
37
37
  loading: boolean;
38
38
  loadError: string;
39
39
  loaded: boolean;
40
- loadingText: string;
41
- noDataText: string;
42
40
  valueKey: string;
43
41
  labelKey: string;
44
42
  disabledKey: string;
45
43
  showAll: boolean;
46
44
  allValue: string;
47
- allText: string;
48
45
  }>, {
49
46
  getCheckedNodes(): any[];
50
47
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
@@ -54,29 +51,23 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
54
51
  loading: boolean;
55
52
  loadError: string;
56
53
  loaded: boolean;
57
- loadingText: string;
58
- noDataText: string;
59
54
  valueKey: string;
60
55
  labelKey: string;
61
56
  disabledKey: string;
62
57
  showAll: boolean;
63
58
  allValue: string;
64
- allText: string;
65
59
  }>>> & {
66
60
  onLoad?: ((...args: any[]) => any) | undefined;
67
61
  }, {
68
62
  type: "default" | "button" | "border" | "flex" | "custom";
69
63
  valueKey: string;
70
64
  loading: boolean;
71
- loadError: string;
72
65
  loaded: boolean;
73
- loadingText: string;
66
+ loadError: string;
74
67
  labelKey: string;
75
68
  disabledKey: string;
76
69
  showAll: boolean;
77
- allText: string;
78
70
  allValue: any;
79
- noDataText: string;
80
71
  }>;
81
72
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
82
73
  export default _default;
@@ -39,8 +39,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
39
39
  loading: boolean;
40
40
  loadError: string;
41
41
  loaded: boolean;
42
- loadingText: string;
43
- noDataText: string;
44
42
  valueKey: string;
45
43
  labelKey: string;
46
44
  disabledKey: string;
@@ -56,8 +54,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
56
54
  loading: boolean;
57
55
  loadError: string;
58
56
  loaded: boolean;
59
- loadingText: string;
60
- noDataText: string;
61
57
  valueKey: string;
62
58
  labelKey: string;
63
59
  disabledKey: string;
@@ -72,12 +68,10 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
72
68
  }, {
73
69
  valueKey: string;
74
70
  loading: boolean;
75
- loadError: string;
76
71
  loaded: boolean;
77
- loadingText: string;
72
+ loadError: string;
78
73
  labelKey: string;
79
74
  disabledKey: string;
80
- noDataText: string;
81
75
  excludeValues: string | number | string[] | number[];
82
76
  preserve: boolean;
83
77
  cacheData: any[];
@@ -43,9 +43,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
43
43
  size: "large" | "default" | "small";
44
44
  disabled: boolean;
45
45
  placeholder: string;
46
+ width: string;
46
47
  collapseTags: boolean;
47
48
  collapseTagsTooltip: boolean;
48
- width: string;
49
49
  closable: boolean;
50
50
  tags: Tag[];
51
51
  maxDisplayCount: number;
@@ -44,11 +44,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
44
44
  childrenKey: string;
45
45
  clearable: boolean;
46
46
  filterable: boolean;
47
- filterPlaceholder: string;
48
- loadingText: string;
49
- noDataText: string;
50
- noMatchText: string;
51
- label: string;
52
47
  showCurrent: boolean;
53
48
  showHeader: boolean;
54
49
  disabled: boolean;
@@ -68,11 +63,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
68
63
  childrenKey: string;
69
64
  clearable: boolean;
70
65
  filterable: boolean;
71
- filterPlaceholder: string;
72
- loadingText: string;
73
- noDataText: string;
74
- noMatchText: string;
75
- label: string;
76
66
  showCurrent: boolean;
77
67
  showHeader: boolean;
78
68
  disabled: boolean;
@@ -80,21 +70,16 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
80
70
  onChange?: ((...args: any[]) => any) | undefined;
81
71
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
82
72
  }, {
83
- label: string;
84
73
  disabled: boolean;
85
74
  lazy: boolean;
86
75
  valueKey: string;
87
76
  clearable: boolean;
88
- loadingText: string;
77
+ showHeader: boolean;
89
78
  labelKey: string;
90
79
  disabledKey: string;
91
80
  childrenKey: string;
92
81
  filterable: boolean;
93
- noDataText: string;
94
- showHeader: boolean;
95
- noMatchText: string;
96
82
  watchQueryParams: boolean;
97
- filterPlaceholder: string;
98
83
  showCurrent: boolean;
99
84
  }>;
100
85
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -23,8 +23,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
23
23
  loadError: string;
24
24
  loaded: boolean;
25
25
  data: () => never[];
26
- loadingText: string;
27
- noDataText: string;
28
26
  valueKey: string;
29
27
  labelKey: string;
30
28
  disabledKey: string;
@@ -38,8 +36,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
38
36
  loadError: string;
39
37
  loaded: boolean;
40
38
  data: () => never[];
41
- loadingText: string;
42
- noDataText: string;
43
39
  valueKey: string;
44
40
  labelKey: string;
45
41
  disabledKey: string;
@@ -52,13 +48,11 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
52
48
  data: any[];
53
49
  valueKey: string;
54
50
  loading: boolean;
55
- loadError: string;
56
51
  loaded: boolean;
57
- loadingText: string;
52
+ loadError: string;
58
53
  labelKey: string;
59
54
  disabledKey: string;
60
55
  childrenKey: string;
61
- noDataText: string;
62
56
  defaultRoot: boolean;
63
57
  }>;
64
58
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
@@ -0,0 +1,83 @@
1
+ declare const _default: {
2
+ name: string;
3
+ nt: {
4
+ common: {
5
+ loading: string;
6
+ loadError: string;
7
+ empty: string;
8
+ noMatch: string;
9
+ success: string;
10
+ checkAll: string;
11
+ all: string;
12
+ };
13
+ building: {
14
+ text: string;
15
+ };
16
+ datePicker: {
17
+ quarter: {
18
+ year: string;
19
+ firstQuarter: string;
20
+ secondQuarter: string;
21
+ thirdQuarter: string;
22
+ fourthQuarter: string;
23
+ first: string;
24
+ second: string;
25
+ third: string;
26
+ fourth: string;
27
+ format: string;
28
+ };
29
+ semiAnnual: {
30
+ year: string;
31
+ firstHalf: string;
32
+ secondHalf: string;
33
+ };
34
+ };
35
+ downloadButton: {
36
+ downloadError: string;
37
+ };
38
+ fileSelect: {
39
+ dragAndDrop: string;
40
+ selectFile: string;
41
+ changeFile: string;
42
+ supportFileTypes: string;
43
+ maxFileSize: string;
44
+ maxFileCount: string;
45
+ };
46
+ fileUpload: {
47
+ drop: string;
48
+ drag: string;
49
+ unsupportedFileType: string;
50
+ maxFileSize: string;
51
+ maxFileCount: string;
52
+ someFilesFailed: string;
53
+ uploadFailed: string;
54
+ retryTip: string;
55
+ };
56
+ filter: {
57
+ search: string;
58
+ reset: string;
59
+ expand: string;
60
+ collapse: string;
61
+ };
62
+ form: {
63
+ requiredInput: string;
64
+ requiredSelect: string;
65
+ };
66
+ table: {
67
+ confirm: string;
68
+ reset: string;
69
+ };
70
+ treePanel: {
71
+ filterPlaceholder: string;
72
+ currentSelected: string;
73
+ };
74
+ upload: {
75
+ upload: string;
76
+ uploadFailed: string;
77
+ supportFileTypes: string;
78
+ maxFileSize: string;
79
+ maxFileCount: string;
80
+ };
81
+ };
82
+ };
83
+ export default _default;