@avenirs-esr/avenirs-dsav 0.1.68 → 0.1.70
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/components/feedback/AvAlert/AvAlert.vue.d.ts +1 -1
- package/dist/components/interaction/accordions/AvAccordion/AvAccordion.vue.d.ts +1 -1
- package/dist/components/interaction/files/AvFileUpload/AvFileUpload.vue.d.ts +1 -1
- package/dist/components/interaction/inputs/AvInput/AvInput.vue.d.ts +1 -1
- package/dist/components/interaction/inputs/AvSearchBar/AvSearchBar.vue.d.ts +1 -1
- package/dist/components/interaction/radios/AvRadioButtonSet/AvRadioButtonSet.vue.d.ts +1 -1
- package/dist/components/interaction/selects/AvMultiselect/AvMultiselect.stories.d.ts +0 -4
- package/dist/components/interaction/selects/AvMultiselect/AvMultiselect.vue.d.ts +1 -0
- package/dist/components/interaction/selects/AvSelect/AvSelect.stories.d.ts +0 -4
- package/dist/components/interaction/selects/AvSelect/AvSelect.vue.d.ts +1 -1
- package/dist/components/interaction/toggles/AvToggle/AvToggle.vue.d.ts +2 -5
- package/dist/components/navigation/AvBreadcrumb/AvBreadcrumb.vue.d.ts +1 -1
- package/dist/components/navigation/AvNavigation/components/NavigationMenu/NavigationMenu.vue.d.ts +2 -3
- package/dist/components/overlay/modals/AvModal/AvModal.vue.d.ts +2 -2
- package/dist/index.cjs.js +4 -4
- package/dist/index.es.js +1792 -1793
- package/package.json +1 -1
|
@@ -55,9 +55,6 @@ declare const meta: {
|
|
|
55
55
|
dense: {
|
|
56
56
|
control: string;
|
|
57
57
|
};
|
|
58
|
-
id: {
|
|
59
|
-
control: string;
|
|
60
|
-
};
|
|
61
58
|
name: {
|
|
62
59
|
control: string;
|
|
63
60
|
};
|
|
@@ -109,7 +106,6 @@ declare const meta: {
|
|
|
109
106
|
placeholder: string;
|
|
110
107
|
required: boolean;
|
|
111
108
|
disabled: boolean;
|
|
112
|
-
id: string;
|
|
113
109
|
name: string;
|
|
114
110
|
hint: string;
|
|
115
111
|
modelValue: never[];
|
|
@@ -40,9 +40,6 @@ declare const meta: {
|
|
|
40
40
|
dense: {
|
|
41
41
|
control: string;
|
|
42
42
|
};
|
|
43
|
-
selectId: {
|
|
44
|
-
control: string;
|
|
45
|
-
};
|
|
46
43
|
name: {
|
|
47
44
|
control: string;
|
|
48
45
|
};
|
|
@@ -81,7 +78,6 @@ declare const meta: {
|
|
|
81
78
|
placeholder: string;
|
|
82
79
|
required: boolean;
|
|
83
80
|
disabled: boolean;
|
|
84
|
-
selectId: string;
|
|
85
81
|
name: string;
|
|
86
82
|
hint: string;
|
|
87
83
|
modelValue: string;
|
|
@@ -12,6 +12,7 @@ export interface AvToggleProps {
|
|
|
12
12
|
description: string;
|
|
13
13
|
/**
|
|
14
14
|
* Unique id for the toggle. Used for accessibility.
|
|
15
|
+
* @default `toggle-${crypto.randomUUID()}`
|
|
15
16
|
*/
|
|
16
17
|
id?: string;
|
|
17
18
|
/**
|
|
@@ -38,9 +39,5 @@ declare const _default: import("vue").DefineComponent<AvToggleProps, {}, {}, {},
|
|
|
38
39
|
"update:modelValue": (payload: boolean) => any;
|
|
39
40
|
}, string, import("vue").PublicProps, Readonly<AvToggleProps> & Readonly<{
|
|
40
41
|
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
41
|
-
}>, {
|
|
42
|
-
name: string;
|
|
43
|
-
activeText: string;
|
|
44
|
-
inactiveText: string;
|
|
45
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
42
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
46
43
|
export default _default;
|
|
@@ -7,7 +7,7 @@ export interface AvBreadcrumbProps {
|
|
|
7
7
|
* The unique identifier for the breadcrumb element.
|
|
8
8
|
* @default `breadcrumb-${crypto.randomUUID()}`
|
|
9
9
|
*/
|
|
10
|
-
|
|
10
|
+
id?: string;
|
|
11
11
|
/**
|
|
12
12
|
* A table of objects representing the links in the breadcrumb. Each object can
|
|
13
13
|
* have a ‘text’ property and, optionally, a ‘to’ property for routes.
|
package/dist/components/navigation/AvNavigation/components/NavigationMenu/NavigationMenu.vue.d.ts
CHANGED
|
@@ -18,7 +18,6 @@ export interface NavigationMenuProps {
|
|
|
18
18
|
links?: NavigationMenuLinkProps[];
|
|
19
19
|
/**
|
|
20
20
|
* The identifier of the currently expanded navigation menu.
|
|
21
|
-
* @default `expanded-${crypto.randomUUID()}`
|
|
22
21
|
*/
|
|
23
22
|
expandedId?: string;
|
|
24
23
|
/**
|
|
@@ -27,8 +26,8 @@ export interface NavigationMenuProps {
|
|
|
27
26
|
active?: boolean;
|
|
28
27
|
}
|
|
29
28
|
declare const _default: import("vue").DefineComponent<NavigationMenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
30
|
-
toggleId: (id: string) => any;
|
|
29
|
+
toggleId: (id: string | undefined) => any;
|
|
31
30
|
}, string, import("vue").PublicProps, Readonly<NavigationMenuProps> & Readonly<{
|
|
32
|
-
onToggleId?: ((id: string) => any) | undefined;
|
|
31
|
+
onToggleId?: ((id: string | undefined) => any) | undefined;
|
|
33
32
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
34
33
|
export default _default;
|
|
@@ -5,9 +5,9 @@ import type { Slot } from 'vue';
|
|
|
5
5
|
export interface AvModalProps {
|
|
6
6
|
/**
|
|
7
7
|
* Unique identifier for the modal.
|
|
8
|
-
* @default `
|
|
8
|
+
* @default `modal-${crypto.randomUUID()}`
|
|
9
9
|
*/
|
|
10
|
-
|
|
10
|
+
id?: string;
|
|
11
11
|
/**
|
|
12
12
|
* Indicates whether the modal is open.
|
|
13
13
|
* @default false
|