@epilot/volt-ui 1.0.0-alpha.22 → 1.0.0-alpha.24
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.
- package/dist/components/command/command.d.ts +2 -1
- package/dist/components/field/field-combobox.d.ts +3 -2
- package/dist/index.cjs.js +12 -12
- package/dist/index.d.ts +1 -1
- package/dist/index.es.js +2194 -2319
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -15,4 +15,5 @@ declare const CommandGroup: ({ className, ...props }: React.ComponentProps<typeo
|
|
|
15
15
|
declare const CommandSeparator: ({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Separator>) => import("react/jsx-runtime").JSX.Element;
|
|
16
16
|
declare const CommandItem: ({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Item>) => import("react/jsx-runtime").JSX.Element;
|
|
17
17
|
declare const CommandShortcut: ({ className, ...props }: React.ComponentProps<"span">) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
-
|
|
18
|
+
declare const CommandLoading: ({ className, ...props }: React.ComponentProps<typeof CommandPrimitive.Loading>) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export { Command, CommandDialog, CommandInput, CommandList, CommandEmpty, CommandGroup, CommandItem, CommandShortcut, CommandSeparator, CommandLoading, };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
import { CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator } from "../../components/command/command";
|
|
2
|
+
import { CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandLoading, CommandSeparator } from "../../components/command/command";
|
|
3
3
|
import * as PopoverPrimitive from "@radix-ui/react-popover";
|
|
4
4
|
import { Label } from "../../components/label/label";
|
|
5
5
|
declare const FieldCombobox: ({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Root>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -16,4 +16,5 @@ declare const FieldComboboxItem: ({ className, children, ...props }: React.Compo
|
|
|
16
16
|
declare const FieldComboboxEmpty: ({ className, ...props }: React.ComponentProps<typeof CommandEmpty>) => import("react/jsx-runtime").JSX.Element;
|
|
17
17
|
declare const FieldComboboxSeparator: ({ className, ...props }: React.ComponentProps<typeof CommandSeparator>) => import("react/jsx-runtime").JSX.Element;
|
|
18
18
|
declare const FieldComboboxItemCheckIcon: ({ className, }: React.ComponentProps<"span">) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
-
|
|
19
|
+
declare const FieldComboboxLoading: ({ className, ...props }: React.ComponentProps<typeof CommandLoading>) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export { FieldCombobox, FieldComboboxGroup, FieldComboboxGroupLabel, FieldComboboxValue, FieldComboboxTrigger, FieldComboboxContent, FieldComboboxItem, FieldComboboxItemCheckIcon, FieldComboboxEmpty, FieldComboboxSeparator, FieldComboboxInput, FieldComboboxList, FieldComboboxLoading, };
|