@avenirs-esr/avenirs-dsav 0.1.102 → 0.1.104
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/interaction/selects/AvAutocomplete/AvAutocomplete.stories.d.ts +8 -0
- package/dist/components/navigation/AvSideNavigation/AvSideNavigation.vue.d.ts +7 -4
- package/dist/index.cjs.js +2 -2
- package/dist/index.es.js +10 -2
- package/dist/tokens/icons.d.ts +8 -0
- package/package.json +1 -1
- package/src/styles/components/_icons.scss +8 -0
|
@@ -534,14 +534,18 @@ export declare const WithCustomItemSlotExample: {
|
|
|
534
534
|
FILE_DOCUMENT_EDIT_OUTLINE: string;
|
|
535
535
|
FILE_DOCUMENT_MULTIPLE_OUTLINE: string;
|
|
536
536
|
FILE_IMAGE_OUTLINE: string;
|
|
537
|
+
FILE_REFRESH_OUTLINE: string;
|
|
538
|
+
FILE_RESTORE_OUTLINE: string;
|
|
537
539
|
FILE_TREE_OUTLINE: string;
|
|
538
540
|
FLAG_VARIANT: string;
|
|
539
541
|
FORMAT_LIST_BULLETED: string;
|
|
540
542
|
HAMBURGER_MENU: string;
|
|
543
|
+
HISTORY: string;
|
|
541
544
|
HOME_VARIANT_OUTLINE: string;
|
|
542
545
|
HOURGLASS: string;
|
|
543
546
|
IMAGE_FILTER_CENTER_FOCUS_WEAK: string;
|
|
544
547
|
IMAGE_OUTLINE: string;
|
|
548
|
+
IMAGE_REFRESH_OUTLINE: string;
|
|
545
549
|
INFORMATION_BOX: string;
|
|
546
550
|
INFORMATION_BOX_OUTLINE: string;
|
|
547
551
|
INFORMATION_OUTLINE: string;
|
|
@@ -565,9 +569,13 @@ export declare const WithCustomItemSlotExample: {
|
|
|
565
569
|
PLUS: string;
|
|
566
570
|
PLUS_CIRCLE_OUTLINE: string;
|
|
567
571
|
POST_IT_NOTES_OUTLINE: string;
|
|
572
|
+
PRINTER_OUTLINE: string;
|
|
568
573
|
RATE_REVIEW: string;
|
|
569
574
|
RECORD_CIRCLE_OUTLINE: string;
|
|
570
575
|
REDO: string;
|
|
576
|
+
REFRESH: string;
|
|
577
|
+
RESTART: string;
|
|
578
|
+
RESTORE: string;
|
|
571
579
|
SCHOOL_OUTLINE: string;
|
|
572
580
|
SETTINGS: string;
|
|
573
581
|
SHARE_VARIANT_OUTLINE: string;
|
|
@@ -31,11 +31,14 @@ type __VLS_PublicProps = __VLS_Props & {
|
|
|
31
31
|
'isSideMenuCollapsed'?: boolean;
|
|
32
32
|
};
|
|
33
33
|
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
34
|
-
"update:selectedItem": (
|
|
35
|
-
"update:isSideMenuCollapsed": (
|
|
34
|
+
"update:selectedItem": (value: string) => any;
|
|
35
|
+
"update:isSideMenuCollapsed": (value: boolean) => any;
|
|
36
|
+
} & {
|
|
37
|
+
"update:selectedItem": (selectedItem: string) => any;
|
|
38
|
+
"update:isSideMenuCollapsed": (value: boolean) => any;
|
|
36
39
|
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
37
|
-
"onUpdate:selectedItem"?: ((
|
|
38
|
-
"onUpdate:isSideMenuCollapsed"?: ((
|
|
40
|
+
"onUpdate:selectedItem"?: ((value: string) => any) | undefined;
|
|
41
|
+
"onUpdate:isSideMenuCollapsed"?: ((value: boolean) => any) | undefined;
|
|
39
42
|
}>, {
|
|
40
43
|
collapsedWidth: string;
|
|
41
44
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|