@sjsf/shadcn-theme
Version:
The shadcn-svelte based theme for svelte-jsonschema-form
10 lines (9 loc) • 544 B
TypeScript
import { Command as CommandPrimitive, Dialog as DialogPrimitive, type WithoutChildrenOrChild } from "bits-ui";
import type { Snippet } from "svelte";
type $$ComponentProps = WithoutChildrenOrChild<DialogPrimitive.RootProps> & WithoutChildrenOrChild<CommandPrimitive.RootProps> & {
portalProps?: DialogPrimitive.PortalProps;
children: Snippet;
};
declare const CommandDialog: import("svelte").Component<$$ComponentProps, {}, "ref" | "value" | "open">;
type CommandDialog = ReturnType<typeof CommandDialog>;
export default CommandDialog;