@chase-shao/vue-component-lib 1.2.89 → 1.2.90
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/data-gen/views/CreateView.vue.d.ts +18 -18
- package/dist/components/data-gen/views/UpdateView.vue.d.ts +18 -18
- package/dist/components/data-gen/widgets/CheckBox.vue.d.ts +4 -4
- package/dist/components/data-gen/widgets/FileUpload.vue.d.ts +4 -4
- package/dist/components/data-gen/widgets/InputNumber.vue.d.ts +4 -4
- package/dist/components/data-gen/widgets/InputText.vue.d.ts +4 -4
- package/dist/components/data-gen/widgets/TextArea.vue.d.ts +4 -4
- package/dist/components/data-gen/widgets/ToolTip.vue.d.ts +7 -0
- package/dist/components/data-gen/widgets/index.vue.d.ts +8 -8
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.es.js +617 -592
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/services/dataGen.d.ts +6 -0
- package/package.json +1 -1
|
@@ -11,8 +11,8 @@ declare function __VLS_template(): {
|
|
|
11
11
|
refs: {
|
|
12
12
|
dataWidgets: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
13
13
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
14
|
-
onError?: ((value: string) => any) | undefined;
|
|
15
14
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
15
|
+
onError?: ((value: string) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
isFileUpload(): boolean;
|
|
18
18
|
submit(workflowId: string): Promise<unknown>;
|
|
@@ -22,23 +22,23 @@ declare function __VLS_template(): {
|
|
|
22
22
|
"update:modelValue": (value: any) => any;
|
|
23
23
|
} & {
|
|
24
24
|
change: (...args: any[]) => any;
|
|
25
|
-
error: (value: string) => any;
|
|
26
25
|
"update:modelValue": (value: any) => any;
|
|
26
|
+
error: (value: string) => any;
|
|
27
27
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
28
28
|
widgetRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
29
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
30
|
-
onError?: ((value: string) => any) | undefined;
|
|
31
29
|
onInput?: ((value: any) => any) | undefined;
|
|
30
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
32
31
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
32
|
+
onError?: ((value: string) => any) | undefined;
|
|
33
33
|
}>, {
|
|
34
34
|
validate(): boolean;
|
|
35
35
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
36
36
|
"update:modelValue": (value: any) => any;
|
|
37
37
|
} & {
|
|
38
|
-
change: (...args: any[]) => any;
|
|
39
|
-
error: (value: string) => any;
|
|
40
38
|
input: (value: any) => any;
|
|
39
|
+
change: (...args: any[]) => any;
|
|
41
40
|
"update:modelValue": (value: any) => any;
|
|
41
|
+
error: (value: string) => any;
|
|
42
42
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
43
43
|
P: {};
|
|
44
44
|
B: {};
|
|
@@ -47,10 +47,10 @@ declare function __VLS_template(): {
|
|
|
47
47
|
M: {};
|
|
48
48
|
Defaults: {};
|
|
49
49
|
}, Readonly<{}> & Readonly<{
|
|
50
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
51
|
-
onError?: ((value: string) => any) | undefined;
|
|
52
50
|
onInput?: ((value: any) => any) | undefined;
|
|
51
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
53
52
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
53
|
+
onError?: ((value: string) => any) | undefined;
|
|
54
54
|
}>, {
|
|
55
55
|
validate(): boolean;
|
|
56
56
|
}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
@@ -108,8 +108,8 @@ declare function __VLS_template(): {
|
|
|
108
108
|
Defaults: {};
|
|
109
109
|
}, Readonly<{}> & Readonly<{
|
|
110
110
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
111
|
-
onError?: ((value: string) => any) | undefined;
|
|
112
111
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
112
|
+
onError?: ((value: string) => any) | undefined;
|
|
113
113
|
}>, {
|
|
114
114
|
isFileUpload(): boolean;
|
|
115
115
|
submit(workflowId: string): Promise<unknown>;
|
|
@@ -123,8 +123,8 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
|
123
123
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
124
124
|
dataWidgets: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
125
125
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
126
|
-
onError?: ((value: string) => any) | undefined;
|
|
127
126
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
127
|
+
onError?: ((value: string) => any) | undefined;
|
|
128
128
|
}>, {
|
|
129
129
|
isFileUpload(): boolean;
|
|
130
130
|
submit(workflowId: string): Promise<unknown>;
|
|
@@ -134,23 +134,23 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
134
134
|
"update:modelValue": (value: any) => any;
|
|
135
135
|
} & {
|
|
136
136
|
change: (...args: any[]) => any;
|
|
137
|
-
error: (value: string) => any;
|
|
138
137
|
"update:modelValue": (value: any) => any;
|
|
138
|
+
error: (value: string) => any;
|
|
139
139
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
140
140
|
widgetRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
141
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
142
|
-
onError?: ((value: string) => any) | undefined;
|
|
143
141
|
onInput?: ((value: any) => any) | undefined;
|
|
142
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
144
143
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
144
|
+
onError?: ((value: string) => any) | undefined;
|
|
145
145
|
}>, {
|
|
146
146
|
validate(): boolean;
|
|
147
147
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
148
148
|
"update:modelValue": (value: any) => any;
|
|
149
149
|
} & {
|
|
150
|
-
change: (...args: any[]) => any;
|
|
151
|
-
error: (value: string) => any;
|
|
152
150
|
input: (value: any) => any;
|
|
151
|
+
change: (...args: any[]) => any;
|
|
153
152
|
"update:modelValue": (value: any) => any;
|
|
153
|
+
error: (value: string) => any;
|
|
154
154
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
155
155
|
P: {};
|
|
156
156
|
B: {};
|
|
@@ -159,10 +159,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
159
159
|
M: {};
|
|
160
160
|
Defaults: {};
|
|
161
161
|
}, Readonly<{}> & Readonly<{
|
|
162
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
163
|
-
onError?: ((value: string) => any) | undefined;
|
|
164
162
|
onInput?: ((value: any) => any) | undefined;
|
|
163
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
165
164
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
165
|
+
onError?: ((value: string) => any) | undefined;
|
|
166
166
|
}>, {
|
|
167
167
|
validate(): boolean;
|
|
168
168
|
}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
@@ -220,8 +220,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
220
220
|
Defaults: {};
|
|
221
221
|
}, Readonly<{}> & Readonly<{
|
|
222
222
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
223
|
-
onError?: ((value: string) => any) | undefined;
|
|
224
223
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
224
|
+
onError?: ((value: string) => any) | undefined;
|
|
225
225
|
}>, {
|
|
226
226
|
isFileUpload(): boolean;
|
|
227
227
|
submit(workflowId: string): Promise<unknown>;
|
|
@@ -11,8 +11,8 @@ declare function __VLS_template(): {
|
|
|
11
11
|
refs: {
|
|
12
12
|
dataWidgets: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
13
13
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
14
|
-
onError?: ((value: string) => any) | undefined;
|
|
15
14
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
15
|
+
onError?: ((value: string) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
isFileUpload(): boolean;
|
|
18
18
|
submit(workflowId: string): Promise<unknown>;
|
|
@@ -22,23 +22,23 @@ declare function __VLS_template(): {
|
|
|
22
22
|
"update:modelValue": (value: any) => any;
|
|
23
23
|
} & {
|
|
24
24
|
change: (...args: any[]) => any;
|
|
25
|
-
error: (value: string) => any;
|
|
26
25
|
"update:modelValue": (value: any) => any;
|
|
26
|
+
error: (value: string) => any;
|
|
27
27
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
28
28
|
widgetRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
29
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
30
|
-
onError?: ((value: string) => any) | undefined;
|
|
31
29
|
onInput?: ((value: any) => any) | undefined;
|
|
30
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
32
31
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
32
|
+
onError?: ((value: string) => any) | undefined;
|
|
33
33
|
}>, {
|
|
34
34
|
validate(): boolean;
|
|
35
35
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
36
36
|
"update:modelValue": (value: any) => any;
|
|
37
37
|
} & {
|
|
38
|
-
change: (...args: any[]) => any;
|
|
39
|
-
error: (value: string) => any;
|
|
40
38
|
input: (value: any) => any;
|
|
39
|
+
change: (...args: any[]) => any;
|
|
41
40
|
"update:modelValue": (value: any) => any;
|
|
41
|
+
error: (value: string) => any;
|
|
42
42
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
43
43
|
P: {};
|
|
44
44
|
B: {};
|
|
@@ -47,10 +47,10 @@ declare function __VLS_template(): {
|
|
|
47
47
|
M: {};
|
|
48
48
|
Defaults: {};
|
|
49
49
|
}, Readonly<{}> & Readonly<{
|
|
50
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
51
|
-
onError?: ((value: string) => any) | undefined;
|
|
52
50
|
onInput?: ((value: any) => any) | undefined;
|
|
51
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
53
52
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
53
|
+
onError?: ((value: string) => any) | undefined;
|
|
54
54
|
}>, {
|
|
55
55
|
validate(): boolean;
|
|
56
56
|
}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
@@ -108,8 +108,8 @@ declare function __VLS_template(): {
|
|
|
108
108
|
Defaults: {};
|
|
109
109
|
}, Readonly<{}> & Readonly<{
|
|
110
110
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
111
|
-
onError?: ((value: string) => any) | undefined;
|
|
112
111
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
112
|
+
onError?: ((value: string) => any) | undefined;
|
|
113
113
|
}>, {
|
|
114
114
|
isFileUpload(): boolean;
|
|
115
115
|
submit(workflowId: string): Promise<unknown>;
|
|
@@ -123,8 +123,8 @@ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
|
123
123
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
124
124
|
dataWidgets: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
125
125
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
126
|
-
onError?: ((value: string) => any) | undefined;
|
|
127
126
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
127
|
+
onError?: ((value: string) => any) | undefined;
|
|
128
128
|
}>, {
|
|
129
129
|
isFileUpload(): boolean;
|
|
130
130
|
submit(workflowId: string): Promise<unknown>;
|
|
@@ -134,23 +134,23 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
134
134
|
"update:modelValue": (value: any) => any;
|
|
135
135
|
} & {
|
|
136
136
|
change: (...args: any[]) => any;
|
|
137
|
-
error: (value: string) => any;
|
|
138
137
|
"update:modelValue": (value: any) => any;
|
|
138
|
+
error: (value: string) => any;
|
|
139
139
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
140
140
|
widgetRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
141
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
142
|
-
onError?: ((value: string) => any) | undefined;
|
|
143
141
|
onInput?: ((value: any) => any) | undefined;
|
|
142
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
144
143
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
144
|
+
onError?: ((value: string) => any) | undefined;
|
|
145
145
|
}>, {
|
|
146
146
|
validate(): boolean;
|
|
147
147
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
148
148
|
"update:modelValue": (value: any) => any;
|
|
149
149
|
} & {
|
|
150
|
-
change: (...args: any[]) => any;
|
|
151
|
-
error: (value: string) => any;
|
|
152
150
|
input: (value: any) => any;
|
|
151
|
+
change: (...args: any[]) => any;
|
|
153
152
|
"update:modelValue": (value: any) => any;
|
|
153
|
+
error: (value: string) => any;
|
|
154
154
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
155
155
|
P: {};
|
|
156
156
|
B: {};
|
|
@@ -159,10 +159,10 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
159
159
|
M: {};
|
|
160
160
|
Defaults: {};
|
|
161
161
|
}, Readonly<{}> & Readonly<{
|
|
162
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
163
|
-
onError?: ((value: string) => any) | undefined;
|
|
164
162
|
onInput?: ((value: any) => any) | undefined;
|
|
163
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
165
164
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
165
|
+
onError?: ((value: string) => any) | undefined;
|
|
166
166
|
}>, {
|
|
167
167
|
validate(): boolean;
|
|
168
168
|
}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
@@ -220,8 +220,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
220
220
|
Defaults: {};
|
|
221
221
|
}, Readonly<{}> & Readonly<{
|
|
222
222
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
223
|
-
onError?: ((value: string) => any) | undefined;
|
|
224
223
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
224
|
+
onError?: ((value: string) => any) | undefined;
|
|
225
225
|
}>, {
|
|
226
226
|
isFileUpload(): boolean;
|
|
227
227
|
submit(workflowId: string): Promise<unknown>;
|
|
@@ -3,14 +3,14 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
3
3
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4
4
|
"update:modelValue": (value: any) => any;
|
|
5
5
|
} & {
|
|
6
|
-
change: (...args: any[]) => any;
|
|
7
|
-
error: (value: string) => any;
|
|
8
6
|
input: (value: any) => any;
|
|
7
|
+
change: (...args: any[]) => any;
|
|
9
8
|
"update:modelValue": (value: any) => any;
|
|
9
|
+
error: (value: string) => any;
|
|
10
10
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
11
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
12
|
-
onError?: ((value: string) => any) | undefined;
|
|
13
11
|
onInput?: ((value: any) => any) | undefined;
|
|
12
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
14
13
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
14
|
+
onError?: ((value: string) => any) | undefined;
|
|
15
15
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
16
|
export default _default;
|
|
@@ -2,15 +2,15 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
2
2
|
submit(workflowId: string): Promise<unknown>;
|
|
3
3
|
validate(): boolean;
|
|
4
4
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
5
|
-
change: (...args: any[]) => any;
|
|
6
|
-
error: (value: string) => any;
|
|
7
5
|
input: (value: any) => any;
|
|
6
|
+
change: (...args: any[]) => any;
|
|
8
7
|
"update:modelValue": (value: any) => any;
|
|
8
|
+
error: (value: string) => any;
|
|
9
9
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
10
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
11
|
-
onError?: ((value: string) => any) | undefined;
|
|
12
10
|
onInput?: ((value: any) => any) | undefined;
|
|
11
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
13
12
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
13
|
+
onError?: ((value: string) => any) | undefined;
|
|
14
14
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
15
15
|
uploadRef: any;
|
|
16
16
|
}, any>;
|
|
@@ -3,14 +3,14 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
3
3
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4
4
|
"update:modelValue": (value: any) => any;
|
|
5
5
|
} & {
|
|
6
|
-
change: (...args: any[]) => any;
|
|
7
|
-
error: (value: string) => any;
|
|
8
6
|
input: (value: any) => any;
|
|
7
|
+
change: (...args: any[]) => any;
|
|
9
8
|
"update:modelValue": (value: any) => any;
|
|
9
|
+
error: (value: string) => any;
|
|
10
10
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
11
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
12
|
-
onError?: ((value: string) => any) | undefined;
|
|
13
11
|
onInput?: ((value: any) => any) | undefined;
|
|
12
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
14
13
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
14
|
+
onError?: ((value: string) => any) | undefined;
|
|
15
15
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
16
|
export default _default;
|
|
@@ -3,14 +3,14 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
3
3
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4
4
|
"update:modelValue": (value: any) => any;
|
|
5
5
|
} & {
|
|
6
|
-
change: (...args: any[]) => any;
|
|
7
|
-
error: (value: string) => any;
|
|
8
6
|
input: (value: any) => any;
|
|
7
|
+
change: (...args: any[]) => any;
|
|
9
8
|
"update:modelValue": (value: any) => any;
|
|
9
|
+
error: (value: string) => any;
|
|
10
10
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
11
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
12
|
-
onError?: ((value: string) => any) | undefined;
|
|
13
11
|
onInput?: ((value: any) => any) | undefined;
|
|
12
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
14
13
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
14
|
+
onError?: ((value: string) => any) | undefined;
|
|
15
15
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
16
|
export default _default;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {
|
|
2
2
|
validate(): boolean;
|
|
3
3
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
4
|
-
change: (...args: any[]) => any;
|
|
5
|
-
error: (value: string) => any;
|
|
6
4
|
input: (value: any) => any;
|
|
5
|
+
change: (...args: any[]) => any;
|
|
7
6
|
"update:modelValue": (value: any) => any;
|
|
7
|
+
error: (value: string) => any;
|
|
8
8
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
9
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
10
|
-
onError?: ((value: string) => any) | undefined;
|
|
11
9
|
onInput?: ((value: any) => any) | undefined;
|
|
10
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
12
11
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
12
|
+
onError?: ((value: string) => any) | undefined;
|
|
13
13
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
14
|
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Tree } from '../../../services/dataGen';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
isVisible: boolean;
|
|
4
|
+
outputText: Tree[];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -7,27 +7,27 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
7
7
|
"update:modelValue": (value: any) => any;
|
|
8
8
|
} & {
|
|
9
9
|
change: (...args: any[]) => any;
|
|
10
|
-
error: (value: string) => any;
|
|
11
10
|
"update:modelValue": (value: any) => any;
|
|
11
|
+
error: (value: string) => any;
|
|
12
12
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
13
13
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
14
|
-
onError?: ((value: string) => any) | undefined;
|
|
15
14
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
15
|
+
onError?: ((value: string) => any) | undefined;
|
|
16
16
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
17
17
|
widgetRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
18
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
19
|
-
onError?: ((value: string) => any) | undefined;
|
|
20
18
|
onInput?: ((value: any) => any) | undefined;
|
|
19
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
21
20
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
21
|
+
onError?: ((value: string) => any) | undefined;
|
|
22
22
|
}>, {
|
|
23
23
|
validate(): boolean;
|
|
24
24
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
25
25
|
"update:modelValue": (value: any) => any;
|
|
26
26
|
} & {
|
|
27
|
-
change: (...args: any[]) => any;
|
|
28
|
-
error: (value: string) => any;
|
|
29
27
|
input: (value: any) => any;
|
|
28
|
+
change: (...args: any[]) => any;
|
|
30
29
|
"update:modelValue": (value: any) => any;
|
|
30
|
+
error: (value: string) => any;
|
|
31
31
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
32
32
|
P: {};
|
|
33
33
|
B: {};
|
|
@@ -36,10 +36,10 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
36
36
|
M: {};
|
|
37
37
|
Defaults: {};
|
|
38
38
|
}, Readonly<{}> & Readonly<{
|
|
39
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
40
|
-
onError?: ((value: string) => any) | undefined;
|
|
41
39
|
onInput?: ((value: any) => any) | undefined;
|
|
40
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
42
41
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
42
|
+
onError?: ((value: string) => any) | undefined;
|
|
43
43
|
}>, {
|
|
44
44
|
validate(): boolean;
|
|
45
45
|
}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|