@use-stall/ui 0.1.1 → 0.1.2
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 +15 -7
- package/dist/index.d.ts +15 -7
- package/dist/index.js +2 -0
- package/dist/index.mjs +1 -0
- package/package.json +2 -1
package/dist/index.d.mts
CHANGED
|
@@ -136,7 +136,7 @@ type OptionType = {
|
|
|
136
136
|
value: string;
|
|
137
137
|
item?: any;
|
|
138
138
|
};
|
|
139
|
-
type Props$
|
|
139
|
+
type Props$4 = {
|
|
140
140
|
placeholder?: string;
|
|
141
141
|
value: string;
|
|
142
142
|
onChange: (value: string, item?: any) => void;
|
|
@@ -153,7 +153,7 @@ type Props$3 = {
|
|
|
153
153
|
options?: OptionType[];
|
|
154
154
|
data_source?: OptionType[];
|
|
155
155
|
};
|
|
156
|
-
declare function Combobox({ modal, ...props }: Props$
|
|
156
|
+
declare function Combobox({ modal, ...props }: Props$4): react_jsx_runtime.JSX.Element;
|
|
157
157
|
|
|
158
158
|
declare const Command: React$1.ForwardRefExoticComponent<Omit<{
|
|
159
159
|
children?: React$1.ReactNode;
|
|
@@ -238,11 +238,11 @@ declare const CommandShortcut: {
|
|
|
238
238
|
displayName: string;
|
|
239
239
|
};
|
|
240
240
|
|
|
241
|
-
type Props$
|
|
241
|
+
type Props$3 = {
|
|
242
242
|
trigger?: React__default.ReactNode;
|
|
243
243
|
confirmAction: () => void;
|
|
244
244
|
};
|
|
245
|
-
declare const ConfirmDialog: React__default.MemoExoticComponent<({ trigger, confirmAction }: Props$
|
|
245
|
+
declare const ConfirmDialog: React__default.MemoExoticComponent<({ trigger, confirmAction }: Props$3) => react_jsx_runtime.JSX.Element>;
|
|
246
246
|
|
|
247
247
|
interface CopyButtonProps {
|
|
248
248
|
isCopied: boolean;
|
|
@@ -253,7 +253,7 @@ interface CopyButtonProps {
|
|
|
253
253
|
}
|
|
254
254
|
declare const CopyButton: ({ isCopied, copyFunction, clearFunction, className, icon_size, }: CopyButtonProps) => react_jsx_runtime.JSX.Element;
|
|
255
255
|
|
|
256
|
-
type Props$
|
|
256
|
+
type Props$2 = {
|
|
257
257
|
placeholder?: string;
|
|
258
258
|
value: string;
|
|
259
259
|
onChange: (value: string) => void;
|
|
@@ -268,7 +268,7 @@ type Props$1 = {
|
|
|
268
268
|
disabled?: boolean;
|
|
269
269
|
hidePrimitive?: boolean;
|
|
270
270
|
};
|
|
271
|
-
declare function CountryPicker({ modal, value_key, ...props }: Props$
|
|
271
|
+
declare function CountryPicker({ modal, value_key, ...props }: Props$2): react_jsx_runtime.JSX.Element;
|
|
272
272
|
|
|
273
273
|
declare const Dialog: typeof Dialog$1.Root;
|
|
274
274
|
declare function DialogTrigger(props: Dialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
@@ -596,6 +596,14 @@ declare const FormControl: React$1.ForwardRefExoticComponent<Omit<_radix_ui_reac
|
|
|
596
596
|
declare const FormDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
597
597
|
declare const FormMessage: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
598
598
|
|
|
599
|
+
type Props$1 = {
|
|
600
|
+
src?: string;
|
|
601
|
+
alt?: string;
|
|
602
|
+
onErrorImage?: string;
|
|
603
|
+
className?: string;
|
|
604
|
+
};
|
|
605
|
+
declare const ImageCard: React__default.MemoExoticComponent<({ src, alt, onErrorImage, className }: Props$1) => react_jsx_runtime.JSX.Element>;
|
|
606
|
+
|
|
599
607
|
declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
600
608
|
value?: string;
|
|
601
609
|
onChange?: (newValue: string) => unknown;
|
|
@@ -782,4 +790,4 @@ declare const TooltipContent: React$1.ForwardRefExoticComponent<Omit<TooltipPrim
|
|
|
782
790
|
|
|
783
791
|
declare function cn(...inputs: ClassValue[]): string;
|
|
784
792
|
|
|
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 };
|
|
793
|
+
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, ImageCard, 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
|
@@ -136,7 +136,7 @@ type OptionType = {
|
|
|
136
136
|
value: string;
|
|
137
137
|
item?: any;
|
|
138
138
|
};
|
|
139
|
-
type Props$
|
|
139
|
+
type Props$4 = {
|
|
140
140
|
placeholder?: string;
|
|
141
141
|
value: string;
|
|
142
142
|
onChange: (value: string, item?: any) => void;
|
|
@@ -153,7 +153,7 @@ type Props$3 = {
|
|
|
153
153
|
options?: OptionType[];
|
|
154
154
|
data_source?: OptionType[];
|
|
155
155
|
};
|
|
156
|
-
declare function Combobox({ modal, ...props }: Props$
|
|
156
|
+
declare function Combobox({ modal, ...props }: Props$4): react_jsx_runtime.JSX.Element;
|
|
157
157
|
|
|
158
158
|
declare const Command: React$1.ForwardRefExoticComponent<Omit<{
|
|
159
159
|
children?: React$1.ReactNode;
|
|
@@ -238,11 +238,11 @@ declare const CommandShortcut: {
|
|
|
238
238
|
displayName: string;
|
|
239
239
|
};
|
|
240
240
|
|
|
241
|
-
type Props$
|
|
241
|
+
type Props$3 = {
|
|
242
242
|
trigger?: React__default.ReactNode;
|
|
243
243
|
confirmAction: () => void;
|
|
244
244
|
};
|
|
245
|
-
declare const ConfirmDialog: React__default.MemoExoticComponent<({ trigger, confirmAction }: Props$
|
|
245
|
+
declare const ConfirmDialog: React__default.MemoExoticComponent<({ trigger, confirmAction }: Props$3) => react_jsx_runtime.JSX.Element>;
|
|
246
246
|
|
|
247
247
|
interface CopyButtonProps {
|
|
248
248
|
isCopied: boolean;
|
|
@@ -253,7 +253,7 @@ interface CopyButtonProps {
|
|
|
253
253
|
}
|
|
254
254
|
declare const CopyButton: ({ isCopied, copyFunction, clearFunction, className, icon_size, }: CopyButtonProps) => react_jsx_runtime.JSX.Element;
|
|
255
255
|
|
|
256
|
-
type Props$
|
|
256
|
+
type Props$2 = {
|
|
257
257
|
placeholder?: string;
|
|
258
258
|
value: string;
|
|
259
259
|
onChange: (value: string) => void;
|
|
@@ -268,7 +268,7 @@ type Props$1 = {
|
|
|
268
268
|
disabled?: boolean;
|
|
269
269
|
hidePrimitive?: boolean;
|
|
270
270
|
};
|
|
271
|
-
declare function CountryPicker({ modal, value_key, ...props }: Props$
|
|
271
|
+
declare function CountryPicker({ modal, value_key, ...props }: Props$2): react_jsx_runtime.JSX.Element;
|
|
272
272
|
|
|
273
273
|
declare const Dialog: typeof Dialog$1.Root;
|
|
274
274
|
declare function DialogTrigger(props: Dialog$1.Trigger.Props): react_jsx_runtime.JSX.Element;
|
|
@@ -596,6 +596,14 @@ declare const FormControl: React$1.ForwardRefExoticComponent<Omit<_radix_ui_reac
|
|
|
596
596
|
declare const FormDescription: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
597
597
|
declare const FormMessage: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLParagraphElement> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
598
598
|
|
|
599
|
+
type Props$1 = {
|
|
600
|
+
src?: string;
|
|
601
|
+
alt?: string;
|
|
602
|
+
onErrorImage?: string;
|
|
603
|
+
className?: string;
|
|
604
|
+
};
|
|
605
|
+
declare const ImageCard: React__default.MemoExoticComponent<({ src, alt, onErrorImage, className }: Props$1) => react_jsx_runtime.JSX.Element>;
|
|
606
|
+
|
|
599
607
|
declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
600
608
|
value?: string;
|
|
601
609
|
onChange?: (newValue: string) => unknown;
|
|
@@ -782,4 +790,4 @@ declare const TooltipContent: React$1.ForwardRefExoticComponent<Omit<TooltipPrim
|
|
|
782
790
|
|
|
783
791
|
declare function cn(...inputs: ClassValue[]): string;
|
|
784
792
|
|
|
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 };
|
|
793
|
+
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, ImageCard, 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.js
CHANGED
|
@@ -147,6 +147,7 @@ __export(index_exports, {
|
|
|
147
147
|
FormLabel: () => FormLabel,
|
|
148
148
|
FormMessage: () => FormMessage,
|
|
149
149
|
Icon: () => ButtonIcon,
|
|
150
|
+
ImageCard: () => ImageCard,
|
|
150
151
|
Input: () => Input,
|
|
151
152
|
InputOTP: () => InputOTP,
|
|
152
153
|
InputOTPGroup: () => InputOTPGroup,
|
|
@@ -3742,6 +3743,7 @@ TooltipContent.displayName = TooltipPrimitive.Content.displayName;
|
|
|
3742
3743
|
FormLabel,
|
|
3743
3744
|
FormMessage,
|
|
3744
3745
|
Icon,
|
|
3746
|
+
ImageCard,
|
|
3745
3747
|
Input,
|
|
3746
3748
|
InputOTP,
|
|
3747
3749
|
InputOTPGroup,
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@use-stall/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"author": "Stall",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"input-otp": "^1.4.2",
|
|
56
56
|
"react-phone-number-input": "^3.4.14",
|
|
57
57
|
"tailwind-variants": "^3.2.2",
|
|
58
|
+
"ts-key-enum": "^3.0.13",
|
|
58
59
|
"tw-animate-css": "^1.4.0",
|
|
59
60
|
"vaul": "^1.1.2"
|
|
60
61
|
},
|