sit-onyx 1.0.0-beta.69 → 1.0.0-beta.70
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/components/OnyxNavBar/modules/OnyxFlyoutMenu/OnyxFlyoutMenu.vue.d.ts +13 -4
- package/dist/components/OnyxNavBar/modules/OnyxNavButton/NavButtonLayout.vue.d.ts +18 -2
- package/dist/components/OnyxNavBar/modules/OnyxNavButton/OnyxNavButton.vue.d.ts +6 -2
- package/dist/components/OnyxNavBar/modules/OnyxUserMenu/UserMenuLayout.vue.d.ts +18 -2
- package/dist/index.cjs +2 -2
- package/dist/index.js +1577 -1580
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { type VNode } from "vue";
|
|
2
1
|
import type { SelectOptionValue } from "../../../../types";
|
|
3
2
|
import type { OnyxFlyoutMenuProps } from "./types";
|
|
4
3
|
declare const _default: <TValue extends SelectOptionValue = SelectOptionValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
@@ -11,7 +10,12 @@ declare const _default: <TValue extends SelectOptionValue = SelectOptionValue>(_
|
|
|
11
10
|
/**
|
|
12
11
|
* The trigger for the flyout menu. Should be an interactive component like a button or link.
|
|
13
12
|
*/
|
|
14
|
-
|
|
13
|
+
button?(params: {
|
|
14
|
+
/**
|
|
15
|
+
* Attributes and event listeners that must be bound to an interactive element (button or link), that should act as the flyout trigger.
|
|
16
|
+
*/
|
|
17
|
+
trigger: object;
|
|
18
|
+
}): unknown;
|
|
15
19
|
/**
|
|
16
20
|
* OnyxListItems to show
|
|
17
21
|
*/
|
|
@@ -28,7 +32,12 @@ declare const _default: <TValue extends SelectOptionValue = SelectOptionValue>(_
|
|
|
28
32
|
/**
|
|
29
33
|
* The trigger for the flyout menu. Should be an interactive component like a button or link.
|
|
30
34
|
*/
|
|
31
|
-
|
|
35
|
+
button?(params: {
|
|
36
|
+
/**
|
|
37
|
+
* Attributes and event listeners that must be bound to an interactive element (button or link), that should act as the flyout trigger.
|
|
38
|
+
*/
|
|
39
|
+
trigger: object;
|
|
40
|
+
}): unknown;
|
|
32
41
|
/**
|
|
33
42
|
* OnyxListItems to show
|
|
34
43
|
*/
|
|
@@ -43,7 +52,7 @@ declare const _default: <TValue extends SelectOptionValue = SelectOptionValue>(_
|
|
|
43
52
|
footer?(): unknown;
|
|
44
53
|
};
|
|
45
54
|
emit: (evt: "update:open", isOpen: boolean) => void;
|
|
46
|
-
}>) => VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
55
|
+
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
47
56
|
[key: string]: any;
|
|
48
57
|
}> & {
|
|
49
58
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
@@ -8,10 +8,26 @@ type __VLS_Props = OnyxNavButtonProps & {
|
|
|
8
8
|
declare function __VLS_template(): {
|
|
9
9
|
attrs: Partial<{}>;
|
|
10
10
|
slots: Readonly<{
|
|
11
|
-
|
|
11
|
+
/**
|
|
12
|
+
* The trigger for the flyout menu. Should be an interactive component like a button or link.
|
|
13
|
+
*/
|
|
14
|
+
button?(params: {
|
|
15
|
+
/**
|
|
16
|
+
* Attributes and event listeners that must be bound to an interactive element (button or link), that should act as the flyout trigger.
|
|
17
|
+
*/
|
|
18
|
+
trigger: object;
|
|
19
|
+
}): unknown;
|
|
12
20
|
options?(): unknown;
|
|
13
21
|
}> & {
|
|
14
|
-
|
|
22
|
+
/**
|
|
23
|
+
* The trigger for the flyout menu. Should be an interactive component like a button or link.
|
|
24
|
+
*/
|
|
25
|
+
button?(params: {
|
|
26
|
+
/**
|
|
27
|
+
* Attributes and event listeners that must be bound to an interactive element (button or link), that should act as the flyout trigger.
|
|
28
|
+
*/
|
|
29
|
+
trigger: object;
|
|
30
|
+
}): unknown;
|
|
15
31
|
options?(): unknown;
|
|
16
32
|
};
|
|
17
33
|
refs: {};
|
|
@@ -87,10 +87,14 @@ declare function __VLS_template(): {
|
|
|
87
87
|
"onUpdate:mobileChildrenOpen"?: ((isOpen: boolean) => any) | undefined;
|
|
88
88
|
}>, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
89
89
|
$slots: Readonly<{
|
|
90
|
-
button?(
|
|
90
|
+
button?(params: {
|
|
91
|
+
trigger: object;
|
|
92
|
+
}): unknown;
|
|
91
93
|
options?(): unknown;
|
|
92
94
|
}> & {
|
|
93
|
-
button?(
|
|
95
|
+
button?(params: {
|
|
96
|
+
trigger: object;
|
|
97
|
+
}): unknown;
|
|
94
98
|
options?(): unknown;
|
|
95
99
|
};
|
|
96
100
|
}) | null;
|
|
@@ -17,12 +17,28 @@ declare const _default: <TValue extends SelectOptionValue = SelectOptionValue>(_
|
|
|
17
17
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
18
18
|
attrs: any;
|
|
19
19
|
slots: Readonly<{
|
|
20
|
-
|
|
20
|
+
/**
|
|
21
|
+
* The trigger for the flyout menu. Must be an interactive component like a button or link.
|
|
22
|
+
*/
|
|
23
|
+
button?(params: {
|
|
24
|
+
/**
|
|
25
|
+
* Attributes and event listeners that must be bound to the interactive element, that should act as the flyout trigger.
|
|
26
|
+
*/
|
|
27
|
+
trigger: object;
|
|
28
|
+
}): unknown;
|
|
21
29
|
header?(): unknown;
|
|
22
30
|
options?(): unknown;
|
|
23
31
|
footer?(): unknown;
|
|
24
32
|
}> & {
|
|
25
|
-
|
|
33
|
+
/**
|
|
34
|
+
* The trigger for the flyout menu. Must be an interactive component like a button or link.
|
|
35
|
+
*/
|
|
36
|
+
button?(params: {
|
|
37
|
+
/**
|
|
38
|
+
* Attributes and event listeners that must be bound to the interactive element, that should act as the flyout trigger.
|
|
39
|
+
*/
|
|
40
|
+
trigger: object;
|
|
41
|
+
}): unknown;
|
|
26
42
|
header?(): unknown;
|
|
27
43
|
options?(): unknown;
|
|
28
44
|
footer?(): unknown;
|