@epilot/volt-ui 1.0.0-alpha.25 → 1.0.0-alpha.26
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/field/field-combobox.d.ts +6 -4
- package/dist/index.cjs.js +56 -12
- package/dist/index.d.ts +2 -2
- package/dist/index.es.js +7008 -3947
- package/dist/style.css +1 -1
- package/package.json +5 -1
|
@@ -2,12 +2,11 @@ import * as React from "react";
|
|
|
2
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
|
+
import { Button } from "../button/button";
|
|
5
6
|
declare const FieldCombobox: ({ ...props }: React.ComponentProps<typeof PopoverPrimitive.Root>) => import("react/jsx-runtime").JSX.Element;
|
|
6
7
|
declare const FieldComboboxGroup: ({ className, ...props }: React.ComponentProps<typeof CommandGroup>) => import("react/jsx-runtime").JSX.Element;
|
|
7
8
|
declare const FieldComboboxGroupLabel: ({ className, ...props }: React.ComponentProps<typeof Label>) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
-
declare const FieldComboboxValue: ({ className,
|
|
9
|
-
placeholder: string;
|
|
10
|
-
}) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
declare const FieldComboboxValue: ({ className, children, ...props }: React.ComponentProps<"div">) => import("react/jsx-runtime").JSX.Element;
|
|
11
10
|
declare const FieldComboboxTrigger: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverTriggerProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
12
11
|
declare const FieldComboboxContent: ({ className, children, ...props }: React.ComponentProps<typeof PopoverPrimitive.Content>) => import("react/jsx-runtime").JSX.Element;
|
|
13
12
|
declare const FieldComboboxInput: ({ className, ...props }: React.ComponentProps<typeof CommandInput>) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -17,4 +16,7 @@ declare const FieldComboboxEmpty: ({ className, ...props }: React.ComponentProps
|
|
|
17
16
|
declare const FieldComboboxSeparator: ({ className, ...props }: React.ComponentProps<typeof CommandSeparator>) => import("react/jsx-runtime").JSX.Element;
|
|
18
17
|
declare const FieldComboboxItemCheckIcon: ({ className, }: React.ComponentProps<"span">) => import("react/jsx-runtime").JSX.Element;
|
|
19
18
|
declare const FieldComboboxLoading: ({ className, ...props }: React.ComponentProps<typeof CommandLoading>) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
|
|
19
|
+
declare const FieldComboboxClear: ({ className, onClick, ...props }: React.ComponentProps<typeof Button>) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
declare const FieldComboboxPlaceholder: ({ className, ...props }: React.ComponentProps<"span">) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
declare const FieldComboboxClearValue: ({ className, onClick, ...props }: React.ComponentProps<"span">) => import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export { FieldCombobox, FieldComboboxGroup, FieldComboboxGroupLabel, FieldComboboxValue, FieldComboboxTrigger, FieldComboboxContent, FieldComboboxItem, FieldComboboxItemCheckIcon, FieldComboboxEmpty, FieldComboboxSeparator, FieldComboboxInput, FieldComboboxList, FieldComboboxLoading, FieldComboboxClear, FieldComboboxClearValue, FieldComboboxPlaceholder, };
|