@avenirs-esr/avenirs-dsav 0.1.127 → 0.1.129
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/base/AvIconText/AvIconText.stories.d.ts +1 -1
- package/dist/components/base/AvMessage/AvMessage.stories.d.ts +1 -1
- package/dist/components/interaction/inputs/AvPeriodInput/AvPeriodInput.vue.d.ts +8 -0
- package/dist/components/interaction/lists/AvList/AvList.stories.d.ts +1 -1
- package/dist/components/interaction/lists/AvListItem/AvListItem.stories.d.ts +1 -1
- package/dist/components/navigation/AvSideNavigation/AvSideNavigation.stories.d.ts +1 -1
- package/dist/components/navigation/AvStepper/AvStepper.stories.d.ts +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +167 -161
- package/dist/main.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Meta, StoryFn } from '@storybook/vue3';
|
|
2
|
-
import { type AvIconTextProps } from '
|
|
2
|
+
import { type AvIconTextProps } from '@/components/base/AvIconText/AvIconText.vue';
|
|
3
3
|
/**
|
|
4
4
|
* <h1 class="n1">Texts with icon - <code>AvIconText</code></h1>
|
|
5
5
|
*
|
|
@@ -92,6 +92,14 @@ export interface AvPeriodInputProps {
|
|
|
92
92
|
* @default true
|
|
93
93
|
*/
|
|
94
94
|
labelVisible?: boolean;
|
|
95
|
+
/**
|
|
96
|
+
* Error message for start input
|
|
97
|
+
*/
|
|
98
|
+
startErrorMessage?: string;
|
|
99
|
+
/**
|
|
100
|
+
* Error message for end input
|
|
101
|
+
*/
|
|
102
|
+
endErrorMessage?: string;
|
|
95
103
|
}
|
|
96
104
|
declare const _default: import("vue").DefineComponent<AvPeriodInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
97
105
|
change: (payload: {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Meta, StoryFn } from '@storybook/vue3';
|
|
2
|
-
import { type AvListItemProps } from '
|
|
2
|
+
import { type AvListItemProps } from '@/components/interaction/lists/AvListItem/AvListItem.vue';
|
|
3
3
|
/**
|
|
4
4
|
* <h1 class="n1">Lists - <code>AvListItem</code></h1>
|
|
5
5
|
*
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { Meta, StoryObj } from '@storybook/vue3';
|
|
2
|
-
import AvSideNavigation from '
|
|
2
|
+
import AvSideNavigation from '@/components/navigation/AvSideNavigation/AvSideNavigation.vue';
|
|
3
3
|
/**
|
|
4
4
|
* <h1 class="n1">Navigation - <code>AvSideNavigation</code></h1>
|
|
5
5
|
*
|