@use-stall/ui 0.0.3 → 0.0.5
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/index.d.mts +27 -20
- package/dist/index.d.ts +27 -20
- package/dist/index.js +111 -116
- package/dist/index.mjs +123 -128
- package/package.json +3 -3
- package/dist/styles.css +0 -3
- package/dist/styles.d.mts +0 -2
- package/dist/styles.d.ts +0 -2
package/dist/index.d.mts
CHANGED
|
@@ -17,7 +17,6 @@ import { Drawer as Drawer$1 } from 'vaul';
|
|
|
17
17
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
18
18
|
import * as tailwind_variants from 'tailwind-variants';
|
|
19
19
|
import { VariantProps as VariantProps$1 } from 'tailwind-variants';
|
|
20
|
-
export { ClassValue, VariantProps } from 'tailwind-variants';
|
|
21
20
|
import * as _base_ui_components_react_field from '@base-ui-components/react/field';
|
|
22
21
|
import { Field as Field$1 } from '@base-ui-components/react/field';
|
|
23
22
|
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
@@ -137,7 +136,7 @@ type OptionType = {
|
|
|
137
136
|
value: string;
|
|
138
137
|
item?: any;
|
|
139
138
|
};
|
|
140
|
-
type Props$
|
|
139
|
+
type Props$3 = {
|
|
141
140
|
placeholder?: string;
|
|
142
141
|
value: string;
|
|
143
142
|
onChange: (value: string, item?: any) => void;
|
|
@@ -154,7 +153,7 @@ type Props$2 = {
|
|
|
154
153
|
options?: OptionType[];
|
|
155
154
|
data_source?: OptionType[];
|
|
156
155
|
};
|
|
157
|
-
declare function Combobox({ modal, ...props }: Props$
|
|
156
|
+
declare function Combobox({ modal, ...props }: Props$3): react_jsx_runtime.JSX.Element;
|
|
158
157
|
|
|
159
158
|
declare const Command: React$1.ForwardRefExoticComponent<Omit<{
|
|
160
159
|
children?: React$1.ReactNode;
|
|
@@ -239,11 +238,11 @@ declare const CommandShortcut: {
|
|
|
239
238
|
displayName: string;
|
|
240
239
|
};
|
|
241
240
|
|
|
242
|
-
type Props$
|
|
241
|
+
type Props$2 = {
|
|
243
242
|
trigger?: React__default.ReactNode;
|
|
244
243
|
confirmAction: () => void;
|
|
245
244
|
};
|
|
246
|
-
declare const ConfirmDialog: React__default.MemoExoticComponent<({ trigger, confirmAction }: Props$
|
|
245
|
+
declare const ConfirmDialog: React__default.MemoExoticComponent<({ trigger, confirmAction }: Props$2) => react_jsx_runtime.JSX.Element>;
|
|
247
246
|
|
|
248
247
|
interface CopyButtonProps {
|
|
249
248
|
isCopied: boolean;
|
|
@@ -254,7 +253,7 @@ interface CopyButtonProps {
|
|
|
254
253
|
}
|
|
255
254
|
declare const CopyButton: ({ isCopied, copyFunction, clearFunction, className, icon_size, }: CopyButtonProps) => react_jsx_runtime.JSX.Element;
|
|
256
255
|
|
|
257
|
-
type Props = {
|
|
256
|
+
type Props$1 = {
|
|
258
257
|
placeholder?: string;
|
|
259
258
|
value: string;
|
|
260
259
|
onChange: (value: string) => void;
|
|
@@ -269,7 +268,7 @@ type Props = {
|
|
|
269
268
|
disabled?: boolean;
|
|
270
269
|
hidePrimitive?: boolean;
|
|
271
270
|
};
|
|
272
|
-
declare function CountryPicker({ modal, value_key, ...props }: Props): react_jsx_runtime.JSX.Element;
|
|
271
|
+
declare function CountryPicker({ modal, value_key, ...props }: Props$1): react_jsx_runtime.JSX.Element;
|
|
273
272
|
|
|
274
273
|
declare const Dialog: typeof Dialog$1.Root;
|
|
275
274
|
declare function DialogTrigger(props: Dialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
@@ -329,23 +328,20 @@ declare const DropdownMenuShortcut: {
|
|
|
329
328
|
displayName: string;
|
|
330
329
|
};
|
|
331
330
|
|
|
332
|
-
type AsProp<T extends React.ElementType> = {
|
|
331
|
+
type AsProp<T extends React$1.ElementType> = {
|
|
333
332
|
as?: T;
|
|
334
333
|
};
|
|
335
|
-
type PropsToOmit<T extends React.ElementType, P> = keyof (AsProp<T> & P);
|
|
336
|
-
type PolymorphicComponentProp<T extends React.ElementType, Props =
|
|
337
|
-
type PolymorphicRef<T extends React.ElementType> = React.ComponentPropsWithRef<T>[
|
|
338
|
-
type PolymorphicComponentPropWithRef<T extends React.ElementType, Props =
|
|
334
|
+
type PropsToOmit<T extends React$1.ElementType, P> = keyof (AsProp<T> & P);
|
|
335
|
+
type PolymorphicComponentProp<T extends React$1.ElementType, Props extends object = Record<string, never>> = React$1.PropsWithChildren<Props & AsProp<T>> & Omit<React$1.ComponentPropsWithoutRef<T>, PropsToOmit<T, Props>>;
|
|
336
|
+
type PolymorphicRef<T extends React$1.ElementType> = React$1.ComponentPropsWithRef<T>["ref"];
|
|
337
|
+
type PolymorphicComponentPropWithRef<T extends React$1.ElementType, Props extends object = Record<string, never>> = PolymorphicComponentProp<T, Props> & {
|
|
339
338
|
ref?: PolymorphicRef<T>;
|
|
340
339
|
};
|
|
341
|
-
type PolymorphicComponentPropsWithRef<T extends React.ElementType, P =
|
|
342
|
-
type PolymorphicComponentProps<T extends React.ElementType, P =
|
|
343
|
-
type PolymorphicComponent<P> = {
|
|
344
|
-
<T extends React.ElementType>(props: PolymorphicComponentPropsWithRef<T, P>): React.ReactNode;
|
|
340
|
+
type PolymorphicComponentPropsWithRef<T extends React$1.ElementType, P extends object = Record<string, never>> = PolymorphicComponentPropWithRef<T, P>;
|
|
341
|
+
type PolymorphicComponentProps<T extends React$1.ElementType, P extends object = Record<string, never>> = PolymorphicComponentProp<T, P>;
|
|
342
|
+
type PolymorphicComponent<P extends object> = {
|
|
343
|
+
<T extends React$1.ElementType>(props: PolymorphicComponentPropsWithRef<T, P>): React$1.ReactNode;
|
|
345
344
|
};
|
|
346
|
-
|
|
347
|
-
declare const tv: tailwind_variants.TV;
|
|
348
|
-
|
|
349
345
|
declare const fancyButtonVariants: tailwind_variants.TVReturnType<{
|
|
350
346
|
variant: {
|
|
351
347
|
neutral: {
|
|
@@ -682,6 +678,17 @@ interface PopoverProps extends React$1.ComponentPropsWithoutRef<typeof PopoverPr
|
|
|
682
678
|
}
|
|
683
679
|
declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & PopoverProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
684
680
|
|
|
681
|
+
interface Props extends React__default.InputHTMLAttributes<HTMLInputElement> {
|
|
682
|
+
currency: {
|
|
683
|
+
symbol: string;
|
|
684
|
+
code: string;
|
|
685
|
+
};
|
|
686
|
+
hide_currency_symbol?: boolean;
|
|
687
|
+
hide_currency_code?: boolean;
|
|
688
|
+
containerClassname?: string;
|
|
689
|
+
}
|
|
690
|
+
declare const PriceInput: React__default.ForwardRefExoticComponent<Props & React__default.RefAttributes<HTMLInputElement>>;
|
|
691
|
+
|
|
685
692
|
declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
686
693
|
|
|
687
694
|
declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -775,4 +782,4 @@ declare const TooltipContent: React$1.ForwardRefExoticComponent<Omit<TooltipPrim
|
|
|
775
782
|
|
|
776
783
|
declare function cn(...inputs: ClassValue[]): string;
|
|
777
784
|
|
|
778
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AlertDialog, AlertDialogBackdrop, AlertDialogClose, AlertDialogPopup as AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogBackdrop as AlertDialogOverlay, AlertDialogPopup, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Combobox, ComboboxChip, ComboboxChips, ComboboxClear, ComboboxCollection, ComboboxEmpty, ComboboxGroup, ComboboxGroupLabel, ComboboxInput, ComboboxItem, ComboboxList, Combobox$1 as ComboboxMulti, ComboboxPopup, ComboboxRow, ComboboxSeparator, ComboboxStatus, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfirmDialog, CopyButton, CountryPicker, Dialog, DialogBackdrop, DialogClose, DialogPopup as DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogBackdrop as DialogOverlay, DialogPopup, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ButtonRoot as FancyButton, Field, FieldControl, FieldDescription, FieldError, FieldLabel, FieldValidity, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, ButtonIcon as Icon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, MultiSelect, type PasswordInputProps, PhoneNumberInput, type PolymorphicComponent, type PolymorphicComponentProps, type PolymorphicComponentPropsWithRef, type PolymorphicRef, Popover, PopoverContent, PopoverTrigger, Progress, ButtonRoot as Root, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, StatusIndicator, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, Timeline, TimelineConnector, TimelineContent, TimelineDescription, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineProps, TimelineSeparator, TimelineTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, cn, statusIndicatorVariants,
|
|
785
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AlertDialog, AlertDialogBackdrop, AlertDialogClose, AlertDialogPopup as AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogBackdrop as AlertDialogOverlay, AlertDialogPopup, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Combobox, ComboboxChip, ComboboxChips, ComboboxClear, ComboboxCollection, ComboboxEmpty, ComboboxGroup, ComboboxGroupLabel, ComboboxInput, ComboboxItem, ComboboxList, Combobox$1 as ComboboxMulti, ComboboxPopup, ComboboxRow, ComboboxSeparator, ComboboxStatus, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfirmDialog, CopyButton, CountryPicker, Dialog, DialogBackdrop, DialogClose, DialogPopup as DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogBackdrop as DialogOverlay, DialogPopup, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ButtonRoot as FancyButton, Field, FieldControl, FieldDescription, FieldError, FieldLabel, FieldValidity, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, ButtonIcon as Icon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, MultiSelect, type PasswordInputProps, PhoneNumberInput, type PolymorphicComponent, type PolymorphicComponentProps, type PolymorphicComponentPropsWithRef, type PolymorphicRef, Popover, PopoverContent, PopoverTrigger, PriceInput, Progress, ButtonRoot as Root, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, StatusIndicator, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, Timeline, TimelineConnector, TimelineContent, TimelineDescription, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineProps, TimelineSeparator, TimelineTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, cn, statusIndicatorVariants, useComboboxFilter, useFormField };
|
package/dist/index.d.ts
CHANGED
|
@@ -17,7 +17,6 @@ import { Drawer as Drawer$1 } from 'vaul';
|
|
|
17
17
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
18
18
|
import * as tailwind_variants from 'tailwind-variants';
|
|
19
19
|
import { VariantProps as VariantProps$1 } from 'tailwind-variants';
|
|
20
|
-
export { ClassValue, VariantProps } from 'tailwind-variants';
|
|
21
20
|
import * as _base_ui_components_react_field from '@base-ui-components/react/field';
|
|
22
21
|
import { Field as Field$1 } from '@base-ui-components/react/field';
|
|
23
22
|
import * as _radix_ui_react_slot from '@radix-ui/react-slot';
|
|
@@ -137,7 +136,7 @@ type OptionType = {
|
|
|
137
136
|
value: string;
|
|
138
137
|
item?: any;
|
|
139
138
|
};
|
|
140
|
-
type Props$
|
|
139
|
+
type Props$3 = {
|
|
141
140
|
placeholder?: string;
|
|
142
141
|
value: string;
|
|
143
142
|
onChange: (value: string, item?: any) => void;
|
|
@@ -154,7 +153,7 @@ type Props$2 = {
|
|
|
154
153
|
options?: OptionType[];
|
|
155
154
|
data_source?: OptionType[];
|
|
156
155
|
};
|
|
157
|
-
declare function Combobox({ modal, ...props }: Props$
|
|
156
|
+
declare function Combobox({ modal, ...props }: Props$3): react_jsx_runtime.JSX.Element;
|
|
158
157
|
|
|
159
158
|
declare const Command: React$1.ForwardRefExoticComponent<Omit<{
|
|
160
159
|
children?: React$1.ReactNode;
|
|
@@ -239,11 +238,11 @@ declare const CommandShortcut: {
|
|
|
239
238
|
displayName: string;
|
|
240
239
|
};
|
|
241
240
|
|
|
242
|
-
type Props$
|
|
241
|
+
type Props$2 = {
|
|
243
242
|
trigger?: React__default.ReactNode;
|
|
244
243
|
confirmAction: () => void;
|
|
245
244
|
};
|
|
246
|
-
declare const ConfirmDialog: React__default.MemoExoticComponent<({ trigger, confirmAction }: Props$
|
|
245
|
+
declare const ConfirmDialog: React__default.MemoExoticComponent<({ trigger, confirmAction }: Props$2) => react_jsx_runtime.JSX.Element>;
|
|
247
246
|
|
|
248
247
|
interface CopyButtonProps {
|
|
249
248
|
isCopied: boolean;
|
|
@@ -254,7 +253,7 @@ interface CopyButtonProps {
|
|
|
254
253
|
}
|
|
255
254
|
declare const CopyButton: ({ isCopied, copyFunction, clearFunction, className, icon_size, }: CopyButtonProps) => react_jsx_runtime.JSX.Element;
|
|
256
255
|
|
|
257
|
-
type Props = {
|
|
256
|
+
type Props$1 = {
|
|
258
257
|
placeholder?: string;
|
|
259
258
|
value: string;
|
|
260
259
|
onChange: (value: string) => void;
|
|
@@ -269,7 +268,7 @@ type Props = {
|
|
|
269
268
|
disabled?: boolean;
|
|
270
269
|
hidePrimitive?: boolean;
|
|
271
270
|
};
|
|
272
|
-
declare function CountryPicker({ modal, value_key, ...props }: Props): react_jsx_runtime.JSX.Element;
|
|
271
|
+
declare function CountryPicker({ modal, value_key, ...props }: Props$1): react_jsx_runtime.JSX.Element;
|
|
273
272
|
|
|
274
273
|
declare const Dialog: typeof Dialog$1.Root;
|
|
275
274
|
declare function DialogTrigger(props: Dialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
@@ -329,23 +328,20 @@ declare const DropdownMenuShortcut: {
|
|
|
329
328
|
displayName: string;
|
|
330
329
|
};
|
|
331
330
|
|
|
332
|
-
type AsProp<T extends React.ElementType> = {
|
|
331
|
+
type AsProp<T extends React$1.ElementType> = {
|
|
333
332
|
as?: T;
|
|
334
333
|
};
|
|
335
|
-
type PropsToOmit<T extends React.ElementType, P> = keyof (AsProp<T> & P);
|
|
336
|
-
type PolymorphicComponentProp<T extends React.ElementType, Props =
|
|
337
|
-
type PolymorphicRef<T extends React.ElementType> = React.ComponentPropsWithRef<T>[
|
|
338
|
-
type PolymorphicComponentPropWithRef<T extends React.ElementType, Props =
|
|
334
|
+
type PropsToOmit<T extends React$1.ElementType, P> = keyof (AsProp<T> & P);
|
|
335
|
+
type PolymorphicComponentProp<T extends React$1.ElementType, Props extends object = Record<string, never>> = React$1.PropsWithChildren<Props & AsProp<T>> & Omit<React$1.ComponentPropsWithoutRef<T>, PropsToOmit<T, Props>>;
|
|
336
|
+
type PolymorphicRef<T extends React$1.ElementType> = React$1.ComponentPropsWithRef<T>["ref"];
|
|
337
|
+
type PolymorphicComponentPropWithRef<T extends React$1.ElementType, Props extends object = Record<string, never>> = PolymorphicComponentProp<T, Props> & {
|
|
339
338
|
ref?: PolymorphicRef<T>;
|
|
340
339
|
};
|
|
341
|
-
type PolymorphicComponentPropsWithRef<T extends React.ElementType, P =
|
|
342
|
-
type PolymorphicComponentProps<T extends React.ElementType, P =
|
|
343
|
-
type PolymorphicComponent<P> = {
|
|
344
|
-
<T extends React.ElementType>(props: PolymorphicComponentPropsWithRef<T, P>): React.ReactNode;
|
|
340
|
+
type PolymorphicComponentPropsWithRef<T extends React$1.ElementType, P extends object = Record<string, never>> = PolymorphicComponentPropWithRef<T, P>;
|
|
341
|
+
type PolymorphicComponentProps<T extends React$1.ElementType, P extends object = Record<string, never>> = PolymorphicComponentProp<T, P>;
|
|
342
|
+
type PolymorphicComponent<P extends object> = {
|
|
343
|
+
<T extends React$1.ElementType>(props: PolymorphicComponentPropsWithRef<T, P>): React$1.ReactNode;
|
|
345
344
|
};
|
|
346
|
-
|
|
347
|
-
declare const tv: tailwind_variants.TV;
|
|
348
|
-
|
|
349
345
|
declare const fancyButtonVariants: tailwind_variants.TVReturnType<{
|
|
350
346
|
variant: {
|
|
351
347
|
neutral: {
|
|
@@ -682,6 +678,17 @@ interface PopoverProps extends React$1.ComponentPropsWithoutRef<typeof PopoverPr
|
|
|
682
678
|
}
|
|
683
679
|
declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & PopoverProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
684
680
|
|
|
681
|
+
interface Props extends React__default.InputHTMLAttributes<HTMLInputElement> {
|
|
682
|
+
currency: {
|
|
683
|
+
symbol: string;
|
|
684
|
+
code: string;
|
|
685
|
+
};
|
|
686
|
+
hide_currency_symbol?: boolean;
|
|
687
|
+
hide_currency_code?: boolean;
|
|
688
|
+
containerClassname?: string;
|
|
689
|
+
}
|
|
690
|
+
declare const PriceInput: React__default.ForwardRefExoticComponent<Props & React__default.RefAttributes<HTMLInputElement>>;
|
|
691
|
+
|
|
685
692
|
declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
686
693
|
|
|
687
694
|
declare const ScrollArea: React$1.ForwardRefExoticComponent<Omit<ScrollAreaPrimitive.ScrollAreaProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -775,4 +782,4 @@ declare const TooltipContent: React$1.ForwardRefExoticComponent<Omit<TooltipPrim
|
|
|
775
782
|
|
|
776
783
|
declare function cn(...inputs: ClassValue[]): string;
|
|
777
784
|
|
|
778
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AlertDialog, AlertDialogBackdrop, AlertDialogClose, AlertDialogPopup as AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogBackdrop as AlertDialogOverlay, AlertDialogPopup, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Combobox, ComboboxChip, ComboboxChips, ComboboxClear, ComboboxCollection, ComboboxEmpty, ComboboxGroup, ComboboxGroupLabel, ComboboxInput, ComboboxItem, ComboboxList, Combobox$1 as ComboboxMulti, ComboboxPopup, ComboboxRow, ComboboxSeparator, ComboboxStatus, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfirmDialog, CopyButton, CountryPicker, Dialog, DialogBackdrop, DialogClose, DialogPopup as DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogBackdrop as DialogOverlay, DialogPopup, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ButtonRoot as FancyButton, Field, FieldControl, FieldDescription, FieldError, FieldLabel, FieldValidity, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, ButtonIcon as Icon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, MultiSelect, type PasswordInputProps, PhoneNumberInput, type PolymorphicComponent, type PolymorphicComponentProps, type PolymorphicComponentPropsWithRef, type PolymorphicRef, Popover, PopoverContent, PopoverTrigger, Progress, ButtonRoot as Root, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, StatusIndicator, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, Timeline, TimelineConnector, TimelineContent, TimelineDescription, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineProps, TimelineSeparator, TimelineTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, cn, statusIndicatorVariants,
|
|
785
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AlertDialog, AlertDialogBackdrop, AlertDialogClose, AlertDialogPopup as AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogBackdrop as AlertDialogOverlay, AlertDialogPopup, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Combobox, ComboboxChip, ComboboxChips, ComboboxClear, ComboboxCollection, ComboboxEmpty, ComboboxGroup, ComboboxGroupLabel, ComboboxInput, ComboboxItem, ComboboxList, Combobox$1 as ComboboxMulti, ComboboxPopup, ComboboxRow, ComboboxSeparator, ComboboxStatus, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfirmDialog, CopyButton, CountryPicker, Dialog, DialogBackdrop, DialogClose, DialogPopup as DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogBackdrop as DialogOverlay, DialogPopup, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, ButtonRoot as FancyButton, Field, FieldControl, FieldDescription, FieldError, FieldLabel, FieldValidity, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, ButtonIcon as Icon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, MultiSelect, type PasswordInputProps, PhoneNumberInput, type PolymorphicComponent, type PolymorphicComponentProps, type PolymorphicComponentPropsWithRef, type PolymorphicRef, Popover, PopoverContent, PopoverTrigger, PriceInput, Progress, ButtonRoot as Root, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, StatusIndicator, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, Timeline, TimelineConnector, TimelineContent, TimelineDescription, TimelineDot, type TimelineDotProps, TimelineItem, type TimelineProps, TimelineSeparator, TimelineTitle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, cn, statusIndicatorVariants, useComboboxFilter, useFormField };
|