@chase-shao/vue-component-lib 1.2.11 → 1.2.13

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.
@@ -1,4 +1,4 @@
1
- import { ActionProps, ActionTypeEnum } from './types';
1
+ import { ActionProps } from './types';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -9,9 +9,9 @@ declare function __VLS_template(): {
9
9
  };
10
10
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
11
  declare const __VLS_component: import('vue').DefineComponent<ActionProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
12
- click: (type: ActionTypeEnum, url: string, redirectType: import('../../../types').RedirectType) => any;
12
+ click: (url: string, redirectType: import('../../../types').RedirectType) => any;
13
13
  }, string, import('vue').PublicProps, Readonly<ActionProps> & Readonly<{
14
- onClick?: ((type: ActionTypeEnum, url: string, redirectType: import('../../../types').RedirectType) => any) | undefined;
14
+ onClick?: ((url: string, redirectType: import('../../../types').RedirectType) => any) | undefined;
15
15
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
16
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
17
  export default _default;
@@ -1,4 +1,4 @@
1
- import { ActionProps, ActionTypeEnum } from './types';
1
+ import { ActionProps } from './types';
2
2
  declare function __VLS_template(): {
3
3
  attrs: Partial<{}>;
4
4
  slots: {
@@ -9,9 +9,9 @@ declare function __VLS_template(): {
9
9
  };
10
10
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
11
  declare const __VLS_component: import('vue').DefineComponent<ActionProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
12
- click: (type: ActionTypeEnum, url: string, redirectType: import('../../../types').RedirectType) => any;
12
+ click: (url: string, redirectType: import('../../../types').RedirectType) => any;
13
13
  }, string, import('vue').PublicProps, Readonly<ActionProps> & Readonly<{
14
- onClick?: ((type: ActionTypeEnum, url: string, redirectType: import('../../../types').RedirectType) => any) | undefined;
14
+ onClick?: ((url: string, redirectType: import('../../../types').RedirectType) => any) | undefined;
15
15
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
16
16
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
17
  export default _default;
@@ -4,10 +4,9 @@ import { RedirectType } from '../../../types';
4
4
  type __VLS_Props = {
5
5
  config: Action;
6
6
  };
7
- declare const RedirectType: import('vue').ComputedRef<"Create" | "Update" | "Details">;
8
7
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
9
- click: (type: ActionTypeEnum, url: string, redirectType: RedirectType) => any;
8
+ click: (actionType: ActionTypeEnum, url: string, redirectType: RedirectType) => any;
10
9
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
11
- onClick?: ((type: ActionTypeEnum, url: string, redirectType: RedirectType) => any) | undefined;
10
+ onClick?: ((actionType: ActionTypeEnum, url: string, redirectType: RedirectType) => any) | undefined;
12
11
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
13
12
  export default _default;
@@ -1,14 +1,17 @@
1
1
  import { RedirectType } from '../../../types';
2
- type ActionProps = {
3
- url: string;
4
- redirectType: RedirectType;
5
- };
6
2
  declare enum ActionTypeEnum {
7
3
  Submit = 0,
8
4
  Link = 1
9
5
  }
6
+ type ActionProps = {
7
+ url: string;
8
+ redirectType: RedirectType;
9
+ };
10
10
  type ActionEmits = {
11
- (e: 'click', type: ActionTypeEnum, url: string, redirectType: RedirectType): void;
11
+ (e: 'click', actionType: ActionTypeEnum, url: string, redirectType: RedirectType): void;
12
+ };
13
+ type ActionNoTypeEmits = {
14
+ (e: 'click', url: string, redirectType: RedirectType): void;
12
15
  };
13
16
  export type { ActionProps, ActionEmits };
14
- export { ActionTypeEnum };
17
+ export { ActionTypeEnum, ActionNoTypeEmits };
@@ -10,27 +10,27 @@ declare function __VLS_template(): {
10
10
  };
11
11
  refs: {
12
12
  dataWidgetsRef: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
13
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
13
14
  onChange?: ((value: any) => any) | undefined;
14
15
  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
+ "update:modelValue": (value: any) => any;
20
21
  change: (value: any) => any;
21
22
  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
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
25
26
  onChange?: ((value: any) => any) | undefined;
26
27
  onError?: ((value: string) => any) | undefined;
27
28
  onInput?: ((value: any) => any) | undefined;
28
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
29
29
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
30
+ "update:modelValue": (value: any) => any;
30
31
  change: (value: any) => any;
31
32
  error: (value: string) => any;
32
33
  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,19 +39,19 @@ declare function __VLS_template(): {
39
39
  M: {};
40
40
  Defaults: {};
41
41
  }, Readonly<{}> & Readonly<{
42
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
42
43
  onChange?: ((value: any) => any) | undefined;
43
44
  onError?: ((value: string) => any) | undefined;
44
45
  onInput?: ((value: any) => any) | undefined;
45
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
46
46
  }>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
47
47
  modelValue: string;
48
48
  config: import('../../../services/dataGen').WidgetConfig;
49
49
  }> & Readonly<{
50
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
51
50
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
51
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
52
52
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
53
- change: (value?: string | number | null | undefined) => any;
54
53
  "update:modelValue": (value?: string | number | null | undefined) => any;
54
+ change: (value?: string | number | null | undefined) => any;
55
55
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
56
56
  P: {};
57
57
  B: {};
@@ -63,18 +63,18 @@ declare function __VLS_template(): {
63
63
  modelValue: string;
64
64
  config: import('../../../services/dataGen').WidgetConfig;
65
65
  }> & Readonly<{
66
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
67
66
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
67
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
68
68
  }>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
69
69
  config: import('../../../services/dataGen').WidgetConfig;
70
70
  }> & Readonly<{
71
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
72
71
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
72
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
73
73
  }>, {
74
74
  submit(workflowId: number): void;
75
75
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
76
- change: (value?: string | number | null | undefined) => any;
77
76
  "update:modelValue": (value?: string | number | null | undefined) => any;
77
+ change: (value?: string | number | null | undefined) => any;
78
78
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
79
79
  uploadRef: any;
80
80
  }, any, import('vue').ComponentProvideOptions, {
@@ -87,8 +87,8 @@ declare function __VLS_template(): {
87
87
  }, Readonly<{
88
88
  config: import('../../../services/dataGen').WidgetConfig;
89
89
  }> & Readonly<{
90
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
91
90
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
91
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
92
92
  }>, {
93
93
  submit(workflowId: number): void;
94
94
  }, {}, {}, {}, {}> | null;
@@ -100,9 +100,9 @@ declare function __VLS_template(): {
100
100
  M: {};
101
101
  Defaults: {};
102
102
  }, Readonly<{}> & Readonly<{
103
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
103
104
  onChange?: ((value: any) => any) | undefined;
104
105
  onError?: ((value: string) => any) | undefined;
105
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
106
106
  }>, {
107
107
  isFileUpload(): boolean;
108
108
  submit(workflowId: number): void;
@@ -113,27 +113,27 @@ declare function __VLS_template(): {
113
113
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
114
114
  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, {
115
115
  dataWidgetsRef: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
116
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
116
117
  onChange?: ((value: any) => any) | undefined;
117
118
  onError?: ((value: string) => any) | undefined;
118
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
119
119
  }>, {
120
120
  isFileUpload(): boolean;
121
121
  submit(workflowId: number): void;
122
122
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
123
+ "update:modelValue": (value: any) => any;
123
124
  change: (value: any) => any;
124
125
  error: (value: string) => any;
125
- "update:modelValue": (value: any) => any;
126
126
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
127
127
  widgetRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
128
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
128
129
  onChange?: ((value: any) => any) | undefined;
129
130
  onError?: ((value: string) => any) | undefined;
130
131
  onInput?: ((value: any) => any) | undefined;
131
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
132
132
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
133
+ "update:modelValue": (value: any) => any;
133
134
  change: (value: any) => any;
134
135
  error: (value: string) => any;
135
136
  input: (value: any) => any;
136
- "update:modelValue": (value: any) => any;
137
137
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
138
138
  P: {};
139
139
  B: {};
@@ -142,19 +142,19 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
142
142
  M: {};
143
143
  Defaults: {};
144
144
  }, Readonly<{}> & Readonly<{
145
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
145
146
  onChange?: ((value: any) => any) | undefined;
146
147
  onError?: ((value: string) => any) | undefined;
147
148
  onInput?: ((value: any) => any) | undefined;
148
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
149
149
  }>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
150
150
  modelValue: string;
151
151
  config: import('../../../services/dataGen').WidgetConfig;
152
152
  }> & Readonly<{
153
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
154
153
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
154
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
155
155
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
156
- change: (value?: string | number | null | undefined) => any;
157
156
  "update:modelValue": (value?: string | number | null | undefined) => any;
157
+ change: (value?: string | number | null | undefined) => any;
158
158
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
159
159
  P: {};
160
160
  B: {};
@@ -166,18 +166,18 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
166
166
  modelValue: string;
167
167
  config: import('../../../services/dataGen').WidgetConfig;
168
168
  }> & Readonly<{
169
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
170
169
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
170
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
171
171
  }>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
172
172
  config: import('../../../services/dataGen').WidgetConfig;
173
173
  }> & Readonly<{
174
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
175
174
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
175
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
176
176
  }>, {
177
177
  submit(workflowId: number): void;
178
178
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
179
- change: (value?: string | number | null | undefined) => any;
180
179
  "update:modelValue": (value?: string | number | null | undefined) => any;
180
+ change: (value?: string | number | null | undefined) => any;
181
181
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
182
182
  uploadRef: any;
183
183
  }, any, import('vue').ComponentProvideOptions, {
@@ -190,8 +190,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
190
190
  }, Readonly<{
191
191
  config: import('../../../services/dataGen').WidgetConfig;
192
192
  }> & Readonly<{
193
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
194
193
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
194
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
195
195
  }>, {
196
196
  submit(workflowId: number): void;
197
197
  }, {}, {}, {}, {}> | null;
@@ -203,9 +203,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
203
203
  M: {};
204
204
  Defaults: {};
205
205
  }, Readonly<{}> & Readonly<{
206
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
206
207
  onChange?: ((value: any) => any) | undefined;
207
208
  onError?: ((value: string) => any) | undefined;
208
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
209
209
  }>, {
210
210
  isFileUpload(): boolean;
211
211
  submit(workflowId: number): void;
@@ -4,7 +4,6 @@ type __VLS_Props = {
4
4
  declare function __VLS_template(): {
5
5
  attrs: Partial<{}>;
6
6
  slots: {
7
- title?(_: {}): any;
8
7
  content?(_: {}): any;
9
8
  };
10
9
  refs: {};
@@ -11,27 +11,27 @@ declare function __VLS_template(): {
11
11
  };
12
12
  refs: {
13
13
  dataWidgetsRef: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
14
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
14
15
  onChange?: ((value: any) => any) | undefined;
15
16
  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
+ "update:modelValue": (value: any) => any;
21
22
  change: (value: any) => any;
22
23
  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
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
26
27
  onChange?: ((value: any) => any) | undefined;
27
28
  onError?: ((value: string) => any) | undefined;
28
29
  onInput?: ((value: any) => any) | undefined;
29
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
30
30
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
31
+ "update:modelValue": (value: any) => any;
31
32
  change: (value: any) => any;
32
33
  error: (value: string) => any;
33
34
  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,19 +40,19 @@ declare function __VLS_template(): {
40
40
  M: {};
41
41
  Defaults: {};
42
42
  }, Readonly<{}> & Readonly<{
43
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
43
44
  onChange?: ((value: any) => any) | undefined;
44
45
  onError?: ((value: string) => any) | undefined;
45
46
  onInput?: ((value: any) => any) | undefined;
46
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
47
47
  }>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
48
48
  modelValue: string;
49
49
  config: import('../../../services/dataGen').WidgetConfig;
50
50
  }> & Readonly<{
51
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
52
51
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
52
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
53
53
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
54
- change: (value?: string | number | null | undefined) => any;
55
54
  "update:modelValue": (value?: string | number | null | undefined) => any;
55
+ change: (value?: string | number | null | undefined) => any;
56
56
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
57
57
  P: {};
58
58
  B: {};
@@ -64,18 +64,18 @@ declare function __VLS_template(): {
64
64
  modelValue: string;
65
65
  config: import('../../../services/dataGen').WidgetConfig;
66
66
  }> & Readonly<{
67
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
68
67
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
68
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
69
69
  }>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
70
70
  config: import('../../../services/dataGen').WidgetConfig;
71
71
  }> & Readonly<{
72
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
73
72
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
73
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
74
74
  }>, {
75
75
  submit(workflowId: number): void;
76
76
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
77
- change: (value?: string | number | null | undefined) => any;
78
77
  "update:modelValue": (value?: string | number | null | undefined) => any;
78
+ change: (value?: string | number | null | undefined) => any;
79
79
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
80
80
  uploadRef: any;
81
81
  }, any, import('vue').ComponentProvideOptions, {
@@ -88,8 +88,8 @@ declare function __VLS_template(): {
88
88
  }, Readonly<{
89
89
  config: import('../../../services/dataGen').WidgetConfig;
90
90
  }> & Readonly<{
91
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
92
91
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
92
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
93
93
  }>, {
94
94
  submit(workflowId: number): void;
95
95
  }, {}, {}, {}, {}> | null;
@@ -101,9 +101,9 @@ declare function __VLS_template(): {
101
101
  M: {};
102
102
  Defaults: {};
103
103
  }, Readonly<{}> & Readonly<{
104
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
104
105
  onChange?: ((value: any) => any) | undefined;
105
106
  onError?: ((value: string) => any) | undefined;
106
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
107
107
  }>, {
108
108
  isFileUpload(): boolean;
109
109
  submit(workflowId: number): void;
@@ -114,27 +114,27 @@ declare function __VLS_template(): {
114
114
  type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
115
115
  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, {
116
116
  dataWidgetsRef: (import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
117
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
117
118
  onChange?: ((value: any) => any) | undefined;
118
119
  onError?: ((value: string) => any) | undefined;
119
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
120
120
  }>, {
121
121
  isFileUpload(): boolean;
122
122
  submit(workflowId: number): void;
123
123
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
124
+ "update:modelValue": (value: any) => any;
124
125
  change: (value: any) => any;
125
126
  error: (value: string) => any;
126
- "update:modelValue": (value: any) => any;
127
127
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
128
128
  widgetRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{
129
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
129
130
  onChange?: ((value: any) => any) | undefined;
130
131
  onError?: ((value: string) => any) | undefined;
131
132
  onInput?: ((value: any) => any) | undefined;
132
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
133
133
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
134
+ "update:modelValue": (value: any) => any;
134
135
  change: (value: any) => any;
135
136
  error: (value: string) => any;
136
137
  input: (value: any) => any;
137
- "update:modelValue": (value: any) => any;
138
138
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
139
139
  P: {};
140
140
  B: {};
@@ -143,19 +143,19 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
143
143
  M: {};
144
144
  Defaults: {};
145
145
  }, Readonly<{}> & Readonly<{
146
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
146
147
  onChange?: ((value: any) => any) | undefined;
147
148
  onError?: ((value: string) => any) | undefined;
148
149
  onInput?: ((value: any) => any) | undefined;
149
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
150
150
  }>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
151
151
  modelValue: string;
152
152
  config: import('../../../services/dataGen').WidgetConfig;
153
153
  }> & Readonly<{
154
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
155
154
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
155
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
156
156
  }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
157
- change: (value?: string | number | null | undefined) => any;
158
157
  "update:modelValue": (value?: string | number | null | undefined) => any;
158
+ change: (value?: string | number | null | undefined) => any;
159
159
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
160
160
  P: {};
161
161
  B: {};
@@ -167,18 +167,18 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
167
167
  modelValue: string;
168
168
  config: import('../../../services/dataGen').WidgetConfig;
169
169
  }> & Readonly<{
170
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
171
170
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
171
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
172
172
  }>, {}, {}, {}, {}, {}> | import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
173
173
  config: import('../../../services/dataGen').WidgetConfig;
174
174
  }> & Readonly<{
175
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
176
175
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
176
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
177
177
  }>, {
178
178
  submit(workflowId: number): void;
179
179
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
180
- change: (value?: string | number | null | undefined) => any;
181
180
  "update:modelValue": (value?: string | number | null | undefined) => any;
181
+ change: (value?: string | number | null | undefined) => any;
182
182
  }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
183
183
  uploadRef: any;
184
184
  }, any, import('vue').ComponentProvideOptions, {
@@ -191,8 +191,8 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
191
191
  }, Readonly<{
192
192
  config: import('../../../services/dataGen').WidgetConfig;
193
193
  }> & Readonly<{
194
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
195
194
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
195
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
196
196
  }>, {
197
197
  submit(workflowId: number): void;
198
198
  }, {}, {}, {}, {}> | null;
@@ -204,9 +204,9 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
204
204
  M: {};
205
205
  Defaults: {};
206
206
  }, Readonly<{}> & Readonly<{
207
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
207
208
  onChange?: ((value: any) => any) | undefined;
208
209
  onError?: ((value: string) => any) | undefined;
209
- "onUpdate:modelValue"?: ((value: any) => any) | undefined;
210
210
  }>, {
211
211
  isFileUpload(): boolean;
212
212
  submit(workflowId: number): void;
@@ -4,10 +4,10 @@ type __VLS_Props = {
4
4
  config: WidgetConfig;
5
5
  };
6
6
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
7
- change: (value?: string | number | null | undefined) => any;
8
7
  "update:modelValue": (value?: string | number | null | undefined) => any;
8
+ change: (value?: string | number | null | undefined) => any;
9
9
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
10
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
11
10
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
11
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
12
12
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
13
13
  export default _default;
@@ -0,0 +1,12 @@
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
2
+ "update:modelValue": (value: any) => any;
3
+ change: (value: any) => any;
4
+ error: (value: string) => any;
5
+ input: (value: any) => any;
6
+ }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
7
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
8
+ onChange?: ((value: any) => any) | undefined;
9
+ onError?: ((value: string) => any) | undefined;
10
+ onInput?: ((value: any) => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
+ export default _default;
@@ -5,11 +5,11 @@ type __VLS_Props = {
5
5
  declare const _default: import('vue').DefineComponent<__VLS_Props, {
6
6
  submit(workflowId: number): void;
7
7
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
8
- change: (value?: string | number | null | undefined) => any;
9
8
  "update:modelValue": (value?: string | number | null | undefined) => any;
9
+ change: (value?: string | number | null | undefined) => any;
10
10
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
11
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
12
11
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
12
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
13
13
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
14
14
  uploadRef: any;
15
15
  }, any>;
@@ -1,12 +1,12 @@
1
1
  declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
2
+ "update:modelValue": (value: any) => any;
2
3
  change: (value: any) => any;
3
4
  error: (value: string) => any;
4
5
  input: (value: any) => any;
5
- "update:modelValue": (value: any) => any;
6
6
  }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
7
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
7
8
  onChange?: ((value: any) => any) | undefined;
8
9
  onError?: ((value: string) => any) | undefined;
9
10
  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
+ "update:modelValue": (value: any) => any;
2
3
  change: (value: any) => any;
3
4
  error: (value: string) => any;
4
5
  input: (value: any) => any;
5
- "update:modelValue": (value: any) => any;
6
6
  }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
7
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
7
8
  onChange?: ((value: any) => any) | undefined;
8
9
  onError?: ((value: string) => any) | undefined;
9
10
  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,10 +4,10 @@ type __VLS_Props = {
4
4
  config: WidgetConfig;
5
5
  };
6
6
  declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
7
- change: (value?: string | number | null | undefined) => any;
8
7
  "update:modelValue": (value?: string | number | null | undefined) => any;
8
+ change: (value?: string | number | null | undefined) => any;
9
9
  }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
10
- onChange?: ((value?: string | number | null | undefined) => any) | undefined;
11
10
  "onUpdate:modelValue"?: ((value?: string | number | null | undefined) => any) | undefined;
11
+ onChange?: ((value?: string | number | null | undefined) => any) | undefined;
12
12
  }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
13
13
  export default _default;
@@ -1,12 +1,12 @@
1
1
  declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
2
+ "update:modelValue": (value: any) => any;
2
3
  change: (value: any) => any;
3
4
  error: (value: string) => any;
4
5
  input: (value: any) => any;
5
- "update:modelValue": (value: any) => any;
6
6
  }, string, import('vue').PublicProps, Readonly<{}> & Readonly<{
7
+ "onUpdate:modelValue"?: ((value: any) => any) | undefined;
7
8
  onChange?: ((value: any) => any) | undefined;
8
9
  onError?: ((value: string) => any) | undefined;
9
10
  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;