@avenirs-esr/avenirs-dsav 0.1.88 → 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.
- package/dist/avenirs-dsav.css +1 -1
- package/dist/components/interaction/tabs/AvTabs/components/TabContent.vue.d.ts +0 -8
- package/dist/components/overlay/modals/AvModal/AvModal.stub.d.ts +14 -0
- package/dist/index.cjs.js +3 -3
- package/dist/index.es.js +1725 -1750
- package/dist/test-utils.cjs.js +11 -5
- package/dist/test-utils.es.js +33 -21
- package/dist/tests/index.d.ts +2 -1
- package/package.json +1 -1
- package/src/styles/components/_grid.scss +1 -0
- package/dist/components/interaction/tabs/AvTabs/composables/use-tab-transition.d.ts +0 -23
- package/dist/components/interaction/tabs/AvTabs/composables/use-tab-transition.test.d.ts +0 -1
|
@@ -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>;
|