sit-onyx 1.0.0-beta.39 → 1.0.0-beta.40
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/OnyxAppLayout/OnyxAppLayout.vue.d.ts +1 -7
- package/dist/components/OnyxAvatar/OnyxAvatar.vue.d.ts +1 -7
- package/dist/components/OnyxAvatarStack/OnyxAvatarStack.vue.d.ts +1 -7
- package/dist/components/OnyxBadge/OnyxBadge.vue.d.ts +1 -7
- package/dist/components/OnyxDialog/OnyxDialog.vue.d.ts +3 -9
- package/dist/components/OnyxEmpty/OnyxEmpty.vue.d.ts +1 -7
- package/dist/components/OnyxErrorTooltip/OnyxErrorTooltip.vue.d.ts +3 -9
- package/dist/components/OnyxFormElement/OnyxFormElement.vue.d.ts +1 -7
- package/dist/components/OnyxHeadline/OnyxHeadline.vue.d.ts +1 -7
- package/dist/components/OnyxIconButton/OnyxIconButton.vue.d.ts +1 -7
- package/dist/components/OnyxLink/OnyxLink.vue.d.ts +1 -7
- package/dist/components/OnyxListItem/OnyxListItem.vue.d.ts +1 -7
- package/dist/components/OnyxMobileNavButton/OnyxMobileNavButton.vue.d.ts +1 -7
- package/dist/components/OnyxNavAppArea/OnyxNavAppArea.vue.d.ts +1 -7
- package/dist/components/OnyxNavBar/OnyxNavBar.vue.d.ts +3 -9
- package/dist/components/OnyxNavBar/modules/OnyxMenuItem/OnyxMenuItem.vue.d.ts +1 -7
- package/dist/components/OnyxNavBar/modules/OnyxNavButton/MobileComponentTestWrapper.vue.d.ts +1 -7
- package/dist/components/OnyxNavBar/modules/OnyxNavButton/NavButtonLayout.vue.d.ts +4 -19
- package/dist/components/OnyxNavBar/modules/OnyxNavButton/OnyxNavButton.vue.d.ts +1 -7
- package/dist/components/OnyxNavBar/modules/OnyxNavButton/types.d.ts +6 -0
- package/dist/components/OnyxNavBar/modules/OnyxNavItem/OnyxNavItem.vue.d.ts +1 -7
- package/dist/components/OnyxNavBar/modules/OnyxUserMenu/OnyxUserMenu.vue.d.ts +1 -7
- package/dist/components/OnyxPageLayout/OnyxPageLayout.vue.d.ts +1 -7
- package/dist/components/OnyxSelectOption/OnyxSelectOption.vue.d.ts +1 -7
- package/dist/components/OnyxTable/OnyxTable.vue.d.ts +1 -7
- package/dist/components/OnyxTooltip/OnyxTooltip.vue.d.ts +1 -7
- package/dist/components/OnyxVisuallyHidden/OnyxVisuallyHidden.vue.d.ts +1 -7
- package/dist/components/examples/GridPlayground/GridElement/GridElement.vue.d.ts +3 -9
- package/dist/index.cjs +1 -1
- package/dist/index.js +5 -3
- package/dist/playwright/ScreenshotMatrix.vue.d.ts +1 -7
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/src/styles/mixins/input.scss +0 -1
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxAppLayoutProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/** Navigation area of the application */
|
|
@@ -21,7 +20,7 @@ declare const __VLS_templateResult: {
|
|
|
21
20
|
/** Overlays that cover the complete page */
|
|
22
21
|
appOverlay?(): unknown;
|
|
23
22
|
};
|
|
24
|
-
refs:
|
|
23
|
+
refs: {};
|
|
25
24
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
26
25
|
};
|
|
27
26
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -34,11 +33,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
34
33
|
}, {}>;
|
|
35
34
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
36
35
|
export default _default;
|
|
37
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
38
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
39
|
-
expose?: (exposed: infer E) => void;
|
|
40
|
-
} ? E : T[K]) | null;
|
|
41
|
-
} : never;
|
|
42
36
|
type __VLS_WithDefaults<P, D> = {
|
|
43
37
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
44
38
|
default: D[K];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxAvatarProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/**
|
|
@@ -13,7 +12,7 @@ declare const __VLS_templateResult: {
|
|
|
13
12
|
*/
|
|
14
13
|
default?(): unknown;
|
|
15
14
|
};
|
|
16
|
-
refs:
|
|
15
|
+
refs: {};
|
|
17
16
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
18
17
|
};
|
|
19
18
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -26,11 +25,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
26
25
|
}, {}>;
|
|
27
26
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
28
27
|
export default _default;
|
|
29
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
30
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
31
|
-
expose?: (exposed: infer E) => void;
|
|
32
|
-
} ? E : T[K]) | null;
|
|
33
|
-
} : never;
|
|
34
28
|
type __VLS_WithDefaults<P, D> = {
|
|
35
29
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
36
30
|
default: D[K];
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
declare var __VLS_inheritedAttrs: {};
|
|
2
|
-
declare const __VLS_refs: {};
|
|
3
2
|
declare const __VLS_templateResult: {
|
|
4
3
|
slots: Readonly<{
|
|
5
4
|
/**
|
|
@@ -12,18 +11,13 @@ declare const __VLS_templateResult: {
|
|
|
12
11
|
*/
|
|
13
12
|
default(): unknown;
|
|
14
13
|
};
|
|
15
|
-
refs:
|
|
14
|
+
refs: {};
|
|
16
15
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
17
16
|
};
|
|
18
17
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
19
18
|
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
20
19
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
21
20
|
export default _default;
|
|
22
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
23
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
24
|
-
expose?: (exposed: infer E) => void;
|
|
25
|
-
} ? E : T[K]) | null;
|
|
26
|
-
} : never;
|
|
27
21
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
28
22
|
new (): {
|
|
29
23
|
$slots: S;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxBadgeProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/**
|
|
@@ -13,7 +12,7 @@ declare const __VLS_templateResult: {
|
|
|
13
12
|
*/
|
|
14
13
|
default?(): unknown;
|
|
15
14
|
};
|
|
16
|
-
refs:
|
|
15
|
+
refs: {};
|
|
17
16
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
18
17
|
};
|
|
19
18
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -29,11 +28,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
29
28
|
}, {}>;
|
|
30
29
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
31
30
|
export default _default;
|
|
32
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
33
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
34
|
-
expose?: (exposed: infer E) => void;
|
|
35
|
-
} ? E : T[K]) | null;
|
|
36
|
-
} : never;
|
|
37
31
|
type __VLS_WithDefaults<P, D> = {
|
|
38
32
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
39
33
|
default: D[K];
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import type { OnyxDialogProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {
|
|
4
|
-
dialogRef: import("vue").DialogHTMLAttributes & import("vue").ReservedProps;
|
|
5
|
-
};
|
|
6
3
|
declare const __VLS_templateResult: {
|
|
7
4
|
slots: Readonly<{
|
|
8
5
|
/**
|
|
@@ -19,7 +16,9 @@ declare const __VLS_templateResult: {
|
|
|
19
16
|
*/
|
|
20
17
|
default(): unknown;
|
|
21
18
|
};
|
|
22
|
-
refs:
|
|
19
|
+
refs: {
|
|
20
|
+
dialogRef: import("vue").DialogHTMLAttributes & import("vue").ReservedProps;
|
|
21
|
+
};
|
|
23
22
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
24
23
|
};
|
|
25
24
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -42,11 +41,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
42
41
|
}, {}>;
|
|
43
42
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
44
43
|
export default _default;
|
|
45
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
46
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
47
|
-
expose?: (exposed: infer E) => void;
|
|
48
|
-
} ? E : T[K]) | null;
|
|
49
|
-
} : never;
|
|
50
44
|
type __VLS_WithDefaults<P, D> = {
|
|
51
45
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
52
46
|
default: D[K];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { type DensityProp } from "../../composables/density";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/**
|
|
@@ -21,18 +20,13 @@ declare const __VLS_templateResult: {
|
|
|
21
20
|
*/
|
|
22
21
|
icon?(): unknown;
|
|
23
22
|
};
|
|
24
|
-
refs:
|
|
23
|
+
refs: {};
|
|
25
24
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
26
25
|
};
|
|
27
26
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
28
27
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<DensityProp>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<DensityProp>>>, {}, {}>;
|
|
29
28
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
30
29
|
export default _default;
|
|
31
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
32
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
33
|
-
expose?: (exposed: infer E) => void;
|
|
34
|
-
} ? E : T[K]) | null;
|
|
35
|
-
} : never;
|
|
36
30
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
37
31
|
type __VLS_TypePropsToOption<T> = {
|
|
38
32
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { type FormErrorMessages } from "../../composables/useCustomValidity";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {
|
|
4
|
-
targetRef: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
|
5
|
-
};
|
|
6
3
|
declare const __VLS_templateResult: {
|
|
7
4
|
slots: Readonly<{
|
|
8
5
|
/**
|
|
@@ -17,7 +14,9 @@ declare const __VLS_templateResult: {
|
|
|
17
14
|
*/
|
|
18
15
|
default(): unknown;
|
|
19
16
|
};
|
|
20
|
-
refs:
|
|
17
|
+
refs: {
|
|
18
|
+
targetRef: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
|
19
|
+
};
|
|
21
20
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
22
21
|
};
|
|
23
22
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -42,11 +41,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
42
41
|
}>>>, {}, {}>;
|
|
43
42
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
44
43
|
export default _default;
|
|
45
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
46
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
47
|
-
expose?: (exposed: infer E) => void;
|
|
48
|
-
} ? E : T[K]) | null;
|
|
49
|
-
} : never;
|
|
50
44
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
51
45
|
type __VLS_TypePropsToOption<T> = {
|
|
52
46
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxFormElementProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/** The place for the actual form element */
|
|
@@ -13,7 +12,7 @@ declare const __VLS_templateResult: {
|
|
|
13
12
|
id: string;
|
|
14
13
|
}): unknown;
|
|
15
14
|
};
|
|
16
|
-
refs:
|
|
15
|
+
refs: {};
|
|
17
16
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
18
17
|
};
|
|
19
18
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -29,11 +28,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
29
28
|
}, {}>;
|
|
30
29
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
31
30
|
export default _default;
|
|
32
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
33
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
34
|
-
expose?: (exposed: infer E) => void;
|
|
35
|
-
} ? E : T[K]) | null;
|
|
36
|
-
} : never;
|
|
37
31
|
type __VLS_WithDefaults<P, D> = {
|
|
38
32
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
39
33
|
default: D[K];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxHeadlineProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/**
|
|
@@ -13,18 +12,13 @@ declare const __VLS_templateResult: {
|
|
|
13
12
|
*/
|
|
14
13
|
default(): unknown;
|
|
15
14
|
};
|
|
16
|
-
refs:
|
|
15
|
+
refs: {};
|
|
17
16
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
18
17
|
};
|
|
19
18
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
20
19
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<OnyxHeadlineProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<OnyxHeadlineProps>>>, {}, {}>;
|
|
21
20
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
22
21
|
export default _default;
|
|
23
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
24
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
25
|
-
expose?: (exposed: infer E) => void;
|
|
26
|
-
} ? E : T[K]) | null;
|
|
27
|
-
} : never;
|
|
28
22
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
29
23
|
type __VLS_TypePropsToOption<T> = {
|
|
30
24
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxIconButtonProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/** Slot for an custom icon. Will have no effect if property `icon` is passed. */
|
|
@@ -9,7 +8,7 @@ declare const __VLS_templateResult: {
|
|
|
9
8
|
/** Slot for an custom icon. Will have no effect if property `icon` is passed. */
|
|
10
9
|
default(): unknown;
|
|
11
10
|
};
|
|
12
|
-
refs:
|
|
11
|
+
refs: {};
|
|
13
12
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
14
13
|
};
|
|
15
14
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -35,11 +34,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
35
34
|
}, {}>;
|
|
36
35
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
37
36
|
export default _default;
|
|
38
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
39
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
40
|
-
expose?: (exposed: infer E) => void;
|
|
41
|
-
} ? E : T[K]) | null;
|
|
42
|
-
} : never;
|
|
43
37
|
type __VLS_WithDefaults<P, D> = {
|
|
44
38
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
45
39
|
default: D[K];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxLinkProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/**
|
|
@@ -13,7 +12,7 @@ declare const __VLS_templateResult: {
|
|
|
13
12
|
*/
|
|
14
13
|
default(): unknown;
|
|
15
14
|
};
|
|
16
|
-
refs:
|
|
15
|
+
refs: {};
|
|
17
16
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
18
17
|
};
|
|
19
18
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -33,11 +32,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
33
32
|
}, {}>;
|
|
34
33
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
35
34
|
export default _default;
|
|
36
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
37
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
38
|
-
expose?: (exposed: infer E) => void;
|
|
39
|
-
} ? E : T[K]) | null;
|
|
40
|
-
} : never;
|
|
41
35
|
type __VLS_WithDefaults<P, D> = {
|
|
42
36
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
43
37
|
default: D[K];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxListItemProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/**
|
|
@@ -13,7 +12,7 @@ declare const __VLS_templateResult: {
|
|
|
13
12
|
*/
|
|
14
13
|
default(): unknown;
|
|
15
14
|
};
|
|
16
|
-
refs:
|
|
15
|
+
refs: {};
|
|
17
16
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
18
17
|
};
|
|
19
18
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -35,11 +34,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
35
34
|
}, {}>;
|
|
36
35
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
37
36
|
export default _default;
|
|
38
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
39
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
40
|
-
expose?: (exposed: infer E) => void;
|
|
41
|
-
} ? E : T[K]) | null;
|
|
42
|
-
} : never;
|
|
43
37
|
type __VLS_WithDefaults<P, D> = {
|
|
44
38
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
45
39
|
default: D[K];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxMobileNavButtonProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/**
|
|
@@ -13,7 +12,7 @@ declare const __VLS_templateResult: {
|
|
|
13
12
|
*/
|
|
14
13
|
default(): unknown;
|
|
15
14
|
};
|
|
16
|
-
refs:
|
|
15
|
+
refs: {};
|
|
17
16
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
18
17
|
};
|
|
19
18
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -30,11 +29,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
30
29
|
}, {}>;
|
|
31
30
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
32
31
|
export default _default;
|
|
33
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
34
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
35
|
-
expose?: (exposed: infer E) => void;
|
|
36
|
-
} ? E : T[K]) | null;
|
|
37
|
-
} : never;
|
|
38
32
|
type __VLS_WithDefaults<P, D> = {
|
|
39
33
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
40
34
|
default: D[K];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxNavAppAreaProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/**
|
|
@@ -13,7 +12,7 @@ declare const __VLS_templateResult: {
|
|
|
13
12
|
*/
|
|
14
13
|
default?(): unknown;
|
|
15
14
|
};
|
|
16
|
-
refs:
|
|
15
|
+
refs: {};
|
|
17
16
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
18
17
|
};
|
|
19
18
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -24,11 +23,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
24
23
|
}, {}, {}>;
|
|
25
24
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
26
25
|
export default _default;
|
|
27
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
28
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
29
|
-
expose?: (exposed: infer E) => void;
|
|
30
|
-
} ? E : T[K]) | null;
|
|
31
|
-
} : never;
|
|
32
26
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
33
27
|
type __VLS_TypePropsToOption<T> = {
|
|
34
28
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -1,8 +1,5 @@
|
|
|
1
1
|
import { type OnyxNavBarProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {
|
|
4
|
-
navBarRef: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
|
5
|
-
};
|
|
6
3
|
declare const __VLS_templateResult: {
|
|
7
4
|
slots: Readonly<{
|
|
8
5
|
/**
|
|
@@ -55,7 +52,9 @@ declare const __VLS_templateResult: {
|
|
|
55
52
|
*/
|
|
56
53
|
mobileActivePage?: () => unknown;
|
|
57
54
|
};
|
|
58
|
-
refs:
|
|
55
|
+
refs: {
|
|
56
|
+
navBarRef: import("vue").HTMLAttributes & import("vue").ReservedProps;
|
|
57
|
+
};
|
|
59
58
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
60
59
|
};
|
|
61
60
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -89,11 +88,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
89
88
|
}, {}>;
|
|
90
89
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
91
90
|
export default _default;
|
|
92
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
93
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
94
|
-
expose?: (exposed: infer E) => void;
|
|
95
|
-
} ? E : T[K]) | null;
|
|
96
|
-
} : never;
|
|
97
91
|
type __VLS_WithDefaults<P, D> = {
|
|
98
92
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
99
93
|
default: D[K];
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { type OnyxMenuItemProps } from "./types";
|
|
2
2
|
declare var __VLS_13: {};
|
|
3
3
|
declare var __VLS_inheritedAttrs: {};
|
|
4
|
-
declare const __VLS_refs: {};
|
|
5
4
|
declare const __VLS_templateResult: {
|
|
6
5
|
slots: {
|
|
7
6
|
default?(_: typeof __VLS_13): any;
|
|
8
7
|
};
|
|
9
|
-
refs:
|
|
8
|
+
refs: {};
|
|
10
9
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
11
10
|
};
|
|
12
11
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -17,11 +16,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
17
16
|
}, {}, {}>;
|
|
18
17
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
19
18
|
export default _default;
|
|
20
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
21
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
22
|
-
expose?: (exposed: infer E) => void;
|
|
23
|
-
} ? E : T[K]) | null;
|
|
24
|
-
} : never;
|
|
25
19
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
26
20
|
type __VLS_TypePropsToOption<T> = {
|
|
27
21
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
package/dist/components/OnyxNavBar/modules/OnyxNavButton/MobileComponentTestWrapper.vue.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxNavButtonProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/**
|
|
@@ -21,7 +20,7 @@ declare const __VLS_templateResult: {
|
|
|
21
20
|
*/
|
|
22
21
|
children?(): unknown;
|
|
23
22
|
};
|
|
24
|
-
refs:
|
|
23
|
+
refs: {};
|
|
25
24
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
26
25
|
};
|
|
27
26
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -32,11 +31,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOp
|
|
|
32
31
|
}, {}, {}>;
|
|
33
32
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
34
33
|
export default _default;
|
|
35
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
36
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
37
|
-
expose?: (exposed: infer E) => void;
|
|
38
|
-
} ? E : T[K]) | null;
|
|
39
|
-
} : never;
|
|
40
34
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
41
35
|
type __VLS_TypePropsToOption<T> = {
|
|
42
36
|
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
import { type ManagedProp } from "../../../../composables/useManagedState";
|
|
2
1
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
2
|
declare const __VLS_templateResult: {
|
|
5
3
|
slots: Readonly<{
|
|
6
4
|
button?(): unknown;
|
|
@@ -9,48 +7,35 @@ declare const __VLS_templateResult: {
|
|
|
9
7
|
button?(): unknown;
|
|
10
8
|
options?(): unknown;
|
|
11
9
|
};
|
|
12
|
-
refs:
|
|
10
|
+
refs: {};
|
|
13
11
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
14
12
|
};
|
|
15
13
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
16
14
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<import("../../../OnyxExternalLinkIcon/types").OnyxExternalLinkIcon & {
|
|
15
|
+
mobileChildrenOpen?: import("../../../../composables/useManagedState").ManagedProp<boolean>;
|
|
17
16
|
label: string;
|
|
18
17
|
active?: boolean;
|
|
19
18
|
} & {
|
|
20
19
|
isMobile: boolean;
|
|
21
|
-
/**
|
|
22
|
-
* Controls the open state for the mobile children.
|
|
23
|
-
* Is managed internally if not provided.
|
|
24
|
-
*/
|
|
25
|
-
mobileChildrenOpen: ManagedProp<boolean>;
|
|
26
20
|
}>, {
|
|
27
21
|
mobileChildrenOpen: symbol;
|
|
28
22
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
29
23
|
"update:mobileChildrenOpen": (isOpen: boolean) => void;
|
|
30
24
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<import("../../../OnyxExternalLinkIcon/types").OnyxExternalLinkIcon & {
|
|
25
|
+
mobileChildrenOpen?: import("../../../../composables/useManagedState").ManagedProp<boolean>;
|
|
31
26
|
label: string;
|
|
32
27
|
active?: boolean;
|
|
33
28
|
} & {
|
|
34
29
|
isMobile: boolean;
|
|
35
|
-
/**
|
|
36
|
-
* Controls the open state for the mobile children.
|
|
37
|
-
* Is managed internally if not provided.
|
|
38
|
-
*/
|
|
39
|
-
mobileChildrenOpen: ManagedProp<boolean>;
|
|
40
30
|
}>, {
|
|
41
31
|
mobileChildrenOpen: symbol;
|
|
42
32
|
}>>> & {
|
|
43
33
|
"onUpdate:mobileChildrenOpen"?: ((isOpen: boolean) => any) | undefined;
|
|
44
34
|
}, {
|
|
45
|
-
mobileChildrenOpen: ManagedProp<boolean>;
|
|
35
|
+
mobileChildrenOpen: import("../../../../composables/useManagedState").ManagedProp<boolean>;
|
|
46
36
|
}, {}>;
|
|
47
37
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
48
38
|
export default _default;
|
|
49
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
50
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
51
|
-
expose?: (exposed: infer E) => void;
|
|
52
|
-
} ? E : T[K]) | null;
|
|
53
|
-
} : never;
|
|
54
39
|
type __VLS_WithDefaults<P, D> = {
|
|
55
40
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
56
41
|
default: D[K];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxNavButtonProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/**
|
|
@@ -21,7 +20,7 @@ declare const __VLS_templateResult: {
|
|
|
21
20
|
*/
|
|
22
21
|
children?(): unknown;
|
|
23
22
|
};
|
|
24
|
-
refs:
|
|
23
|
+
refs: {};
|
|
25
24
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
26
25
|
};
|
|
27
26
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -41,11 +40,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
41
40
|
}, {}>;
|
|
42
41
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
43
42
|
export default _default;
|
|
44
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
45
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
46
|
-
expose?: (exposed: infer E) => void;
|
|
47
|
-
} ? E : T[K]) | null;
|
|
48
|
-
} : never;
|
|
49
43
|
type __VLS_WithDefaults<P, D> = {
|
|
50
44
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
51
45
|
default: D[K];
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
import type { ManagedProp } from "../../../../composables/useManagedState";
|
|
1
2
|
import type { OnyxExternalLinkIcon } from "../../../OnyxExternalLinkIcon/types";
|
|
2
3
|
export type OnyxNavButtonProps = OnyxExternalLinkIcon & {
|
|
4
|
+
/**
|
|
5
|
+
* Controls the open state for the mobile children.
|
|
6
|
+
* Is managed internally if not provided.
|
|
7
|
+
*/
|
|
8
|
+
mobileChildrenOpen?: ManagedProp<boolean>;
|
|
3
9
|
/**
|
|
4
10
|
* Label to show inside the Nav item.
|
|
5
11
|
* You can use the `default` slot to display custom content.
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
declare var __VLS_inheritedAttrs: {};
|
|
2
|
-
declare const __VLS_refs: {};
|
|
3
2
|
declare const __VLS_templateResult: {
|
|
4
3
|
slots: Readonly<{
|
|
5
4
|
/**
|
|
@@ -12,7 +11,7 @@ declare const __VLS_templateResult: {
|
|
|
12
11
|
*/
|
|
13
12
|
default?(): unknown;
|
|
14
13
|
};
|
|
15
|
-
refs:
|
|
14
|
+
refs: {};
|
|
16
15
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
17
16
|
};
|
|
18
17
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -29,11 +28,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
29
28
|
}, {}>;
|
|
30
29
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
31
30
|
export default _default;
|
|
32
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
33
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
34
|
-
expose?: (exposed: infer E) => void;
|
|
35
|
-
} ? E : T[K]) | null;
|
|
36
|
-
} : never;
|
|
37
31
|
type __VLS_WithDefaults<P, D> = {
|
|
38
32
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
39
33
|
default: D[K];
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import type { OnyxUserMenuProps } from "./types";
|
|
2
2
|
declare var __VLS_inheritedAttrs: {};
|
|
3
|
-
declare const __VLS_refs: {};
|
|
4
3
|
declare const __VLS_templateResult: {
|
|
5
4
|
slots: Readonly<{
|
|
6
5
|
/**
|
|
@@ -21,7 +20,7 @@ declare const __VLS_templateResult: {
|
|
|
21
20
|
*/
|
|
22
21
|
footer?(): unknown;
|
|
23
22
|
};
|
|
24
|
-
refs:
|
|
23
|
+
refs: {};
|
|
25
24
|
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
26
25
|
};
|
|
27
26
|
type __VLS_Slots = typeof __VLS_templateResult['slots'];
|
|
@@ -38,11 +37,6 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<
|
|
|
38
37
|
}, {}>;
|
|
39
38
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
|
|
40
39
|
export default _default;
|
|
41
|
-
type __VLS_PickRefsExpose<T> = T extends object ? {
|
|
42
|
-
[K in keyof T]: (T[K] extends any[] ? Parameters<T[K][0]['expose']>[0][] : T[K] extends {
|
|
43
|
-
expose?: (exposed: infer E) => void;
|
|
44
|
-
} ? E : T[K]) | null;
|
|
45
|
-
} : never;
|
|
46
40
|
type __VLS_WithDefaults<P, D> = {
|
|
47
41
|
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
48
42
|
default: D[K];
|