@avenirs-esr/avenirs-dsav 0.1.25 → 0.1.27

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.
@@ -21,6 +21,7 @@ import AvStepper, { type AvStepperProps } from './AvStepper.vue';
21
21
  declare const meta: Meta<typeof AvStepper>;
22
22
  export default meta;
23
23
  export declare const Default: StoryFn<AvStepperProps>;
24
+ export declare const CustomWidth: StoryFn<AvStepperProps>;
24
25
  export declare const WithStepTwoActive: StoryFn<AvStepperProps>;
25
26
  export declare const WithAllStepsActive: StoryFn<AvStepperProps>;
26
27
  export declare const WithTwoSteps: StoryFn<AvStepperProps>;
@@ -7,6 +7,13 @@ export interface AvStepperProps {
7
7
  * Index of the current step (starts at 0).
8
8
  */
9
9
  currentStep: number;
10
+ /**
11
+ * Width of the stepper.
12
+ * @default '100%'
13
+ */
14
+ width?: string;
10
15
  }
11
- declare const _default: import("vue").DefineComponent<AvStepperProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AvStepperProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
16
+ declare const _default: import("vue").DefineComponent<AvStepperProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AvStepperProps> & Readonly<{}>, {
17
+ width: string;
18
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12
19
  export default _default;
@@ -76,6 +76,7 @@ export declare const RI_ICONS: {
76
76
  * e.g. using mdi icons with AvBadge
77
77
  */
78
78
  export declare const ICONS_DATA_URL: {
79
+ AMS_SAE: string;
79
80
  CLOCK_ALMOST_CHECK: string;
80
81
  CLOCK_HALF_PLUS_CHECK: string;
81
82
  CLOCK_QUARTER_CHECK: string;
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.25",
4
+ "version": "0.1.27",
5
5
  "main": "dist/avenirs-dsav.umd.js",
6
6
  "module": "dist/avenirs-dsav.es.js",
7
7
  "types": "dist/index.d.ts",