tutor-pro-ui-vue 1.3.18-beta → 1.3.22-beta
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.css +1 -1
- package/dist/index.css.gz +0 -0
- package/dist/index.js +906 -926
- package/dist/index.js.gz +0 -0
- package/dist/index.umd.cjs +7 -7
- package/dist/src/components/CommonForm/fields/Input.vue.d.ts +1 -1
- package/dist/src/components/CommonForm/fields/InputNumber.vue.d.ts +1 -1
- package/dist/src/components/CommonForm/fields/Select.vue.d.ts +1 -1
- package/dist/src/components/CommonForm/src/hooks.d.ts +3 -3
- package/dist/src/components/CommonTabs/src/index.vue.d.ts +13 -13
- package/dist/src/components/CommonTabs/src/types.d.ts +6 -6
- package/package.json +2 -2
|
@@ -8,7 +8,7 @@ type __VLS_PublicProps = {
|
|
|
8
8
|
modelValue?: any;
|
|
9
9
|
} & typeof __VLS_typeProps;
|
|
10
10
|
declare function __VLS_template(): {
|
|
11
|
-
slots: Partial<Record<number
|
|
11
|
+
slots: Partial<Record<NonNullable<string | number>, (_: any) => any>> & {
|
|
12
12
|
extraFooter?(_: {
|
|
13
13
|
item: any;
|
|
14
14
|
}): any;
|
|
@@ -2,7 +2,7 @@ type __VLS_PublicProps = {
|
|
|
2
2
|
modelValue?: any;
|
|
3
3
|
};
|
|
4
4
|
declare function __VLS_template(): {
|
|
5
|
-
slots: Partial<Record<number
|
|
5
|
+
slots: Partial<Record<NonNullable<string | number>, (_: any) => any>> & {
|
|
6
6
|
extraFooter?(_: {
|
|
7
7
|
item: unknown;
|
|
8
8
|
}): any;
|
|
@@ -7,7 +7,7 @@ type __VLS_PublicProps = {
|
|
|
7
7
|
modelValue?: any;
|
|
8
8
|
} & typeof __VLS_typeProps;
|
|
9
9
|
declare function __VLS_template(): {
|
|
10
|
-
slots: Partial<Record<number
|
|
10
|
+
slots: Partial<Record<NonNullable<string | number>, (_: any) => any>> & {
|
|
11
11
|
extraFooter?(_: {
|
|
12
12
|
item: any;
|
|
13
13
|
}): any;
|
|
@@ -72,7 +72,7 @@ export declare const useSelectFilter: (options?: Ref<{
|
|
|
72
72
|
* 获取额外的slots
|
|
73
73
|
*/
|
|
74
74
|
export declare const useCustomSlots: () => {
|
|
75
|
-
innerSlots:
|
|
76
|
-
[
|
|
77
|
-
}
|
|
75
|
+
innerSlots: Readonly<{
|
|
76
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
77
|
+
}>;
|
|
78
78
|
};
|
|
@@ -17,7 +17,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
17
17
|
type: {
|
|
18
18
|
(arrayLength: number): {
|
|
19
19
|
label: string;
|
|
20
|
-
name: string;
|
|
20
|
+
name: string | number;
|
|
21
21
|
disabled?: boolean;
|
|
22
22
|
closable?: boolean;
|
|
23
23
|
lazy?: boolean;
|
|
@@ -26,7 +26,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
26
26
|
}[];
|
|
27
27
|
(...items: {
|
|
28
28
|
label: string;
|
|
29
|
-
name: string;
|
|
29
|
+
name: string | number;
|
|
30
30
|
disabled?: boolean;
|
|
31
31
|
closable?: boolean;
|
|
32
32
|
lazy?: boolean;
|
|
@@ -34,7 +34,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
34
34
|
isHidden?: () => boolean;
|
|
35
35
|
}[]): {
|
|
36
36
|
label: string;
|
|
37
|
-
name: string;
|
|
37
|
+
name: string | number;
|
|
38
38
|
disabled?: boolean;
|
|
39
39
|
closable?: boolean;
|
|
40
40
|
lazy?: boolean;
|
|
@@ -43,7 +43,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
43
43
|
}[];
|
|
44
44
|
new (arrayLength: number): {
|
|
45
45
|
label: string;
|
|
46
|
-
name: string;
|
|
46
|
+
name: string | number;
|
|
47
47
|
disabled?: boolean;
|
|
48
48
|
closable?: boolean;
|
|
49
49
|
lazy?: boolean;
|
|
@@ -52,7 +52,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
52
52
|
}[];
|
|
53
53
|
new (...items: {
|
|
54
54
|
label: string;
|
|
55
|
-
name: string;
|
|
55
|
+
name: string | number;
|
|
56
56
|
disabled?: boolean;
|
|
57
57
|
closable?: boolean;
|
|
58
58
|
lazy?: boolean;
|
|
@@ -60,7 +60,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
60
60
|
isHidden?: () => boolean;
|
|
61
61
|
}[]): {
|
|
62
62
|
label: string;
|
|
63
|
-
name: string;
|
|
63
|
+
name: string | number;
|
|
64
64
|
disabled?: boolean;
|
|
65
65
|
closable?: boolean;
|
|
66
66
|
lazy?: boolean;
|
|
@@ -130,7 +130,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
130
130
|
type: {
|
|
131
131
|
(arrayLength: number): {
|
|
132
132
|
label: string;
|
|
133
|
-
name: string;
|
|
133
|
+
name: string | number;
|
|
134
134
|
disabled?: boolean;
|
|
135
135
|
closable?: boolean;
|
|
136
136
|
lazy?: boolean;
|
|
@@ -139,7 +139,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
139
139
|
}[];
|
|
140
140
|
(...items: {
|
|
141
141
|
label: string;
|
|
142
|
-
name: string;
|
|
142
|
+
name: string | number;
|
|
143
143
|
disabled?: boolean;
|
|
144
144
|
closable?: boolean;
|
|
145
145
|
lazy?: boolean;
|
|
@@ -147,7 +147,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
147
147
|
isHidden?: () => boolean;
|
|
148
148
|
}[]): {
|
|
149
149
|
label: string;
|
|
150
|
-
name: string;
|
|
150
|
+
name: string | number;
|
|
151
151
|
disabled?: boolean;
|
|
152
152
|
closable?: boolean;
|
|
153
153
|
lazy?: boolean;
|
|
@@ -156,7 +156,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
156
156
|
}[];
|
|
157
157
|
new (arrayLength: number): {
|
|
158
158
|
label: string;
|
|
159
|
-
name: string;
|
|
159
|
+
name: string | number;
|
|
160
160
|
disabled?: boolean;
|
|
161
161
|
closable?: boolean;
|
|
162
162
|
lazy?: boolean;
|
|
@@ -165,7 +165,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
165
165
|
}[];
|
|
166
166
|
new (...items: {
|
|
167
167
|
label: string;
|
|
168
|
-
name: string;
|
|
168
|
+
name: string | number;
|
|
169
169
|
disabled?: boolean;
|
|
170
170
|
closable?: boolean;
|
|
171
171
|
lazy?: boolean;
|
|
@@ -173,7 +173,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
173
173
|
isHidden?: () => boolean;
|
|
174
174
|
}[]): {
|
|
175
175
|
label: string;
|
|
176
|
-
name: string;
|
|
176
|
+
name: string | number;
|
|
177
177
|
disabled?: boolean;
|
|
178
178
|
closable?: boolean;
|
|
179
179
|
lazy?: boolean;
|
|
@@ -240,7 +240,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
240
240
|
activeName: TabPaneName;
|
|
241
241
|
tabs: {
|
|
242
242
|
label: string;
|
|
243
|
-
name: string;
|
|
243
|
+
name: string | number;
|
|
244
244
|
disabled?: boolean;
|
|
245
245
|
closable?: boolean;
|
|
246
246
|
lazy?: boolean;
|
|
@@ -9,7 +9,7 @@ export declare const commonTabsProps: {
|
|
|
9
9
|
type: {
|
|
10
10
|
(arrayLength: number): {
|
|
11
11
|
label: string;
|
|
12
|
-
name: string;
|
|
12
|
+
name: string | number;
|
|
13
13
|
disabled?: boolean;
|
|
14
14
|
closable?: boolean;
|
|
15
15
|
lazy?: boolean;
|
|
@@ -18,7 +18,7 @@ export declare const commonTabsProps: {
|
|
|
18
18
|
}[];
|
|
19
19
|
(...items: {
|
|
20
20
|
label: string;
|
|
21
|
-
name: string;
|
|
21
|
+
name: string | number;
|
|
22
22
|
disabled?: boolean;
|
|
23
23
|
closable?: boolean;
|
|
24
24
|
lazy?: boolean;
|
|
@@ -26,7 +26,7 @@ export declare const commonTabsProps: {
|
|
|
26
26
|
isHidden?: () => boolean;
|
|
27
27
|
}[]): {
|
|
28
28
|
label: string;
|
|
29
|
-
name: string;
|
|
29
|
+
name: string | number;
|
|
30
30
|
disabled?: boolean;
|
|
31
31
|
closable?: boolean;
|
|
32
32
|
lazy?: boolean;
|
|
@@ -35,7 +35,7 @@ export declare const commonTabsProps: {
|
|
|
35
35
|
}[];
|
|
36
36
|
new (arrayLength: number): {
|
|
37
37
|
label: string;
|
|
38
|
-
name: string;
|
|
38
|
+
name: string | number;
|
|
39
39
|
disabled?: boolean;
|
|
40
40
|
closable?: boolean;
|
|
41
41
|
lazy?: boolean;
|
|
@@ -44,7 +44,7 @@ export declare const commonTabsProps: {
|
|
|
44
44
|
}[];
|
|
45
45
|
new (...items: {
|
|
46
46
|
label: string;
|
|
47
|
-
name: string;
|
|
47
|
+
name: string | number;
|
|
48
48
|
disabled?: boolean;
|
|
49
49
|
closable?: boolean;
|
|
50
50
|
lazy?: boolean;
|
|
@@ -52,7 +52,7 @@ export declare const commonTabsProps: {
|
|
|
52
52
|
isHidden?: () => boolean;
|
|
53
53
|
}[]): {
|
|
54
54
|
label: string;
|
|
55
|
-
name: string;
|
|
55
|
+
name: string | number;
|
|
56
56
|
disabled?: boolean;
|
|
57
57
|
closable?: boolean;
|
|
58
58
|
lazy?: boolean;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tutor-pro-ui-vue",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.3.
|
|
4
|
+
"version": "1.3.22-beta",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@vueuse/core": "^12.2.0",
|
|
30
30
|
"axios": "^1.7.9",
|
|
31
31
|
"commitizen": "^4.3.1",
|
|
32
|
-
"element-plus": "^2.10.
|
|
32
|
+
"element-plus": "^2.10.5",
|
|
33
33
|
"husky": "^9.1.7",
|
|
34
34
|
"lodash": "^4.17.21",
|
|
35
35
|
"lunar-javascript": "^1.7.1",
|