luaniverse 4.2.13 → 4.2.15
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.cjs +1192 -739
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +50 -2
- package/dist/index.d.ts +50 -2
- package/dist/index.js +1180 -740
- package/dist/index.js.map +1 -1
- package/dist/safelist.js +69 -15
- package/dist/safelist.txt +62 -15
- package/dist/styles.css +4 -4
- package/dist/tailwind.preset.js +25 -8
- package/dist/theme.css +52 -31
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -64,6 +64,18 @@ interface InputProps extends React.ComponentProps<'input'> {
|
|
|
64
64
|
}
|
|
65
65
|
declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
66
66
|
|
|
67
|
+
declare const alertVariants: (props?: ({
|
|
68
|
+
variant?: "default" | "success" | "danger" | "warning" | null | undefined;
|
|
69
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
70
|
+
|
|
71
|
+
interface AlertProps extends React.ComponentProps<'div'>, VariantProps<typeof alertVariants> {
|
|
72
|
+
icon?: React.ReactNode;
|
|
73
|
+
close?: React.ReactNode;
|
|
74
|
+
}
|
|
75
|
+
declare const Alert: React.ForwardRefExoticComponent<Omit<AlertProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
76
|
+
declare const AlertTitle: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
77
|
+
declare const AlertDescription: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
78
|
+
|
|
67
79
|
declare const badgeVariants: (props?: ({
|
|
68
80
|
variant?: "default" | "primary" | "outline" | "secondary" | "destructive" | "success" | "warning" | null | undefined;
|
|
69
81
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -172,7 +184,7 @@ declare const Sheet: React.FC<Dialog$1.DialogProps>;
|
|
|
172
184
|
declare const SheetTrigger: React.ForwardRefExoticComponent<Dialog$1.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
173
185
|
declare const SheetClose: React.ForwardRefExoticComponent<Dialog$1.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
174
186
|
declare const sheetVariants: (props?: ({
|
|
175
|
-
side?: "
|
|
187
|
+
side?: "bottom" | "left" | "right" | "top" | null | undefined;
|
|
176
188
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
177
189
|
interface SheetContentProps extends React.ComponentPropsWithoutRef<typeof Dialog$1.Content>, VariantProps<typeof sheetVariants> {
|
|
178
190
|
showClose?: boolean;
|
|
@@ -1254,6 +1266,42 @@ declare const MultiSelect: React.ForwardRefExoticComponent<MultiSelectProps & Re
|
|
|
1254
1266
|
|
|
1255
1267
|
declare const Checkbox: React.ForwardRefExoticComponent<Omit<Checkbox$1.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
1256
1268
|
|
|
1269
|
+
declare const Command: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1270
|
+
declare const CommandInput: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
1271
|
+
declare const CommandList: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1272
|
+
declare const CommandEmpty: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1273
|
+
declare const CommandGroup: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1274
|
+
declare const CommandSeparator: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1275
|
+
interface CommandItemProps extends Omit<React.ComponentProps<'div'>, 'onClick' | 'onSelect'> {
|
|
1276
|
+
onSelect?: (value: string) => void;
|
|
1277
|
+
value?: string;
|
|
1278
|
+
}
|
|
1279
|
+
declare const CommandItem: React.ForwardRefExoticComponent<Omit<CommandItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1280
|
+
declare const CommandShortcut: {
|
|
1281
|
+
({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
1282
|
+
displayName: string;
|
|
1283
|
+
};
|
|
1284
|
+
|
|
1285
|
+
interface ComboboxOption {
|
|
1286
|
+
value: string;
|
|
1287
|
+
label: string;
|
|
1288
|
+
disabled?: boolean;
|
|
1289
|
+
}
|
|
1290
|
+
interface ComboboxProps {
|
|
1291
|
+
options: ComboboxOption[];
|
|
1292
|
+
value?: string;
|
|
1293
|
+
onValueChange?: (value: string) => void;
|
|
1294
|
+
placeholder?: string;
|
|
1295
|
+
searchPlaceholder?: string;
|
|
1296
|
+
emptyText?: string;
|
|
1297
|
+
disabled?: boolean;
|
|
1298
|
+
className?: string;
|
|
1299
|
+
triggerClassName?: string;
|
|
1300
|
+
contentClassName?: string;
|
|
1301
|
+
'aria-label'?: string;
|
|
1302
|
+
}
|
|
1303
|
+
declare const Combobox: React.ForwardRefExoticComponent<ComboboxProps & React.RefAttributes<HTMLButtonElement>>;
|
|
1304
|
+
|
|
1257
1305
|
declare const Slider: React.ForwardRefExoticComponent<Omit<Slider$1.SliderProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
1258
1306
|
|
|
1259
1307
|
declare function CalendarDayButton({ className, day, modifiers, ...props }: React.ComponentProps<typeof DayButton>): react_jsx_runtime.JSX.Element;
|
|
@@ -1277,4 +1325,4 @@ declare const luaniversePreset: tailwindcss.Config;
|
|
|
1277
1325
|
*/
|
|
1278
1326
|
declare const luaniverseSafelist: string[];
|
|
1279
1327
|
|
|
1280
|
-
export { AEP, AI, AVI, aep as AepIcon, ai as AiIcon, ArrowClockwiseIcon, ArrowLeft, ArrowRight, ArrowSquareOut, ArrowUp, ArrowsClockwiseIcon, avi as AviIcon, Badge, type BadgeProps, Blend, blend as BlendIcon, BooksIcon, Button, type ButtonProps, C4D, c4d as C4dIcon, CDR, CSS, CSV, Calendar, CalendarDayButton, Camera, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDown, CaretRight, CaretUpIcon, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, cdr as CdrIcon, ChartBar, Chat, ChatsCircle, Check, CheckSquareIcon, Checkbox, Circle, ClipboardTextIcon, Clock, CopySimpleIcon, CreditCard, css as CssIcon, csv as CsvIcon, CurrencyCircleDollar, DMG, DOC, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, dmg as DmgIcon, doc as DocIcon, DotsSixVerticalIcon, DotsThree, DotsThreeVertical, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EXE, exe as ExeIcon, FacebookLogo, Fig, fig as FigIcon, FloppyDiskIcon, FolderIcon, FolderSimpleLockIcon, GIF, Gear, GearSix, gif as GifIcon, GitCommit, HTML, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, html as HtmlIcon, ICO, ico as IcoIcon, IconButton, type IconButtonProps, type IconProps, ImageIcon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, InstagramLogo, JPEG, JPG, JS, JSON, Java, java as JavaIcon, jpeg as JpegIcon, jpg as JpgIcon, js as JsIcon, json as JsonIcon, KeyIcon, Label, Link, LinkIcon, type LinkProps, LinkSimple, LockSimple, Logo, LogoSpinner, MOV, MP3, MP4, MPG, MagnifyingGlass, MapPin, Microphone, Minus, MinusCircleIcon, mov as MovIcon, mp3 as Mp3Icon, mp4 as Mp4Icon, mpg as MpgIcon, MultiSelect, type MultiSelectOption, type MultiSelectProps, Overline, PDF, PNG, PPT, PSD, PackageIcon, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaperPlane, PaperPlaneTilt, Paperclip, pdf as PdfIcon, PencilSimple, PlugsRegular, Plus, png as PngIcon, Popover, PopoverContent, PopoverTrigger, ppt as PptIcon, psd as PsdIcon, RadioGroup, RadioGroupItem, Rar, rar as RarIcon, RecordIcon, SVG, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShieldTickIcon, ShoppingBagOpenIcon, ShoppingCartIcon, SidebarSimple, SignOut, Sketch, sketch as SketchIcon, Slider, Storefront, svg as SvgIcon, Switch, TIFF, TXT, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Text, TextIcon, Textarea, type TextareaProps, Ticket, tiff as TiffIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Trash, txt as TxtIcon, Typography, type TypographyProps, UserCircle, UserIcon, Users, VideoCamera, WAV, WEBP, WarningOctagon, WarningTriangle, wav as WavIcon, Waveform, webp as WebpIcon, WhatsAppLogo, WrenchIcon, XIcon, XLS, xls as XlsIcon, Zip, zip as ZipIcon, badgeVariants, buttonVariants, cn, luaniversePreset as default, getAccessibilityProps, getDefaultAriaLabel, iconButtonVariants, luaniversePreset, luaniverseSafelist };
|
|
1328
|
+
export { AEP, AI, AVI, aep as AepIcon, ai as AiIcon, Alert, AlertDescription, type AlertProps, AlertTitle, ArrowClockwiseIcon, ArrowLeft, ArrowRight, ArrowSquareOut, ArrowUp, ArrowsClockwiseIcon, avi as AviIcon, Badge, type BadgeProps, Blend, blend as BlendIcon, BooksIcon, Button, type ButtonProps, C4D, c4d as C4dIcon, CDR, CSS, CSV, Calendar, CalendarDayButton, Camera, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDown, CaretRight, CaretUpIcon, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, cdr as CdrIcon, ChartBar, Chat, ChatsCircle, Check, CheckSquareIcon, Checkbox, Circle, ClipboardTextIcon, Clock, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CopySimpleIcon, CreditCard, css as CssIcon, csv as CsvIcon, CurrencyCircleDollar, DMG, DOC, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, dmg as DmgIcon, doc as DocIcon, DotsSixVerticalIcon, DotsThree, DotsThreeVertical, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EXE, exe as ExeIcon, FacebookLogo, Fig, fig as FigIcon, FloppyDiskIcon, FolderIcon, FolderSimpleLockIcon, GIF, Gear, GearSix, gif as GifIcon, GitCommit, HTML, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, html as HtmlIcon, ICO, ico as IcoIcon, IconButton, type IconButtonProps, type IconProps, ImageIcon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, InstagramLogo, JPEG, JPG, JS, JSON, Java, java as JavaIcon, jpeg as JpegIcon, jpg as JpgIcon, js as JsIcon, json as JsonIcon, KeyIcon, Label, Link, LinkIcon, type LinkProps, LinkSimple, LockSimple, Logo, LogoSpinner, MOV, MP3, MP4, MPG, MagnifyingGlass, MapPin, Microphone, Minus, MinusCircleIcon, mov as MovIcon, mp3 as Mp3Icon, mp4 as Mp4Icon, mpg as MpgIcon, MultiSelect, type MultiSelectOption, type MultiSelectProps, Overline, PDF, PNG, PPT, PSD, PackageIcon, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaperPlane, PaperPlaneTilt, Paperclip, pdf as PdfIcon, PencilSimple, PlugsRegular, Plus, png as PngIcon, Popover, PopoverContent, PopoverTrigger, ppt as PptIcon, psd as PsdIcon, RadioGroup, RadioGroupItem, Rar, rar as RarIcon, RecordIcon, SVG, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShieldTickIcon, ShoppingBagOpenIcon, ShoppingCartIcon, SidebarSimple, SignOut, Sketch, sketch as SketchIcon, Slider, Storefront, svg as SvgIcon, Switch, TIFF, TXT, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Text, TextIcon, Textarea, type TextareaProps, Ticket, tiff as TiffIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Trash, txt as TxtIcon, Typography, type TypographyProps, UserCircle, UserIcon, Users, VideoCamera, WAV, WEBP, WarningOctagon, WarningTriangle, wav as WavIcon, Waveform, webp as WebpIcon, WhatsAppLogo, WrenchIcon, XIcon, XLS, xls as XlsIcon, Zip, zip as ZipIcon, alertVariants, badgeVariants, buttonVariants, cn, luaniversePreset as default, getAccessibilityProps, getDefaultAriaLabel, iconButtonVariants, luaniversePreset, luaniverseSafelist };
|
package/dist/index.d.ts
CHANGED
|
@@ -64,6 +64,18 @@ interface InputProps extends React.ComponentProps<'input'> {
|
|
|
64
64
|
}
|
|
65
65
|
declare const Input: React.ForwardRefExoticComponent<Omit<InputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
66
66
|
|
|
67
|
+
declare const alertVariants: (props?: ({
|
|
68
|
+
variant?: "default" | "success" | "danger" | "warning" | null | undefined;
|
|
69
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
70
|
+
|
|
71
|
+
interface AlertProps extends React.ComponentProps<'div'>, VariantProps<typeof alertVariants> {
|
|
72
|
+
icon?: React.ReactNode;
|
|
73
|
+
close?: React.ReactNode;
|
|
74
|
+
}
|
|
75
|
+
declare const Alert: React.ForwardRefExoticComponent<Omit<AlertProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
76
|
+
declare const AlertTitle: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, "ref"> & React.RefAttributes<HTMLHeadingElement>>;
|
|
77
|
+
declare const AlertDescription: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
78
|
+
|
|
67
79
|
declare const badgeVariants: (props?: ({
|
|
68
80
|
variant?: "default" | "primary" | "outline" | "secondary" | "destructive" | "success" | "warning" | null | undefined;
|
|
69
81
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -172,7 +184,7 @@ declare const Sheet: React.FC<Dialog$1.DialogProps>;
|
|
|
172
184
|
declare const SheetTrigger: React.ForwardRefExoticComponent<Dialog$1.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
173
185
|
declare const SheetClose: React.ForwardRefExoticComponent<Dialog$1.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
|
174
186
|
declare const sheetVariants: (props?: ({
|
|
175
|
-
side?: "
|
|
187
|
+
side?: "bottom" | "left" | "right" | "top" | null | undefined;
|
|
176
188
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
177
189
|
interface SheetContentProps extends React.ComponentPropsWithoutRef<typeof Dialog$1.Content>, VariantProps<typeof sheetVariants> {
|
|
178
190
|
showClose?: boolean;
|
|
@@ -1254,6 +1266,42 @@ declare const MultiSelect: React.ForwardRefExoticComponent<MultiSelectProps & Re
|
|
|
1254
1266
|
|
|
1255
1267
|
declare const Checkbox: React.ForwardRefExoticComponent<Omit<Checkbox$1.CheckboxProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
1256
1268
|
|
|
1269
|
+
declare const Command: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1270
|
+
declare const CommandInput: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
|
1271
|
+
declare const CommandList: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1272
|
+
declare const CommandEmpty: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1273
|
+
declare const CommandGroup: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1274
|
+
declare const CommandSeparator: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1275
|
+
interface CommandItemProps extends Omit<React.ComponentProps<'div'>, 'onClick' | 'onSelect'> {
|
|
1276
|
+
onSelect?: (value: string) => void;
|
|
1277
|
+
value?: string;
|
|
1278
|
+
}
|
|
1279
|
+
declare const CommandItem: React.ForwardRefExoticComponent<Omit<CommandItemProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
1280
|
+
declare const CommandShortcut: {
|
|
1281
|
+
({ className, ...props }: React.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
1282
|
+
displayName: string;
|
|
1283
|
+
};
|
|
1284
|
+
|
|
1285
|
+
interface ComboboxOption {
|
|
1286
|
+
value: string;
|
|
1287
|
+
label: string;
|
|
1288
|
+
disabled?: boolean;
|
|
1289
|
+
}
|
|
1290
|
+
interface ComboboxProps {
|
|
1291
|
+
options: ComboboxOption[];
|
|
1292
|
+
value?: string;
|
|
1293
|
+
onValueChange?: (value: string) => void;
|
|
1294
|
+
placeholder?: string;
|
|
1295
|
+
searchPlaceholder?: string;
|
|
1296
|
+
emptyText?: string;
|
|
1297
|
+
disabled?: boolean;
|
|
1298
|
+
className?: string;
|
|
1299
|
+
triggerClassName?: string;
|
|
1300
|
+
contentClassName?: string;
|
|
1301
|
+
'aria-label'?: string;
|
|
1302
|
+
}
|
|
1303
|
+
declare const Combobox: React.ForwardRefExoticComponent<ComboboxProps & React.RefAttributes<HTMLButtonElement>>;
|
|
1304
|
+
|
|
1257
1305
|
declare const Slider: React.ForwardRefExoticComponent<Omit<Slider$1.SliderProps & React.RefAttributes<HTMLSpanElement>, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
1258
1306
|
|
|
1259
1307
|
declare function CalendarDayButton({ className, day, modifiers, ...props }: React.ComponentProps<typeof DayButton>): react_jsx_runtime.JSX.Element;
|
|
@@ -1277,4 +1325,4 @@ declare const luaniversePreset: tailwindcss.Config;
|
|
|
1277
1325
|
*/
|
|
1278
1326
|
declare const luaniverseSafelist: string[];
|
|
1279
1327
|
|
|
1280
|
-
export { AEP, AI, AVI, aep as AepIcon, ai as AiIcon, ArrowClockwiseIcon, ArrowLeft, ArrowRight, ArrowSquareOut, ArrowUp, ArrowsClockwiseIcon, avi as AviIcon, Badge, type BadgeProps, Blend, blend as BlendIcon, BooksIcon, Button, type ButtonProps, C4D, c4d as C4dIcon, CDR, CSS, CSV, Calendar, CalendarDayButton, Camera, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDown, CaretRight, CaretUpIcon, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, cdr as CdrIcon, ChartBar, Chat, ChatsCircle, Check, CheckSquareIcon, Checkbox, Circle, ClipboardTextIcon, Clock, CopySimpleIcon, CreditCard, css as CssIcon, csv as CsvIcon, CurrencyCircleDollar, DMG, DOC, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, dmg as DmgIcon, doc as DocIcon, DotsSixVerticalIcon, DotsThree, DotsThreeVertical, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EXE, exe as ExeIcon, FacebookLogo, Fig, fig as FigIcon, FloppyDiskIcon, FolderIcon, FolderSimpleLockIcon, GIF, Gear, GearSix, gif as GifIcon, GitCommit, HTML, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, html as HtmlIcon, ICO, ico as IcoIcon, IconButton, type IconButtonProps, type IconProps, ImageIcon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, InstagramLogo, JPEG, JPG, JS, JSON, Java, java as JavaIcon, jpeg as JpegIcon, jpg as JpgIcon, js as JsIcon, json as JsonIcon, KeyIcon, Label, Link, LinkIcon, type LinkProps, LinkSimple, LockSimple, Logo, LogoSpinner, MOV, MP3, MP4, MPG, MagnifyingGlass, MapPin, Microphone, Minus, MinusCircleIcon, mov as MovIcon, mp3 as Mp3Icon, mp4 as Mp4Icon, mpg as MpgIcon, MultiSelect, type MultiSelectOption, type MultiSelectProps, Overline, PDF, PNG, PPT, PSD, PackageIcon, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaperPlane, PaperPlaneTilt, Paperclip, pdf as PdfIcon, PencilSimple, PlugsRegular, Plus, png as PngIcon, Popover, PopoverContent, PopoverTrigger, ppt as PptIcon, psd as PsdIcon, RadioGroup, RadioGroupItem, Rar, rar as RarIcon, RecordIcon, SVG, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShieldTickIcon, ShoppingBagOpenIcon, ShoppingCartIcon, SidebarSimple, SignOut, Sketch, sketch as SketchIcon, Slider, Storefront, svg as SvgIcon, Switch, TIFF, TXT, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Text, TextIcon, Textarea, type TextareaProps, Ticket, tiff as TiffIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Trash, txt as TxtIcon, Typography, type TypographyProps, UserCircle, UserIcon, Users, VideoCamera, WAV, WEBP, WarningOctagon, WarningTriangle, wav as WavIcon, Waveform, webp as WebpIcon, WhatsAppLogo, WrenchIcon, XIcon, XLS, xls as XlsIcon, Zip, zip as ZipIcon, badgeVariants, buttonVariants, cn, luaniversePreset as default, getAccessibilityProps, getDefaultAriaLabel, iconButtonVariants, luaniversePreset, luaniverseSafelist };
|
|
1328
|
+
export { AEP, AI, AVI, aep as AepIcon, ai as AiIcon, Alert, AlertDescription, type AlertProps, AlertTitle, ArrowClockwiseIcon, ArrowLeft, ArrowRight, ArrowSquareOut, ArrowUp, ArrowsClockwiseIcon, avi as AviIcon, Badge, type BadgeProps, Blend, blend as BlendIcon, BooksIcon, Button, type ButtonProps, C4D, c4d as C4dIcon, CDR, CSS, CSV, Calendar, CalendarDayButton, Camera, Caption, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDown, CaretRight, CaretUpIcon, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, cdr as CdrIcon, ChartBar, Chat, ChatsCircle, Check, CheckSquareIcon, Checkbox, Circle, ClipboardTextIcon, Clock, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, CopySimpleIcon, CreditCard, css as CssIcon, csv as CsvIcon, CurrencyCircleDollar, DMG, DOC, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, dmg as DmgIcon, doc as DocIcon, DotsSixVerticalIcon, DotsThree, DotsThreeVertical, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EXE, exe as ExeIcon, FacebookLogo, Fig, fig as FigIcon, FloppyDiskIcon, FolderIcon, FolderSimpleLockIcon, GIF, Gear, GearSix, gif as GifIcon, GitCommit, HTML, Heading1, Heading2, Heading3, Heading4, Heading5, Heading6, Headset, html as HtmlIcon, ICO, ico as IcoIcon, IconButton, type IconButtonProps, type IconProps, ImageIcon, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, InstagramLogo, JPEG, JPG, JS, JSON, Java, java as JavaIcon, jpeg as JpegIcon, jpg as JpgIcon, js as JsIcon, json as JsonIcon, KeyIcon, Label, Link, LinkIcon, type LinkProps, LinkSimple, LockSimple, Logo, LogoSpinner, MOV, MP3, MP4, MPG, MagnifyingGlass, MapPin, Microphone, Minus, MinusCircleIcon, mov as MovIcon, mp3 as Mp3Icon, mp4 as Mp4Icon, mpg as MpgIcon, MultiSelect, type MultiSelectOption, type MultiSelectProps, Overline, PDF, PNG, PPT, PSD, PackageIcon, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PaperPlane, PaperPlaneTilt, Paperclip, pdf as PdfIcon, PencilSimple, PlugsRegular, Plus, png as PngIcon, Popover, PopoverContent, PopoverTrigger, ppt as PptIcon, psd as PsdIcon, RadioGroup, RadioGroupItem, Rar, rar as RarIcon, RecordIcon, SVG, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, ShieldTickIcon, ShoppingBagOpenIcon, ShoppingCartIcon, SidebarSimple, SignOut, Sketch, sketch as SketchIcon, Slider, Storefront, svg as SvgIcon, Switch, TIFF, TXT, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableWrapper, Tabs, TabsContent, TabsList, TabsTrigger, Tag, Text, TextIcon, Textarea, type TextareaProps, Ticket, tiff as TiffIcon, Tooltip, TooltipArrow, TooltipContent, TooltipProvider, TooltipTrigger, Trash, txt as TxtIcon, Typography, type TypographyProps, UserCircle, UserIcon, Users, VideoCamera, WAV, WEBP, WarningOctagon, WarningTriangle, wav as WavIcon, Waveform, webp as WebpIcon, WhatsAppLogo, WrenchIcon, XIcon, XLS, xls as XlsIcon, Zip, zip as ZipIcon, alertVariants, badgeVariants, buttonVariants, cn, luaniversePreset as default, getAccessibilityProps, getDefaultAriaLabel, iconButtonVariants, luaniversePreset, luaniverseSafelist };
|