UNPKG

@sjsf/shadcn4-theme

Version:

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

15 lines (14 loc) 682 B
import type { Command as CommandPrimitive, Dialog as DialogPrimitive } from "bits-ui"; import type { Snippet } from "svelte"; import { type WithoutChildrenOrChild } from "../../../utils.js"; type $$ComponentProps = WithoutChildrenOrChild<DialogPrimitive.RootProps> & WithoutChildrenOrChild<CommandPrimitive.RootProps> & { portalProps?: DialogPrimitive.PortalProps; children: Snippet; title?: string; description?: string; showCloseButton?: boolean; class?: string; }; declare const CommandDialog: import("svelte").Component<$$ComponentProps, {}, "ref" | "value" | "open">; type CommandDialog = ReturnType<typeof CommandDialog>; export default CommandDialog;