sit-onyx 1.0.0-beta.0 → 1.0.0-beta.10
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/OnyxCheckboxGroup/types.d.ts +1 -1
- package/dist/components/OnyxFormElement/OnyxFormElement.vue.d.ts +9 -2
- package/dist/components/OnyxFormElement/types.d.ts +6 -0
- package/dist/components/OnyxMobileNavButton/OnyxMobileNavButton.vue.d.ts +2 -2
- package/dist/components/OnyxMobileNavButton/types.d.ts +4 -0
- package/dist/components/OnyxNavBar/modules/OnyxFlyoutMenu/OnyxFlyoutMenu.vue.d.ts +8 -2
- package/dist/components/OnyxNavBar/modules/OnyxMenuItem/types.d.ts +1 -1
- package/dist/components/OnyxNavBar/modules/OnyxUserMenu/OnyxUserMenu.vue.d.ts +9 -1
- package/dist/components/OnyxNavBar/modules/OnyxUserMenu/UserMenuLayout.vue.d.ts +9 -3
- package/dist/components/OnyxRadioGroup/types.d.ts +1 -1
- package/dist/components/OnyxSelect/types.d.ts +2 -2
- package/dist/components/OnyxSelectOption/OnyxSelectOption.vue.d.ts +3 -0
- package/dist/components/OnyxSelectOption/types.d.ts +5 -0
- package/dist/components/OnyxToast/OnyxToast.vue.d.ts +1 -40
- package/dist/components/{OnyxToastProvider → OnyxToast}/useToast.d.ts +2 -2
- package/dist/components/OnyxToastMessage/OnyxToastMessage.vue.d.ts +41 -0
- package/dist/components/{OnyxToast → OnyxToastMessage}/types.d.ts +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1587 -1473
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/themes.d.ts +1 -0
- package/package.json +3 -3
- package/src/styles/mixins/list.scss +1 -5
- package/src/types/index.ts +1 -0
- package/src/types/themes.ts +1 -0
- package/dist/components/OnyxToastProvider/OnyxToastProvider.vue.d.ts +0 -2
- /package/dist/components/{OnyxToastProvider → OnyxToast}/PlaywrightTest.vue.d.ts +0 -0
- /package/dist/components/{OnyxToastProvider → OnyxToast}/PlaywrightTestWrapper.vue.d.ts +0 -0
- /package/dist/components/{OnyxToastProvider → OnyxToast}/StorybookExample.vue.d.ts +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { DensityProp } from "../../composables/density";
|
|
2
2
|
import type { RequiredMarkerProp } from "../../composables/required";
|
|
3
3
|
import type { AutofocusProp, BaseSelectOption, Direction, SelectOptionValue } from "../../types";
|
|
4
|
-
export type OnyxCheckboxGroupProps<TValue extends SelectOptionValue = SelectOptionValue> = DensityProp & {
|
|
4
|
+
export type OnyxCheckboxGroupProps<TValue extends SelectOptionValue = SelectOptionValue> = DensityProp & Pick<BaseSelectOption, "truncation"> & {
|
|
5
5
|
/**
|
|
6
6
|
* Checkbox options.
|
|
7
7
|
*/
|
|
@@ -1,17 +1,24 @@
|
|
|
1
1
|
import type { OnyxFormElementProps } from "./types";
|
|
2
2
|
declare function __VLS_template(): Readonly<{
|
|
3
3
|
/** The place for the actual form element */
|
|
4
|
-
default(
|
|
4
|
+
default(props: {
|
|
5
|
+
id: string;
|
|
6
|
+
}): unknown;
|
|
5
7
|
}> & {
|
|
6
8
|
/** The place for the actual form element */
|
|
7
|
-
default(
|
|
9
|
+
default(props: {
|
|
10
|
+
id: string;
|
|
11
|
+
}): unknown;
|
|
8
12
|
};
|
|
9
13
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<OnyxFormElementProps>, {
|
|
10
14
|
required: boolean;
|
|
15
|
+
id: string;
|
|
11
16
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<OnyxFormElementProps>, {
|
|
12
17
|
required: boolean;
|
|
18
|
+
id: string;
|
|
13
19
|
}>>>, {
|
|
14
20
|
required: boolean;
|
|
21
|
+
id: string;
|
|
15
22
|
}, {}>;
|
|
16
23
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
17
24
|
export default _default;
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import type { RequiredMarkerProp } from "../../composables/required";
|
|
2
2
|
import type { FormErrorMessages } from "../../composables/useCustomValidity";
|
|
3
3
|
export type OnyxFormElementProps = RequiredMarkerProp & {
|
|
4
|
+
/**
|
|
5
|
+
* The id of a labelable form-related element.
|
|
6
|
+
* If not given an id will be generated.
|
|
7
|
+
* The id is passed as a `default` slot property.
|
|
8
|
+
*/
|
|
9
|
+
id?: string;
|
|
4
10
|
/**
|
|
5
11
|
* Current value of the form element.
|
|
6
12
|
*/
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import type { OnyxMobileNavButtonProps } from "./types";
|
|
2
2
|
declare function __VLS_template(): Readonly<{
|
|
3
3
|
/**
|
|
4
|
-
* Slot for the menu content when
|
|
4
|
+
* Slot for the menu content when it's open.
|
|
5
5
|
*/
|
|
6
6
|
default(): unknown;
|
|
7
7
|
}> & {
|
|
8
8
|
/**
|
|
9
|
-
* Slot for the menu content when
|
|
9
|
+
* Slot for the menu content when it's open.
|
|
10
10
|
*/
|
|
11
11
|
default(): unknown;
|
|
12
12
|
};
|
|
@@ -2,7 +2,13 @@ import { type VNode } from "vue";
|
|
|
2
2
|
import type { SelectOptionValue } from "../../../../types";
|
|
3
3
|
import type { OnyxFlyoutMenuProps } from "./types";
|
|
4
4
|
declare const _default: <TValue extends SelectOptionValue = SelectOptionValue>(__VLS_props: Awaited<typeof __VLS_setup>["props"], __VLS_ctx?: __VLS_Prettify<Pick<Awaited<typeof __VLS_setup>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
5
|
-
props: __VLS_Prettify<Pick<Partial<{}> & Omit<{
|
|
5
|
+
props: __VLS_Prettify<Pick<Partial<{}> & Omit<{
|
|
6
|
+
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
7
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
8
|
+
"onUpdate:open"?: ((open: boolean) => any) | undefined;
|
|
9
|
+
}, never>, "onUpdate:open"> & ({
|
|
10
|
+
open?: boolean;
|
|
11
|
+
} & OnyxFlyoutMenuProps)> & __VLS_BuiltInPublicProps;
|
|
6
12
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
7
13
|
attrs: any;
|
|
8
14
|
slots: ReturnType<() => Readonly<{
|
|
@@ -40,7 +46,7 @@ declare const _default: <TValue extends SelectOptionValue = SelectOptionValue>(_
|
|
|
40
46
|
*/
|
|
41
47
|
footer?(): unknown;
|
|
42
48
|
}>;
|
|
43
|
-
emit:
|
|
49
|
+
emit: (evt: "update:open", open: boolean) => void;
|
|
44
50
|
}>) => VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
45
51
|
[key: string]: any;
|
|
46
52
|
}> & {
|
|
@@ -2,7 +2,7 @@ import type { OnyxColor } from "../../../../types";
|
|
|
2
2
|
export type OnyxMenuItemProps = {
|
|
3
3
|
/**
|
|
4
4
|
* URL that the menu item points to.
|
|
5
|
-
* If the property is set
|
|
5
|
+
* If the property is set the menuitem will act as an anchor, otherwise it will act as an button.
|
|
6
6
|
*/
|
|
7
7
|
href?: string;
|
|
8
8
|
/**
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import type { OnyxUserMenuProps } from "./types";
|
|
2
|
+
declare let __VLS_typeProps: OnyxUserMenuProps;
|
|
3
|
+
type __VLS_PublicProps = {
|
|
4
|
+
"flyoutOpen"?: boolean;
|
|
5
|
+
} & typeof __VLS_typeProps;
|
|
2
6
|
declare function __VLS_template(): Readonly<{
|
|
3
7
|
/**
|
|
4
8
|
* Slot for the menu options. Its recommended to use the `OnyxMenuItem` component here.
|
|
@@ -18,7 +22,11 @@ declare function __VLS_template(): Readonly<{
|
|
|
18
22
|
*/
|
|
19
23
|
footer?(): unknown;
|
|
20
24
|
};
|
|
21
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<
|
|
25
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_PublicProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
26
|
+
"update:flyoutOpen": (flyoutOpen: boolean) => void;
|
|
27
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps>>> & {
|
|
28
|
+
"onUpdate:flyoutOpen"?: ((flyoutOpen: boolean) => any) | undefined;
|
|
29
|
+
}, {}, {}>;
|
|
22
30
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
23
31
|
export default _default;
|
|
24
32
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -1,8 +1,14 @@
|
|
|
1
1
|
import type { SelectOptionValue } from "../../../../types";
|
|
2
2
|
declare const _default: <TValue extends SelectOptionValue = SelectOptionValue>(__VLS_props: Awaited<typeof __VLS_setup>["props"], __VLS_ctx?: __VLS_Prettify<Pick<Awaited<typeof __VLS_setup>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
|
-
props: __VLS_Prettify<Pick<Partial<{}> & Omit<{
|
|
3
|
+
props: __VLS_Prettify<Pick<Partial<{}> & Omit<{
|
|
4
|
+
"onUpdate:flyoutOpen"?: ((flyoutOpen: boolean) => any) | undefined;
|
|
5
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
6
|
+
"onUpdate:flyoutOpen"?: ((flyoutOpen: boolean) => any) | undefined;
|
|
7
|
+
}, never>, "onUpdate:flyoutOpen"> & ({
|
|
8
|
+
flyoutOpen?: boolean;
|
|
9
|
+
} & {
|
|
4
10
|
isMobile: boolean;
|
|
5
|
-
}> & __VLS_BuiltInPublicProps;
|
|
11
|
+
})> & __VLS_BuiltInPublicProps;
|
|
6
12
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
7
13
|
attrs: any;
|
|
8
14
|
slots: ReturnType<() => Readonly<{
|
|
@@ -16,7 +22,7 @@ declare const _default: <TValue extends SelectOptionValue = SelectOptionValue>(_
|
|
|
16
22
|
options?(): unknown;
|
|
17
23
|
footer?(): unknown;
|
|
18
24
|
}>;
|
|
19
|
-
emit:
|
|
25
|
+
emit: (evt: "update:flyoutOpen", flyoutOpen: boolean) => void;
|
|
20
26
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
21
27
|
[key: string]: any;
|
|
22
28
|
}> & {
|
|
@@ -2,7 +2,7 @@ import type { DensityProp } from "../../composables/density";
|
|
|
2
2
|
import type { RequiredMarkerProp } from "../../composables/required";
|
|
3
3
|
import type { CustomValidityProp } from "../../composables/useCustomValidity";
|
|
4
4
|
import type { AutofocusProp, BaseSelectOption, Direction, SelectOptionValue } from "../../types";
|
|
5
|
-
export type OnyxRadioGroupProps<TValue extends SelectOptionValue = SelectOptionValue> = DensityProp & RequiredMarkerProp & CustomValidityProp & {
|
|
5
|
+
export type OnyxRadioGroupProps<TValue extends SelectOptionValue = SelectOptionValue> = DensityProp & RequiredMarkerProp & CustomValidityProp & Pick<BaseSelectOption, "truncation"> & {
|
|
6
6
|
/**
|
|
7
7
|
* Options for the individual radio buttons of the group.
|
|
8
8
|
*/
|
|
@@ -51,7 +51,7 @@ export type SelectModelValueProps<TValue extends SelectOptionValue> = {
|
|
|
51
51
|
label?: string;
|
|
52
52
|
};
|
|
53
53
|
};
|
|
54
|
-
export type OnyxSelectProps<TValue extends SelectOptionValue = SelectOptionValue> = DensityProp & SelectModelValueProps<TValue> & SelectSearchProps & Omit<OnyxSelectInputProps<TValue>, "density" | "modelValue"> & AutofocusProp & {
|
|
54
|
+
export type OnyxSelectProps<TValue extends SelectOptionValue = SelectOptionValue> = DensityProp & SelectModelValueProps<TValue> & SelectSearchProps & Omit<OnyxSelectInputProps<TValue>, "density" | "modelValue"> & AutofocusProp & Pick<BaseSelectOption, "truncation"> & {
|
|
55
55
|
/**
|
|
56
56
|
* If true, the select popover is expanded and visible.
|
|
57
57
|
* Property is managed internally, when undefined.
|
|
@@ -72,7 +72,7 @@ export type OnyxSelectProps<TValue extends SelectOptionValue = SelectOptionValue
|
|
|
72
72
|
*/
|
|
73
73
|
lazyLoading?: SelectLazyLoading;
|
|
74
74
|
};
|
|
75
|
-
export type SelectOption<TValue extends SelectOptionValue = SelectOptionValue> = Pick<BaseSelectOption<TValue>, "value" | "label" | "disabled"> & Pick<OnyxSelectOptionProps, "icon"> & {
|
|
75
|
+
export type SelectOption<TValue extends SelectOptionValue = SelectOptionValue> = Pick<BaseSelectOption<TValue>, "value" | "label" | "disabled" | "truncation"> & Pick<OnyxSelectOptionProps, "icon"> & {
|
|
76
76
|
/**
|
|
77
77
|
* Optional group name. If set, all options will be grouped under that group name.
|
|
78
78
|
*/
|
|
@@ -13,11 +13,14 @@ declare function __VLS_template(): Readonly<{
|
|
|
13
13
|
declare const __VLS_component: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<OnyxSelectOptionProps>, {
|
|
14
14
|
active: boolean;
|
|
15
15
|
multiple: boolean;
|
|
16
|
+
truncation: string;
|
|
16
17
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<OnyxSelectOptionProps>, {
|
|
17
18
|
active: boolean;
|
|
18
19
|
multiple: boolean;
|
|
20
|
+
truncation: string;
|
|
19
21
|
}>>>, {
|
|
20
22
|
multiple: boolean;
|
|
23
|
+
truncation: import("../../index.js").TruncationType;
|
|
21
24
|
active: boolean;
|
|
22
25
|
}, {}>;
|
|
23
26
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { TruncationType } from "../../types";
|
|
1
2
|
import type { OnyxListItemProps } from "../OnyxListItem/types";
|
|
2
3
|
export type OnyxSelectOptionProps = Pick<OnyxListItemProps, "active" | "density"> & {
|
|
3
4
|
/**
|
|
@@ -13,4 +14,8 @@ export type OnyxSelectOptionProps = Pick<OnyxListItemProps, "active" | "density"
|
|
|
13
14
|
* Optional icon.
|
|
14
15
|
*/
|
|
15
16
|
icon?: string;
|
|
17
|
+
/**
|
|
18
|
+
* How to truncate the option label / text content if it exceeds the max width.
|
|
19
|
+
*/
|
|
20
|
+
truncation?: TruncationType;
|
|
16
21
|
};
|
|
@@ -1,41 +1,2 @@
|
|
|
1
|
-
import
|
|
2
|
-
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<OnyxToastProps>, {
|
|
3
|
-
color: string;
|
|
4
|
-
duration: number;
|
|
5
|
-
clickable: boolean;
|
|
6
|
-
icon: undefined;
|
|
7
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
-
click: () => void;
|
|
9
|
-
close: () => void;
|
|
10
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<OnyxToastProps>, {
|
|
11
|
-
color: string;
|
|
12
|
-
duration: number;
|
|
13
|
-
clickable: boolean;
|
|
14
|
-
icon: undefined;
|
|
15
|
-
}>>> & {
|
|
16
|
-
onClick?: (() => any) | undefined;
|
|
17
|
-
onClose?: (() => any) | undefined;
|
|
18
|
-
}, {
|
|
19
|
-
icon: string | false;
|
|
20
|
-
color: Extract<import("../..").OnyxColor, "neutral" | "danger" | "warning" | "success">;
|
|
21
|
-
duration: number;
|
|
22
|
-
clickable: boolean;
|
|
23
|
-
}, {}>;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
24
2
|
export default _default;
|
|
25
|
-
type __VLS_WithDefaults<P, D> = {
|
|
26
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
27
|
-
default: D[K];
|
|
28
|
-
}> : P[K];
|
|
29
|
-
};
|
|
30
|
-
type __VLS_Prettify<T> = {
|
|
31
|
-
[K in keyof T]: T[K];
|
|
32
|
-
} & {};
|
|
33
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
34
|
-
type __VLS_TypePropsToOption<T> = {
|
|
35
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
36
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
37
|
-
} : {
|
|
38
|
-
type: import('vue').PropType<T[K]>;
|
|
39
|
-
required: true;
|
|
40
|
-
};
|
|
41
|
-
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ComputedRef, type InjectionKey } from "vue";
|
|
2
|
-
import type {
|
|
2
|
+
import type { OnyxToastMessageProps } from "../OnyxToastMessage/types";
|
|
3
3
|
export type ToastProvider = {
|
|
4
4
|
/**
|
|
5
5
|
* Readonly list of currently active toasts.
|
|
@@ -25,7 +25,7 @@ export type ProvidedToast = ShowToastOptions & {
|
|
|
25
25
|
*/
|
|
26
26
|
onClose: () => void;
|
|
27
27
|
};
|
|
28
|
-
export type ShowToastOptions =
|
|
28
|
+
export type ShowToastOptions = OnyxToastMessageProps & {
|
|
29
29
|
/**
|
|
30
30
|
* Callback when the toast is clicked. Requires `clickable` to be enabled.
|
|
31
31
|
*/
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import type { OnyxToastMessageProps } from "./types";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<OnyxToastMessageProps>, {
|
|
3
|
+
color: string;
|
|
4
|
+
duration: number;
|
|
5
|
+
clickable: boolean;
|
|
6
|
+
icon: undefined;
|
|
7
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
click: () => void;
|
|
9
|
+
close: () => void;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<OnyxToastMessageProps>, {
|
|
11
|
+
color: string;
|
|
12
|
+
duration: number;
|
|
13
|
+
clickable: boolean;
|
|
14
|
+
icon: undefined;
|
|
15
|
+
}>>> & {
|
|
16
|
+
onClick?: (() => any) | undefined;
|
|
17
|
+
onClose?: (() => any) | undefined;
|
|
18
|
+
}, {
|
|
19
|
+
icon: string | false;
|
|
20
|
+
color: Extract<import("../..").OnyxColor, "neutral" | "danger" | "warning" | "success">;
|
|
21
|
+
duration: number;
|
|
22
|
+
clickable: boolean;
|
|
23
|
+
}, {}>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_WithDefaults<P, D> = {
|
|
26
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
27
|
+
default: D[K];
|
|
28
|
+
}> : P[K];
|
|
29
|
+
};
|
|
30
|
+
type __VLS_Prettify<T> = {
|
|
31
|
+
[K in keyof T]: T[K];
|
|
32
|
+
} & {};
|
|
33
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
34
|
+
type __VLS_TypePropsToOption<T> = {
|
|
35
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
36
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
37
|
+
} : {
|
|
38
|
+
type: import('vue').PropType<T[K]>;
|
|
39
|
+
required: true;
|
|
40
|
+
};
|
|
41
|
+
};
|