@avenirs-esr/avenirs-dsav 0.1.21 → 0.1.23
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/avenirs-dsav.css +1 -1
- package/dist/avenirs-dsav.es.js +569 -570
- package/dist/avenirs-dsav.umd.js +8 -8
- package/dist/components/interaction/files/index.d.ts +1 -1
- package/dist/components/interaction/selects/AvAutocomplete/AvAutocompleteDropdown.vue.d.ts +3 -3
- package/dist/components/interaction/selects/AvAutocomplete/AvAutocompleteInput.vue.d.ts +264 -6
- package/dist/components/navigation/AvSideNavigation/AvSideNavigation.stories.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as AvFileUpload } from './AvFileUpload/AvFileUpload.vue';
|
|
1
|
+
export { default as AvFileUpload, type AvFileUploadProps } from './AvFileUpload/AvFileUpload.vue';
|
|
@@ -14,13 +14,13 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
14
14
|
emit: (evt: "loadMore") => void;
|
|
15
15
|
attrs: any;
|
|
16
16
|
} | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<{
|
|
17
|
-
dropdownRef:
|
|
17
|
+
dropdownRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
18
18
|
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
19
19
|
props: {
|
|
20
20
|
readonly onLoadMore?: (() => any) | undefined;
|
|
21
21
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
22
22
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
23
|
-
dropdownRef:
|
|
23
|
+
dropdownRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
24
24
|
}>): void;
|
|
25
25
|
attrs: any;
|
|
26
26
|
slots: {
|
|
@@ -40,7 +40,7 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
40
40
|
readonly onLoadMore?: (() => any) | undefined;
|
|
41
41
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
42
42
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
43
|
-
dropdownRef:
|
|
43
|
+
dropdownRef: import("vue").Ref<HTMLElement | undefined, HTMLElement | undefined>;
|
|
44
44
|
}>): void;
|
|
45
45
|
attrs: any;
|
|
46
46
|
slots: {
|
|
@@ -10,7 +10,7 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
10
10
|
emit: ((evt: "search", query: string) => void) & ((evt: "clear") => void);
|
|
11
11
|
attrs: any;
|
|
12
12
|
} | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<{
|
|
13
|
-
inputRef:
|
|
13
|
+
inputRef: import("vue").Ref<({
|
|
14
14
|
$: import("vue").ComponentInternalInstance;
|
|
15
15
|
$data: {};
|
|
16
16
|
$props: {
|
|
@@ -96,7 +96,93 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
96
96
|
maxlength?: number | undefined;
|
|
97
97
|
}> | undefined;
|
|
98
98
|
};
|
|
99
|
-
}) |
|
|
99
|
+
}) | undefined, ({
|
|
100
|
+
$: import("vue").ComponentInternalInstance;
|
|
101
|
+
$data: {};
|
|
102
|
+
$props: {
|
|
103
|
+
readonly id?: string | undefined;
|
|
104
|
+
readonly descriptionId?: string | undefined;
|
|
105
|
+
readonly hint?: string | undefined;
|
|
106
|
+
readonly isValid?: boolean | undefined;
|
|
107
|
+
readonly isTextarea?: boolean | undefined;
|
|
108
|
+
readonly labelVisible?: boolean | undefined;
|
|
109
|
+
readonly label?: string | undefined;
|
|
110
|
+
readonly labelClass?: string | undefined;
|
|
111
|
+
readonly modelValue?: string | number | null | undefined;
|
|
112
|
+
readonly placeholder?: string | undefined;
|
|
113
|
+
readonly type?: "number" | "text" | "search" | "email" | "password" | "tel" | "url" | undefined;
|
|
114
|
+
readonly disabled?: boolean | undefined;
|
|
115
|
+
readonly required?: boolean | undefined;
|
|
116
|
+
readonly maxlength?: number | undefined;
|
|
117
|
+
readonly minlength?: number | undefined;
|
|
118
|
+
readonly errorMessage?: string | string[] | undefined;
|
|
119
|
+
readonly validMessage?: string | string[] | undefined;
|
|
120
|
+
readonly prefixIcon?: string | undefined;
|
|
121
|
+
readonly "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
122
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
123
|
+
$attrs: {
|
|
124
|
+
[x: string]: unknown;
|
|
125
|
+
};
|
|
126
|
+
$refs: {
|
|
127
|
+
[x: string]: unknown;
|
|
128
|
+
};
|
|
129
|
+
$slots: Readonly<{
|
|
130
|
+
[name: string]: Slot<any> | undefined;
|
|
131
|
+
}>;
|
|
132
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
133
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
134
|
+
$host: Element | null;
|
|
135
|
+
$emit: (event: "update:modelValue", value: string | number | null) => void;
|
|
136
|
+
$el: any;
|
|
137
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("@/components/interaction/inputs/AvInput/AvInput.vue").AvInputProps> & Readonly<{
|
|
138
|
+
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
139
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
140
|
+
"update:modelValue": (value: string | number | null) => any;
|
|
141
|
+
}, string, {
|
|
142
|
+
type: "number" | "text" | "search" | "email" | "password" | "tel" | "url";
|
|
143
|
+
disabled: boolean;
|
|
144
|
+
required: boolean;
|
|
145
|
+
isValid: boolean;
|
|
146
|
+
isTextarea: boolean;
|
|
147
|
+
labelVisible: boolean;
|
|
148
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
149
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
150
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
151
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
152
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
153
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
154
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
155
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
156
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
157
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
158
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
159
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
160
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
161
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
162
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
163
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
|
|
164
|
+
};
|
|
165
|
+
$forceUpdate: () => void;
|
|
166
|
+
$nextTick: typeof import("vue").nextTick;
|
|
167
|
+
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import("@vue/reactivity").OnCleanup) => any : (args_0: any, args_1: any, args_2: import("@vue/reactivity").OnCleanup) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
168
|
+
} & Readonly<{
|
|
169
|
+
type: "number" | "text" | "search" | "email" | "password" | "tel" | "url";
|
|
170
|
+
disabled: boolean;
|
|
171
|
+
required: boolean;
|
|
172
|
+
isValid: boolean;
|
|
173
|
+
isTextarea: boolean;
|
|
174
|
+
labelVisible: boolean;
|
|
175
|
+
}> & Omit<Readonly<import("@/components/interaction/inputs/AvInput/AvInput.vue").AvInputProps> & Readonly<{
|
|
176
|
+
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
177
|
+
}>, "type" | "disabled" | "required" | "isValid" | "isTextarea" | "labelVisible"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
178
|
+
$slots: {
|
|
179
|
+
requiredTip?: Slot | undefined;
|
|
180
|
+
customCaptions?: Slot<{
|
|
181
|
+
currentValue?: string | number | null | undefined;
|
|
182
|
+
maxlength?: number | undefined;
|
|
183
|
+
}> | undefined;
|
|
184
|
+
};
|
|
185
|
+
}) | undefined>;
|
|
100
186
|
searchQuery: import("vue").ComputedRef<string>;
|
|
101
187
|
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
102
188
|
props: {
|
|
@@ -104,7 +190,7 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
104
190
|
readonly onClear?: (() => any) | undefined;
|
|
105
191
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
106
192
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
107
|
-
inputRef:
|
|
193
|
+
inputRef: import("vue").Ref<({
|
|
108
194
|
$: import("vue").ComponentInternalInstance;
|
|
109
195
|
$data: {};
|
|
110
196
|
$props: {
|
|
@@ -190,7 +276,93 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
190
276
|
maxlength?: number | undefined;
|
|
191
277
|
}> | undefined;
|
|
192
278
|
};
|
|
193
|
-
}) |
|
|
279
|
+
}) | undefined, ({
|
|
280
|
+
$: import("vue").ComponentInternalInstance;
|
|
281
|
+
$data: {};
|
|
282
|
+
$props: {
|
|
283
|
+
readonly id?: string | undefined;
|
|
284
|
+
readonly descriptionId?: string | undefined;
|
|
285
|
+
readonly hint?: string | undefined;
|
|
286
|
+
readonly isValid?: boolean | undefined;
|
|
287
|
+
readonly isTextarea?: boolean | undefined;
|
|
288
|
+
readonly labelVisible?: boolean | undefined;
|
|
289
|
+
readonly label?: string | undefined;
|
|
290
|
+
readonly labelClass?: string | undefined;
|
|
291
|
+
readonly modelValue?: string | number | null | undefined;
|
|
292
|
+
readonly placeholder?: string | undefined;
|
|
293
|
+
readonly type?: "number" | "text" | "search" | "email" | "password" | "tel" | "url" | undefined;
|
|
294
|
+
readonly disabled?: boolean | undefined;
|
|
295
|
+
readonly required?: boolean | undefined;
|
|
296
|
+
readonly maxlength?: number | undefined;
|
|
297
|
+
readonly minlength?: number | undefined;
|
|
298
|
+
readonly errorMessage?: string | string[] | undefined;
|
|
299
|
+
readonly validMessage?: string | string[] | undefined;
|
|
300
|
+
readonly prefixIcon?: string | undefined;
|
|
301
|
+
readonly "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
302
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
303
|
+
$attrs: {
|
|
304
|
+
[x: string]: unknown;
|
|
305
|
+
};
|
|
306
|
+
$refs: {
|
|
307
|
+
[x: string]: unknown;
|
|
308
|
+
};
|
|
309
|
+
$slots: Readonly<{
|
|
310
|
+
[name: string]: Slot<any> | undefined;
|
|
311
|
+
}>;
|
|
312
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
313
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
314
|
+
$host: Element | null;
|
|
315
|
+
$emit: (event: "update:modelValue", value: string | number | null) => void;
|
|
316
|
+
$el: any;
|
|
317
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("@/components/interaction/inputs/AvInput/AvInput.vue").AvInputProps> & Readonly<{
|
|
318
|
+
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
319
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
320
|
+
"update:modelValue": (value: string | number | null) => any;
|
|
321
|
+
}, string, {
|
|
322
|
+
type: "number" | "text" | "search" | "email" | "password" | "tel" | "url";
|
|
323
|
+
disabled: boolean;
|
|
324
|
+
required: boolean;
|
|
325
|
+
isValid: boolean;
|
|
326
|
+
isTextarea: boolean;
|
|
327
|
+
labelVisible: boolean;
|
|
328
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
329
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
330
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
331
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
332
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
333
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
334
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
335
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
336
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
337
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
338
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
339
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
340
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
341
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
342
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
343
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
|
|
344
|
+
};
|
|
345
|
+
$forceUpdate: () => void;
|
|
346
|
+
$nextTick: typeof import("vue").nextTick;
|
|
347
|
+
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import("@vue/reactivity").OnCleanup) => any : (args_0: any, args_1: any, args_2: import("@vue/reactivity").OnCleanup) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
348
|
+
} & Readonly<{
|
|
349
|
+
type: "number" | "text" | "search" | "email" | "password" | "tel" | "url";
|
|
350
|
+
disabled: boolean;
|
|
351
|
+
required: boolean;
|
|
352
|
+
isValid: boolean;
|
|
353
|
+
isTextarea: boolean;
|
|
354
|
+
labelVisible: boolean;
|
|
355
|
+
}> & Omit<Readonly<import("@/components/interaction/inputs/AvInput/AvInput.vue").AvInputProps> & Readonly<{
|
|
356
|
+
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
357
|
+
}>, "type" | "disabled" | "required" | "isValid" | "isTextarea" | "labelVisible"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
358
|
+
$slots: {
|
|
359
|
+
requiredTip?: Slot | undefined;
|
|
360
|
+
customCaptions?: Slot<{
|
|
361
|
+
currentValue?: string | number | null | undefined;
|
|
362
|
+
maxlength?: number | undefined;
|
|
363
|
+
}> | undefined;
|
|
364
|
+
};
|
|
365
|
+
}) | undefined>;
|
|
194
366
|
searchQuery: import("vue").ComputedRef<string>;
|
|
195
367
|
}>): void;
|
|
196
368
|
attrs: any;
|
|
@@ -207,7 +379,93 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
207
379
|
readonly onClear?: (() => any) | undefined;
|
|
208
380
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
209
381
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
210
|
-
inputRef:
|
|
382
|
+
inputRef: import("vue").Ref<({
|
|
383
|
+
$: import("vue").ComponentInternalInstance;
|
|
384
|
+
$data: {};
|
|
385
|
+
$props: {
|
|
386
|
+
readonly id?: string | undefined;
|
|
387
|
+
readonly descriptionId?: string | undefined;
|
|
388
|
+
readonly hint?: string | undefined;
|
|
389
|
+
readonly isValid?: boolean | undefined;
|
|
390
|
+
readonly isTextarea?: boolean | undefined;
|
|
391
|
+
readonly labelVisible?: boolean | undefined;
|
|
392
|
+
readonly label?: string | undefined;
|
|
393
|
+
readonly labelClass?: string | undefined;
|
|
394
|
+
readonly modelValue?: string | number | null | undefined;
|
|
395
|
+
readonly placeholder?: string | undefined;
|
|
396
|
+
readonly type?: "number" | "text" | "search" | "email" | "password" | "tel" | "url" | undefined;
|
|
397
|
+
readonly disabled?: boolean | undefined;
|
|
398
|
+
readonly required?: boolean | undefined;
|
|
399
|
+
readonly maxlength?: number | undefined;
|
|
400
|
+
readonly minlength?: number | undefined;
|
|
401
|
+
readonly errorMessage?: string | string[] | undefined;
|
|
402
|
+
readonly validMessage?: string | string[] | undefined;
|
|
403
|
+
readonly prefixIcon?: string | undefined;
|
|
404
|
+
readonly "onUpdate:modelValue"?: ((value: string | number | null) => 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
|
+
$slots: Readonly<{
|
|
413
|
+
[name: string]: Slot<any> | undefined;
|
|
414
|
+
}>;
|
|
415
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
416
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
417
|
+
$host: Element | null;
|
|
418
|
+
$emit: (event: "update:modelValue", value: string | number | null) => void;
|
|
419
|
+
$el: any;
|
|
420
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("@/components/interaction/inputs/AvInput/AvInput.vue").AvInputProps> & Readonly<{
|
|
421
|
+
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
422
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
423
|
+
"update:modelValue": (value: string | number | null) => any;
|
|
424
|
+
}, string, {
|
|
425
|
+
type: "number" | "text" | "search" | "email" | "password" | "tel" | "url";
|
|
426
|
+
disabled: boolean;
|
|
427
|
+
required: boolean;
|
|
428
|
+
isValid: boolean;
|
|
429
|
+
isTextarea: boolean;
|
|
430
|
+
labelVisible: boolean;
|
|
431
|
+
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
432
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
433
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
434
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
435
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
436
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
437
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
438
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
439
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
440
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
441
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
442
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
443
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
444
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
445
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
446
|
+
errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any> | null, info: string) => boolean | void)[]) | undefined;
|
|
447
|
+
};
|
|
448
|
+
$forceUpdate: () => void;
|
|
449
|
+
$nextTick: typeof import("vue").nextTick;
|
|
450
|
+
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: import("@vue/reactivity").OnCleanup) => any : (args_0: any, args_1: any, args_2: import("@vue/reactivity").OnCleanup) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
451
|
+
} & Readonly<{
|
|
452
|
+
type: "number" | "text" | "search" | "email" | "password" | "tel" | "url";
|
|
453
|
+
disabled: boolean;
|
|
454
|
+
required: boolean;
|
|
455
|
+
isValid: boolean;
|
|
456
|
+
isTextarea: boolean;
|
|
457
|
+
labelVisible: boolean;
|
|
458
|
+
}> & Omit<Readonly<import("@/components/interaction/inputs/AvInput/AvInput.vue").AvInputProps> & Readonly<{
|
|
459
|
+
"onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
460
|
+
}>, "type" | "disabled" | "required" | "isValid" | "isTextarea" | "labelVisible"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
461
|
+
$slots: {
|
|
462
|
+
requiredTip?: Slot | undefined;
|
|
463
|
+
customCaptions?: Slot<{
|
|
464
|
+
currentValue?: string | number | null | undefined;
|
|
465
|
+
maxlength?: number | undefined;
|
|
466
|
+
}> | undefined;
|
|
467
|
+
};
|
|
468
|
+
}) | undefined, ({
|
|
211
469
|
$: import("vue").ComponentInternalInstance;
|
|
212
470
|
$data: {};
|
|
213
471
|
$props: {
|
|
@@ -293,7 +551,7 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
293
551
|
maxlength?: number | undefined;
|
|
294
552
|
}> | undefined;
|
|
295
553
|
};
|
|
296
|
-
}) |
|
|
554
|
+
}) | undefined>;
|
|
297
555
|
searchQuery: import("vue").ComputedRef<string>;
|
|
298
556
|
}>): void;
|
|
299
557
|
attrs: any;
|