sit-onyx 1.0.0-beta.183 → 1.0.0-beta.185
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/OnyxAccordion/OnyxAccordion.vue.d.ts +3 -2
- package/dist/components/OnyxAccordion/types.d.ts +2 -1
- package/dist/components/OnyxBreadcrumb/types.d.ts +4 -0
- package/dist/components/OnyxBreadcrumbItem/OnyxBreadcrumbItem.vue.d.ts +1 -0
- package/dist/components/OnyxBreadcrumbItem/types.d.ts +5 -0
- package/dist/components/OnyxCheckbox/types.d.ts +2 -1
- package/dist/components/OnyxCheckboxGroup/OnyxCheckboxGroup.vue.d.ts +3 -2
- package/dist/components/OnyxCheckboxGroup/types.d.ts +2 -1
- package/dist/components/OnyxDatePicker/OnyxDatePicker.vue.d.ts +3 -2
- package/dist/components/OnyxDatePicker/types.d.ts +2 -1
- package/dist/components/OnyxFilterTag/OnyxFilterTag.vue.d.ts +16 -0
- package/dist/components/OnyxFormElement/OnyxFormElement.vue.d.ts +5 -12
- package/dist/components/OnyxFormElement/types.d.ts +3 -1
- package/dist/components/OnyxInput/OnyxInput.vue.d.ts +5 -11
- package/dist/components/OnyxMiniSearch/OnyxMiniSearch.vue.d.ts +5 -11
- package/dist/components/OnyxMiniSearch/types.d.ts +5 -0
- package/dist/components/OnyxNavBar/modules/OnyxFlyoutMenu/OnyxFlyoutMenu.vue.d.ts +4 -8
- package/dist/components/OnyxNavBar/modules/OnyxFlyoutMenu/types.d.ts +5 -0
- package/dist/components/OnyxNavBar/modules/OnyxNavButton/NavButtonLayout.vue.d.ts +8 -8
- package/dist/components/OnyxNavBar/modules/OnyxNavButton/OnyxNavButton.vue.d.ts +6 -11
- package/dist/components/OnyxNavBar/modules/OnyxNavButton/types.d.ts +5 -0
- package/dist/components/OnyxNavBar/modules/OnyxUserMenu/OnyxUserMenu.vue.d.ts +8 -12
- package/dist/components/OnyxNavBar/modules/OnyxUserMenu/UserMenuLayout.vue.d.ts +7 -7
- package/dist/components/OnyxNavBar/modules/OnyxUserMenu/types.d.ts +5 -0
- package/dist/components/OnyxRadioGroup/OnyxRadioGroup.vue.d.ts +3 -2
- package/dist/components/OnyxRadioGroup/types.d.ts +2 -1
- package/dist/components/OnyxSelect/OnyxSelect.vue.d.ts +6 -35
- package/dist/components/OnyxSelect/types.d.ts +9 -1
- package/dist/components/OnyxStepper/OnyxStepper.vue.d.ts +5 -8
- package/dist/components/OnyxStepper/types.d.ts +5 -0
- package/dist/components/OnyxSwitch/OnyxSwitch.vue.d.ts +4 -3
- package/dist/components/OnyxSwitch/types.d.ts +2 -1
- package/dist/components/OnyxTag/OnyxTag.vue.d.ts +1 -0
- package/dist/components/OnyxTag/types.d.ts +23 -0
- package/dist/components/OnyxTextarea/OnyxTextarea.vue.d.ts +5 -11
- package/dist/composables/useLenientMaxLengthValidation.d.ts +6 -1
- package/dist/composables/useVModel.d.ts +9 -0
- package/dist/i18n/locales/de-DE.json +4 -0
- package/dist/i18n/locales/en-US.json +4 -0
- package/dist/index.cjs +4 -4
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1874 -1734
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/src/i18n/locales/de-DE.json +4 -0
- package/src/i18n/locales/en-US.json +4 -0
- package/src/styles/grid.scss +2 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { type Nullable } from "../../composables/useVModel";
|
|
1
2
|
import { type OnyxAccordionProps } from "./types";
|
|
2
3
|
declare const _default: <TValue extends PropertyKey>(__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<{
|
|
3
4
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
4
|
-
readonly "onUpdate:modelValue"?: ((value: TValue[]) => any) | undefined;
|
|
5
|
+
readonly "onUpdate:modelValue"?: ((value: Nullable<TValue[]>) => any) | undefined;
|
|
5
6
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & OnyxAccordionProps<TValue> & Partial<{}>> & import("vue").PublicProps;
|
|
6
7
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
7
8
|
attrs: any;
|
|
@@ -11,7 +12,7 @@ declare const _default: <TValue extends PropertyKey>(__VLS_props: NonNullable<Aw
|
|
|
11
12
|
*/
|
|
12
13
|
default(): unknown;
|
|
13
14
|
};
|
|
14
|
-
emit: (evt: "update:modelValue", value: TValue[]) => void;
|
|
15
|
+
emit: (evt: "update:modelValue", value: Nullable<TValue[]>) => void;
|
|
15
16
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
16
17
|
[key: string]: any;
|
|
17
18
|
}> & {
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import type { SkeletonInjected } from "src/composables/useSkeletonState";
|
|
2
2
|
import type { InjectionKey, Ref } from "vue";
|
|
3
3
|
import type { DensityProp } from "../../composables/density";
|
|
4
|
+
import type { Nullable } from "../../composables/useVModel";
|
|
4
5
|
export type OnyxAccordionProps<TValue extends PropertyKey> = DensityProp & {
|
|
5
6
|
/**
|
|
6
7
|
* Currently opened items. Will include the `value` property of the nested `OnyxAccordionItems`.
|
|
7
8
|
*/
|
|
8
|
-
modelValue?: TValue[]
|
|
9
|
+
modelValue?: Nullable<TValue[]>;
|
|
9
10
|
/**
|
|
10
11
|
* if `true`, only one accordion item can be open at the same time.
|
|
11
12
|
*/
|
|
@@ -7,6 +7,7 @@ type __VLS_Slots = {
|
|
|
7
7
|
};
|
|
8
8
|
declare const __VLS_component: import("vue").DefineComponent<OnyxBreadcrumbItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<OnyxBreadcrumbItemProps> & Readonly<{}>, {
|
|
9
9
|
active: boolean | "auto";
|
|
10
|
+
skeleton: import("../../composables/useSkeletonState").SkeletonInjected;
|
|
10
11
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
12
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
13
|
export default _default;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { DensityProp } from "../../composables/density";
|
|
2
|
+
import type { SkeletonInjected } from "../../composables/useSkeletonState";
|
|
2
3
|
export type OnyxBreadcrumbItemProps = DensityProp & {
|
|
3
4
|
/**
|
|
4
5
|
* Link to the corresponding page.
|
|
@@ -10,4 +11,8 @@ export type OnyxBreadcrumbItemProps = DensityProp & {
|
|
|
10
11
|
* If "auto" and a [router](https://onyx.schwarz/development/router.html) is provided, the active state will be determined automatically based on the current route.
|
|
11
12
|
*/
|
|
12
13
|
active?: boolean | "auto";
|
|
14
|
+
/**
|
|
15
|
+
* Whether to show a skeleton item.
|
|
16
|
+
*/
|
|
17
|
+
skeleton?: SkeletonInjected;
|
|
13
18
|
};
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import type { Nullable } from "../../composables/useVModel";
|
|
1
2
|
import type { BaseSelectOption, SelectOptionValue } from "../../types";
|
|
2
3
|
export type OnyxCheckboxProps<TValue extends SelectOptionValue = SelectOptionValue> = BaseSelectOption<TValue> & {
|
|
3
4
|
/**
|
|
4
5
|
* Whether the checkbox is checked.
|
|
5
6
|
*/
|
|
6
|
-
modelValue?: boolean
|
|
7
|
+
modelValue?: Nullable<boolean>;
|
|
7
8
|
/**
|
|
8
9
|
* If `true`, an indeterminate indicator is shown.
|
|
9
10
|
*/
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
+
import { type Nullable } from "../../composables/useVModel";
|
|
1
2
|
import type { SelectOptionValue } from "../../types";
|
|
2
3
|
import type { OnyxCheckboxGroupProps } from "./types";
|
|
3
4
|
declare const _default: <TValue extends 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<{
|
|
4
5
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
|
-
readonly "onUpdate:modelValue"?: ((value
|
|
6
|
+
readonly "onUpdate:modelValue"?: ((value?: Nullable<TValue[]>) => any) | undefined;
|
|
6
7
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & OnyxCheckboxGroupProps<TValue> & Partial<{}>> & import("vue").PublicProps;
|
|
7
8
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
8
9
|
inputs: import("vue").ComputedRef<HTMLInputElement[]>;
|
|
9
10
|
}>): void;
|
|
10
11
|
attrs: any;
|
|
11
12
|
slots: {};
|
|
12
|
-
emit: (evt: "update:modelValue", value
|
|
13
|
+
emit: (evt: "update:modelValue", value?: Nullable<TValue[]>) => void;
|
|
13
14
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
14
15
|
[key: string]: any;
|
|
15
16
|
}> & {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { RequiredProp } from "../../composables/required";
|
|
2
2
|
import type { CustomValidityProp } from "../../composables/useCustomValidity";
|
|
3
|
+
import type { Nullable } from "../../composables/useVModel";
|
|
3
4
|
import type { AutofocusProp, BaseSelectOption, Direction, SelectOptionValue } from "../../types";
|
|
4
5
|
import type { SharedFormElementProps } from "../OnyxFormElement/types";
|
|
5
6
|
export type OnyxCheckboxGroupProps<TValue extends SelectOptionValue = SelectOptionValue> = Pick<BaseSelectOption, "truncation"> & Pick<SharedFormElementProps, "label" | "labelTooltip" | "hideLabel" | "density" | "skeleton" | "disabled" | "requiredMarker"> & {
|
|
@@ -10,7 +11,7 @@ export type OnyxCheckboxGroupProps<TValue extends SelectOptionValue = SelectOpti
|
|
|
10
11
|
/**
|
|
11
12
|
* Currently checked checkboxes.
|
|
12
13
|
*/
|
|
13
|
-
modelValue?: TValue[]
|
|
14
|
+
modelValue?: Nullable<TValue[]>;
|
|
14
15
|
/**
|
|
15
16
|
* Direction of the checkboxes.
|
|
16
17
|
*/
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import { type Nullable } from "../../composables/useVModel";
|
|
1
2
|
import type { OnyxDatePickerProps } from "./types";
|
|
2
3
|
declare const _default: import("vue").DefineComponent<OnyxDatePickerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
-
"update:modelValue": (value?: string |
|
|
4
|
+
"update:modelValue": (value?: Nullable<string | number | Date>) => any;
|
|
4
5
|
validityChange: (validity: ValidityState) => any;
|
|
5
6
|
}, string, import("vue").PublicProps, Readonly<OnyxDatePickerProps> & Readonly<{
|
|
6
|
-
"onUpdate:modelValue"?: ((value?: string |
|
|
7
|
+
"onUpdate:modelValue"?: ((value?: Nullable<string | number | Date>) => any) | undefined;
|
|
7
8
|
onValidityChange?: ((validity: ValidityState) => any) | undefined;
|
|
8
9
|
}>, {
|
|
9
10
|
required: boolean;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import type { Nullable } from "../../composables/useVModel";
|
|
1
2
|
import type { OnyxInputProps } from "../OnyxInput/types";
|
|
2
3
|
export type OnyxDatePickerProps = Omit<OnyxInputProps, "type" | "modelValue" | "autocapitalize" | "maxlength" | "minlength" | "pattern" | "withCounter" | "placeholder" | "autocomplete"> & {
|
|
3
4
|
/**
|
|
4
5
|
* Current date value. Supports all data types that are parsable by `new Date()`.
|
|
5
6
|
*/
|
|
6
|
-
modelValue?: DateValue
|
|
7
|
+
modelValue?: Nullable<DateValue>;
|
|
7
8
|
/**
|
|
8
9
|
* Whether the user should be able to select only date or date + time.
|
|
9
10
|
*/
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { type Nullable } from "../../composables/useVModel";
|
|
2
|
+
import type { OnyxTagProps } from "../OnyxTag/types";
|
|
3
|
+
type __VLS_Props = Omit<OnyxTagProps, "color" | "clickable"> & {
|
|
4
|
+
/**
|
|
5
|
+
* If `true` the filter is selected, shows an 'x' icon and can be removed on click.
|
|
6
|
+
*/
|
|
7
|
+
active?: Nullable<boolean>;
|
|
8
|
+
};
|
|
9
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
"update:active": (value: Nullable<boolean>) => any;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
12
|
+
"onUpdate:active"?: ((value: Nullable<boolean>) => any) | undefined;
|
|
13
|
+
}>, {
|
|
14
|
+
skeleton: import("../../composables/useSkeletonState").SkeletonInjected;
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
export default _default;
|
|
@@ -1,16 +1,9 @@
|
|
|
1
|
+
import { type Nullable } from "../../composables/useVModel";
|
|
2
|
+
import type { OnyxFormElementProps } from "./types";
|
|
1
3
|
declare const _default: <T>(__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<{
|
|
2
4
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
3
|
-
readonly "onUpdate:modelValue"?: ((value
|
|
4
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> &
|
|
5
|
-
errorMessages?: import("../../composables/useCustomValidity.ts").FormMessages;
|
|
6
|
-
message?: import("../../composables/useCustomValidity.ts").FormMessages;
|
|
7
|
-
successMessages?: import("../../composables/useCustomValidity.ts").FormMessages;
|
|
8
|
-
} & {
|
|
9
|
-
/**
|
|
10
|
-
* Current value of the input.
|
|
11
|
-
*/
|
|
12
|
-
modelValue?: T;
|
|
13
|
-
}) & Partial<{}>> & import("vue").PublicProps;
|
|
5
|
+
readonly "onUpdate:modelValue"?: ((value?: Nullable<T>) => any) | undefined;
|
|
6
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & OnyxFormElementProps<T> & Partial<{}>> & import("vue").PublicProps;
|
|
14
7
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
15
8
|
attrs: any;
|
|
16
9
|
slots: {
|
|
@@ -19,7 +12,7 @@ declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>
|
|
|
19
12
|
id: string;
|
|
20
13
|
}): unknown;
|
|
21
14
|
};
|
|
22
|
-
emit: (evt: "update:modelValue", value
|
|
15
|
+
emit: (evt: "update:modelValue", value?: Nullable<T>) => void;
|
|
23
16
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
24
17
|
[key: string]: any;
|
|
25
18
|
}> & {
|
|
@@ -3,12 +3,14 @@ import type { RequiredProp } from "../../composables/required";
|
|
|
3
3
|
import type { CustomMessageType, CustomValidityProp, FormMessages } from "../../composables/useCustomValidity";
|
|
4
4
|
import type { SharedTextInputProps } from "../../composables/useLenientMaxLengthValidation";
|
|
5
5
|
import type { SkeletonInjected } from "../../composables/useSkeletonState";
|
|
6
|
+
import type { Nullable } from "../../composables/useVModel";
|
|
6
7
|
import type { AutofocusProp } from "../../types";
|
|
7
8
|
import type { FormInjectedProps } from "../OnyxForm/OnyxForm.core";
|
|
8
|
-
export type OnyxFormElementProps = Omit<SharedFormElementProps, "error" | "message" | "success"> & SharedTextInputProps & {
|
|
9
|
+
export type OnyxFormElementProps<T> = Omit<SharedFormElementProps, "error" | "message" | "success"> & Omit<SharedTextInputProps, "modelValue"> & {
|
|
9
10
|
errorMessages?: FormMessages;
|
|
10
11
|
message?: FormMessages;
|
|
11
12
|
successMessages?: FormMessages;
|
|
13
|
+
modelValue?: Nullable<T>;
|
|
12
14
|
};
|
|
13
15
|
export type SharedFormElementProps = FormInjectedProps & RequiredProp & DensityProp & CustomValidityProp & AutofocusProp & {
|
|
14
16
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import { type Nullable } from "../../composables/useVModel";
|
|
1
2
|
import type { OnyxInputProps } from "./types";
|
|
2
|
-
type __VLS_Props = OnyxInputProps;
|
|
3
3
|
type __VLS_Slots = {
|
|
4
4
|
/**
|
|
5
5
|
* Inline content rendered before the actual input area.
|
|
@@ -12,19 +12,13 @@ type __VLS_Slots = {
|
|
|
12
12
|
*/
|
|
13
13
|
trailing?(): unknown;
|
|
14
14
|
};
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* Current value of the input.
|
|
18
|
-
*/
|
|
19
|
-
modelValue?: string;
|
|
20
|
-
};
|
|
21
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
15
|
+
declare const __VLS_component: import("vue").DefineComponent<OnyxInputProps, {
|
|
22
16
|
input: Readonly<import("vue").ShallowRef<HTMLInputElement | null>>;
|
|
23
17
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
24
|
-
"update:modelValue": (value
|
|
18
|
+
"update:modelValue": (value?: Nullable<string>) => any;
|
|
25
19
|
validityChange: (validity: ValidityState) => any;
|
|
26
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
27
|
-
"onUpdate:modelValue"?: ((value
|
|
20
|
+
}, string, import("vue").PublicProps, Readonly<OnyxInputProps> & Readonly<{
|
|
21
|
+
"onUpdate:modelValue"?: ((value?: Nullable<string>) => any) | undefined;
|
|
28
22
|
onValidityChange?: ((validity: ValidityState) => any) | undefined;
|
|
29
23
|
}>, {
|
|
30
24
|
required: boolean;
|
|
@@ -1,21 +1,15 @@
|
|
|
1
|
+
import { type Nullable } from "../../composables/useVModel";
|
|
1
2
|
import type { OnyxMiniSearchProps } from "./types";
|
|
2
|
-
|
|
3
|
-
type __VLS_PublicProps = __VLS_Props & {
|
|
4
|
-
/**
|
|
5
|
-
* Current input/search value.
|
|
6
|
-
*/
|
|
7
|
-
modelValue?: string;
|
|
8
|
-
};
|
|
9
|
-
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
3
|
+
declare const _default: import("vue").DefineComponent<OnyxMiniSearchProps, {
|
|
10
4
|
/**
|
|
11
5
|
* Focuses the input.
|
|
12
6
|
*/
|
|
13
7
|
focus: () => void | undefined;
|
|
14
8
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
9
|
clear: () => any;
|
|
16
|
-
"update:modelValue": (value
|
|
17
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
10
|
+
"update:modelValue": (value?: Nullable<string>) => any;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<OnyxMiniSearchProps> & Readonly<{
|
|
18
12
|
onClear?: (() => any) | undefined;
|
|
19
|
-
"onUpdate:modelValue"?: ((value
|
|
13
|
+
"onUpdate:modelValue"?: ((value?: Nullable<string>) => any) | undefined;
|
|
20
14
|
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
15
|
export default _default;
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import type { DensityProp } from "../../composables/density";
|
|
2
|
+
import type { Nullable } from "../../composables/useVModel";
|
|
2
3
|
export type OnyxMiniSearchProps = DensityProp & {
|
|
3
4
|
/**
|
|
4
5
|
* (Aria) label of the input.
|
|
5
6
|
*/
|
|
6
7
|
label: string;
|
|
7
8
|
autofocus?: boolean;
|
|
9
|
+
/**
|
|
10
|
+
* Current search input.
|
|
11
|
+
*/
|
|
12
|
+
modelValue?: Nullable<string>;
|
|
8
13
|
};
|
|
@@ -1,14 +1,10 @@
|
|
|
1
|
+
import { type Nullable } from "../../../../composables/useVModel";
|
|
1
2
|
import type { SelectOptionValue } from "../../../../types";
|
|
2
3
|
import type { OnyxFlyoutMenuProps } from "./types";
|
|
3
4
|
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<{
|
|
4
5
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
|
-
readonly "onUpdate:open"?: ((value
|
|
6
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:open"> &
|
|
7
|
-
/**
|
|
8
|
-
* If the flyout is expanded or not.
|
|
9
|
-
*/
|
|
10
|
-
open?: boolean;
|
|
11
|
-
}) & Partial<{}>> & import("vue").PublicProps;
|
|
6
|
+
readonly "onUpdate:open"?: ((value?: Nullable<boolean>) => any) | undefined;
|
|
7
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:open"> & OnyxFlyoutMenuProps & Partial<{}>> & import("vue").PublicProps;
|
|
12
8
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
13
9
|
attrs: any;
|
|
14
10
|
slots: {
|
|
@@ -34,7 +30,7 @@ declare const _default: <TValue extends SelectOptionValue = SelectOptionValue>(_
|
|
|
34
30
|
*/
|
|
35
31
|
footer?(): unknown;
|
|
36
32
|
};
|
|
37
|
-
emit: (evt: "update:open", value
|
|
33
|
+
emit: (evt: "update:open", value?: Nullable<boolean>) => void;
|
|
38
34
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
39
35
|
[key: string]: any;
|
|
40
36
|
}> & {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { Nullable } from "../../../../composables/useVModel";
|
|
1
2
|
export type OnyxFlyoutMenuProps = {
|
|
2
3
|
/**
|
|
3
4
|
* If the flyout is expanded on click or hover.
|
|
@@ -8,4 +9,8 @@ export type OnyxFlyoutMenuProps = {
|
|
|
8
9
|
* Aria label for the flyout.
|
|
9
10
|
*/
|
|
10
11
|
label: string;
|
|
12
|
+
/**
|
|
13
|
+
* Indicates whether the element is expanded or collapsed.
|
|
14
|
+
*/
|
|
15
|
+
open?: Nullable<boolean>;
|
|
11
16
|
};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { type Nullable } from "../../../../composables/useVModel";
|
|
1
2
|
import type { OnyxNavButtonProps } from "./types";
|
|
2
3
|
type __VLS_Props = OnyxNavButtonProps & {
|
|
3
4
|
/**
|
|
@@ -17,14 +18,13 @@ type __VLS_Slots = {
|
|
|
17
18
|
}): unknown;
|
|
18
19
|
options?(): unknown;
|
|
19
20
|
};
|
|
20
|
-
|
|
21
|
-
"mobileChildrenOpen"
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
|
+
"update:mobileChildrenOpen": (value: Nullable<boolean>) => any;
|
|
23
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
24
|
+
"onUpdate:mobileChildrenOpen"?: ((value: Nullable<boolean>) => any) | undefined;
|
|
25
|
+
}>, {
|
|
26
|
+
mobileChildrenOpen: boolean | null;
|
|
27
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
28
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
29
29
|
export default _default;
|
|
30
30
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import { type Nullable } from "../../../../composables/useVModel";
|
|
1
2
|
import type { OnyxNavButtonProps } from "./types";
|
|
2
|
-
type __VLS_Props = OnyxNavButtonProps;
|
|
3
3
|
type __VLS_Slots = {
|
|
4
4
|
/**
|
|
5
5
|
* An optional slot to override the label content.
|
|
@@ -10,18 +10,13 @@ type __VLS_Slots = {
|
|
|
10
10
|
*/
|
|
11
11
|
children?(): unknown;
|
|
12
12
|
};
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"mobileChildrenOpen"?: boolean;
|
|
18
|
-
};
|
|
19
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
-
"update:mobileChildrenOpen": (value: boolean) => any;
|
|
21
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
|
-
"onUpdate:mobileChildrenOpen"?: ((value: boolean) => any) | undefined;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<OnyxNavButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
+
"update:mobileChildrenOpen": (value: Nullable<boolean>) => any;
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<OnyxNavButtonProps> & Readonly<{
|
|
16
|
+
"onUpdate:mobileChildrenOpen"?: ((value: Nullable<boolean>) => any) | undefined;
|
|
23
17
|
}>, {
|
|
24
18
|
active: boolean | "auto";
|
|
19
|
+
mobileChildrenOpen: boolean | null;
|
|
25
20
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
21
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
27
22
|
export default _default;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { Nullable } from "../../../../composables/useVModel";
|
|
1
2
|
import type { WithLinkProp } from "../../../OnyxRouterLink/types";
|
|
2
3
|
export type OnyxNavButtonProps = WithLinkProp<true> & {
|
|
3
4
|
/**
|
|
@@ -11,4 +12,8 @@ export type OnyxNavButtonProps = WithLinkProp<true> & {
|
|
|
11
12
|
* If "auto" and a [router](https://onyx.schwarz/development/router.html) is provided, the active state will be determined automatically based on the current route.
|
|
12
13
|
*/
|
|
13
14
|
active?: boolean | "auto";
|
|
15
|
+
/**
|
|
16
|
+
* Controls whether child elements are open on mobile devices.
|
|
17
|
+
*/
|
|
18
|
+
mobileChildrenOpen?: Nullable<boolean>;
|
|
14
19
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
import { type Nullable } from "../../../../composables/useVModel";
|
|
1
2
|
import type { OnyxUserMenuProps } from "./types";
|
|
2
|
-
type __VLS_Props = OnyxUserMenuProps;
|
|
3
3
|
type __VLS_Slots = {
|
|
4
4
|
/**
|
|
5
5
|
* Slot for the menu options. Its recommended to use the `OnyxMenuItem` component here.
|
|
@@ -10,17 +10,13 @@ type __VLS_Slots = {
|
|
|
10
10
|
*/
|
|
11
11
|
footer?(): unknown;
|
|
12
12
|
};
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
"update:flyoutOpen": (value: boolean) => any;
|
|
21
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
22
|
-
"onUpdate:flyoutOpen"?: ((value: boolean) => any) | undefined;
|
|
23
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const __VLS_component: import("vue").DefineComponent<OnyxUserMenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
|
+
"update:flyoutOpen": (value: Nullable<boolean>) => any;
|
|
15
|
+
}, string, import("vue").PublicProps, Readonly<OnyxUserMenuProps> & Readonly<{
|
|
16
|
+
"onUpdate:flyoutOpen"?: ((value: Nullable<boolean>) => any) | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
flyoutOpen: boolean | null;
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
20
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
25
21
|
export default _default;
|
|
26
22
|
type __VLS_WithSlots<T, S> = T & {
|
|
@@ -1,18 +1,18 @@
|
|
|
1
|
+
import { type Nullable } from "../../../../composables/useVModel";
|
|
1
2
|
import type { SelectOptionValue } from "../../../../types";
|
|
2
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<{
|
|
3
4
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
4
|
-
readonly "onUpdate:flyoutOpen"?: ((value
|
|
5
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:flyoutOpen"> &
|
|
5
|
+
readonly "onUpdate:flyoutOpen"?: ((value?: Nullable<boolean>) => any) | undefined;
|
|
6
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:flyoutOpen"> & {
|
|
6
7
|
/**
|
|
7
8
|
* If the mobile layout should be used instead of the desktop layout.
|
|
8
9
|
*/
|
|
9
10
|
isMobile: boolean;
|
|
10
|
-
} & {
|
|
11
11
|
/**
|
|
12
|
-
* Controls
|
|
12
|
+
* Controls whether the flyout menu is open.
|
|
13
13
|
*/
|
|
14
|
-
flyoutOpen?: boolean
|
|
15
|
-
}
|
|
14
|
+
flyoutOpen?: Nullable<boolean>;
|
|
15
|
+
} & Partial<{}>> & import("vue").PublicProps;
|
|
16
16
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
17
17
|
attrs: any;
|
|
18
18
|
slots: {
|
|
@@ -29,7 +29,7 @@ declare const _default: <TValue extends SelectOptionValue = SelectOptionValue>(_
|
|
|
29
29
|
options?(): unknown;
|
|
30
30
|
footer?(): unknown;
|
|
31
31
|
};
|
|
32
|
-
emit: (evt: "update:flyoutOpen", value
|
|
32
|
+
emit: (evt: "update:flyoutOpen", value?: Nullable<boolean>) => void;
|
|
33
33
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
34
34
|
[key: string]: any;
|
|
35
35
|
}> & {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { Nullable } from "../../../../composables/useVModel";
|
|
1
2
|
import type { OnyxAvatarProps } from "../../../OnyxAvatar/types";
|
|
2
3
|
export type OnyxUserMenuProps = {
|
|
3
4
|
/**
|
|
@@ -14,4 +15,8 @@ export type OnyxUserMenuProps = {
|
|
|
14
15
|
* Optional user description that is displayed when the menu is opened.
|
|
15
16
|
*/
|
|
16
17
|
description?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Controls whether the flyout menu is open.
|
|
20
|
+
*/
|
|
21
|
+
flyoutOpen?: Nullable<boolean>;
|
|
17
22
|
};
|
|
@@ -1,8 +1,9 @@
|
|
|
1
|
+
import { type Nullable } from "../../composables/useVModel";
|
|
1
2
|
import type { SelectOptionValue } from "../../types";
|
|
2
3
|
import type { OnyxRadioGroupProps } from "./types";
|
|
3
4
|
declare const _default: <TValue extends 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<{
|
|
4
5
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
|
-
readonly "onUpdate:modelValue"?: ((selected
|
|
6
|
+
readonly "onUpdate:modelValue"?: ((selected?: Nullable<TValue>) => any) | undefined;
|
|
6
7
|
readonly onValidityChange?: ((validity: ValidityState) => any) | undefined;
|
|
7
8
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onValidityChange"> & OnyxRadioGroupProps<TValue> & Partial<{}>> & import("vue").PublicProps;
|
|
8
9
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
@@ -10,7 +11,7 @@ declare const _default: <TValue extends SelectOptionValue>(__VLS_props: NonNulla
|
|
|
10
11
|
}>): void;
|
|
11
12
|
attrs: any;
|
|
12
13
|
slots: {};
|
|
13
|
-
emit: ((evt: "update:modelValue", selected
|
|
14
|
+
emit: ((evt: "update:modelValue", selected?: Nullable<TValue>) => void) & ((evt: "validityChange", validity: ValidityState) => void);
|
|
14
15
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
15
16
|
[key: string]: any;
|
|
16
17
|
}> & {
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { Nullable } from "../../composables/useVModel";
|
|
1
2
|
import type { AutofocusProp, BaseSelectOption, Direction, SelectOptionValue } from "../../types";
|
|
2
3
|
import type { SharedFormElementProps } from "../OnyxFormElement/types";
|
|
3
4
|
export type OnyxRadioGroupProps<TValue extends SelectOptionValue = SelectOptionValue> = Pick<BaseSelectOption, "truncation"> & Pick<SharedFormElementProps, "skeleton" | "label" | "labelTooltip" | "hideLabel" | "name" | "density" | "customError" | "required" | "requiredMarker" | "disabled"> & {
|
|
@@ -8,7 +9,7 @@ export type OnyxRadioGroupProps<TValue extends SelectOptionValue = SelectOptionV
|
|
|
8
9
|
/**
|
|
9
10
|
* The selected radio button option.
|
|
10
11
|
*/
|
|
11
|
-
modelValue?: TValue
|
|
12
|
+
modelValue?: Nullable<TValue>;
|
|
12
13
|
/**
|
|
13
14
|
* Direction of the checkboxes. Can be vertical (default) or horizontal.
|
|
14
15
|
*/
|
|
@@ -1,43 +1,14 @@
|
|
|
1
|
+
import { type Nullable } from "../../composables/useVModel";
|
|
1
2
|
import type { SelectOptionValue } from "../../types";
|
|
2
|
-
import type {
|
|
3
|
-
import type { SelectOption } from "./types";
|
|
3
|
+
import type { OnyxSelectProps, SelectOption } from "./types";
|
|
4
4
|
declare const _default: <TModelValue extends SelectOptionValue | SelectOptionValue[], TMultiple extends TModelValue extends any[] ? true : false | undefined, TValue extends TModelValue extends (infer TInner)[] ? TInner : TModelValue>(__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<{
|
|
5
5
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
6
|
-
readonly "onUpdate:modelValue"?: ((value
|
|
6
|
+
readonly "onUpdate:modelValue"?: ((value?: Nullable<TModelValue>) => any) | undefined;
|
|
7
7
|
readonly onValidityChange?: ((validity: ValidityState) => any) | undefined;
|
|
8
8
|
readonly "onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
9
|
-
readonly "onUpdate:searchTerm"?: ((value: string) => any) | undefined;
|
|
10
9
|
readonly onLazyLoad?: (() => any) | undefined;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
withSearch?: boolean;
|
|
14
|
-
multiple?: TMultiple | undefined;
|
|
15
|
-
withCheckAll?: (TMultiple extends true ? boolean | {
|
|
16
|
-
label?: string;
|
|
17
|
-
} : never) | undefined;
|
|
18
|
-
disabled?: import("../OnyxForm/OnyxForm.core").FormInjected<boolean>;
|
|
19
|
-
valueLabel?: string | string[];
|
|
20
|
-
alignment?: import("./types").SelectAlignment;
|
|
21
|
-
listLabel: string;
|
|
22
|
-
listDescription?: string;
|
|
23
|
-
options: SelectOption<TValue>[];
|
|
24
|
-
lazyLoading?: import("./types").SelectLazyLoading;
|
|
25
|
-
} & {
|
|
26
|
-
/**
|
|
27
|
-
* Value of the currently selected option or an array of values when the `multiple` prop is `true`.
|
|
28
|
-
*/
|
|
29
|
-
modelValue?: TModelValue;
|
|
30
|
-
/**
|
|
31
|
-
* Value of the search input, when `withSearch` is `true`.
|
|
32
|
-
*
|
|
33
|
-
* Hint: Cover `valueLabel` to prevent the disappearance of the current selections label
|
|
34
|
-
*/
|
|
35
|
-
searchTerm?: string;
|
|
36
|
-
/**
|
|
37
|
-
* If true, the select popover is expanded and visible.
|
|
38
|
-
*/
|
|
39
|
-
open?: boolean;
|
|
40
|
-
}) & Partial<{}>> & import("vue").PublicProps;
|
|
10
|
+
readonly "onUpdate:searchTerm"?: ((value: string) => any) | undefined;
|
|
11
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onValidityChange" | "onUpdate:open" | "onLazyLoad" | "onUpdate:searchTerm"> & OnyxSelectProps<TModelValue, TMultiple, TValue> & Partial<{}>> & import("vue").PublicProps;
|
|
41
12
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
42
13
|
input: import("vue").ComputedRef<HTMLInputElement | null | undefined>;
|
|
43
14
|
}>): void;
|
|
@@ -62,7 +33,7 @@ declare const _default: <TModelValue extends SelectOptionValue | SelectOptionVal
|
|
|
62
33
|
*/
|
|
63
34
|
option?(props: SelectOption<TValue>): unknown;
|
|
64
35
|
};
|
|
65
|
-
emit: ((
|
|
36
|
+
emit: ((evt: "update:modelValue", value?: Nullable<TModelValue>) => void) & ((evt: "validityChange", validity: ValidityState) => void) & ((evt: "update:open", value: boolean) => void) & ((evt: "lazyLoad") => void) & ((evt: "update:searchTerm", value: string) => void);
|
|
66
37
|
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
67
38
|
[key: string]: any;
|
|
68
39
|
}> & {
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import type { DensityProp } from "../../composables/density";
|
|
2
|
+
import type { Nullable } from "../../composables/useVModel";
|
|
2
3
|
import type { AutofocusProp, BaseSelectOption, SelectOptionValue } from "../../types";
|
|
3
4
|
import type { FormInjected } from "../OnyxForm/OnyxForm.core";
|
|
4
5
|
import type { OnyxSelectInputProps } from "../OnyxSelectInput/types";
|
|
5
6
|
import type { OnyxSelectOptionProps } from "../OnyxSelectOption/types";
|
|
6
|
-
export type OnyxSelectProps<TMultiple extends boolean | undefined, TValue extends SelectOptionValue = SelectOptionValue> = DensityProp & Omit<OnyxSelectInputProps, "density" | "modelValue" | "showFocus" | "disabled"> & AutofocusProp & Pick<BaseSelectOption, "truncation"> & {
|
|
7
|
+
export type OnyxSelectProps<TModelValue, TMultiple extends boolean | undefined, TValue extends SelectOptionValue = SelectOptionValue> = DensityProp & Omit<OnyxSelectInputProps, "density" | "modelValue" | "showFocus" | "disabled"> & AutofocusProp & Pick<BaseSelectOption, "truncation"> & {
|
|
7
8
|
/**
|
|
8
9
|
* Disables the implicit options filtering when the user changes the search term.
|
|
9
10
|
*/
|
|
@@ -66,6 +67,13 @@ export type OnyxSelectProps<TMultiple extends boolean | undefined, TValue extend
|
|
|
66
67
|
* If you want to use a button instead, use the `optionsEnd` slot.
|
|
67
68
|
*/
|
|
68
69
|
lazyLoading?: SelectLazyLoading;
|
|
70
|
+
} & {
|
|
71
|
+
/**
|
|
72
|
+
* Currently selected options. Can be either a single value or an array of values.
|
|
73
|
+
*/
|
|
74
|
+
modelValue?: Nullable<TModelValue>;
|
|
75
|
+
open?: Nullable<boolean>;
|
|
76
|
+
searchTerm?: Nullable<string>;
|
|
69
77
|
};
|
|
70
78
|
export type SelectOption<TValue extends SelectOptionValue = SelectOptionValue> = Pick<BaseSelectOption<TValue>, "value" | "label" | "truncation"> & Pick<OnyxSelectOptionProps, "icon"> & {
|
|
71
79
|
/**
|