@chase-shao/vue-component-lib 1.2.14 → 1.2.16
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 +44 -38
- package/dist/components/data-gen/views/UpdateView.vue.d.ts +44 -38
- package/dist/components/data-gen/widgets/CheckBox.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/SelectList.vue.d.ts +9 -6
- package/dist/components/data-gen/widgets/TextArea.vue.d.ts +4 -4
- package/dist/components/data-gen/widgets/index.d.ts +1 -1
- package/dist/components/data-gen/widgets/index.vue.d.ts +20 -17
- package/dist/composables/useTriggers.d.ts +2 -3
- 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 +522 -508
- 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 +4 -1
- package/package.json +1 -1
|
@@ -10,27 +10,27 @@ declare function __VLS_template(): {
|
|
|
10
10
|
};
|
|
11
11
|
refs: {
|
|
12
12
|
dataWidgetsRef: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
13
|
-
onChange?: ((
|
|
14
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
13
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
15
14
|
onError?: ((value: string) => any) | undefined;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
isFileUpload(): boolean;
|
|
18
18
|
submit(workflowId: number): void;
|
|
19
19
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
20
|
-
change: (
|
|
21
|
-
"update:modelValue": (value: any) => any;
|
|
20
|
+
change: (...args: any[]) => any;
|
|
22
21
|
error: (value: string) => any;
|
|
22
|
+
"update:modelValue": (value: any) => any;
|
|
23
23
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
24
24
|
widgetRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
25
|
-
onChange?: ((
|
|
26
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
25
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
27
26
|
onError?: ((value: string) => any) | undefined;
|
|
28
27
|
onInput?: ((value: any) => any) | undefined;
|
|
28
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
29
29
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
30
|
-
change: (
|
|
31
|
-
"update:modelValue": (value: any) => any;
|
|
30
|
+
change: (...args: any[]) => any;
|
|
32
31
|
error: (value: string) => any;
|
|
33
32
|
input: (value: any) => any;
|
|
33
|
+
"update:modelValue": (value: any) => any;
|
|
34
34
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
35
35
|
P: {};
|
|
36
36
|
B: {};
|
|
@@ -39,20 +39,22 @@ declare function __VLS_template(): {
|
|
|
39
39
|
M: {};
|
|
40
40
|
Defaults: {};
|
|
41
41
|
}, Readonly<{}> & Readonly<{
|
|
42
|
-
onChange?: ((
|
|
43
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
42
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
44
43
|
onError?: ((value: string) => any) | undefined;
|
|
45
44
|
onInput?: ((value: any) => any) | undefined;
|
|
45
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
46
46
|
}>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
47
|
+
modelValue?: any;
|
|
48
|
+
} & {
|
|
47
49
|
modelValue: string;
|
|
48
50
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
49
51
|
triggers?: import('../../../services/dataGen').Trigger[];
|
|
50
52
|
}> & Readonly<{
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
53
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
54
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
55
|
+
"update:modelValue": (value: any) => any;
|
|
56
|
+
} & {
|
|
57
|
+
[x: string]: never;
|
|
56
58
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
57
59
|
P: {};
|
|
58
60
|
B: {};
|
|
@@ -61,12 +63,13 @@ declare function __VLS_template(): {
|
|
|
61
63
|
M: {};
|
|
62
64
|
Defaults: {};
|
|
63
65
|
}, Readonly<{
|
|
66
|
+
modelValue?: any;
|
|
67
|
+
} & {
|
|
64
68
|
modelValue: string;
|
|
65
69
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
66
70
|
triggers?: import('../../../services/dataGen').Trigger[];
|
|
67
71
|
}> & Readonly<{
|
|
68
|
-
|
|
69
|
-
"onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
|
|
72
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
70
73
|
}>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
71
74
|
modelValue: string;
|
|
72
75
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
@@ -124,9 +127,9 @@ declare function __VLS_template(): {
|
|
|
124
127
|
M: {};
|
|
125
128
|
Defaults: {};
|
|
126
129
|
}, Readonly<{}> & Readonly<{
|
|
127
|
-
onChange?: ((
|
|
128
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
130
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
129
131
|
onError?: ((value: string) => any) | undefined;
|
|
132
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
130
133
|
}>, {
|
|
131
134
|
isFileUpload(): boolean;
|
|
132
135
|
submit(workflowId: number): void;
|
|
@@ -137,27 +140,27 @@ declare function __VLS_template(): {
|
|
|
137
140
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
138
141
|
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, {
|
|
139
142
|
dataWidgetsRef: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
140
|
-
onChange?: ((
|
|
141
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
143
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
142
144
|
onError?: ((value: string) => any) | undefined;
|
|
145
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
143
146
|
}>, {
|
|
144
147
|
isFileUpload(): boolean;
|
|
145
148
|
submit(workflowId: number): void;
|
|
146
149
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
147
|
-
change: (
|
|
148
|
-
"update:modelValue": (value: any) => any;
|
|
150
|
+
change: (...args: any[]) => any;
|
|
149
151
|
error: (value: string) => any;
|
|
152
|
+
"update:modelValue": (value: any) => any;
|
|
150
153
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
151
154
|
widgetRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
152
|
-
onChange?: ((
|
|
153
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
155
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
154
156
|
onError?: ((value: string) => any) | undefined;
|
|
155
157
|
onInput?: ((value: any) => any) | undefined;
|
|
158
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
156
159
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
157
|
-
change: (
|
|
158
|
-
"update:modelValue": (value: any) => any;
|
|
160
|
+
change: (...args: any[]) => any;
|
|
159
161
|
error: (value: string) => any;
|
|
160
162
|
input: (value: any) => any;
|
|
163
|
+
"update:modelValue": (value: any) => any;
|
|
161
164
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
162
165
|
P: {};
|
|
163
166
|
B: {};
|
|
@@ -166,20 +169,22 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
166
169
|
M: {};
|
|
167
170
|
Defaults: {};
|
|
168
171
|
}, Readonly<{}> & Readonly<{
|
|
169
|
-
onChange?: ((
|
|
170
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
172
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
171
173
|
onError?: ((value: string) => any) | undefined;
|
|
172
174
|
onInput?: ((value: any) => any) | undefined;
|
|
175
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
173
176
|
}>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
177
|
+
modelValue?: any;
|
|
178
|
+
} & {
|
|
174
179
|
modelValue: string;
|
|
175
180
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
176
181
|
triggers?: import('../../../services/dataGen').Trigger[];
|
|
177
182
|
}> & Readonly<{
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
184
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
185
|
+
"update:modelValue": (value: any) => any;
|
|
186
|
+
} & {
|
|
187
|
+
[x: string]: never;
|
|
183
188
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
184
189
|
P: {};
|
|
185
190
|
B: {};
|
|
@@ -188,12 +193,13 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
188
193
|
M: {};
|
|
189
194
|
Defaults: {};
|
|
190
195
|
}, Readonly<{
|
|
196
|
+
modelValue?: any;
|
|
197
|
+
} & {
|
|
191
198
|
modelValue: string;
|
|
192
199
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
193
200
|
triggers?: import('../../../services/dataGen').Trigger[];
|
|
194
201
|
}> & Readonly<{
|
|
195
|
-
|
|
196
|
-
"onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
|
|
202
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
197
203
|
}>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
198
204
|
modelValue: string;
|
|
199
205
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
@@ -251,9 +257,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
251
257
|
M: {};
|
|
252
258
|
Defaults: {};
|
|
253
259
|
}, Readonly<{}> & Readonly<{
|
|
254
|
-
onChange?: ((
|
|
255
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
260
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
256
261
|
onError?: ((value: string) => any) | undefined;
|
|
262
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
257
263
|
}>, {
|
|
258
264
|
isFileUpload(): boolean;
|
|
259
265
|
submit(workflowId: number): void;
|
|
@@ -11,27 +11,27 @@ declare function __VLS_template(): {
|
|
|
11
11
|
};
|
|
12
12
|
refs: {
|
|
13
13
|
dataWidgetsRef: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
14
|
-
onChange?: ((
|
|
15
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
14
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
16
15
|
onError?: ((value: string) => any) | undefined;
|
|
16
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
17
17
|
}>, {
|
|
18
18
|
isFileUpload(): boolean;
|
|
19
19
|
submit(workflowId: number): void;
|
|
20
20
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
21
|
-
change: (
|
|
22
|
-
"update:modelValue": (value: any) => any;
|
|
21
|
+
change: (...args: any[]) => any;
|
|
23
22
|
error: (value: string) => any;
|
|
23
|
+
"update:modelValue": (value: any) => any;
|
|
24
24
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
25
25
|
widgetRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
26
|
-
onChange?: ((
|
|
27
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
26
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
28
27
|
onError?: ((value: string) => any) | undefined;
|
|
29
28
|
onInput?: ((value: any) => any) | undefined;
|
|
29
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
30
30
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
31
|
-
change: (
|
|
32
|
-
"update:modelValue": (value: any) => any;
|
|
31
|
+
change: (...args: any[]) => any;
|
|
33
32
|
error: (value: string) => any;
|
|
34
33
|
input: (value: any) => any;
|
|
34
|
+
"update:modelValue": (value: any) => any;
|
|
35
35
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
36
36
|
P: {};
|
|
37
37
|
B: {};
|
|
@@ -40,20 +40,22 @@ declare function __VLS_template(): {
|
|
|
40
40
|
M: {};
|
|
41
41
|
Defaults: {};
|
|
42
42
|
}, Readonly<{}> & Readonly<{
|
|
43
|
-
onChange?: ((
|
|
44
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
43
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
45
44
|
onError?: ((value: string) => any) | undefined;
|
|
46
45
|
onInput?: ((value: any) => any) | undefined;
|
|
46
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
47
47
|
}>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
48
|
+
modelValue?: any;
|
|
49
|
+
} & {
|
|
48
50
|
modelValue: string;
|
|
49
51
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
50
52
|
triggers?: import('../../../services/dataGen').Trigger[];
|
|
51
53
|
}> & Readonly<{
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
54
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
55
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
56
|
+
"update:modelValue": (value: any) => any;
|
|
57
|
+
} & {
|
|
58
|
+
[x: string]: never;
|
|
57
59
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
58
60
|
P: {};
|
|
59
61
|
B: {};
|
|
@@ -62,12 +64,13 @@ declare function __VLS_template(): {
|
|
|
62
64
|
M: {};
|
|
63
65
|
Defaults: {};
|
|
64
66
|
}, Readonly<{
|
|
67
|
+
modelValue?: any;
|
|
68
|
+
} & {
|
|
65
69
|
modelValue: string;
|
|
66
70
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
67
71
|
triggers?: import('../../../services/dataGen').Trigger[];
|
|
68
72
|
}> & Readonly<{
|
|
69
|
-
|
|
70
|
-
"onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
|
|
73
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
71
74
|
}>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
72
75
|
modelValue: string;
|
|
73
76
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
@@ -125,9 +128,9 @@ declare function __VLS_template(): {
|
|
|
125
128
|
M: {};
|
|
126
129
|
Defaults: {};
|
|
127
130
|
}, Readonly<{}> & Readonly<{
|
|
128
|
-
onChange?: ((
|
|
129
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
131
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
130
132
|
onError?: ((value: string) => any) | undefined;
|
|
133
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
131
134
|
}>, {
|
|
132
135
|
isFileUpload(): boolean;
|
|
133
136
|
submit(workflowId: number): void;
|
|
@@ -138,27 +141,27 @@ declare function __VLS_template(): {
|
|
|
138
141
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
139
142
|
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, {
|
|
140
143
|
dataWidgetsRef: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
141
|
-
onChange?: ((
|
|
142
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
144
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
143
145
|
onError?: ((value: string) => any) | undefined;
|
|
146
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
144
147
|
}>, {
|
|
145
148
|
isFileUpload(): boolean;
|
|
146
149
|
submit(workflowId: number): void;
|
|
147
150
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
148
|
-
change: (
|
|
149
|
-
"update:modelValue": (value: any) => any;
|
|
151
|
+
change: (...args: any[]) => any;
|
|
150
152
|
error: (value: string) => any;
|
|
153
|
+
"update:modelValue": (value: any) => any;
|
|
151
154
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
|
|
152
155
|
widgetRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
153
|
-
onChange?: ((
|
|
154
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
156
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
155
157
|
onError?: ((value: string) => any) | undefined;
|
|
156
158
|
onInput?: ((value: any) => any) | undefined;
|
|
159
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
157
160
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
158
|
-
change: (
|
|
159
|
-
"update:modelValue": (value: any) => any;
|
|
161
|
+
change: (...args: any[]) => any;
|
|
160
162
|
error: (value: string) => any;
|
|
161
163
|
input: (value: any) => any;
|
|
164
|
+
"update:modelValue": (value: any) => any;
|
|
162
165
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
163
166
|
P: {};
|
|
164
167
|
B: {};
|
|
@@ -167,20 +170,22 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
167
170
|
M: {};
|
|
168
171
|
Defaults: {};
|
|
169
172
|
}, Readonly<{}> & Readonly<{
|
|
170
|
-
onChange?: ((
|
|
171
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
173
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
172
174
|
onError?: ((value: string) => any) | undefined;
|
|
173
175
|
onInput?: ((value: any) => any) | undefined;
|
|
176
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
174
177
|
}>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
178
|
+
modelValue?: any;
|
|
179
|
+
} & {
|
|
175
180
|
modelValue: string;
|
|
176
181
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
177
182
|
triggers?: import('../../../services/dataGen').Trigger[];
|
|
178
183
|
}> & Readonly<{
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
185
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
186
|
+
"update:modelValue": (value: any) => any;
|
|
187
|
+
} & {
|
|
188
|
+
[x: string]: never;
|
|
184
189
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
185
190
|
P: {};
|
|
186
191
|
B: {};
|
|
@@ -189,12 +194,13 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
189
194
|
M: {};
|
|
190
195
|
Defaults: {};
|
|
191
196
|
}, Readonly<{
|
|
197
|
+
modelValue?: any;
|
|
198
|
+
} & {
|
|
192
199
|
modelValue: string;
|
|
193
200
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
194
201
|
triggers?: import('../../../services/dataGen').Trigger[];
|
|
195
202
|
}> & Readonly<{
|
|
196
|
-
|
|
197
|
-
"onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
|
|
203
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
198
204
|
}>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
199
205
|
modelValue: string;
|
|
200
206
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
@@ -252,9 +258,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
252
258
|
M: {};
|
|
253
259
|
Defaults: {};
|
|
254
260
|
}, Readonly<{}> & Readonly<{
|
|
255
|
-
onChange?: ((
|
|
256
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
261
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
257
262
|
onError?: ((value: string) => any) | undefined;
|
|
263
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
258
264
|
}>, {
|
|
259
265
|
isFileUpload(): boolean;
|
|
260
266
|
submit(workflowId: number): void;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
2
|
-
change: (
|
|
3
|
-
"update:modelValue": (value: any) => any;
|
|
2
|
+
change: (...args: any[]) => any;
|
|
4
3
|
error: (value: string) => any;
|
|
5
4
|
input: (value: any) => any;
|
|
5
|
+
"update:modelValue": (value: any) => any;
|
|
6
6
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
7
|
-
onChange?: ((
|
|
8
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
7
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
9
8
|
onError?: ((value: string) => any) | undefined;
|
|
10
9
|
onInput?: ((value: any) => any) | undefined;
|
|
10
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
12
|
export default _default;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
2
|
-
change: (
|
|
3
|
-
"update:modelValue": (value: any) => any;
|
|
2
|
+
change: (...args: any[]) => any;
|
|
4
3
|
error: (value: string) => any;
|
|
5
4
|
input: (value: any) => any;
|
|
5
|
+
"update:modelValue": (value: any) => any;
|
|
6
6
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
7
|
-
onChange?: ((
|
|
8
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
7
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
9
8
|
onError?: ((value: string) => any) | undefined;
|
|
10
9
|
onInput?: ((value: any) => any) | undefined;
|
|
10
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
12
|
export default _default;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
2
|
-
change: (
|
|
3
|
-
"update:modelValue": (value: any) => any;
|
|
2
|
+
change: (...args: any[]) => any;
|
|
4
3
|
error: (value: string) => any;
|
|
5
4
|
input: (value: any) => any;
|
|
5
|
+
"update:modelValue": (value: any) => any;
|
|
6
6
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
7
|
-
onChange?: ((
|
|
8
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
7
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
9
8
|
onError?: ((value: string) => any) | undefined;
|
|
10
9
|
onInput?: ((value: any) => any) | undefined;
|
|
10
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
12
|
export default _default;
|
|
@@ -4,11 +4,14 @@ type __VLS_Props = {
|
|
|
4
4
|
config: WidgetConfig;
|
|
5
5
|
triggers?: Trigger[];
|
|
6
6
|
};
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
},
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
type __VLS_PublicProps = {
|
|
8
|
+
modelValue?: any;
|
|
9
|
+
} & __VLS_Props;
|
|
10
|
+
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
+
"update:modelValue": (value: any) => any;
|
|
12
|
+
} & {
|
|
13
|
+
[x: string]: never;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
15
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
13
16
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
14
17
|
export default _default;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
2
|
-
change: (
|
|
3
|
-
"update:modelValue": (value: any) => any;
|
|
2
|
+
change: (...args: any[]) => any;
|
|
4
3
|
error: (value: string) => any;
|
|
5
4
|
input: (value: any) => any;
|
|
5
|
+
"update:modelValue": (value: any) => any;
|
|
6
6
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
7
|
-
onChange?: ((
|
|
8
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
7
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
9
8
|
onError?: ((value: string) => any) | undefined;
|
|
10
9
|
onInput?: ((value: any) => any) | undefined;
|
|
10
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
11
11
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
12
|
export default _default;
|
|
@@ -2,24 +2,24 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
2
2
|
isFileUpload(): boolean;
|
|
3
3
|
submit(workflowId: number): void;
|
|
4
4
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
5
|
-
change: (
|
|
6
|
-
"update:modelValue": (value: any) => any;
|
|
5
|
+
change: (...args: any[]) => any;
|
|
7
6
|
error: (value: string) => any;
|
|
7
|
+
"update:modelValue": (value: any) => any;
|
|
8
8
|
}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
|
|
9
|
-
onChange?: ((
|
|
10
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
9
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
11
10
|
onError?: ((value: string) => any) | undefined;
|
|
11
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
12
12
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
13
13
|
widgetRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
|
|
14
|
-
onChange?: ((
|
|
15
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
14
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
16
15
|
onError?: ((value: string) => any) | undefined;
|
|
17
16
|
onInput?: ((value: any) => any) | undefined;
|
|
17
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
18
18
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
19
|
-
change: (
|
|
20
|
-
"update:modelValue": (value: any) => any;
|
|
19
|
+
change: (...args: any[]) => any;
|
|
21
20
|
error: (value: string) => any;
|
|
22
21
|
input: (value: any) => any;
|
|
22
|
+
"update:modelValue": (value: any) => any;
|
|
23
23
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
24
24
|
P: {};
|
|
25
25
|
B: {};
|
|
@@ -28,20 +28,22 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
28
28
|
M: {};
|
|
29
29
|
Defaults: {};
|
|
30
30
|
}, Readonly<{}> & Readonly<{
|
|
31
|
-
onChange?: ((
|
|
32
|
-
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
31
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
33
32
|
onError?: ((value: string) => any) | undefined;
|
|
34
33
|
onInput?: ((value: any) => any) | undefined;
|
|
34
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
35
35
|
}>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
36
|
+
modelValue?: any;
|
|
37
|
+
} & {
|
|
36
38
|
modelValue: string;
|
|
37
39
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
38
40
|
triggers?: import('../../../services/dataGen').Trigger[];
|
|
39
41
|
}> & Readonly<{
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
42
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
43
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
44
|
+
"update:modelValue": (value: any) => any;
|
|
45
|
+
} & {
|
|
46
|
+
[x: string]: never;
|
|
45
47
|
}, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
46
48
|
P: {};
|
|
47
49
|
B: {};
|
|
@@ -50,12 +52,13 @@ declare const _default: import('vue').DefineComponent<{}, {
|
|
|
50
52
|
M: {};
|
|
51
53
|
Defaults: {};
|
|
52
54
|
}, Readonly<{
|
|
55
|
+
modelValue?: any;
|
|
56
|
+
} & {
|
|
53
57
|
modelValue: string;
|
|
54
58
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
55
59
|
triggers?: import('../../../services/dataGen').Trigger[];
|
|
56
60
|
}> & Readonly<{
|
|
57
|
-
|
|
58
|
-
"onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
|
|
61
|
+
[x: `on${Capitalize<string>}`]: ((...args: unknown[]) => any) | undefined;
|
|
59
62
|
}>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
60
63
|
modelValue: string;
|
|
61
64
|
config: import('../../../services/dataGen').WidgetConfig;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
1
|
import { InjectionKey } from 'vue';
|
|
2
|
-
|
|
3
|
-
export declare
|
|
4
|
-
export declare function useTriggers(): Trigger[];
|
|
2
|
+
export declare const TriggersKey: InjectionKey<Record<string, (...args: any[]) => void>>;
|
|
3
|
+
export declare function useTriggers(): Record<string, (...args: any[]) => void>;
|