@avenirs-esr/avenirs-dsav 0.1.123 → 0.1.125

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.
@@ -69,6 +69,9 @@ declare const meta: {
69
69
  control: string;
70
70
  required: boolean;
71
71
  };
72
+ prefixIcon: {
73
+ control: string;
74
+ };
72
75
  };
73
76
  args: {
74
77
  options: {
@@ -85,6 +88,7 @@ declare const meta: {
85
88
  successMessage: string;
86
89
  errorMessage: string;
87
90
  dense: boolean;
91
+ prefixIcon: string;
88
92
  };
89
93
  };
90
94
  export default meta;
@@ -96,3 +100,4 @@ export declare const Hint: StoryFn<AvSelectProps>;
96
100
  export declare const CustomPlaceholder: StoryFn<AvSelectProps>;
97
101
  export declare const WithError: StoryFn<AvSelectProps>;
98
102
  export declare const WithSuccess: StoryFn<AvSelectProps>;
103
+ export declare const WithPrefixIcon: StoryFn<AvSelectProps>;
@@ -2,22 +2,26 @@ export declare const AvSelectStub: import("vue").DefineComponent<import("vue").E
2
2
  modelValue: (NumberConstructor | StringConstructor)[];
3
3
  options: ArrayConstructor;
4
4
  placeholder: StringConstructor;
5
+ label: StringConstructor;
5
6
  dense: BooleanConstructor;
6
7
  required: BooleanConstructor;
7
8
  disabled: BooleanConstructor;
8
9
  hint: StringConstructor;
9
10
  errorMessage: StringConstructor;
10
11
  successMessage: StringConstructor;
12
+ prefixIcon: StringConstructor;
11
13
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
12
14
  modelValue: (NumberConstructor | StringConstructor)[];
13
15
  options: ArrayConstructor;
14
16
  placeholder: StringConstructor;
17
+ label: StringConstructor;
15
18
  dense: BooleanConstructor;
16
19
  required: BooleanConstructor;
17
20
  disabled: BooleanConstructor;
18
21
  hint: StringConstructor;
19
22
  errorMessage: StringConstructor;
20
23
  successMessage: StringConstructor;
24
+ prefixIcon: StringConstructor;
21
25
  }>> & Readonly<{
22
26
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
23
27
  }>, {
@@ -64,6 +64,10 @@ export interface AvSelectProps {
64
64
  * @default false
65
65
  */
66
66
  dense?: boolean;
67
+ /**
68
+ * Prefix icon name (optional)
69
+ */
70
+ prefixIcon?: string;
67
71
  }
68
72
  declare const _default: import("vue").DefineComponent<AvSelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
69
73
  "update:modelValue": (value: string | number) => any;
@@ -2,4 +2,4 @@ export * from './AvAutocomplete/AvAutocomplete.types';
2
2
  export { default as AvAutocomplete } from './AvAutocomplete/AvAutocomplete.vue';
3
3
  export type { AvMultiselectOption } from './AvMultiselect/AvMultiselect.types';
4
4
  export { default as AvMultiselect, type AvMultiselectProps } from './AvMultiselect/AvMultiselect.vue';
5
- export { default as AvSelect } from './AvSelect/AvSelect.vue';
5
+ export { default as AvSelect, type AvSelectProps } from './AvSelect/AvSelect.vue';