next-ui3 1.4.3 → 1.4.5

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 (47) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/index.full.min.js +18 -18
  3. package/dist/index.full.min.mjs +18 -18
  4. package/dist/locale/en.min.js +1 -0
  5. package/dist/locale/en.min.mjs +1 -0
  6. package/dist/locale/zh-cn.min.js +1 -1
  7. package/dist/locale/zh-cn.min.mjs +1 -1
  8. package/dist/utils/index.min.js +1 -1
  9. package/dist/utils/index.min.mjs +1 -1
  10. package/es/components/_base/config/usePresetComponents.d.ts +3 -0
  11. package/es/components/building/src/index.vue.d.ts +1 -7
  12. package/es/components/cascader/src/index.vue.d.ts +1 -4
  13. package/es/components/checkbox/src/index.vue.d.ts +1 -1
  14. package/es/components/checkbox-group/src/index.vue.d.ts +1 -7
  15. package/es/components/date-picker/src/QuarterPicker.vue.d.ts +1 -1
  16. package/es/components/date-picker/src/SemiAnnualPicker.vue.d.ts +1 -1
  17. package/es/components/filter/src/index.vue.d.ts +0 -6
  18. package/es/components/input-number/src/index.vue.d.ts +1 -1
  19. package/es/components/radio-group/src/index.vue.d.ts +1 -10
  20. package/es/components/select/src/index.vue.d.ts +1 -7
  21. package/es/components/tag/src/index.vue.d.ts +1 -1
  22. package/es/components/tree-panel/src/index.vue.d.ts +1 -16
  23. package/es/components/tree-select/src/index.vue.d.ts +1 -7
  24. package/es/locale/lang/en.d.ts +91 -0
  25. package/es/locale/lang/zh-cn.d.ts +84 -2
  26. package/es/version.d.ts +1 -1
  27. package/lib/components/_base/config/usePresetComponents.d.ts +3 -0
  28. package/lib/components/building/src/index.vue.d.ts +1 -7
  29. package/lib/components/cascader/src/index.vue.d.ts +1 -4
  30. package/lib/components/checkbox/src/index.vue.d.ts +1 -1
  31. package/lib/components/checkbox-group/src/index.vue.d.ts +1 -7
  32. package/lib/components/date-picker/src/QuarterPicker.vue.d.ts +1 -1
  33. package/lib/components/date-picker/src/SemiAnnualPicker.vue.d.ts +1 -1
  34. package/lib/components/filter/src/index.vue.d.ts +0 -6
  35. package/lib/components/input-number/src/index.vue.d.ts +1 -1
  36. package/lib/components/radio-group/src/index.vue.d.ts +1 -10
  37. package/lib/components/select/src/index.vue.d.ts +1 -7
  38. package/lib/components/tag/src/index.vue.d.ts +1 -1
  39. package/lib/components/tree-panel/src/index.vue.d.ts +1 -16
  40. package/lib/components/tree-select/src/index.vue.d.ts +1 -7
  41. package/lib/locale/lang/en.d.ts +91 -0
  42. package/lib/locale/lang/zh-cn.d.ts +84 -2
  43. package/lib/version.d.ts +1 -1
  44. package/package.json +1 -1
  45. package/theme-chalk/index.css +1 -1
  46. package/theme-chalk/nt-filter.css +1 -1
  47. package/theme-chalk/src/filter.scss +5 -0
@@ -1,8 +1,90 @@
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
+ more: string;
13
+ pleaseInput: string;
14
+ pleaseSelect: string;
15
+ to: string;
16
+ startDate: string;
17
+ endDate: string;
18
+ startTime: string;
19
+ endTime: string;
20
+ };
21
+ building: {
22
+ text: string;
23
+ };
24
+ datePicker: {
25
+ quarter: {
26
+ year: string;
27
+ firstQuarter: string;
28
+ secondQuarter: string;
29
+ thirdQuarter: string;
30
+ fourthQuarter: string;
31
+ first: string;
32
+ second: string;
33
+ third: string;
34
+ fourth: string;
35
+ format: string;
36
+ };
37
+ semiAnnual: {
38
+ year: string;
39
+ firstHalf: string;
40
+ secondHalf: string;
41
+ };
42
+ };
43
+ downloadButton: {
44
+ downloadError: string;
45
+ };
46
+ fileSelect: {
47
+ dragAndDrop: string;
48
+ selectFile: string;
49
+ changeFile: string;
50
+ supportFileTypes: string;
51
+ maxFileSize: string;
52
+ maxFileCount: string;
53
+ };
54
+ fileUpload: {
55
+ drop: string;
56
+ drag: string;
57
+ unsupportedFileType: string;
58
+ maxFileSize: string;
59
+ maxFileCount: string;
60
+ someFilesFailed: string;
61
+ uploadFailed: string;
62
+ retryTip: string;
63
+ };
64
+ filter: {
65
+ search: string;
66
+ reset: string;
67
+ expand: string;
68
+ collapse: string;
69
+ };
70
+ form: {
71
+ requiredInput: string;
72
+ requiredSelect: string;
73
+ };
74
+ table: {
75
+ confirm: string;
76
+ reset: string;
77
+ };
78
+ treePanel: {
79
+ filterPlaceholder: string;
80
+ currentSelected: string;
81
+ };
82
+ upload: {
83
+ upload: string;
84
+ uploadFailed: string;
85
+ supportFileTypes: string;
86
+ maxFileSize: string;
87
+ maxFileCount: string;
6
88
  };
7
89
  };
8
90
  };
package/es/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "1.4.3";
1
+ export declare const version = "1.4.5";
@@ -0,0 +1,3 @@
1
+ export declare const usePresetComponents: () => {
2
+ presetComponents: import("vue").ComputedRef<Record<string, any>>;
3
+ };
@@ -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,91 @@
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
+ more: string;
13
+ pleaseInput: string;
14
+ pleaseSelect: string;
15
+ to: string;
16
+ startDate: string;
17
+ endDate: string;
18
+ startTime: string;
19
+ endTime: string;
20
+ };
21
+ building: {
22
+ text: string;
23
+ };
24
+ datePicker: {
25
+ quarter: {
26
+ year: string;
27
+ firstQuarter: string;
28
+ secondQuarter: string;
29
+ thirdQuarter: string;
30
+ fourthQuarter: string;
31
+ first: string;
32
+ second: string;
33
+ third: string;
34
+ fourth: string;
35
+ format: string;
36
+ };
37
+ semiAnnual: {
38
+ year: string;
39
+ firstHalf: string;
40
+ secondHalf: string;
41
+ };
42
+ };
43
+ downloadButton: {
44
+ downloadError: string;
45
+ };
46
+ fileSelect: {
47
+ dragAndDrop: string;
48
+ selectFile: string;
49
+ changeFile: string;
50
+ supportFileTypes: string;
51
+ maxFileSize: string;
52
+ maxFileCount: string;
53
+ };
54
+ fileUpload: {
55
+ drop: string;
56
+ drag: string;
57
+ unsupportedFileType: string;
58
+ maxFileSize: string;
59
+ maxFileCount: string;
60
+ someFilesFailed: string;
61
+ uploadFailed: string;
62
+ retryTip: string;
63
+ };
64
+ filter: {
65
+ search: string;
66
+ reset: string;
67
+ expand: string;
68
+ collapse: string;
69
+ };
70
+ form: {
71
+ requiredInput: string;
72
+ requiredSelect: string;
73
+ };
74
+ table: {
75
+ confirm: string;
76
+ reset: string;
77
+ };
78
+ treePanel: {
79
+ filterPlaceholder: string;
80
+ currentSelected: string;
81
+ };
82
+ upload: {
83
+ upload: string;
84
+ uploadFailed: string;
85
+ supportFileTypes: string;
86
+ maxFileSize: string;
87
+ maxFileCount: string;
88
+ };
89
+ };
90
+ };
91
+ export default _default;
@@ -1,8 +1,90 @@
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
+ more: string;
13
+ pleaseInput: string;
14
+ pleaseSelect: string;
15
+ to: string;
16
+ startDate: string;
17
+ endDate: string;
18
+ startTime: string;
19
+ endTime: string;
20
+ };
21
+ building: {
22
+ text: string;
23
+ };
24
+ datePicker: {
25
+ quarter: {
26
+ year: string;
27
+ firstQuarter: string;
28
+ secondQuarter: string;
29
+ thirdQuarter: string;
30
+ fourthQuarter: string;
31
+ first: string;
32
+ second: string;
33
+ third: string;
34
+ fourth: string;
35
+ format: string;
36
+ };
37
+ semiAnnual: {
38
+ year: string;
39
+ firstHalf: string;
40
+ secondHalf: string;
41
+ };
42
+ };
43
+ downloadButton: {
44
+ downloadError: string;
45
+ };
46
+ fileSelect: {
47
+ dragAndDrop: string;
48
+ selectFile: string;
49
+ changeFile: string;
50
+ supportFileTypes: string;
51
+ maxFileSize: string;
52
+ maxFileCount: string;
53
+ };
54
+ fileUpload: {
55
+ drop: string;
56
+ drag: string;
57
+ unsupportedFileType: string;
58
+ maxFileSize: string;
59
+ maxFileCount: string;
60
+ someFilesFailed: string;
61
+ uploadFailed: string;
62
+ retryTip: string;
63
+ };
64
+ filter: {
65
+ search: string;
66
+ reset: string;
67
+ expand: string;
68
+ collapse: string;
69
+ };
70
+ form: {
71
+ requiredInput: string;
72
+ requiredSelect: string;
73
+ };
74
+ table: {
75
+ confirm: string;
76
+ reset: string;
77
+ };
78
+ treePanel: {
79
+ filterPlaceholder: string;
80
+ currentSelected: string;
81
+ };
82
+ upload: {
83
+ upload: string;
84
+ uploadFailed: string;
85
+ supportFileTypes: string;
86
+ maxFileSize: string;
87
+ maxFileCount: string;
6
88
  };
7
89
  };
8
90
  };
package/lib/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "1.4.3";
1
+ export declare const version = "1.4.5";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-ui3",
3
- "version": "1.4.3",
3
+ "version": "1.4.5",
4
4
  "description": "A Component Library base on Element Plus for Vue 3",
5
5
  "keywords": [
6
6
  "element-plus",