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.
- package/dist/index.full.min.js +19 -19
- package/dist/index.full.min.mjs +20 -20
- package/dist/locale/en.min.js +1 -0
- package/dist/locale/en.min.mjs +1 -0
- package/dist/locale/zh-cn.min.js +1 -1
- package/dist/locale/zh-cn.min.mjs +1 -1
- package/dist/utils/index.min.js +2 -2
- package/dist/utils/index.min.mjs +2 -2
- package/es/components/building/src/index.vue.d.ts +1 -7
- package/es/components/cascader/src/index.vue.d.ts +1 -4
- package/es/components/checkbox/src/index.vue.d.ts +1 -1
- package/es/components/checkbox-group/src/index.vue.d.ts +1 -7
- package/es/components/date-picker/src/QuarterPicker.vue.d.ts +1 -1
- package/es/components/date-picker/src/SemiAnnualPicker.vue.d.ts +1 -1
- package/es/components/filter/src/index.vue.d.ts +0 -6
- package/es/components/input-number/src/index.vue.d.ts +1 -1
- package/es/components/radio-group/src/index.vue.d.ts +1 -10
- package/es/components/select/src/index.vue.d.ts +1 -7
- package/es/components/tag/src/index.vue.d.ts +1 -1
- package/es/components/tree-panel/src/index.vue.d.ts +1 -16
- package/es/components/tree-select/src/index.vue.d.ts +1 -7
- package/es/locale/lang/en.d.ts +83 -0
- package/es/locale/lang/zh-cn.d.ts +76 -2
- package/es/version.d.ts +1 -1
- package/lib/components/building/src/index.vue.d.ts +1 -7
- package/lib/components/cascader/src/index.vue.d.ts +1 -4
- package/lib/components/checkbox/src/index.vue.d.ts +1 -1
- package/lib/components/checkbox-group/src/index.vue.d.ts +1 -7
- package/lib/components/date-picker/src/QuarterPicker.vue.d.ts +1 -1
- package/lib/components/date-picker/src/SemiAnnualPicker.vue.d.ts +1 -1
- package/lib/components/filter/src/index.vue.d.ts +0 -6
- package/lib/components/input-number/src/index.vue.d.ts +1 -1
- package/lib/components/radio-group/src/index.vue.d.ts +1 -10
- package/lib/components/select/src/index.vue.d.ts +1 -7
- package/lib/components/tag/src/index.vue.d.ts +1 -1
- package/lib/components/tree-panel/src/index.vue.d.ts +1 -16
- package/lib/components/tree-select/src/index.vue.d.ts +1 -7
- package/lib/locale/lang/en.d.ts +83 -0
- package/lib/locale/lang/zh-cn.d.ts +76 -2
- package/lib/version.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,82 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
name: string;
|
|
3
3
|
nt: {
|
|
4
|
-
|
|
5
|
-
|
|
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/lib/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "1.4.
|
|
1
|
+
export declare const version = "1.4.4";
|