UNPKG

@sjsf/shadcn4-theme

Version:

The shadcn-svelte based theme for svelte-jsonschema-form

12 lines (11 loc) 594 B
import { Select as SelectPrimitive } from "bits-ui"; import SelectPortal from "./select-portal.svelte"; import { type WithoutChild } from "../../../utils.js"; import type { ComponentProps } from "svelte"; import type { WithoutChildrenOrChild } from "../../../utils.js"; type $$ComponentProps = WithoutChild<SelectPrimitive.ContentProps> & { portalProps?: WithoutChildrenOrChild<ComponentProps<typeof SelectPortal>>; }; declare const SelectContent: import("svelte").Component<$$ComponentProps, {}, "ref">; type SelectContent = ReturnType<typeof SelectContent>; export default SelectContent;