@wx-design/components 2.0.0-alpha.1 → 2.0.0-alpha.11
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/es/core/ConfigProvider/index.d.ts +109 -3
- package/es/core/Input/index.vue.d.ts +1114 -0
- package/es/core/Modal/index.vue.d.ts +14 -14
- package/es/core/Select/index.vue.d.ts +20 -8
- package/es/core/Table/components/CellEditors/Boolean.d.ts +6 -8
- package/es/core/Table/components/CellEditors/Select.d.ts +2 -2
- package/es/core/Table/components/FilterTagsDisplay/index.vue.d.ts +1 -1
- package/es/core/Table/components/TableSet/ColumnSet.vue.d.ts +2 -499
- package/es/core/Table/components/TableSet/ColumnSetBody.vue.d.ts +524 -0
- package/es/core/Table/components/TableSet/index.vue.d.ts +1 -6
- package/es/core/Table/components/TableSet/store.d.ts +11 -0
- package/es/core/Table/components/TableSet/utils.d.ts +9 -9
- package/es/core/Table/hooks/useTableCore.d.ts +1 -1
- package/es/core/Table/hooks/useTableFilters.d.ts +4 -3
- package/es/core/Table/index.vue.d.ts +12 -5
- package/es/core/Table/store.d.ts +4 -0
- package/es/index.d.ts +1 -0
- package/es/index.mjs +45523 -38207
- package/es/locales/lang/bn.d.ts +39 -1
- package/es/locales/lang/en.d.ts +39 -1
- package/es/locales/lang/vi.d.ts +39 -1
- package/es/locales/lang/zh-cn.d.ts +39 -1
- package/es/locales/useLocale.d.ts +39 -1
- package/es/style.css +1 -1
- package/lib/core/ConfigProvider/index.d.ts +109 -3
- package/lib/core/Input/index.vue.d.ts +1114 -0
- package/lib/core/Modal/index.vue.d.ts +14 -14
- package/lib/core/Select/index.vue.d.ts +20 -8
- package/lib/core/Table/components/CellEditors/Boolean.d.ts +6 -8
- package/lib/core/Table/components/CellEditors/Select.d.ts +2 -2
- package/lib/core/Table/components/FilterTagsDisplay/index.vue.d.ts +1 -1
- package/lib/core/Table/components/TableSet/ColumnSet.vue.d.ts +2 -499
- package/lib/core/Table/components/TableSet/ColumnSetBody.vue.d.ts +524 -0
- package/lib/core/Table/components/TableSet/index.vue.d.ts +1 -6
- package/lib/core/Table/components/TableSet/store.d.ts +11 -0
- package/lib/core/Table/components/TableSet/utils.d.ts +9 -9
- package/lib/core/Table/hooks/useTableCore.d.ts +1 -1
- package/lib/core/Table/hooks/useTableFilters.d.ts +4 -3
- package/lib/core/Table/index.vue.d.ts +12 -5
- package/lib/core/Table/store.d.ts +4 -0
- package/lib/index.d.ts +1 -0
- package/lib/index.js +6 -5
- package/lib/locales/lang/bn.d.ts +39 -1
- package/lib/locales/lang/en.d.ts +39 -1
- package/lib/locales/lang/vi.d.ts +39 -1
- package/lib/locales/lang/zh-cn.d.ts +39 -1
- package/lib/locales/useLocale.d.ts +39 -1
- package/lib/style.css +1 -1
- package/package.json +4 -4
- package/types/index.d.ts +27 -15
- package/types/input/index.d.ts +83 -0
- package/types/select/index.d.ts +5 -1
- package/types/table/column.d.ts +2 -2
- package/types/table/table-set.d.ts +4 -18
- package/types/table/table.d.ts +4 -0
package/es/locales/lang/bn.d.ts
CHANGED
|
@@ -7,13 +7,42 @@ declare const _default: {
|
|
|
7
7
|
seq: string;
|
|
8
8
|
fieldName: string;
|
|
9
9
|
show: string;
|
|
10
|
-
enableBatchAction: string;
|
|
11
10
|
field: string;
|
|
11
|
+
renderFixed: string;
|
|
12
|
+
width: string;
|
|
13
|
+
fixedLeft: string;
|
|
14
|
+
fixedRight: string;
|
|
15
|
+
fixedNone: string;
|
|
12
16
|
};
|
|
13
17
|
filter: {
|
|
14
18
|
selectAll: string;
|
|
15
19
|
filter: string;
|
|
16
20
|
reset: string;
|
|
21
|
+
custom: string;
|
|
22
|
+
customFilter: {
|
|
23
|
+
title: string;
|
|
24
|
+
condition1: string;
|
|
25
|
+
condition2: string;
|
|
26
|
+
confirm: string;
|
|
27
|
+
cancel: string;
|
|
28
|
+
required: string;
|
|
29
|
+
operators: {
|
|
30
|
+
eq: string;
|
|
31
|
+
gt: string;
|
|
32
|
+
gte: string;
|
|
33
|
+
lt: string;
|
|
34
|
+
lte: string;
|
|
35
|
+
null: string;
|
|
36
|
+
notNull: string;
|
|
37
|
+
like: string;
|
|
38
|
+
startsWith: string;
|
|
39
|
+
endsWith: string;
|
|
40
|
+
};
|
|
41
|
+
connectors: {
|
|
42
|
+
and: string;
|
|
43
|
+
or: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
17
46
|
};
|
|
18
47
|
filterTags: {
|
|
19
48
|
label: string;
|
|
@@ -26,6 +55,15 @@ declare const _default: {
|
|
|
26
55
|
total: string;
|
|
27
56
|
close: string;
|
|
28
57
|
confirm: string;
|
|
58
|
+
custom: {
|
|
59
|
+
confirmButtonText: string;
|
|
60
|
+
resetButtonText: string;
|
|
61
|
+
cancelButtonText: string;
|
|
62
|
+
closeButtonText: string;
|
|
63
|
+
modal: {
|
|
64
|
+
title: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
29
67
|
};
|
|
30
68
|
};
|
|
31
69
|
};
|
package/es/locales/lang/en.d.ts
CHANGED
|
@@ -7,13 +7,42 @@ declare const _default: {
|
|
|
7
7
|
seq: string;
|
|
8
8
|
fieldName: string;
|
|
9
9
|
show: string;
|
|
10
|
-
enableBatchAction: string;
|
|
11
10
|
field: string;
|
|
11
|
+
renderFixed: string;
|
|
12
|
+
width: string;
|
|
13
|
+
fixedLeft: string;
|
|
14
|
+
fixedRight: string;
|
|
15
|
+
fixedNone: string;
|
|
12
16
|
};
|
|
13
17
|
filter: {
|
|
14
18
|
selectAll: string;
|
|
15
19
|
filter: string;
|
|
16
20
|
reset: string;
|
|
21
|
+
custom: string;
|
|
22
|
+
customFilter: {
|
|
23
|
+
title: string;
|
|
24
|
+
condition1: string;
|
|
25
|
+
condition2: string;
|
|
26
|
+
confirm: string;
|
|
27
|
+
cancel: string;
|
|
28
|
+
required: string;
|
|
29
|
+
operators: {
|
|
30
|
+
eq: string;
|
|
31
|
+
gt: string;
|
|
32
|
+
gte: string;
|
|
33
|
+
lt: string;
|
|
34
|
+
lte: string;
|
|
35
|
+
null: string;
|
|
36
|
+
notNull: string;
|
|
37
|
+
like: string;
|
|
38
|
+
startsWith: string;
|
|
39
|
+
endsWith: string;
|
|
40
|
+
};
|
|
41
|
+
connectors: {
|
|
42
|
+
and: string;
|
|
43
|
+
or: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
17
46
|
};
|
|
18
47
|
filterTags: {
|
|
19
48
|
label: string;
|
|
@@ -26,6 +55,15 @@ declare const _default: {
|
|
|
26
55
|
total: string;
|
|
27
56
|
close: string;
|
|
28
57
|
confirm: string;
|
|
58
|
+
custom: {
|
|
59
|
+
confirmButtonText: string;
|
|
60
|
+
resetButtonText: string;
|
|
61
|
+
cancelButtonText: string;
|
|
62
|
+
closeButtonText: string;
|
|
63
|
+
modal: {
|
|
64
|
+
title: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
29
67
|
};
|
|
30
68
|
};
|
|
31
69
|
};
|
package/es/locales/lang/vi.d.ts
CHANGED
|
@@ -7,13 +7,42 @@ declare const _default: {
|
|
|
7
7
|
seq: string;
|
|
8
8
|
fieldName: string;
|
|
9
9
|
show: string;
|
|
10
|
-
enableBatchAction: string;
|
|
11
10
|
field: string;
|
|
11
|
+
renderFixed: string;
|
|
12
|
+
width: string;
|
|
13
|
+
fixedLeft: string;
|
|
14
|
+
fixedRight: string;
|
|
15
|
+
fixedNone: string;
|
|
12
16
|
};
|
|
13
17
|
filter: {
|
|
14
18
|
selectAll: string;
|
|
15
19
|
filter: string;
|
|
16
20
|
reset: string;
|
|
21
|
+
custom: string;
|
|
22
|
+
customFilter: {
|
|
23
|
+
title: string;
|
|
24
|
+
condition1: string;
|
|
25
|
+
condition2: string;
|
|
26
|
+
confirm: string;
|
|
27
|
+
cancel: string;
|
|
28
|
+
required: string;
|
|
29
|
+
operators: {
|
|
30
|
+
eq: string;
|
|
31
|
+
gt: string;
|
|
32
|
+
gte: string;
|
|
33
|
+
lt: string;
|
|
34
|
+
lte: string;
|
|
35
|
+
null: string;
|
|
36
|
+
notNull: string;
|
|
37
|
+
like: string;
|
|
38
|
+
startsWith: string;
|
|
39
|
+
endsWith: string;
|
|
40
|
+
};
|
|
41
|
+
connectors: {
|
|
42
|
+
and: string;
|
|
43
|
+
or: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
17
46
|
};
|
|
18
47
|
filterTags: {
|
|
19
48
|
label: string;
|
|
@@ -26,6 +55,15 @@ declare const _default: {
|
|
|
26
55
|
total: string;
|
|
27
56
|
close: string;
|
|
28
57
|
confirm: string;
|
|
58
|
+
custom: {
|
|
59
|
+
confirmButtonText: string;
|
|
60
|
+
resetButtonText: string;
|
|
61
|
+
cancelButtonText: string;
|
|
62
|
+
closeButtonText: string;
|
|
63
|
+
modal: {
|
|
64
|
+
title: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
29
67
|
};
|
|
30
68
|
};
|
|
31
69
|
};
|
|
@@ -7,13 +7,42 @@ declare const _default: {
|
|
|
7
7
|
seq: string;
|
|
8
8
|
fieldName: string;
|
|
9
9
|
show: string;
|
|
10
|
-
enableBatchAction: string;
|
|
11
10
|
field: string;
|
|
11
|
+
renderFixed: string;
|
|
12
|
+
width: string;
|
|
13
|
+
fixedLeft: string;
|
|
14
|
+
fixedRight: string;
|
|
15
|
+
fixedNone: string;
|
|
12
16
|
};
|
|
13
17
|
filter: {
|
|
14
18
|
selectAll: string;
|
|
15
19
|
filter: string;
|
|
16
20
|
reset: string;
|
|
21
|
+
custom: string;
|
|
22
|
+
customFilter: {
|
|
23
|
+
title: string;
|
|
24
|
+
condition1: string;
|
|
25
|
+
condition2: string;
|
|
26
|
+
confirm: string;
|
|
27
|
+
cancel: string;
|
|
28
|
+
required: string;
|
|
29
|
+
operators: {
|
|
30
|
+
eq: string;
|
|
31
|
+
gt: string;
|
|
32
|
+
gte: string;
|
|
33
|
+
lt: string;
|
|
34
|
+
lte: string;
|
|
35
|
+
null: string;
|
|
36
|
+
notNull: string;
|
|
37
|
+
like: string;
|
|
38
|
+
startsWith: string;
|
|
39
|
+
endsWith: string;
|
|
40
|
+
};
|
|
41
|
+
connectors: {
|
|
42
|
+
and: string;
|
|
43
|
+
or: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
17
46
|
};
|
|
18
47
|
filterTags: {
|
|
19
48
|
label: string;
|
|
@@ -26,6 +55,15 @@ declare const _default: {
|
|
|
26
55
|
total: string;
|
|
27
56
|
close: string;
|
|
28
57
|
confirm: string;
|
|
58
|
+
custom: {
|
|
59
|
+
confirmButtonText: string;
|
|
60
|
+
resetButtonText: string;
|
|
61
|
+
cancelButtonText: string;
|
|
62
|
+
closeButtonText: string;
|
|
63
|
+
modal: {
|
|
64
|
+
title: string;
|
|
65
|
+
};
|
|
66
|
+
};
|
|
29
67
|
};
|
|
30
68
|
};
|
|
31
69
|
};
|
|
@@ -9,13 +9,42 @@ declare const useLocale: (lang: Ref<string>) => {
|
|
|
9
9
|
seq: string;
|
|
10
10
|
fieldName: string;
|
|
11
11
|
show: string;
|
|
12
|
-
enableBatchAction: string;
|
|
13
12
|
field: string;
|
|
13
|
+
renderFixed: string;
|
|
14
|
+
width: string;
|
|
15
|
+
fixedLeft: string;
|
|
16
|
+
fixedRight: string;
|
|
17
|
+
fixedNone: string;
|
|
14
18
|
};
|
|
15
19
|
filter: {
|
|
16
20
|
selectAll: string;
|
|
17
21
|
filter: string;
|
|
18
22
|
reset: string;
|
|
23
|
+
custom: string;
|
|
24
|
+
customFilter: {
|
|
25
|
+
title: string;
|
|
26
|
+
condition1: string;
|
|
27
|
+
condition2: string;
|
|
28
|
+
confirm: string;
|
|
29
|
+
cancel: string;
|
|
30
|
+
required: string;
|
|
31
|
+
operators: {
|
|
32
|
+
eq: string;
|
|
33
|
+
gt: string;
|
|
34
|
+
gte: string;
|
|
35
|
+
lt: string;
|
|
36
|
+
lte: string;
|
|
37
|
+
null: string;
|
|
38
|
+
notNull: string;
|
|
39
|
+
like: string;
|
|
40
|
+
startsWith: string;
|
|
41
|
+
endsWith: string;
|
|
42
|
+
};
|
|
43
|
+
connectors: {
|
|
44
|
+
and: string;
|
|
45
|
+
or: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
19
48
|
};
|
|
20
49
|
filterTags: {
|
|
21
50
|
label: string;
|
|
@@ -28,6 +57,15 @@ declare const useLocale: (lang: Ref<string>) => {
|
|
|
28
57
|
total: string;
|
|
29
58
|
close: string;
|
|
30
59
|
confirm: string;
|
|
60
|
+
custom: {
|
|
61
|
+
confirmButtonText: string;
|
|
62
|
+
resetButtonText: string;
|
|
63
|
+
cancelButtonText: string;
|
|
64
|
+
closeButtonText: string;
|
|
65
|
+
modal: {
|
|
66
|
+
title: string;
|
|
67
|
+
};
|
|
68
|
+
};
|
|
31
69
|
};
|
|
32
70
|
};
|
|
33
71
|
}>;
|