eco-vue-js 0.9.1 → 0.9.2

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.
@@ -3,15 +3,396 @@ declare function __VLS_template(): {
3
3
  title?(_: {}): any;
4
4
  };
5
5
  refs: {
6
- tabs: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
7
- customSlots?: import('vue').VNode[];
8
- lessTransitions?: boolean;
9
- initTab?: number;
10
- side?: boolean;
11
- disableMinHeight?: boolean;
12
- noHeader?: boolean;
13
- switchToNew?: boolean;
14
- }> & Readonly<{
6
+ tabsStepper: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
7
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
8
+ "onUpdate:first"?: ((value: boolean) => any) | undefined;
9
+ "onUpdate:last"?: ((value: boolean) => any) | undefined;
10
+ "onUpdate:current"?: ((value: string) => any) | undefined;
11
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
12
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
13
+ "onUpdate:progress"?: ((value: number) => any) | undefined;
14
+ }>, {
15
+ next: () => void;
16
+ previous: () => void;
17
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
18
+ "update:has-changes": (value: boolean) => any;
19
+ "update:first": (value: boolean) => any;
20
+ "update:last": (value: boolean) => any;
21
+ "update:current": (value: string) => any;
22
+ "update:current-index": (value: number) => any;
23
+ "update:current-title": (value: string) => any;
24
+ "update:progress": (value: number) => any;
25
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
26
+ tabs: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../Tabs/types').TabsProps> & Readonly<{
27
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
28
+ "onUpdate:current"?: ((value: string) => any) | undefined;
29
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
30
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
31
+ "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
32
+ }>, {
33
+ updateCurrent: (value: string) => void;
34
+ updateIndex: (value: number) => void;
35
+ next: () => void;
36
+ previous: () => void;
37
+ validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
38
+ invalidate: (index: number, payload: {
39
+ [x: string]: string | string[] | undefined;
40
+ }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
41
+ initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
42
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
43
+ "update:has-changes": (value: boolean) => any;
44
+ "update:current": (value: string) => any;
45
+ "update:current-index": (value: number) => any;
46
+ "update:current-title": (value: string) => any;
47
+ "update:tabs-length": (value: number) => any;
48
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
49
+ buttonContainer: HTMLDivElement;
50
+ button: (({
51
+ $: import('vue').ComponentInternalInstance;
52
+ $data: {};
53
+ $props: {
54
+ readonly active: boolean;
55
+ readonly index: number;
56
+ readonly hasError: boolean;
57
+ readonly hasChanges: boolean;
58
+ readonly title: string;
59
+ readonly icon: SVGComponent | undefined;
60
+ readonly side?: boolean | undefined;
61
+ readonly onClick?: ((value: MouseEvent) => any) | undefined;
62
+ readonly "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
63
+ readonly "onUpdate:scroll-position"?: ((value: {
64
+ left: number;
65
+ } | {
66
+ top: number;
67
+ }) => any) | undefined;
68
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
69
+ $attrs: {
70
+ [x: string]: unknown;
71
+ };
72
+ $refs: {
73
+ [x: string]: unknown;
74
+ } & {
75
+ button: HTMLButtonElement;
76
+ };
77
+ $slots: Readonly<{
78
+ [name: string]: import('vue').Slot<any> | undefined;
79
+ }>;
80
+ $root: import('vue').ComponentPublicInstance | null;
81
+ $parent: import('vue').ComponentPublicInstance | null;
82
+ $host: Element | null;
83
+ $emit: ((event: "click", value: MouseEvent) => void) & ((event: "update:indicator-style", value: import('vue').CSSProperties) => void) & ((event: "update:scroll-position", value: {
84
+ left: number;
85
+ } | {
86
+ top: number;
87
+ }) => void);
88
+ $el: any;
89
+ $options: import('vue').ComponentOptionsBase<Readonly<{
90
+ active: boolean;
91
+ index: number;
92
+ hasError: boolean;
93
+ hasChanges: boolean;
94
+ title: string;
95
+ icon: SVGComponent | undefined;
96
+ side?: boolean;
97
+ }> & Readonly<{
98
+ onClick?: ((value: MouseEvent) => any) | undefined;
99
+ "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
100
+ "onUpdate:scroll-position"?: ((value: {
101
+ left: number;
102
+ } | {
103
+ top: number;
104
+ }) => any) | undefined;
105
+ }>, {
106
+ update: () => void;
107
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
108
+ click: (value: MouseEvent) => any;
109
+ "update:indicator-style": (value: import('vue').CSSProperties) => any;
110
+ "update:scroll-position": (value: {
111
+ left: number;
112
+ } | {
113
+ top: number;
114
+ }) => any;
115
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
116
+ beforeCreate?: (() => void) | (() => void)[];
117
+ created?: (() => void) | (() => void)[];
118
+ beforeMount?: (() => void) | (() => void)[];
119
+ mounted?: (() => void) | (() => void)[];
120
+ beforeUpdate?: (() => void) | (() => void)[];
121
+ updated?: (() => void) | (() => void)[];
122
+ activated?: (() => void) | (() => void)[];
123
+ deactivated?: (() => void) | (() => void)[];
124
+ beforeDestroy?: (() => void) | (() => void)[];
125
+ beforeUnmount?: (() => void) | (() => void)[];
126
+ destroyed?: (() => void) | (() => void)[];
127
+ unmounted?: (() => void) | (() => void)[];
128
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
129
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
130
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
131
+ };
132
+ $forceUpdate: () => void;
133
+ $nextTick: typeof import('vue').nextTick;
134
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
135
+ } & Readonly<{}> & Omit<Readonly<{
136
+ active: boolean;
137
+ index: number;
138
+ hasError: boolean;
139
+ hasChanges: boolean;
140
+ title: string;
141
+ icon: SVGComponent | undefined;
142
+ side?: boolean;
143
+ }> & Readonly<{
144
+ onClick?: ((value: MouseEvent) => any) | undefined;
145
+ "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
146
+ "onUpdate:scroll-position"?: ((value: {
147
+ left: number;
148
+ } | {
149
+ top: number;
150
+ }) => any) | undefined;
151
+ }>, "update"> & import('vue').ShallowUnwrapRef<{
152
+ update: () => void;
153
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
154
+ $slots: {
155
+ title?(_: {}): any;
156
+ suffix?(_: {}): any;
157
+ right?(_: {}): any;
158
+ };
159
+ }) | null)[];
160
+ tabItem: (({
161
+ $: import('vue').ComponentInternalInstance;
162
+ $data: {};
163
+ $props: {
164
+ readonly active: boolean;
165
+ readonly removable: boolean;
166
+ readonly "onUpdate:height"?: ((value: number) => any) | undefined;
167
+ readonly "onUpdate:active"?: (() => any) | undefined;
168
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
169
+ $attrs: {
170
+ [x: string]: unknown;
171
+ };
172
+ $refs: {
173
+ [x: string]: unknown;
174
+ } & {
175
+ element: HTMLDivElement;
176
+ };
177
+ $slots: Readonly<{
178
+ [name: string]: import('vue').Slot<any> | undefined;
179
+ }>;
180
+ $root: import('vue').ComponentPublicInstance | null;
181
+ $parent: import('vue').ComponentPublicInstance | null;
182
+ $host: Element | null;
183
+ $emit: ((event: "update:height", value: number) => void) & ((event: "update:active") => void);
184
+ $el: any;
185
+ $options: import('vue').ComponentOptionsBase<Readonly<{
186
+ active: boolean;
187
+ removable: boolean;
188
+ }> & Readonly<{
189
+ "onUpdate:height"?: ((value: number) => any) | undefined;
190
+ "onUpdate:active"?: (() => any) | undefined;
191
+ }>, {
192
+ emitHeight: () => void;
193
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
194
+ "update:height": (value: number) => any;
195
+ "update:active": () => any;
196
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
197
+ beforeCreate?: (() => void) | (() => void)[];
198
+ created?: (() => void) | (() => void)[];
199
+ beforeMount?: (() => void) | (() => void)[];
200
+ mounted?: (() => void) | (() => void)[];
201
+ beforeUpdate?: (() => void) | (() => void)[];
202
+ updated?: (() => void) | (() => void)[];
203
+ activated?: (() => void) | (() => void)[];
204
+ deactivated?: (() => void) | (() => void)[];
205
+ beforeDestroy?: (() => void) | (() => void)[];
206
+ beforeUnmount?: (() => void) | (() => void)[];
207
+ destroyed?: (() => void) | (() => void)[];
208
+ unmounted?: (() => void) | (() => void)[];
209
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
210
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
211
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
212
+ };
213
+ $forceUpdate: () => void;
214
+ $nextTick: typeof import('vue').nextTick;
215
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
216
+ } & Readonly<{}> & Omit<Readonly<{
217
+ active: boolean;
218
+ removable: boolean;
219
+ }> & Readonly<{
220
+ "onUpdate:height"?: ((value: number) => any) | undefined;
221
+ "onUpdate:active"?: (() => any) | undefined;
222
+ }>, "emitHeight"> & import('vue').ShallowUnwrapRef<{
223
+ emitHeight: () => void;
224
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
225
+ $slots: {
226
+ default?(_: {}): any;
227
+ };
228
+ }) | null)[];
229
+ form: (({
230
+ $: import('vue').ComponentInternalInstance;
231
+ $data: {};
232
+ $props: {
233
+ readonly name?: string | undefined;
234
+ readonly title?: string | undefined;
235
+ readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
236
+ readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
237
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
238
+ $attrs: {
239
+ [x: string]: unknown;
240
+ };
241
+ $refs: {
242
+ [x: string]: unknown;
243
+ };
244
+ $slots: Readonly<{
245
+ [name: string]: import('vue').Slot<any> | undefined;
246
+ }>;
247
+ $root: import('vue').ComponentPublicInstance | null;
248
+ $parent: import('vue').ComponentPublicInstance | null;
249
+ $host: Element | null;
250
+ $emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void);
251
+ $el: any;
252
+ $options: import('vue').ComponentOptionsBase<Readonly<{
253
+ name?: string;
254
+ title?: string;
255
+ }> & Readonly<{
256
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
257
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
258
+ }>, {
259
+ isValid: import('vue').ComputedRef<boolean>;
260
+ validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
261
+ invalidate: (payload: {
262
+ [x: string]: string | string[] | undefined;
263
+ }) => void;
264
+ initModel: () => void;
265
+ errorMessage: import('vue').ComputedRef<string>;
266
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
267
+ "update:has-changes": (value: boolean) => any;
268
+ "update:is-valid": (value: boolean | undefined) => any;
269
+ }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
270
+ beforeCreate?: (() => void) | (() => void)[];
271
+ created?: (() => void) | (() => void)[];
272
+ beforeMount?: (() => void) | (() => void)[];
273
+ mounted?: (() => void) | (() => void)[];
274
+ beforeUpdate?: (() => void) | (() => void)[];
275
+ updated?: (() => void) | (() => void)[];
276
+ activated?: (() => void) | (() => void)[];
277
+ deactivated?: (() => void) | (() => void)[];
278
+ beforeDestroy?: (() => void) | (() => void)[];
279
+ beforeUnmount?: (() => void) | (() => void)[];
280
+ destroyed?: (() => void) | (() => void)[];
281
+ unmounted?: (() => void) | (() => void)[];
282
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
283
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
284
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
285
+ };
286
+ $forceUpdate: () => void;
287
+ $nextTick: typeof import('vue').nextTick;
288
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
289
+ } & Readonly<{}> & Omit<Readonly<{
290
+ name?: string;
291
+ title?: string;
292
+ }> & Readonly<{
293
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
294
+ "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
295
+ }>, "errorMessage" | "isValid" | "validate" | "invalidate" | "initModel"> & import('vue').ShallowUnwrapRef<{
296
+ isValid: import('vue').ComputedRef<boolean>;
297
+ validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
298
+ invalidate: (payload: {
299
+ [x: string]: string | string[] | undefined;
300
+ }) => void;
301
+ initModel: () => void;
302
+ errorMessage: import('vue').ComputedRef<string>;
303
+ }> & {} & import('vue').ComponentCustomProperties & {} & {
304
+ $slots: {
305
+ default?(_: {}): any;
306
+ };
307
+ }) | null)[];
308
+ }, any, import('vue').ComponentProvideOptions, {
309
+ P: {};
310
+ B: {};
311
+ D: {};
312
+ C: {};
313
+ M: {};
314
+ Defaults: {};
315
+ }, Readonly<import('../Tabs/types').TabsProps> & Readonly<{
316
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
317
+ "onUpdate:current"?: ((value: string) => any) | undefined;
318
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
319
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
320
+ "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
321
+ }>, {
322
+ updateCurrent: (value: string) => void;
323
+ updateIndex: (value: number) => void;
324
+ next: () => void;
325
+ previous: () => void;
326
+ validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
327
+ invalidate: (index: number, payload: {
328
+ [x: string]: string | string[] | undefined;
329
+ }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
330
+ initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
331
+ }, {}, {}, {}, {}> | null;
332
+ }, any, import('vue').ComponentProvideOptions, {
333
+ P: {};
334
+ B: {};
335
+ D: {};
336
+ C: {};
337
+ M: {};
338
+ Defaults: {};
339
+ }, Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
340
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
341
+ "onUpdate:first"?: ((value: boolean) => any) | undefined;
342
+ "onUpdate:last"?: ((value: boolean) => any) | undefined;
343
+ "onUpdate:current"?: ((value: string) => any) | undefined;
344
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
345
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
346
+ "onUpdate:progress"?: ((value: number) => any) | undefined;
347
+ }>, {
348
+ next: () => void;
349
+ previous: () => void;
350
+ }, {}, {}, {}, {}> | null;
351
+ };
352
+ attrs: Partial<{}>;
353
+ };
354
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
355
+ declare const __VLS_component: import('vue').DefineComponent<{
356
+ loading?: boolean;
357
+ disabled?: boolean;
358
+ disabledNext?: boolean;
359
+ }, {
360
+ next: () => void;
361
+ previous: () => void;
362
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
363
+ submit: () => any;
364
+ "close:modal": () => any;
365
+ "update:has-changes": (value: boolean) => any;
366
+ }, string, import('vue').PublicProps, Readonly<{
367
+ loading?: boolean;
368
+ disabled?: boolean;
369
+ disabledNext?: boolean;
370
+ }> & Readonly<{
371
+ onSubmit?: (() => any) | undefined;
372
+ "onClose:modal"?: (() => any) | undefined;
373
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
374
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
375
+ tabsStepper: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
376
+ "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
377
+ "onUpdate:first"?: ((value: boolean) => any) | undefined;
378
+ "onUpdate:last"?: ((value: boolean) => any) | undefined;
379
+ "onUpdate:current"?: ((value: string) => any) | undefined;
380
+ "onUpdate:current-index"?: ((value: number) => any) | undefined;
381
+ "onUpdate:current-title"?: ((value: string) => any) | undefined;
382
+ "onUpdate:progress"?: ((value: number) => any) | undefined;
383
+ }>, {
384
+ next: () => void;
385
+ previous: () => void;
386
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
387
+ "update:has-changes": (value: boolean) => any;
388
+ "update:first": (value: boolean) => any;
389
+ "update:last": (value: boolean) => any;
390
+ "update:current": (value: string) => any;
391
+ "update:current-index": (value: number) => any;
392
+ "update:current-title": (value: string) => any;
393
+ "update:progress": (value: number) => any;
394
+ }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
395
+ tabs: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('../Tabs/types').TabsProps> & Readonly<{
15
396
  "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
16
397
  "onUpdate:current"?: ((value: string) => any) | undefined;
17
398
  "onUpdate:current-index"?: ((value: number) => any) | undefined;
@@ -150,6 +531,7 @@ declare function __VLS_template(): {
150
531
  $data: {};
151
532
  $props: {
152
533
  readonly active: boolean;
534
+ readonly removable: boolean;
153
535
  readonly "onUpdate:height"?: ((value: number) => any) | undefined;
154
536
  readonly "onUpdate:active"?: (() => any) | undefined;
155
537
  } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
@@ -171,6 +553,7 @@ declare function __VLS_template(): {
171
553
  $el: any;
172
554
  $options: import('vue').ComponentOptionsBase<Readonly<{
173
555
  active: boolean;
556
+ removable: boolean;
174
557
  }> & Readonly<{
175
558
  "onUpdate:height"?: ((value: number) => any) | undefined;
176
559
  "onUpdate:active"?: (() => any) | undefined;
@@ -201,6 +584,7 @@ declare function __VLS_template(): {
201
584
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
202
585
  } & Readonly<{}> & Omit<Readonly<{
203
586
  active: boolean;
587
+ removable: boolean;
204
588
  }> & Readonly<{
205
589
  "onUpdate:height"?: ((value: number) => any) | undefined;
206
590
  "onUpdate:active"?: (() => any) | undefined;
@@ -297,15 +681,7 @@ declare function __VLS_template(): {
297
681
  C: {};
298
682
  M: {};
299
683
  Defaults: {};
300
- }, Readonly<{
301
- customSlots?: import('vue').VNode[];
302
- lessTransitions?: boolean;
303
- initTab?: number;
304
- side?: boolean;
305
- disableMinHeight?: boolean;
306
- noHeader?: boolean;
307
- switchToNew?: boolean;
308
- }> & Readonly<{
684
+ }, Readonly<import('../Tabs/types').TabsProps> & Readonly<{
309
685
  "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
310
686
  "onUpdate:current"?: ((value: string) => any) | undefined;
311
687
  "onUpdate:current-index"?: ((value: number) => any) | undefined;
@@ -322,323 +698,6 @@ declare function __VLS_template(): {
322
698
  }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
323
699
  initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
324
700
  }, {}, {}, {}, {}> | null;
325
- };
326
- attrs: Partial<{}>;
327
- };
328
- type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
329
- declare const __VLS_component: import('vue').DefineComponent<{
330
- loading?: boolean;
331
- disabled?: boolean;
332
- disabledNext?: boolean;
333
- }, {
334
- next: () => void;
335
- previous: () => void;
336
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
337
- submit: () => any;
338
- "close:modal": () => any;
339
- "update:has-changes": (value: boolean) => any;
340
- previous: (current: number) => any;
341
- next: (current: number) => any;
342
- "update:current": (value: number) => any;
343
- }, string, import('vue').PublicProps, Readonly<{
344
- loading?: boolean;
345
- disabled?: boolean;
346
- disabledNext?: boolean;
347
- }> & Readonly<{
348
- onSubmit?: (() => any) | undefined;
349
- "onClose:modal"?: (() => any) | undefined;
350
- "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
351
- onPrevious?: ((current: number) => any) | undefined;
352
- onNext?: ((current: number) => any) | undefined;
353
- "onUpdate:current"?: ((value: number) => any) | undefined;
354
- }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
355
- tabs: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<{
356
- customSlots?: import('vue').VNode[];
357
- lessTransitions?: boolean;
358
- initTab?: number;
359
- side?: boolean;
360
- disableMinHeight?: boolean;
361
- noHeader?: boolean;
362
- switchToNew?: boolean;
363
- }> & Readonly<{
364
- "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
365
- "onUpdate:current"?: ((value: string) => any) | undefined;
366
- "onUpdate:current-index"?: ((value: number) => any) | undefined;
367
- "onUpdate:current-title"?: ((value: string) => any) | undefined;
368
- "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
369
- }>, {
370
- updateCurrent: (value: string) => void;
371
- updateIndex: (value: number) => void;
372
- next: () => void;
373
- previous: () => void;
374
- validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
375
- invalidate: (index: number, payload: {
376
- [x: string]: string | string[] | undefined;
377
- }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
378
- initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
379
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
380
- "update:has-changes": (value: boolean) => any;
381
- "update:current": (value: string) => any;
382
- "update:current-index": (value: number) => any;
383
- "update:current-title": (value: string) => any;
384
- "update:tabs-length": (value: number) => any;
385
- }, import('vue').PublicProps, {}, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
386
- buttonContainer: HTMLDivElement;
387
- button: (({
388
- $: import('vue').ComponentInternalInstance;
389
- $data: {};
390
- $props: {
391
- readonly active: boolean;
392
- readonly index: number;
393
- readonly hasError: boolean;
394
- readonly hasChanges: boolean;
395
- readonly title: string;
396
- readonly icon: SVGComponent | undefined;
397
- readonly side?: boolean | undefined;
398
- readonly onClick?: ((value: MouseEvent) => any) | undefined;
399
- readonly "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
400
- readonly "onUpdate:scroll-position"?: ((value: {
401
- left: number;
402
- } | {
403
- top: number;
404
- }) => any) | undefined;
405
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
406
- $attrs: {
407
- [x: string]: unknown;
408
- };
409
- $refs: {
410
- [x: string]: unknown;
411
- } & {
412
- button: HTMLButtonElement;
413
- };
414
- $slots: Readonly<{
415
- [name: string]: import('vue').Slot<any> | undefined;
416
- }>;
417
- $root: import('vue').ComponentPublicInstance | null;
418
- $parent: import('vue').ComponentPublicInstance | null;
419
- $host: Element | null;
420
- $emit: ((event: "click", value: MouseEvent) => void) & ((event: "update:indicator-style", value: import('vue').CSSProperties) => void) & ((event: "update:scroll-position", value: {
421
- left: number;
422
- } | {
423
- top: number;
424
- }) => void);
425
- $el: any;
426
- $options: import('vue').ComponentOptionsBase<Readonly<{
427
- active: boolean;
428
- index: number;
429
- hasError: boolean;
430
- hasChanges: boolean;
431
- title: string;
432
- icon: SVGComponent | undefined;
433
- side?: boolean;
434
- }> & Readonly<{
435
- onClick?: ((value: MouseEvent) => any) | undefined;
436
- "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
437
- "onUpdate:scroll-position"?: ((value: {
438
- left: number;
439
- } | {
440
- top: number;
441
- }) => any) | undefined;
442
- }>, {
443
- update: () => void;
444
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
445
- click: (value: MouseEvent) => any;
446
- "update:indicator-style": (value: import('vue').CSSProperties) => any;
447
- "update:scroll-position": (value: {
448
- left: number;
449
- } | {
450
- top: number;
451
- }) => any;
452
- }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
453
- beforeCreate?: (() => void) | (() => void)[];
454
- created?: (() => void) | (() => void)[];
455
- beforeMount?: (() => void) | (() => void)[];
456
- mounted?: (() => void) | (() => void)[];
457
- beforeUpdate?: (() => void) | (() => void)[];
458
- updated?: (() => void) | (() => void)[];
459
- activated?: (() => void) | (() => void)[];
460
- deactivated?: (() => void) | (() => void)[];
461
- beforeDestroy?: (() => void) | (() => void)[];
462
- beforeUnmount?: (() => void) | (() => void)[];
463
- destroyed?: (() => void) | (() => void)[];
464
- unmounted?: (() => void) | (() => void)[];
465
- renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
466
- renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
467
- errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
468
- };
469
- $forceUpdate: () => void;
470
- $nextTick: typeof import('vue').nextTick;
471
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
472
- } & Readonly<{}> & Omit<Readonly<{
473
- active: boolean;
474
- index: number;
475
- hasError: boolean;
476
- hasChanges: boolean;
477
- title: string;
478
- icon: SVGComponent | undefined;
479
- side?: boolean;
480
- }> & Readonly<{
481
- onClick?: ((value: MouseEvent) => any) | undefined;
482
- "onUpdate:indicator-style"?: ((value: import('vue').CSSProperties) => any) | undefined;
483
- "onUpdate:scroll-position"?: ((value: {
484
- left: number;
485
- } | {
486
- top: number;
487
- }) => any) | undefined;
488
- }>, "update"> & import('vue').ShallowUnwrapRef<{
489
- update: () => void;
490
- }> & {} & import('vue').ComponentCustomProperties & {} & {
491
- $slots: {
492
- title?(_: {}): any;
493
- suffix?(_: {}): any;
494
- right?(_: {}): any;
495
- };
496
- }) | null)[];
497
- tabItem: (({
498
- $: import('vue').ComponentInternalInstance;
499
- $data: {};
500
- $props: {
501
- readonly active: boolean;
502
- readonly "onUpdate:height"?: ((value: number) => any) | undefined;
503
- readonly "onUpdate:active"?: (() => any) | undefined;
504
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
505
- $attrs: {
506
- [x: string]: unknown;
507
- };
508
- $refs: {
509
- [x: string]: unknown;
510
- } & {
511
- element: HTMLDivElement;
512
- };
513
- $slots: Readonly<{
514
- [name: string]: import('vue').Slot<any> | undefined;
515
- }>;
516
- $root: import('vue').ComponentPublicInstance | null;
517
- $parent: import('vue').ComponentPublicInstance | null;
518
- $host: Element | null;
519
- $emit: ((event: "update:height", value: number) => void) & ((event: "update:active") => void);
520
- $el: any;
521
- $options: import('vue').ComponentOptionsBase<Readonly<{
522
- active: boolean;
523
- }> & Readonly<{
524
- "onUpdate:height"?: ((value: number) => any) | undefined;
525
- "onUpdate:active"?: (() => any) | undefined;
526
- }>, {
527
- emitHeight: () => void;
528
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
529
- "update:height": (value: number) => any;
530
- "update:active": () => any;
531
- }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
532
- beforeCreate?: (() => void) | (() => void)[];
533
- created?: (() => void) | (() => void)[];
534
- beforeMount?: (() => void) | (() => void)[];
535
- mounted?: (() => void) | (() => void)[];
536
- beforeUpdate?: (() => void) | (() => void)[];
537
- updated?: (() => void) | (() => void)[];
538
- activated?: (() => void) | (() => void)[];
539
- deactivated?: (() => void) | (() => void)[];
540
- beforeDestroy?: (() => void) | (() => void)[];
541
- beforeUnmount?: (() => void) | (() => void)[];
542
- destroyed?: (() => void) | (() => void)[];
543
- unmounted?: (() => void) | (() => void)[];
544
- renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
545
- renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
546
- errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
547
- };
548
- $forceUpdate: () => void;
549
- $nextTick: typeof import('vue').nextTick;
550
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
551
- } & Readonly<{}> & Omit<Readonly<{
552
- active: boolean;
553
- }> & Readonly<{
554
- "onUpdate:height"?: ((value: number) => any) | undefined;
555
- "onUpdate:active"?: (() => any) | undefined;
556
- }>, "emitHeight"> & import('vue').ShallowUnwrapRef<{
557
- emitHeight: () => void;
558
- }> & {} & import('vue').ComponentCustomProperties & {} & {
559
- $slots: {
560
- default?(_: {}): any;
561
- };
562
- }) | null)[];
563
- form: (({
564
- $: import('vue').ComponentInternalInstance;
565
- $data: {};
566
- $props: {
567
- readonly name?: string | undefined;
568
- readonly title?: string | undefined;
569
- readonly "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
570
- readonly "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
571
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
572
- $attrs: {
573
- [x: string]: unknown;
574
- };
575
- $refs: {
576
- [x: string]: unknown;
577
- };
578
- $slots: Readonly<{
579
- [name: string]: import('vue').Slot<any> | undefined;
580
- }>;
581
- $root: import('vue').ComponentPublicInstance | null;
582
- $parent: import('vue').ComponentPublicInstance | null;
583
- $host: Element | null;
584
- $emit: ((event: "update:has-changes", value: boolean) => void) & ((event: "update:is-valid", value: boolean | undefined) => void);
585
- $el: any;
586
- $options: import('vue').ComponentOptionsBase<Readonly<{
587
- name?: string;
588
- title?: string;
589
- }> & Readonly<{
590
- "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
591
- "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
592
- }>, {
593
- isValid: import('vue').ComputedRef<boolean>;
594
- validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
595
- invalidate: (payload: {
596
- [x: string]: string | string[] | undefined;
597
- }) => void;
598
- initModel: () => void;
599
- errorMessage: import('vue').ComputedRef<string>;
600
- }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
601
- "update:has-changes": (value: boolean) => any;
602
- "update:is-valid": (value: boolean | undefined) => any;
603
- }, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
604
- beforeCreate?: (() => void) | (() => void)[];
605
- created?: (() => void) | (() => void)[];
606
- beforeMount?: (() => void) | (() => void)[];
607
- mounted?: (() => void) | (() => void)[];
608
- beforeUpdate?: (() => void) | (() => void)[];
609
- updated?: (() => void) | (() => void)[];
610
- activated?: (() => void) | (() => void)[];
611
- deactivated?: (() => void) | (() => void)[];
612
- beforeDestroy?: (() => void) | (() => void)[];
613
- beforeUnmount?: (() => void) | (() => void)[];
614
- destroyed?: (() => void) | (() => void)[];
615
- unmounted?: (() => void) | (() => void)[];
616
- renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
617
- renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
618
- errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
619
- };
620
- $forceUpdate: () => void;
621
- $nextTick: typeof import('vue').nextTick;
622
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
623
- } & Readonly<{}> & Omit<Readonly<{
624
- name?: string;
625
- title?: string;
626
- }> & Readonly<{
627
- "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
628
- "onUpdate:is-valid"?: ((value: boolean | undefined) => any) | undefined;
629
- }>, "errorMessage" | "isValid" | "validate" | "invalidate" | "initModel"> & import('vue').ShallowUnwrapRef<{
630
- isValid: import('vue').ComputedRef<boolean>;
631
- validate: (silent?: boolean, path?: import('../Form/use/useFormValidateMap').ValidatePath) => string | undefined;
632
- invalidate: (payload: {
633
- [x: string]: string | string[] | undefined;
634
- }) => void;
635
- initModel: () => void;
636
- errorMessage: import('vue').ComputedRef<string>;
637
- }> & {} & import('vue').ComponentCustomProperties & {} & {
638
- $slots: {
639
- default?(_: {}): any;
640
- };
641
- }) | null)[];
642
701
  }, any, import('vue').ComponentProvideOptions, {
643
702
  P: {};
644
703
  B: {};
@@ -646,30 +705,17 @@ declare const __VLS_component: import('vue').DefineComponent<{
646
705
  C: {};
647
706
  M: {};
648
707
  Defaults: {};
649
- }, Readonly<{
650
- customSlots?: import('vue').VNode[];
651
- lessTransitions?: boolean;
652
- initTab?: number;
653
- side?: boolean;
654
- disableMinHeight?: boolean;
655
- noHeader?: boolean;
656
- switchToNew?: boolean;
657
- }> & Readonly<{
708
+ }, Readonly<import('../Tabs/types').TabsStepperProps> & Readonly<{
658
709
  "onUpdate:has-changes"?: ((value: boolean) => any) | undefined;
710
+ "onUpdate:first"?: ((value: boolean) => any) | undefined;
711
+ "onUpdate:last"?: ((value: boolean) => any) | undefined;
659
712
  "onUpdate:current"?: ((value: string) => any) | undefined;
660
713
  "onUpdate:current-index"?: ((value: number) => any) | undefined;
661
714
  "onUpdate:current-title"?: ((value: string) => any) | undefined;
662
- "onUpdate:tabs-length"?: ((value: number) => any) | undefined;
715
+ "onUpdate:progress"?: ((value: number) => any) | undefined;
663
716
  }>, {
664
- updateCurrent: (value: string) => void;
665
- updateIndex: (value: number) => void;
666
717
  next: () => void;
667
718
  previous: () => void;
668
- validate: (index: number, silent?: boolean | undefined, path?: import('../Form/use/useFormValidateMap').ValidatePath | undefined) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["validate"]>;
669
- invalidate: (index: number, payload: {
670
- [x: string]: string | string[] | undefined;
671
- }) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["invalidate"]>;
672
- initModel: (index: number) => ReturnType<ComponentInstance<typeof import('../Form/WForm.vue').default>["initModel"]>;
673
719
  }, {}, {}, {}, {}> | null;
674
720
  }, any>;
675
721
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;