@avenirs-esr/avenirs-dsav 0.1.87 → 0.1.89

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.
@@ -0,0 +1,33 @@
1
+ export declare const AvInputStub: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ modelValue: StringConstructor;
3
+ label: StringConstructor;
4
+ placeholder: StringConstructor;
5
+ isValid: BooleanConstructor;
6
+ isTextarea: BooleanConstructor;
7
+ labelVisible: BooleanConstructor;
8
+ disabled: BooleanConstructor;
9
+ required: BooleanConstructor;
10
+ maxlength: NumberConstructor;
11
+ errorMessage: StringConstructor;
12
+ prefixIcon: StringConstructor;
13
+ }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
14
+ modelValue: StringConstructor;
15
+ label: StringConstructor;
16
+ placeholder: StringConstructor;
17
+ isValid: BooleanConstructor;
18
+ isTextarea: BooleanConstructor;
19
+ labelVisible: BooleanConstructor;
20
+ disabled: BooleanConstructor;
21
+ required: BooleanConstructor;
22
+ maxlength: NumberConstructor;
23
+ errorMessage: StringConstructor;
24
+ prefixIcon: StringConstructor;
25
+ }>> & Readonly<{
26
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
27
+ }>, {
28
+ disabled: boolean;
29
+ isValid: boolean;
30
+ isTextarea: boolean;
31
+ labelVisible: boolean;
32
+ required: boolean;
33
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -559,6 +559,7 @@ export declare const WithCustomItemSlotExample: {
559
559
  PHONE_OUTLINE: string;
560
560
  PLUS_CIRCLE_OUTLINE: string;
561
561
  POST_IT_NOTES_OUTLINE: string;
562
+ RATE_REVIEW: string;
562
563
  RECORD_CIRCLE_OUTLINE: string;
563
564
  SCHOOL_OUTLINE: string;
564
565
  SHARE_VARIANT_OUTLINE: string;
@@ -1,6 +1,3 @@
1
- /**
2
- * TabContent component props.
3
- */
4
1
  export interface TabContentProps {
5
2
  /**
6
3
  * ID of the associated tab panel.
@@ -14,11 +11,6 @@ export interface TabContentProps {
14
11
  * Whether the tab content is visible.
15
12
  */
16
13
  isVisible: boolean;
17
- /**
18
- * Direction of the tab transition animation.
19
- * True for ascending (left to right), false for descending (right to left).
20
- */
21
- asc: boolean;
22
14
  }
23
15
  type __VLS_Slots = {
24
16
  /**
@@ -0,0 +1,14 @@
1
+ export declare const AvModalStub: import("vue").DefineComponent<{
2
+ closeButtonLabel?: any;
3
+ opened?: any;
4
+ confirmButtonLabel?: any;
5
+ confirmButtonIcon?: any;
6
+ }, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "confirm")[], "close" | "confirm", import("vue").PublicProps, Readonly<{
7
+ closeButtonLabel?: any;
8
+ opened?: any;
9
+ confirmButtonLabel?: any;
10
+ confirmButtonIcon?: any;
11
+ }> & Readonly<{
12
+ onClose?: ((...args: any[]) => any) | undefined;
13
+ onConfirm?: ((...args: any[]) => any) | undefined;
14
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;