lew-ui 2.6.0 → 2.6.2
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/components/dropdown/src/LewDropdown.vue.d.ts +13 -0
- package/dist/components/dropdown/src/props.d.ts +12 -0
- package/dist/components/menu-tree/src/LewMenuTreeItem.vue.d.ts +8 -44
- package/dist/components/menu-tree/src/props.d.ts +3 -24
- package/dist/components/table/src/LewTable.vue.d.ts +1 -1
- package/dist/components/tree/src/LewTree.vue.d.ts +38 -38
- package/dist/components/tree/src/LewTreeItem.vue.d.ts +111 -0
- package/dist/components/tree/src/props.d.ts +50 -12
- package/dist/components/tree/src/transformTree.d.ts +38 -0
- package/dist/components/tree-select/src/LewTreeSelect.vue.d.ts +8 -10
- package/dist/components/tree-select/src/props.d.ts +1 -1
- package/dist/components/upload/src/props.d.ts +4 -2
- package/dist/directives/context-menu/src/LewContextMenu.vue.d.ts +3 -3
- package/dist/directives/context-menu/src/index.d.ts +30 -5
- package/dist/index.mjs +1578 -1046
- package/dist/index.umd.js +7 -7
- package/dist/locals/de.d.ts +56 -0
- package/dist/locals/en.d.ts +12 -2
- package/dist/locals/es.d.ts +56 -0
- package/dist/locals/fr.d.ts +56 -0
- package/dist/locals/index.d.ts +8 -1
- package/dist/locals/it.d.ts +56 -0
- package/dist/locals/ja.d.ts +56 -0
- package/dist/locals/ko.d.ts +56 -0
- package/dist/locals/pt.d.ts +56 -0
- package/dist/style.css +1 -1
- package/dist/utils/index.d.ts +3 -0
- package/package.json +1 -1
- package/dist/components/tree/src/tree2list.d.ts +0 -25
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
name: string;
|
|
3
|
+
image: {
|
|
4
|
+
fail: string;
|
|
5
|
+
};
|
|
6
|
+
input: {
|
|
7
|
+
placeholder: string;
|
|
8
|
+
copy: string;
|
|
9
|
+
copySuccess: string;
|
|
10
|
+
copyFailed: string;
|
|
11
|
+
};
|
|
12
|
+
inputTag: {
|
|
13
|
+
placeholder: string;
|
|
14
|
+
maxLength: string;
|
|
15
|
+
duplicate: string;
|
|
16
|
+
};
|
|
17
|
+
select: {
|
|
18
|
+
placeholder: string;
|
|
19
|
+
};
|
|
20
|
+
selectMultiple: {
|
|
21
|
+
placeholder: string;
|
|
22
|
+
};
|
|
23
|
+
cascader: {
|
|
24
|
+
placeholder: string;
|
|
25
|
+
};
|
|
26
|
+
textarea: {
|
|
27
|
+
placeholder: string;
|
|
28
|
+
};
|
|
29
|
+
datePicker: {
|
|
30
|
+
Mon: string;
|
|
31
|
+
Tue: string;
|
|
32
|
+
Wed: string;
|
|
33
|
+
Thu: string;
|
|
34
|
+
Fri: string;
|
|
35
|
+
Sat: string;
|
|
36
|
+
Sun: string;
|
|
37
|
+
placeholder: string;
|
|
38
|
+
};
|
|
39
|
+
dateRangePicker: {
|
|
40
|
+
placeholderStart: string;
|
|
41
|
+
placeholderEnd: string;
|
|
42
|
+
};
|
|
43
|
+
upload: {
|
|
44
|
+
dropActive: string;
|
|
45
|
+
click: string;
|
|
46
|
+
paste: string;
|
|
47
|
+
drag: string;
|
|
48
|
+
accept: string;
|
|
49
|
+
limit: string;
|
|
50
|
+
maxFileSize: string;
|
|
51
|
+
};
|
|
52
|
+
pagination: {
|
|
53
|
+
pageSize: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
export default _default;
|
package/dist/locals/en.d.ts
CHANGED
|
@@ -9,13 +9,21 @@ declare const _default: {
|
|
|
9
9
|
copySuccess: string;
|
|
10
10
|
copyFailed: string;
|
|
11
11
|
};
|
|
12
|
-
|
|
12
|
+
inputTag: {
|
|
13
13
|
placeholder: string;
|
|
14
|
+
maxLength: string;
|
|
15
|
+
duplicate: string;
|
|
14
16
|
};
|
|
15
17
|
select: {
|
|
16
18
|
placeholder: string;
|
|
17
19
|
};
|
|
18
|
-
|
|
20
|
+
selectMultiple: {
|
|
21
|
+
placeholder: string;
|
|
22
|
+
};
|
|
23
|
+
cascader: {
|
|
24
|
+
placeholder: string;
|
|
25
|
+
};
|
|
26
|
+
textarea: {
|
|
19
27
|
placeholder: string;
|
|
20
28
|
};
|
|
21
29
|
datePicker: {
|
|
@@ -27,6 +35,8 @@ declare const _default: {
|
|
|
27
35
|
Sat: string;
|
|
28
36
|
Sun: string;
|
|
29
37
|
placeholder: string;
|
|
38
|
+
};
|
|
39
|
+
dateRangePicker: {
|
|
30
40
|
placeholderStart: string;
|
|
31
41
|
placeholderEnd: string;
|
|
32
42
|
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
name: string;
|
|
3
|
+
image: {
|
|
4
|
+
fail: string;
|
|
5
|
+
};
|
|
6
|
+
input: {
|
|
7
|
+
placeholder: string;
|
|
8
|
+
copy: string;
|
|
9
|
+
copySuccess: string;
|
|
10
|
+
copyFailed: string;
|
|
11
|
+
};
|
|
12
|
+
inputTag: {
|
|
13
|
+
placeholder: string;
|
|
14
|
+
maxLength: string;
|
|
15
|
+
duplicate: string;
|
|
16
|
+
};
|
|
17
|
+
select: {
|
|
18
|
+
placeholder: string;
|
|
19
|
+
};
|
|
20
|
+
selectMultiple: {
|
|
21
|
+
placeholder: string;
|
|
22
|
+
};
|
|
23
|
+
cascader: {
|
|
24
|
+
placeholder: string;
|
|
25
|
+
};
|
|
26
|
+
textarea: {
|
|
27
|
+
placeholder: string;
|
|
28
|
+
};
|
|
29
|
+
datePicker: {
|
|
30
|
+
Mon: string;
|
|
31
|
+
Tue: string;
|
|
32
|
+
Wed: string;
|
|
33
|
+
Thu: string;
|
|
34
|
+
Fri: string;
|
|
35
|
+
Sat: string;
|
|
36
|
+
Sun: string;
|
|
37
|
+
placeholder: string;
|
|
38
|
+
};
|
|
39
|
+
dateRangePicker: {
|
|
40
|
+
placeholderStart: string;
|
|
41
|
+
placeholderEnd: string;
|
|
42
|
+
};
|
|
43
|
+
upload: {
|
|
44
|
+
dropActive: string;
|
|
45
|
+
click: string;
|
|
46
|
+
paste: string;
|
|
47
|
+
drag: string;
|
|
48
|
+
accept: string;
|
|
49
|
+
limit: string;
|
|
50
|
+
maxFileSize: string;
|
|
51
|
+
};
|
|
52
|
+
pagination: {
|
|
53
|
+
pageSize: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
export default _default;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
name: string;
|
|
3
|
+
image: {
|
|
4
|
+
fail: string;
|
|
5
|
+
};
|
|
6
|
+
input: {
|
|
7
|
+
placeholder: string;
|
|
8
|
+
copy: string;
|
|
9
|
+
copySuccess: string;
|
|
10
|
+
copyFailed: string;
|
|
11
|
+
};
|
|
12
|
+
inputTag: {
|
|
13
|
+
placeholder: string;
|
|
14
|
+
maxLength: string;
|
|
15
|
+
duplicate: string;
|
|
16
|
+
};
|
|
17
|
+
select: {
|
|
18
|
+
placeholder: string;
|
|
19
|
+
};
|
|
20
|
+
selectMultiple: {
|
|
21
|
+
placeholder: string;
|
|
22
|
+
};
|
|
23
|
+
cascader: {
|
|
24
|
+
placeholder: string;
|
|
25
|
+
};
|
|
26
|
+
textarea: {
|
|
27
|
+
placeholder: string;
|
|
28
|
+
};
|
|
29
|
+
datePicker: {
|
|
30
|
+
Mon: string;
|
|
31
|
+
Tue: string;
|
|
32
|
+
Wed: string;
|
|
33
|
+
Thu: string;
|
|
34
|
+
Fri: string;
|
|
35
|
+
Sat: string;
|
|
36
|
+
Sun: string;
|
|
37
|
+
placeholder: string;
|
|
38
|
+
};
|
|
39
|
+
dateRangePicker: {
|
|
40
|
+
placeholderStart: string;
|
|
41
|
+
placeholderEnd: string;
|
|
42
|
+
};
|
|
43
|
+
upload: {
|
|
44
|
+
dropActive: string;
|
|
45
|
+
click: string;
|
|
46
|
+
paste: string;
|
|
47
|
+
drag: string;
|
|
48
|
+
accept: string;
|
|
49
|
+
limit: string;
|
|
50
|
+
maxFileSize: string;
|
|
51
|
+
};
|
|
52
|
+
pagination: {
|
|
53
|
+
pageSize: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
export default _default;
|
package/dist/locals/index.d.ts
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
import { default as en } from './en';
|
|
2
2
|
import { default as zh } from './zh';
|
|
3
|
+
import { default as ja } from './ja';
|
|
4
|
+
import { default as ko } from './ko';
|
|
5
|
+
import { default as fr } from './fr';
|
|
6
|
+
import { default as it } from './it';
|
|
7
|
+
import { default as es } from './es';
|
|
8
|
+
import { default as de } from './de';
|
|
9
|
+
import { default as pt } from './pt';
|
|
3
10
|
|
|
4
11
|
export declare const setLocale: (locale: string) => void;
|
|
5
12
|
export declare const getLocale: () => any;
|
|
6
13
|
export declare const useI18n: () => any;
|
|
7
14
|
export declare const locale: any;
|
|
8
|
-
export { en, zh };
|
|
15
|
+
export { en, zh, de, pt, fr, it, es, ko, ja };
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
name: string;
|
|
3
|
+
image: {
|
|
4
|
+
fail: string;
|
|
5
|
+
};
|
|
6
|
+
input: {
|
|
7
|
+
placeholder: string;
|
|
8
|
+
copy: string;
|
|
9
|
+
copySuccess: string;
|
|
10
|
+
copyFailed: string;
|
|
11
|
+
};
|
|
12
|
+
inputTag: {
|
|
13
|
+
placeholder: string;
|
|
14
|
+
maxLength: string;
|
|
15
|
+
duplicate: string;
|
|
16
|
+
};
|
|
17
|
+
select: {
|
|
18
|
+
placeholder: string;
|
|
19
|
+
};
|
|
20
|
+
selectMultiple: {
|
|
21
|
+
placeholder: string;
|
|
22
|
+
};
|
|
23
|
+
cascader: {
|
|
24
|
+
placeholder: string;
|
|
25
|
+
};
|
|
26
|
+
textarea: {
|
|
27
|
+
placeholder: string;
|
|
28
|
+
};
|
|
29
|
+
datePicker: {
|
|
30
|
+
Mon: string;
|
|
31
|
+
Tue: string;
|
|
32
|
+
Wed: string;
|
|
33
|
+
Thu: string;
|
|
34
|
+
Fri: string;
|
|
35
|
+
Sat: string;
|
|
36
|
+
Sun: string;
|
|
37
|
+
placeholder: string;
|
|
38
|
+
};
|
|
39
|
+
dateRangePicker: {
|
|
40
|
+
placeholderStart: string;
|
|
41
|
+
placeholderEnd: string;
|
|
42
|
+
};
|
|
43
|
+
upload: {
|
|
44
|
+
dropActive: string;
|
|
45
|
+
click: string;
|
|
46
|
+
paste: string;
|
|
47
|
+
drag: string;
|
|
48
|
+
accept: string;
|
|
49
|
+
limit: string;
|
|
50
|
+
maxFileSize: string;
|
|
51
|
+
};
|
|
52
|
+
pagination: {
|
|
53
|
+
pageSize: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
export default _default;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
name: string;
|
|
3
|
+
image: {
|
|
4
|
+
fail: string;
|
|
5
|
+
};
|
|
6
|
+
input: {
|
|
7
|
+
placeholder: string;
|
|
8
|
+
copy: string;
|
|
9
|
+
copySuccess: string;
|
|
10
|
+
copyFailed: string;
|
|
11
|
+
};
|
|
12
|
+
inputTag: {
|
|
13
|
+
placeholder: string;
|
|
14
|
+
maxLength: string;
|
|
15
|
+
duplicate: string;
|
|
16
|
+
};
|
|
17
|
+
select: {
|
|
18
|
+
placeholder: string;
|
|
19
|
+
};
|
|
20
|
+
selectMultiple: {
|
|
21
|
+
placeholder: string;
|
|
22
|
+
};
|
|
23
|
+
cascader: {
|
|
24
|
+
placeholder: string;
|
|
25
|
+
};
|
|
26
|
+
textarea: {
|
|
27
|
+
placeholder: string;
|
|
28
|
+
};
|
|
29
|
+
datePicker: {
|
|
30
|
+
Mon: string;
|
|
31
|
+
Tue: string;
|
|
32
|
+
Wed: string;
|
|
33
|
+
Thu: string;
|
|
34
|
+
Fri: string;
|
|
35
|
+
Sat: string;
|
|
36
|
+
Sun: string;
|
|
37
|
+
placeholder: string;
|
|
38
|
+
};
|
|
39
|
+
dateRangePicker: {
|
|
40
|
+
placeholderStart: string;
|
|
41
|
+
placeholderEnd: string;
|
|
42
|
+
};
|
|
43
|
+
upload: {
|
|
44
|
+
dropActive: string;
|
|
45
|
+
click: string;
|
|
46
|
+
paste: string;
|
|
47
|
+
drag: string;
|
|
48
|
+
accept: string;
|
|
49
|
+
limit: string;
|
|
50
|
+
maxFileSize: string;
|
|
51
|
+
};
|
|
52
|
+
pagination: {
|
|
53
|
+
pageSize: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
export default _default;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
name: string;
|
|
3
|
+
image: {
|
|
4
|
+
fail: string;
|
|
5
|
+
};
|
|
6
|
+
input: {
|
|
7
|
+
placeholder: string;
|
|
8
|
+
copy: string;
|
|
9
|
+
copySuccess: string;
|
|
10
|
+
copyFailed: string;
|
|
11
|
+
};
|
|
12
|
+
inputTag: {
|
|
13
|
+
placeholder: string;
|
|
14
|
+
maxLength: string;
|
|
15
|
+
duplicate: string;
|
|
16
|
+
};
|
|
17
|
+
select: {
|
|
18
|
+
placeholder: string;
|
|
19
|
+
};
|
|
20
|
+
selectMultiple: {
|
|
21
|
+
placeholder: string;
|
|
22
|
+
};
|
|
23
|
+
cascader: {
|
|
24
|
+
placeholder: string;
|
|
25
|
+
};
|
|
26
|
+
textarea: {
|
|
27
|
+
placeholder: string;
|
|
28
|
+
};
|
|
29
|
+
datePicker: {
|
|
30
|
+
Mon: string;
|
|
31
|
+
Tue: string;
|
|
32
|
+
Wed: string;
|
|
33
|
+
Thu: string;
|
|
34
|
+
Fri: string;
|
|
35
|
+
Sat: string;
|
|
36
|
+
Sun: string;
|
|
37
|
+
placeholder: string;
|
|
38
|
+
};
|
|
39
|
+
dateRangePicker: {
|
|
40
|
+
placeholderStart: string;
|
|
41
|
+
placeholderEnd: string;
|
|
42
|
+
};
|
|
43
|
+
upload: {
|
|
44
|
+
dropActive: string;
|
|
45
|
+
click: string;
|
|
46
|
+
paste: string;
|
|
47
|
+
drag: string;
|
|
48
|
+
accept: string;
|
|
49
|
+
limit: string;
|
|
50
|
+
maxFileSize: string;
|
|
51
|
+
};
|
|
52
|
+
pagination: {
|
|
53
|
+
pageSize: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
export default _default;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
name: string;
|
|
3
|
+
image: {
|
|
4
|
+
fail: string;
|
|
5
|
+
};
|
|
6
|
+
input: {
|
|
7
|
+
placeholder: string;
|
|
8
|
+
copy: string;
|
|
9
|
+
copySuccess: string;
|
|
10
|
+
copyFailed: string;
|
|
11
|
+
};
|
|
12
|
+
inputTag: {
|
|
13
|
+
placeholder: string;
|
|
14
|
+
maxLength: string;
|
|
15
|
+
duplicate: string;
|
|
16
|
+
};
|
|
17
|
+
select: {
|
|
18
|
+
placeholder: string;
|
|
19
|
+
};
|
|
20
|
+
selectMultiple: {
|
|
21
|
+
placeholder: string;
|
|
22
|
+
};
|
|
23
|
+
cascader: {
|
|
24
|
+
placeholder: string;
|
|
25
|
+
};
|
|
26
|
+
textarea: {
|
|
27
|
+
placeholder: string;
|
|
28
|
+
};
|
|
29
|
+
datePicker: {
|
|
30
|
+
Mon: string;
|
|
31
|
+
Tue: string;
|
|
32
|
+
Wed: string;
|
|
33
|
+
Thu: string;
|
|
34
|
+
Fri: string;
|
|
35
|
+
Sat: string;
|
|
36
|
+
Sun: string;
|
|
37
|
+
placeholder: string;
|
|
38
|
+
};
|
|
39
|
+
dateRangePicker: {
|
|
40
|
+
placeholderStart: string;
|
|
41
|
+
placeholderEnd: string;
|
|
42
|
+
};
|
|
43
|
+
upload: {
|
|
44
|
+
dropActive: string;
|
|
45
|
+
click: string;
|
|
46
|
+
paste: string;
|
|
47
|
+
drag: string;
|
|
48
|
+
accept: string;
|
|
49
|
+
limit: string;
|
|
50
|
+
maxFileSize: string;
|
|
51
|
+
};
|
|
52
|
+
pagination: {
|
|
53
|
+
pageSize: string;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
export default _default;
|