@avenirs-esr/avenirs-dsav 0.1.40 → 0.1.41
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 +190 -182
- package/dist/avenirs-dsav.umd.js +5 -5
- package/dist/components/interaction/inputs/AvInput/AvInput.vue.d.ts +4 -0
- package/dist/components/interaction/selects/AvAutocomplete/AvAutocompleteInput.vue.d.ts +6 -0
- package/dist/components/navigation/AvSideMenu/AvSideMenu.vue.d.ts +1 -1
- package/dist/components/overlay/drawers/AvDrawer/AvDrawer.vue.d.ts +1 -1
- package/dist/components/overlay/popovers/AvPopover/AvPopover.vue.d.ts +1 -1
- package/package.json +1 -1
|
@@ -34,6 +34,7 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
34
34
|
readonly errorMessage?: string | string[] | undefined;
|
|
35
35
|
readonly validMessage?: string | string[] | undefined;
|
|
36
36
|
readonly prefixIcon?: string | undefined;
|
|
37
|
+
readonly width?: string | undefined;
|
|
37
38
|
readonly "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
38
39
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
39
40
|
$attrs: {
|
|
@@ -122,6 +123,7 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
122
123
|
readonly errorMessage?: string | string[] | undefined;
|
|
123
124
|
readonly validMessage?: string | string[] | undefined;
|
|
124
125
|
readonly prefixIcon?: string | undefined;
|
|
126
|
+
readonly width?: string | undefined;
|
|
125
127
|
readonly "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
126
128
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
127
129
|
$attrs: {
|
|
@@ -218,6 +220,7 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
218
220
|
readonly errorMessage?: string | string[] | undefined;
|
|
219
221
|
readonly validMessage?: string | string[] | undefined;
|
|
220
222
|
readonly prefixIcon?: string | undefined;
|
|
223
|
+
readonly width?: string | undefined;
|
|
221
224
|
readonly "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
222
225
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
223
226
|
$attrs: {
|
|
@@ -306,6 +309,7 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
306
309
|
readonly errorMessage?: string | string[] | undefined;
|
|
307
310
|
readonly validMessage?: string | string[] | undefined;
|
|
308
311
|
readonly prefixIcon?: string | undefined;
|
|
312
|
+
readonly width?: string | undefined;
|
|
309
313
|
readonly "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
310
314
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
311
315
|
$attrs: {
|
|
@@ -411,6 +415,7 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
411
415
|
readonly errorMessage?: string | string[] | undefined;
|
|
412
416
|
readonly validMessage?: string | string[] | undefined;
|
|
413
417
|
readonly prefixIcon?: string | undefined;
|
|
418
|
+
readonly width?: string | undefined;
|
|
414
419
|
readonly "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
415
420
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
416
421
|
$attrs: {
|
|
@@ -499,6 +504,7 @@ declare const _default: <T extends AvAutocompleteOption = AvAutocompleteOption>(
|
|
|
499
504
|
readonly errorMessage?: string | string[] | undefined;
|
|
500
505
|
readonly validMessage?: string | string[] | undefined;
|
|
501
506
|
readonly prefixIcon?: string | undefined;
|
|
507
|
+
readonly width?: string | undefined;
|
|
502
508
|
readonly "onUpdate:modelValue"?: ((value: string | number | null) => any) | undefined;
|
|
503
509
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
504
510
|
$attrs: {
|
|
@@ -47,8 +47,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<__VLS_Publ
|
|
|
47
47
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
48
48
|
"onUpdate:collapsed"?: ((...args: unknown[]) => any) | undefined;
|
|
49
49
|
}>, {
|
|
50
|
-
padding: string;
|
|
51
50
|
width: string;
|
|
51
|
+
padding: string;
|
|
52
52
|
collapsible: boolean;
|
|
53
53
|
collapsed: boolean;
|
|
54
54
|
collapsedWidth: string;
|
|
@@ -46,9 +46,9 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<AvDrawerPr
|
|
|
46
46
|
}, string, import("vue").PublicProps, Readonly<AvDrawerProps> & Readonly<{
|
|
47
47
|
onEscapePressed?: (() => any) | undefined;
|
|
48
48
|
}>, {
|
|
49
|
+
width: string;
|
|
49
50
|
ariaLabel: string;
|
|
50
51
|
padding: string;
|
|
51
|
-
width: string;
|
|
52
52
|
position: "left" | "right";
|
|
53
53
|
backdrop: boolean;
|
|
54
54
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, __VLS_Slots>;
|
|
@@ -37,8 +37,8 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<AvPopoverP
|
|
|
37
37
|
setTriggerRef: typeof setTriggerRef;
|
|
38
38
|
triggerRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
|
|
39
39
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AvPopoverProps> & Readonly<{}>, {
|
|
40
|
-
padding: string;
|
|
41
40
|
width: string;
|
|
41
|
+
padding: string;
|
|
42
42
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, __VLS_Slots>;
|
|
43
43
|
export default _default;
|
|
44
44
|
type __VLS_WithSlots<T, S> = T & {
|