@prefecthq/prefect-design
Version:
A collection of low-level Vue components.
33 lines (32 loc) • 1.82 kB
TypeScript
import { type ComboboxRootProps, ComboboxItem } from 'radix-vue';
type __VLS_Props = ComboboxRootProps & {
placeholder?: string;
items?: Record<string, (typeof ComboboxItem)[]>;
};
declare var __VLS_18: {};
type __VLS_Slots = {} & {
default?: (props: typeof __VLS_18) => any;
};
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
"update:modelValue": (value: import("node_modules/radix-vue/dist/Combobox/ComboboxRoot").AcceptableValue) => any;
"update:open": (value: boolean) => any;
"update:searchTerm": (value: string) => any;
"update:selectedValue": (value: import("node_modules/radix-vue/dist/Combobox/ComboboxRoot").AcceptableValue | undefined) => any;
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
"onUpdate:modelValue"?: ((value: import("node_modules/radix-vue/dist/Combobox/ComboboxRoot").AcceptableValue) => any) | undefined;
"onUpdate:open"?: ((value: boolean) => any) | undefined;
"onUpdate:searchTerm"?: ((value: string) => any) | undefined;
"onUpdate:selectedValue"?: ((value: import("node_modules/radix-vue/dist/Combobox/ComboboxRoot").AcceptableValue | undefined) => any) | undefined;
}>, {
items: Record<string, (typeof ComboboxItem)[]>;
placeholder: string;
open: boolean;
modelValue: import("node_modules/radix-vue/dist/Combobox/ComboboxRoot").AcceptableValue | import("node_modules/radix-vue/dist/Combobox/ComboboxRoot").AcceptableValue[];
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};