@lumx/vue 4.12.0-next.5 → 4.12.0
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/_internal/CO3BhTbu.js +161 -0
- package/_internal/CO3BhTbu.js.map +1 -0
- package/components/chip/SelectionChipGroup.d.ts +25 -4
- package/components/select-text-field/SelectTextField.d.ts +129 -0
- package/components/select-text-field/SelectTextField.stories.d.ts +203 -0
- package/components/select-text-field/SelectTextField.test.d.ts +1 -0
- package/components/select-text-field/SelectTextField.test.stories.d.ts +37 -0
- package/components/select-text-field/Stories/CustomRender.vue.d.ts +2 -0
- package/components/select-text-field/Stories/MultipleWithSearch.vue.d.ts +2 -0
- package/components/select-text-field/Stories/WithCreatableOptions.vue.d.ts +2 -0
- package/components/select-text-field/Stories/WithInfiniteScroll.vue.d.ts +2 -0
- package/components/select-text-field/Stories/WithSearch.vue.d.ts +2 -0
- package/components/select-text-field/index.d.ts +35 -0
- package/index.d.ts +1 -0
- package/index.js +3938 -3588
- package/index.js.map +1 -1
- package/package.json +4 -5
- package/utils/VueToJSX.d.ts +13 -0
- package/utils/index.js +19 -55
- package/utils/index.js.map +1 -1
- package/_internal/BiLpoFMC.js +0 -124
- package/_internal/BiLpoFMC.js.map +0 -1
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export { type SelectTextFieldProps, type SingleSelectTextFieldProps, type MultipleSelectTextFieldProps, default as SelectTextField, } from './SelectTextField';
|
|
2
|
+
export type { SelectTextFieldStatus, SelectTextFieldTranslations } from '@lumx/core/js/utils/select/types';
|
|
3
|
+
/** Selectable option within the dropdown list. */
|
|
4
|
+
export declare const SelectTextFieldOption: import('vue').DefineSetupFnComponent<import('../combobox').ComboboxOptionProps, {
|
|
5
|
+
click: () => boolean;
|
|
6
|
+
}, {}, Omit<import('@lumx/core/js/components/Combobox/ComboboxOption').ComboboxOptionProps, "className" | import('@lumx/core/js/types').PropsToOverride | "id" | "hidden" | "descriptionId" | "isGrid" | import('@lumx/core/js/components/Combobox/ComboboxOption').ComboboxOptionPropsToOverride> & {
|
|
7
|
+
class?: string;
|
|
8
|
+
} & {
|
|
9
|
+
tooltipProps?: Partial<import('../tooltip').TooltipProps>;
|
|
10
|
+
actionProps?: Record<string, any>;
|
|
11
|
+
} & {
|
|
12
|
+
onClick?: (() => any) | undefined;
|
|
13
|
+
}, import('vue').PublicProps>;
|
|
14
|
+
/** Labelled group of options. */
|
|
15
|
+
export declare const SelectTextFieldSection: import('vue').DefineSetupFnComponent<import('../combobox').ComboboxSectionProps, {}, {}, Omit<import('@lumx/core/js/components/Combobox/ComboboxSection').ComboboxSectionProps, "className" | import('@lumx/core/js/types').PropsToOverride | "children" | "aria-hidden" | "hidden"> & {
|
|
16
|
+
class?: string;
|
|
17
|
+
} & {}, import('vue').PublicProps>;
|
|
18
|
+
/** Info icon on an option that reveals a popover with additional details. */
|
|
19
|
+
export declare const SelectTextFieldOptionMoreInfo: import('vue').DefineSetupFnComponent<import('../combobox').ComboboxOptionMoreInfoProps, {
|
|
20
|
+
toggle: (isOpen: boolean) => boolean;
|
|
21
|
+
}, {}, Omit<import('@lumx/core/js/components/Combobox/ComboboxOptionMoreInfo').ComboboxOptionMoreInfoProps, "className" | import('@lumx/core/js/types').PropsToOverride | "onMouseEnter" | "onMouseLeave" | "buttonProps" | import('@lumx/core/js/components/Combobox/ComboboxOptionMoreInfo').ComboboxOptionMoreInfoPropsToOverride> & {
|
|
22
|
+
class?: string;
|
|
23
|
+
} & {
|
|
24
|
+
onToggle?: (isOpen: boolean) => void;
|
|
25
|
+
} & {
|
|
26
|
+
onToggle?: ((isOpen: boolean) => any) | undefined;
|
|
27
|
+
}, import('vue').PublicProps>;
|
|
28
|
+
/** Skeleton loading placeholder for options being fetched. */
|
|
29
|
+
export declare const SelectTextFieldOptionSkeleton: import('vue').DefineSetupFnComponent<import('../combobox').ComboboxOptionSkeletonProps, {}, {}, Omit<import('@lumx/core/js/components/Combobox/ComboboxOptionSkeleton').ComboboxOptionSkeletonProps, "className" | import('@lumx/core/js/types').PropsToOverride | import('@lumx/core/js/components/Combobox/ComboboxOptionSkeleton').ComboboxOptionSkeletonPropsToOverride> & {
|
|
30
|
+
class?: string;
|
|
31
|
+
} & {}, import('vue').PublicProps>;
|
|
32
|
+
/** Visual separator between option groups (alias for ListDivider). Purely decorative — invisible to screen readers. */
|
|
33
|
+
export declare const SelectTextFieldDivider: import('vue').DefineSetupFnComponent<import('../list').ListDividerProps, {}, {}, Omit<import('@lumx/core/js/components/List/ListDivider').ListDividerProps, "className" | import('@lumx/core/js/types').PropsToOverride | "children"> & {
|
|
34
|
+
class?: string;
|
|
35
|
+
} & {}, import('vue').PublicProps>;
|
package/index.d.ts
CHANGED