@epilot/volt-ui 1.0.0-alpha.21 → 1.0.0-alpha.22

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.
@@ -0,0 +1,18 @@
1
+ import * as React from "react";
2
+ import { Command as CommandPrimitive } from "cmdk";
3
+ import { Dialog } from "../../components/dialog/dialog";
4
+ declare const Command: ({ className, ...props }: React.ComponentProps<typeof CommandPrimitive>) => import("react/jsx-runtime").JSX.Element;
5
+ declare const CommandDialog: ({ title, description, children, className, showCloseButton, ...props }: React.ComponentProps<typeof Dialog> & {
6
+ title?: string;
7
+ description?: string;
8
+ className?: string;
9
+ showCloseButton?: boolean;
10
+ }) => import("react/jsx-runtime").JSX.Element;
11
+ declare const CommandInput: ({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Input>) => import("react/jsx-runtime").JSX.Element;
12
+ declare const CommandList: ({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.List>) => import("react/jsx-runtime").JSX.Element;
13
+ declare const CommandEmpty: ({ ...props }: React.ComponentProps<typeof CommandPrimitive.Empty>) => import("react/jsx-runtime").JSX.Element;
14
+ declare const CommandGroup: ({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Group>) => import("react/jsx-runtime").JSX.Element;
15
+ declare const CommandSeparator: ({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Separator>) => import("react/jsx-runtime").JSX.Element;
16
+ declare const CommandItem: ({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Item>) => import("react/jsx-runtime").JSX.Element;
17
+ declare const CommandShortcut: ({ className, ...props }: React.ComponentProps<"span">) => import("react/jsx-runtime").JSX.Element;
18
+ export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, };
@@ -0,0 +1,19 @@
1
+ import * as React from "react";
2
+ import { CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator } from "../../components/command/command";
3
+ import * as PopoverPrimitive from "@radix-ui/react-popover";
4
+ import { Label } from "../../components/label/label";
5
+ declare const FieldCombobox: ({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Root>) => import("react/jsx-runtime").JSX.Element;
6
+ declare const FieldComboboxGroup: ({ className, ...props }: React.ComponentProps<typeof CommandGroup>) => import("react/jsx-runtime").JSX.Element;
7
+ declare const FieldComboboxGroupLabel: ({ className, ...props }: React.ComponentProps<typeof Label>) => import("react/jsx-runtime").JSX.Element;
8
+ declare const FieldComboboxValue: ({ className, placeholder, children, ...props }: React.ComponentProps<"div"> & {
9
+ placeholder: string;
10
+ }) => import("react/jsx-runtime").JSX.Element;
11
+ declare const FieldComboboxTrigger: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
12
+ declare const FieldComboboxContent: ({ className, children, ...props }: React.ComponentProps<typeof PopoverPrimitive.Content>) => import("react/jsx-runtime").JSX.Element;
13
+ declare const FieldComboboxInput: ({ className, ...props }: React.ComponentProps<typeof CommandInput>) => import("react/jsx-runtime").JSX.Element;
14
+ declare const FieldComboboxList: ({ className, ...props }: React.ComponentProps<typeof CommandList>) => import("react/jsx-runtime").JSX.Element;
15
+ declare const FieldComboboxItem: ({ className, children, ...props }: React.ComponentProps<typeof CommandItem>) => import("react/jsx-runtime").JSX.Element;
16
+ declare const FieldComboboxEmpty: ({ className, ...props }: React.ComponentProps<typeof CommandEmpty>) => import("react/jsx-runtime").JSX.Element;
17
+ declare const FieldComboboxSeparator: ({ className, ...props }: React.ComponentProps<typeof CommandSeparator>) => import("react/jsx-runtime").JSX.Element;
18
+ declare const FieldComboboxItemCheckIcon: ({ className, }: React.ComponentProps<"span">) => import("react/jsx-runtime").JSX.Element;
19
+ export { FieldCombobox, FieldComboboxGroup, FieldComboboxGroupLabel, FieldComboboxValue, FieldComboboxTrigger, FieldComboboxContent, FieldComboboxItem, FieldComboboxItemCheckIcon, FieldComboboxEmpty, FieldComboboxSeparator, FieldComboboxInput, FieldComboboxList, };