@avenirs-esr/avenirs-dsav 0.1.23 → 0.1.24
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 +291 -287
- package/dist/avenirs-dsav.umd.js +8 -8
- package/dist/components/interaction/selects/AvAutocomplete/AvAutocomplete.stories.d.ts +1 -0
- package/dist/components/interaction/tabs/AvTabs/AvTabs.stories.d.ts +1 -0
- package/dist/components/interaction/tabs/AvTabs/AvTabs.vue.d.ts +6 -0
- package/dist/tokens/icons.d.ts +1 -0
- package/package.json +1 -1
|
@@ -536,6 +536,7 @@ export declare const WithCustomItemSlotExample: {
|
|
|
536
536
|
PAGE_FIRST: string;
|
|
537
537
|
PAGE_LAST: string;
|
|
538
538
|
PENCIL_OUTLINE: string;
|
|
539
|
+
PEOPLE_GROUP_OUTLINE: string;
|
|
539
540
|
PLUS_CIRCLE_OUTLINE: string;
|
|
540
541
|
POST_IT_NOTES_OUTLINE: string;
|
|
541
542
|
SCHOOL_OUTLINE: string;
|
|
@@ -14,6 +14,12 @@ export interface AvTabsProps {
|
|
|
14
14
|
* Index starts at 0.
|
|
15
15
|
*/
|
|
16
16
|
modelValue: number;
|
|
17
|
+
/**
|
|
18
|
+
* Allows compact display:
|
|
19
|
+
* Underline without central pipe.
|
|
20
|
+
* @default 'false'
|
|
21
|
+
*/
|
|
22
|
+
compact?: boolean;
|
|
17
23
|
}
|
|
18
24
|
/**
|
|
19
25
|
* Slots available in AvTabs component.
|
package/dist/tokens/icons.d.ts
CHANGED