@avenirs-esr/avenirs-dsav 0.1.3 → 0.1.5

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.
@@ -1 +1,2 @@
1
+ export { AvBadgeStub } from './AvBadge/AvBadge.stub';
1
2
  export { default as AvBadge } from './AvBadge/AvBadge.vue';
@@ -1,2 +1,4 @@
1
1
  export { default as AvIconText } from './AvIconText/AvIconText.vue';
2
+ export { default as AvNotice } from './AvNotice/AvNotice.vue';
3
+ export { AvVIconStub } from './AvVIcon/AvVIcon.stub';
2
4
  export { default as AvVIcon } from './AvVIcon/AvVIcon.vue';
@@ -1,2 +1,3 @@
1
+ export { AvButtonStub } from './AvButton/AvButton.stub';
1
2
  export { default as AvButton, type AvButtonProps } from './AvButton/AvButton.vue';
2
3
  export { default as AvRichButton } from './AvRichButton/AvRichButton.vue';
@@ -1,2 +1,4 @@
1
+ export { AvListStub } from './AvList/AvList.stub';
1
2
  export { default as AvList } from './AvList/AvList.vue';
3
+ export { AvListItemStub } from './AvListItem/AvListItem.stub';
2
4
  export { default as AvListItem } from './AvListItem/AvListItem.vue';
@@ -1,2 +1,3 @@
1
1
  export { default as AvPageSizePicker } from './AvPageSizePicker/AvPageSizePicker.vue';
2
+ export { AvTagPickerStub } from './AvTagPicker/AvTagPicker.stub';
2
3
  export { default as AvTagPicker, type AvTagPickerOption, type AvTagPickerProps } from './AvTagPicker/AvTagPicker.vue';
@@ -1,3 +1,5 @@
1
+ export { AvAutocompleteStub } from './AvAutocomplete/AvAutocomplete.stub';
1
2
  export * from './AvAutocomplete/AvAutocomplete.types';
2
3
  export { default as AvAutocomplete } from './AvAutocomplete/AvAutocomplete.vue';
4
+ export { AvSelectStub } from './AvSelect/AvSelect.stub';
3
5
  export { default as AvSelect } from './AvSelect/AvSelect.vue';
@@ -38,7 +38,7 @@ export interface AvPaginationProps {
38
38
  /**
39
39
  * Text for compact current page.
40
40
  */
41
- compactCurrentPageLabel: string;
41
+ compactCurrentPageLabel?: string;
42
42
  /**
43
43
  * Maximum number of pages displayed in pagination.
44
44
  * @default 2
@@ -2,4 +2,5 @@ export * from './AvNavigation';
2
2
  export { default as AvPagination } from './AvPagination/AvPagination.vue';
3
3
  export * from './AvPagination/utils';
4
4
  export { default as AvSideMenu, type AvSideMenuProps } from './AvSideMenu/AvSideMenu.vue';
5
+ export { AvSideNavigationStub } from './AvSideNavigation/AvSideNavigation.stub';
5
6
  export { default as AvSideNavigation, type AvSideNavigationItem, type AvSideNavigationProps } from './AvSideNavigation/AvSideNavigation.vue';
@@ -1,3 +1,4 @@
1
+ export { AvDrawerStub } from './drawers/AvDrawer/AvDrawer.stub';
1
2
  export { default as AvDrawer } from './drawers/AvDrawer/AvDrawer.vue';
2
3
  export { default as AvModal } from './modals/AvModal/AvModal.vue';
3
4
  export { default as AvPopover } from './popovers/AvPopover/AvPopover.vue';
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export * from './components';
2
2
  export * from './composables';
3
+ export * from './config';
3
4
  export * from './tests';
4
5
  export * from './tokens';
5
6
  export * from './utils';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@avenirs-esr/avenirs-dsav",
3
3
  "type": "module",
4
- "version": "0.1.3",
4
+ "version": "0.1.5",
5
5
  "main": "dist/avenirs-dsav.umd.js",
6
6
  "module": "dist/avenirs-dsav.es.js",
7
7
  "types": "dist/index.d.ts",