@avenirs-esr/avenirs-dsav 0.1.20 → 0.1.21
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 +1025 -1018
- package/dist/avenirs-dsav.umd.js +8 -8
- package/dist/components/interaction/selects/AvAutocomplete/AvAutocomplete.stories.d.ts +3 -0
- package/dist/components/navigation/AvSideNavigation/AvSideNavigation.vue.d.ts +4 -0
- package/dist/tokens/icons.d.ts +3 -0
- package/package.json +1 -1
|
@@ -502,6 +502,7 @@ export declare const WithCustomItemSlotExample: {
|
|
|
502
502
|
BOOK_LOCATION_OUTLINE: string;
|
|
503
503
|
BRIEFCASE_VARIANT_OUTLINE: string;
|
|
504
504
|
CALENDAR_MONTH_OUTLINE: string;
|
|
505
|
+
CHART_TIMELINE_VARIANT_SHIMMER: string;
|
|
505
506
|
CHAT_BUBBLE_OUTLINE: string;
|
|
506
507
|
CHECK: string;
|
|
507
508
|
CHECK_CIRCLE: string;
|
|
@@ -517,6 +518,7 @@ export declare const WithCustomItemSlotExample: {
|
|
|
517
518
|
FILE_DOCUMENT_BOX_MULTIPLE_OUTLINE: string;
|
|
518
519
|
FILE_DOCUMENT_EDIT_OUTLINE: string;
|
|
519
520
|
FILE_DOCUMENT_MULTIPLE_OUTLINE: string;
|
|
521
|
+
FILE_TREE_OUTLINE: string;
|
|
520
522
|
FLAG_VARIANT: string;
|
|
521
523
|
FORMAT_LIST_BULLETED: string;
|
|
522
524
|
HOME_VARIANT_OUTLINE: string;
|
|
@@ -529,6 +531,7 @@ export declare const WithCustomItemSlotExample: {
|
|
|
529
531
|
LOGOUT: string;
|
|
530
532
|
NAVIGATE_BEFORE: string;
|
|
531
533
|
NAVIGATE_NEXT: string;
|
|
534
|
+
NOTEBOOK_CHECK: string;
|
|
532
535
|
NOTIFICATIONS_NONE: string;
|
|
533
536
|
PAGE_FIRST: string;
|
|
534
537
|
PAGE_LAST: string;
|
|
@@ -20,6 +20,10 @@ export interface AvSideNavigationProps {
|
|
|
20
20
|
* Width of the side menu when collapsed.
|
|
21
21
|
*/
|
|
22
22
|
collapsedWidth?: string;
|
|
23
|
+
/**
|
|
24
|
+
* Color of selected item background and icon.
|
|
25
|
+
*/
|
|
26
|
+
selectedItemColor?: string;
|
|
23
27
|
}
|
|
24
28
|
type __VLS_Props = AvSideNavigationProps;
|
|
25
29
|
type __VLS_PublicProps = __VLS_Props & {
|
package/dist/tokens/icons.d.ts
CHANGED
|
@@ -14,6 +14,7 @@ export declare const MDI_ICONS: {
|
|
|
14
14
|
BOOK_LOCATION_OUTLINE: string;
|
|
15
15
|
BRIEFCASE_VARIANT_OUTLINE: string;
|
|
16
16
|
CALENDAR_MONTH_OUTLINE: string;
|
|
17
|
+
CHART_TIMELINE_VARIANT_SHIMMER: string;
|
|
17
18
|
CHAT_BUBBLE_OUTLINE: string;
|
|
18
19
|
CHECK: string;
|
|
19
20
|
CHECK_CIRCLE: string;
|
|
@@ -29,6 +30,7 @@ export declare const MDI_ICONS: {
|
|
|
29
30
|
FILE_DOCUMENT_BOX_MULTIPLE_OUTLINE: string;
|
|
30
31
|
FILE_DOCUMENT_EDIT_OUTLINE: string;
|
|
31
32
|
FILE_DOCUMENT_MULTIPLE_OUTLINE: string;
|
|
33
|
+
FILE_TREE_OUTLINE: string;
|
|
32
34
|
FLAG_VARIANT: string;
|
|
33
35
|
FORMAT_LIST_BULLETED: string;
|
|
34
36
|
HOME_VARIANT_OUTLINE: string;
|
|
@@ -41,6 +43,7 @@ export declare const MDI_ICONS: {
|
|
|
41
43
|
LOGOUT: string;
|
|
42
44
|
NAVIGATE_BEFORE: string;
|
|
43
45
|
NAVIGATE_NEXT: string;
|
|
46
|
+
NOTEBOOK_CHECK: string;
|
|
44
47
|
NOTIFICATIONS_NONE: string;
|
|
45
48
|
PAGE_FIRST: string;
|
|
46
49
|
PAGE_LAST: string;
|