@use-stall/ui 0.1.0 → 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 +4 -3
- package/dist/index.mjs +3 -3
- 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,
|
|
@@ -1515,7 +1516,7 @@ var fancyButtonVariants = tv({
|
|
|
1515
1516
|
slots: {
|
|
1516
1517
|
root: [
|
|
1517
1518
|
// base
|
|
1518
|
-
"group relative inline-flex items-center justify-center whitespace-nowrap text-label-sm text-sm outline-none",
|
|
1519
|
+
"group relative inline-flex items-center justify-center whitespace-nowrap text-label-sm text-sm font-medium outline-none",
|
|
1519
1520
|
"transition duration-200 ease-out cursor-pointer",
|
|
1520
1521
|
// focus
|
|
1521
1522
|
"focus:outline-none",
|
|
@@ -1625,8 +1626,7 @@ var ButtonRoot = React12.forwardRef(
|
|
|
1625
1626
|
"div",
|
|
1626
1627
|
{
|
|
1627
1628
|
className: cn(
|
|
1628
|
-
`size-4 shrink-0 rounded-full border-2 border-white/
|
|
1629
|
-
border-l-white animate-spin`,
|
|
1629
|
+
`size-4 shrink-0 rounded-full border-2 border-white/50 border-l-white animate-spin`,
|
|
1630
1630
|
{
|
|
1631
1631
|
"border-primary/30 border-l-primary": ![
|
|
1632
1632
|
"primary",
|
|
@@ -3743,6 +3743,7 @@ TooltipContent.displayName = TooltipPrimitive.Content.displayName;
|
|
|
3743
3743
|
FormLabel,
|
|
3744
3744
|
FormMessage,
|
|
3745
3745
|
Icon,
|
|
3746
|
+
ImageCard,
|
|
3746
3747
|
Input,
|
|
3747
3748
|
InputOTP,
|
|
3748
3749
|
InputOTPGroup,
|
package/dist/index.mjs
CHANGED
|
@@ -1292,7 +1292,7 @@ var fancyButtonVariants = tv({
|
|
|
1292
1292
|
slots: {
|
|
1293
1293
|
root: [
|
|
1294
1294
|
// base
|
|
1295
|
-
"group relative inline-flex items-center justify-center whitespace-nowrap text-label-sm text-sm outline-none",
|
|
1295
|
+
"group relative inline-flex items-center justify-center whitespace-nowrap text-label-sm text-sm font-medium outline-none",
|
|
1296
1296
|
"transition duration-200 ease-out cursor-pointer",
|
|
1297
1297
|
// focus
|
|
1298
1298
|
"focus:outline-none",
|
|
@@ -1402,8 +1402,7 @@ var ButtonRoot = React12.forwardRef(
|
|
|
1402
1402
|
"div",
|
|
1403
1403
|
{
|
|
1404
1404
|
className: cn(
|
|
1405
|
-
`size-4 shrink-0 rounded-full border-2 border-white/
|
|
1406
|
-
border-l-white animate-spin`,
|
|
1405
|
+
`size-4 shrink-0 rounded-full border-2 border-white/50 border-l-white animate-spin`,
|
|
1407
1406
|
{
|
|
1408
1407
|
"border-primary/30 border-l-primary": ![
|
|
1409
1408
|
"primary",
|
|
@@ -3523,6 +3522,7 @@ export {
|
|
|
3523
3522
|
FormLabel,
|
|
3524
3523
|
FormMessage,
|
|
3525
3524
|
ButtonIcon as Icon,
|
|
3525
|
+
ImageCard,
|
|
3526
3526
|
Input,
|
|
3527
3527
|
InputOTP,
|
|
3528
3528
|
InputOTPGroup,
|
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
|
},
|