nexoreui 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 +78 -19
- package/dist/index.d.ts +78 -19
- package/dist/index.js +205 -61
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +205 -61
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -4
- package/postinstall.js +50 -0
package/dist/index.d.mts
CHANGED
|
@@ -426,7 +426,7 @@ interface AccordionItemData {
|
|
|
426
426
|
title: React$1.ReactNode;
|
|
427
427
|
content: React$1.ReactNode;
|
|
428
428
|
}
|
|
429
|
-
interface AccordionProps {
|
|
429
|
+
interface AccordionProps$1 {
|
|
430
430
|
/**
|
|
431
431
|
* The array of accordion items
|
|
432
432
|
*/
|
|
@@ -451,7 +451,7 @@ interface AccordionProps {
|
|
|
451
451
|
*/
|
|
452
452
|
collapsible?: boolean;
|
|
453
453
|
}
|
|
454
|
-
declare function Accordion({ items, type, variant, className, collapsible, }: AccordionProps): react_jsx_runtime.JSX.Element;
|
|
454
|
+
declare function Accordion({ items, type, variant, className, collapsible, }: AccordionProps$1): react_jsx_runtime.JSX.Element;
|
|
455
455
|
|
|
456
456
|
declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
|
|
457
457
|
declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -899,11 +899,11 @@ declare function ShimmerBlock({ className }: {
|
|
|
899
899
|
|
|
900
900
|
interface GlassModalProps {
|
|
901
901
|
/** Trigger element that opens the modal */
|
|
902
|
-
trigger
|
|
902
|
+
trigger?: React$1.ReactNode;
|
|
903
903
|
/** Modal title */
|
|
904
|
-
title
|
|
904
|
+
title?: React$1.ReactNode;
|
|
905
905
|
/** Optional modal description */
|
|
906
|
-
description?:
|
|
906
|
+
description?: React$1.ReactNode;
|
|
907
907
|
/** Modal body content */
|
|
908
908
|
children?: React$1.ReactNode;
|
|
909
909
|
/** Control open state externally */
|
|
@@ -914,13 +914,19 @@ interface GlassModalProps {
|
|
|
914
914
|
declare function GlassModal({ trigger, title, description, children, open, onOpenChange }: GlassModalProps): react_jsx_runtime.JSX.Element;
|
|
915
915
|
interface AlertModalProps {
|
|
916
916
|
/** Trigger element that opens the modal */
|
|
917
|
-
trigger
|
|
917
|
+
trigger?: React$1.ReactNode;
|
|
918
918
|
/** Modal title */
|
|
919
|
-
title
|
|
919
|
+
title?: string;
|
|
920
920
|
/** Optional modal description */
|
|
921
921
|
description?: string;
|
|
922
922
|
/** Callback when user confirms the action */
|
|
923
923
|
onConfirm?: () => void;
|
|
924
|
+
/** Callback when user cancels the action */
|
|
925
|
+
onCancel?: () => void;
|
|
926
|
+
/** Confirm button text */
|
|
927
|
+
confirmText?: string;
|
|
928
|
+
/** Cancel button text */
|
|
929
|
+
cancelText?: string;
|
|
924
930
|
/** Modal body content */
|
|
925
931
|
children?: React$1.ReactNode;
|
|
926
932
|
/** Control open state externally */
|
|
@@ -928,12 +934,12 @@ interface AlertModalProps {
|
|
|
928
934
|
/** Callback when open state changes */
|
|
929
935
|
onOpenChange?: (open: boolean) => void;
|
|
930
936
|
}
|
|
931
|
-
declare function AlertModal({ trigger, title, description, onConfirm, children, open, onOpenChange }: AlertModalProps): react_jsx_runtime.JSX.Element;
|
|
937
|
+
declare function AlertModal({ trigger, title, description, onConfirm, onCancel, confirmText, cancelText, children, open, onOpenChange }: AlertModalProps): react_jsx_runtime.JSX.Element;
|
|
932
938
|
interface SuccessModalProps {
|
|
933
939
|
/** Trigger element */
|
|
934
|
-
trigger
|
|
940
|
+
trigger?: React$1.ReactNode;
|
|
935
941
|
/** Modal title */
|
|
936
|
-
title
|
|
942
|
+
title?: string;
|
|
937
943
|
/** Optional description */
|
|
938
944
|
description?: string;
|
|
939
945
|
/** Modal body content */
|
|
@@ -942,8 +948,12 @@ interface SuccessModalProps {
|
|
|
942
948
|
open?: boolean;
|
|
943
949
|
/** Callback when open state changes */
|
|
944
950
|
onOpenChange?: (open: boolean) => void;
|
|
951
|
+
/** Confirm button text */
|
|
952
|
+
confirmText?: string;
|
|
953
|
+
/** Callback when user confirms */
|
|
954
|
+
onConfirm?: () => void;
|
|
945
955
|
}
|
|
946
|
-
declare function SuccessModal({ trigger, title, description, children, open, onOpenChange }: SuccessModalProps): react_jsx_runtime.JSX.Element;
|
|
956
|
+
declare function SuccessModal({ trigger, title, description, children, open, onOpenChange, confirmText, onConfirm }: SuccessModalProps): react_jsx_runtime.JSX.Element;
|
|
947
957
|
interface CommandPaletteModalProps {
|
|
948
958
|
/** Trigger element */
|
|
949
959
|
trigger: React$1.ReactNode;
|
|
@@ -1350,12 +1360,59 @@ declare const FeedLayout: () => react_jsx_runtime.JSX.Element;
|
|
|
1350
1360
|
declare const DocumentationLayout: () => react_jsx_runtime.JSX.Element;
|
|
1351
1361
|
declare const HeaderFooterLayout: () => react_jsx_runtime.JSX.Element;
|
|
1352
1362
|
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1363
|
+
interface AccordionProps {
|
|
1364
|
+
title?: React$1.ReactNode;
|
|
1365
|
+
children?: React$1.ReactNode;
|
|
1366
|
+
defaultOpen?: boolean;
|
|
1367
|
+
className?: string;
|
|
1368
|
+
}
|
|
1369
|
+
declare const SimpleAccordion: ({ title, children, defaultOpen, className }: AccordionProps) => react_jsx_runtime.JSX.Element;
|
|
1370
|
+
declare const PlusAccordion: ({ title, children, defaultOpen, className }: AccordionProps) => react_jsx_runtime.JSX.Element;
|
|
1371
|
+
declare const NeonAccordion: ({ title, children, defaultOpen, className }: AccordionProps) => react_jsx_runtime.JSX.Element;
|
|
1372
|
+
interface BasicModalProps {
|
|
1373
|
+
isOpen?: boolean;
|
|
1374
|
+
onOpenChange?: (open: boolean) => void;
|
|
1375
|
+
trigger?: React$1.ReactNode;
|
|
1376
|
+
title?: React$1.ReactNode;
|
|
1377
|
+
description?: React$1.ReactNode;
|
|
1378
|
+
children?: React$1.ReactNode;
|
|
1379
|
+
confirmText?: string;
|
|
1380
|
+
cancelText?: string;
|
|
1381
|
+
onConfirm?: () => void;
|
|
1382
|
+
onCancel?: () => void;
|
|
1383
|
+
className?: string;
|
|
1384
|
+
}
|
|
1385
|
+
declare const BasicModal: ({ isOpen: externalOpen, onOpenChange, trigger, title, description, children, confirmText, cancelText, onConfirm, onCancel, className }: BasicModalProps) => react_jsx_runtime.JSX.Element;
|
|
1386
|
+
interface InteractiveGlassModalProps {
|
|
1387
|
+
isOpen?: boolean;
|
|
1388
|
+
onOpenChange?: (open: boolean) => void;
|
|
1389
|
+
trigger?: React$1.ReactNode;
|
|
1390
|
+
icon?: React$1.ReactNode;
|
|
1391
|
+
title?: React$1.ReactNode;
|
|
1392
|
+
description?: React$1.ReactNode;
|
|
1393
|
+
children?: React$1.ReactNode;
|
|
1394
|
+
confirmText?: string;
|
|
1395
|
+
cancelText?: string;
|
|
1396
|
+
onConfirm?: () => void;
|
|
1397
|
+
onCancel?: () => void;
|
|
1398
|
+
className?: string;
|
|
1399
|
+
}
|
|
1400
|
+
declare const InteractiveGlassModal: ({ isOpen: externalOpen, onOpenChange, trigger, icon, title, description, children, confirmText, cancelText, onConfirm, onCancel, className }: InteractiveGlassModalProps) => react_jsx_runtime.JSX.Element;
|
|
1401
|
+
interface DangerModalProps {
|
|
1402
|
+
isOpen?: boolean;
|
|
1403
|
+
onOpenChange?: (open: boolean) => void;
|
|
1404
|
+
trigger?: React$1.ReactNode;
|
|
1405
|
+
icon?: React$1.ReactNode;
|
|
1406
|
+
title?: React$1.ReactNode;
|
|
1407
|
+
description?: React$1.ReactNode;
|
|
1408
|
+
children?: React$1.ReactNode;
|
|
1409
|
+
confirmText?: string;
|
|
1410
|
+
cancelText?: string;
|
|
1411
|
+
onConfirm?: () => void;
|
|
1412
|
+
onCancel?: () => void;
|
|
1413
|
+
className?: string;
|
|
1414
|
+
}
|
|
1415
|
+
declare const DangerModal: ({ isOpen: externalOpen, onOpenChange, trigger, icon, title, description, children, confirmText, cancelText, onConfirm, onCancel, className }: DangerModalProps) => react_jsx_runtime.JSX.Element;
|
|
1359
1416
|
declare const SimpleCheckbox: () => react_jsx_runtime.JSX.Element;
|
|
1360
1417
|
declare const InteractiveCardCheckbox: ({ title, description, checked: externalChecked, onCheckedChange, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1361
1418
|
declare const SimpleSwitch: () => react_jsx_runtime.JSX.Element;
|
|
@@ -1758,7 +1815,9 @@ declare function MusicPlayer({ title, artist, album, className }: {
|
|
|
1758
1815
|
album?: string;
|
|
1759
1816
|
className?: string;
|
|
1760
1817
|
}): react_jsx_runtime.JSX.Element;
|
|
1761
|
-
declare function ImageCompare({ leftLabel, rightLabel, className }: {
|
|
1818
|
+
declare function ImageCompare({ leftImage, rightImage, leftLabel, rightLabel, className }: {
|
|
1819
|
+
leftImage?: string;
|
|
1820
|
+
rightImage?: string;
|
|
1762
1821
|
leftLabel?: string;
|
|
1763
1822
|
rightLabel?: string;
|
|
1764
1823
|
className?: string;
|
|
@@ -2075,4 +2134,4 @@ declare function CopyButton({ value, className, ...props }: CopyButtonProps): re
|
|
|
2075
2134
|
|
|
2076
2135
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2077
2136
|
|
|
2078
|
-
export { AIFeatureCard, AIPromptInput, Accordion, AccordionContent, AccordionItem, type AccordionItemData, type AccordionProps, AccordionRoot, AccordionTrigger, ActionToast, ActivityFeed, ActivityHeatmap, ActivityItem, AddToCartBar, AdvancedSearchForm, Alert, AlertDescription, AlertModal, type AlertModalProps, type AlertProps, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AnimatedBorderAvatar, AnimatedGradientBorder, type AnimatedGradientBorderProps, AnimatedGridBackground, type AnimatedGridBackgroundProps, AnimatedHeroText, AnimatedLabelInput, AnimatedList, type AnimatedListProps, AppTopbar, AreaChartSimple, ArticleCard, AudioWaveform, AuthenticationLayout, Avatar, AvatarFallback, AvatarGroup, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, BannerAlert, BarChartCard, BarChartSimple, BarLoader, BasicModal, BatteryLoader, BentoCard, type BentoCardProps, BentoGrid, type BentoGridProps, BentoGridVisual, BlurFade, type BlurFadeProps, BlurText, BorderBeamButton, BottomNav, BottomSheetSimulated, type BottomSheetSimulatedProps, Bounce, BouncingBalls, BoxLoader, BoxReveal, type BoxRevealProps, Breadcrumb, BreadcrumbTrail, Button, type ButtonProps, CTASectionX, Card, CardCheckbox, type CardCheckboxProps, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, CartDrawerItem, CartItem, CategoryCard, CenteredNavbar, ChatBubbleAI, ChatBubbleUser, ChatHistorySidebar, ChatInput, ChatLayoutVisual, ChatMessage, Checkbox, CheckoutSummary, CircleLoader, CircularCheckbox, CircularProgressCard, ClockLoader, CodeBlock, CodeSnippet, ColorPickerInput, ColorSelector, ColorSwatch, CommandPalette, type CommandPaletteItem, CommandPaletteModal, type CommandPaletteModalProps, type CommandPaletteProps, CommandPaletteVisual, CommentThread, CompactDataList, ComparisonBar, ComparisonTableMock, ConfettiSuccess, ContactFormBlock, ContactFormPro, ContactFormX, ContactList, ContextActionBar, ContextMenu, type ContextMenuItem, type ContextMenuProps, CookieAlert, CoolMode, type CoolModeProps, CopyButton, type CopyButtonProps, CopyTextButton, CouponCard, CreditCardVisual, CtaBlock, CurrencyInput, CyberAlert, CyberpunkButton, DangerModal, DashboardGridLayout, DashboardShell, DataGridTable, DataTablePro, DestructiveGlowButton, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleAlert, Divider, type DividerProps, Dock, type DockProps, DocumentationLayout, DonutChart, DotBadge, DotsLoader, DottedAvatar, Drawer, type DrawerProps, DropdownMenuVisual, EmbedCard, EmptyStatePro, ErrorInput, EventCard, EventScheduleList, ExpandButton, FAQAccordionList, FadeIn, FaqAccordionX, FaqBlock, FeatureCard, FeatureGrid, FeatureGridX, FeatureShowcase, FeedLayout, FeedbackForm, FileDownloadList, FileDropzone, FileExplorerTable, FilePreviewCard, FileUploadForm, FilterBar, Flip, Float, FloatingActionForm, FloatingBadge, FloatingLabelInput, FloatingNavbar, FooterX, FunnelChart, GalleryGrid, GaugeMeter, GeneratedCodeBlock, GhostInput, GhostOutlineButton, GlassAlert, GlassAvatar, GlassBadge, GlassButton, GlassCard, GlassInput, GlassModal, type GlassModalProps, GlassNavbar, GlassmorphButton, GlitchText, type GlitchTextProps, GlowAvatar, GlowBadge, GlowButton, type GlowButtonProps, GlowCard, GlowCheckbox, GlowRingLoader, GlowSpotlightCard, type GlowSpotlightCardProps, GlowSwitch, GlowText, GradientAlert, GradientBadge, GradientButton, GradientCTABlock, GradientCard, GradientFocusInput, GradientInput, GradientMeshCard, GradientOutlineBadge, GradientRingAvatar, GradientText, HeaderFooterLayout, Heartbeat, HeartbeatLoader, HeatmapGrid, HeroSection, HeroSectionX, HexagonAvatar, HighlightText, type HighlightTextProps, HourglassLoader, HoverCard, HoverExpandAvatar, IconBadge, IconInputLeft, IconInputRight, IconSwitch, type IconSwitchProps, IconTopAlert, ImageCard, ImageCarousel, ImageCompare, ImageOverlayCard, InitialsAvatar, type InitialsAvatarProps, InitialsGradientAvatar, Input, type InputProps, InputWithLabelOverlay, InteractiveCard, InteractiveCardCheckbox, InteractiveGlassModal, InteractiveHoverButton, type InteractiveHoverButtonProps, InviteUsersForm, InvoiceCard, InvoiceTable, JobBoardList, KPIDashboard, KanbanBoard, KanbanBoardVisual, Kbd, LanguageSelector, LeaderboardTable, LeaderboardWidget, LeftBorderAlert, LineChartCard, LineScaleLoader, LoadingButton, LoginFormPro, LogoCloud, LogoCloudX, MagneticButton, Marquee, type MarqueeProps, MegaMenuVisual, MessageList, Meteors, type MeteorsProps, MetricCard, MetricGrid, MinimalAlert, MinimalBadge, MinimalDropInput, MobileDrawerNav, Modal, type ModalProps, ModelSelector, MorphButton, MorphingText, type MorphingTextProps, MultiStepProgress, MusicPlayer, NeonAccordion, NeonAlert, NeonButton, NeonGlowButton, NeonOutlineBadge, NeonSwitch, NeonText, type NeonTextProps, NeumorphicCard, NeumorphicInput, NewsletterBlock, NewsletterSignup, NotificationBadge, NotificationCard, NotificationCenter, NotificationList, NumberStepper, NumberTicker, type NumberTickerProps, OTPCodeInput, OTPInput, OfflineBanner, OnlineUsersList, OrderSummaryCard, OutlineAvatar, OutlineDotBadge, OutlineGlowBadge, OutlineGradientButton, OutlineText, Pagination, PaginationPro, PasswordInput, PasswordStrengthMeter, PaymentFormPro, PillInput, PlusAccordion, PolymorphAvatar, PremiumBadge, PricingCard, PricingCardBasic, PricingCardPro, PricingCardsX, PricingComparisonTable, PricingSlider, PricingTableAdvanced, PricingTableSimple, PricingToggle, ProductCard, ProductCardPro, ProductGallery, ProductInventoryTable, ProductReview, ProfileCard, ProfileCardFull, ProfileSettingsForm, Progress, ProgressBadge, ProgressCircle, type ProgressProps, ProgressRing, ProgressWidget, PromoCodeInput, PulsatingButton, type PulsatingButtonProps, PulseAnim, PulseAvatar, PulseBadge, PulseLoader, QuickActionsWidget, RadarChartMock, RadioCard, RainbowButton, type RainbowButtonProps, RangeSliderInput, RankingList, RateLimitAlert, RatingStars, ReactionBar, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevealText, type RevealTextProps, RevenueChartWidget, ReviewStars, RibbonBadge, RichTooltip, RingLoader, RippleButton, Rotate, ScaleIn, ScheduleTable, ScrollArea, type ScrollAreaProps, SearchCommandInput, SearchInput, SegmentedButton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, ServerStatusWidget, ShadowAvatar, ShadowText, ShareSheet, ShimmerBlock, ShimmerButton, ShinyButton, ShinyText, type ShinyTextProps, ShippingAddressForm, SidebarLayout, SidebarMenu, SimpleAccordion, SimpleCheckbox, SimpleFooter, SimpleNavbar, SimpleSelect, SimpleSwitch, SimpleTooltip, SizeSelector, Skeleton, SkeletonCard, SkeletonList, type SkeletonProps, SlideDown, SlideLeft, SlideRight, SlideUp, Slider, type SliderProps, SocialPost, SoftAlert, SoftBadge, SolidAlert, SparklineStat, SpecialPremiumCard, SpinnerLoader, SplitButton, SplitScreenLayout, SpotlightCard, type SpotlightCardProps, SquareAvatar, SquareSpinLoader, SquircleAvatar, StackAvatar, StaggerContainer, StaggerItem, StatCard, StatCardSimple, StatCounter, StatWidget, StatWidgetCard, StatusAvatar, type StatusAvatarProps, StatusButton, StatusRingBadge, StepIndicator, StepList, Steps, StorageWidget, SubscriptionCard, SubscriptionForm, SuccessInput, SuccessModal, type SuccessModalProps, SuggestionChips, Switch, TabMenu, Tabs, TabsContent, type TabsItem, TabsList, type TabsProps, TabsRoot, TabsTrigger, TagBadge, TagInput, TagLabel, TaskChecklist, TeamSectionX, TestimonialCard, TestimonialCardBasic, TestimonialCardV2, TestimonialCarousel, TestimonialSliderX, TextButton, TextLoader, TextShimmer, type TextShimmerProps, TextareaAutosize, ThickSwitch, ThinkingLoader, ThreeDButton, TiltCard, Timeline, TimelineVertical, ToastAlertWrapper, Toaster, ToggleGroupItemWrapper, ToggleGroupWrapper, ToggleInput, Tooltip, TooltipAvatar, TooltipContent, TooltipForm, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TransactionHistory, TreeNavigation, TrendStatCard, TrustBadge, TrustBanner, TypingAnimation, type TypingAnimationProps, UnderlineInput, UploadProgress, UserDirectoryTable, UserMenuDropdown, UserProfileCard, VideoModalVisual, VideoPlayer, VisualSelectCard, VoiceInputPulse, WaitlistForm, WeatherCard, WifiLoader, WiggleHover, WordFadeReveal, type WordFadeRevealProps, WordPullUp, type WordPullUpProps, badgeVariants, buttonVariants, cn };
|
|
2137
|
+
export { AIFeatureCard, AIPromptInput, Accordion, AccordionContent, AccordionItem, type AccordionItemData, type AccordionProps$1 as AccordionProps, AccordionRoot, AccordionTrigger, ActionToast, ActivityFeed, ActivityHeatmap, ActivityItem, AddToCartBar, AdvancedSearchForm, Alert, AlertDescription, AlertModal, type AlertModalProps, type AlertProps, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AnimatedBorderAvatar, AnimatedGradientBorder, type AnimatedGradientBorderProps, AnimatedGridBackground, type AnimatedGridBackgroundProps, AnimatedHeroText, AnimatedLabelInput, AnimatedList, type AnimatedListProps, AppTopbar, AreaChartSimple, ArticleCard, AudioWaveform, AuthenticationLayout, Avatar, AvatarFallback, AvatarGroup, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, BannerAlert, BarChartCard, BarChartSimple, BarLoader, BasicModal, type BasicModalProps, BatteryLoader, BentoCard, type BentoCardProps, BentoGrid, type BentoGridProps, BentoGridVisual, BlurFade, type BlurFadeProps, BlurText, BorderBeamButton, BottomNav, BottomSheetSimulated, type BottomSheetSimulatedProps, Bounce, BouncingBalls, BoxLoader, BoxReveal, type BoxRevealProps, Breadcrumb, BreadcrumbTrail, Button, type ButtonProps, CTASectionX, Card, CardCheckbox, type CardCheckboxProps, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, CartDrawerItem, CartItem, CategoryCard, CenteredNavbar, ChatBubbleAI, ChatBubbleUser, ChatHistorySidebar, ChatInput, ChatLayoutVisual, ChatMessage, Checkbox, CheckoutSummary, CircleLoader, CircularCheckbox, CircularProgressCard, ClockLoader, CodeBlock, CodeSnippet, ColorPickerInput, ColorSelector, ColorSwatch, CommandPalette, type CommandPaletteItem, CommandPaletteModal, type CommandPaletteModalProps, type CommandPaletteProps, CommandPaletteVisual, CommentThread, CompactDataList, ComparisonBar, ComparisonTableMock, ConfettiSuccess, ContactFormBlock, ContactFormPro, ContactFormX, ContactList, ContextActionBar, ContextMenu, type ContextMenuItem, type ContextMenuProps, CookieAlert, CoolMode, type CoolModeProps, CopyButton, type CopyButtonProps, CopyTextButton, CouponCard, CreditCardVisual, CtaBlock, CurrencyInput, CyberAlert, CyberpunkButton, DangerModal, type DangerModalProps, DashboardGridLayout, DashboardShell, DataGridTable, DataTablePro, DestructiveGlowButton, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleAlert, Divider, type DividerProps, Dock, type DockProps, DocumentationLayout, DonutChart, DotBadge, DotsLoader, DottedAvatar, Drawer, type DrawerProps, DropdownMenuVisual, EmbedCard, EmptyStatePro, ErrorInput, EventCard, EventScheduleList, ExpandButton, FAQAccordionList, FadeIn, FaqAccordionX, FaqBlock, FeatureCard, FeatureGrid, FeatureGridX, FeatureShowcase, FeedLayout, FeedbackForm, FileDownloadList, FileDropzone, FileExplorerTable, FilePreviewCard, FileUploadForm, FilterBar, Flip, Float, FloatingActionForm, FloatingBadge, FloatingLabelInput, FloatingNavbar, FooterX, FunnelChart, GalleryGrid, GaugeMeter, GeneratedCodeBlock, GhostInput, GhostOutlineButton, GlassAlert, GlassAvatar, GlassBadge, GlassButton, GlassCard, GlassInput, GlassModal, type GlassModalProps, GlassNavbar, GlassmorphButton, GlitchText, type GlitchTextProps, GlowAvatar, GlowBadge, GlowButton, type GlowButtonProps, GlowCard, GlowCheckbox, GlowRingLoader, GlowSpotlightCard, type GlowSpotlightCardProps, GlowSwitch, GlowText, GradientAlert, GradientBadge, GradientButton, GradientCTABlock, GradientCard, GradientFocusInput, GradientInput, GradientMeshCard, GradientOutlineBadge, GradientRingAvatar, GradientText, HeaderFooterLayout, Heartbeat, HeartbeatLoader, HeatmapGrid, HeroSection, HeroSectionX, HexagonAvatar, HighlightText, type HighlightTextProps, HourglassLoader, HoverCard, HoverExpandAvatar, IconBadge, IconInputLeft, IconInputRight, IconSwitch, type IconSwitchProps, IconTopAlert, ImageCard, ImageCarousel, ImageCompare, ImageOverlayCard, InitialsAvatar, type InitialsAvatarProps, InitialsGradientAvatar, Input, type InputProps, InputWithLabelOverlay, InteractiveCard, InteractiveCardCheckbox, InteractiveGlassModal, type InteractiveGlassModalProps, InteractiveHoverButton, type InteractiveHoverButtonProps, InviteUsersForm, InvoiceCard, InvoiceTable, JobBoardList, KPIDashboard, KanbanBoard, KanbanBoardVisual, Kbd, LanguageSelector, LeaderboardTable, LeaderboardWidget, LeftBorderAlert, LineChartCard, LineScaleLoader, LoadingButton, LoginFormPro, LogoCloud, LogoCloudX, MagneticButton, Marquee, type MarqueeProps, MegaMenuVisual, MessageList, Meteors, type MeteorsProps, MetricCard, MetricGrid, MinimalAlert, MinimalBadge, MinimalDropInput, MobileDrawerNav, Modal, type ModalProps, ModelSelector, MorphButton, MorphingText, type MorphingTextProps, MultiStepProgress, MusicPlayer, NeonAccordion, NeonAlert, NeonButton, NeonGlowButton, NeonOutlineBadge, NeonSwitch, NeonText, type NeonTextProps, NeumorphicCard, NeumorphicInput, NewsletterBlock, NewsletterSignup, NotificationBadge, NotificationCard, NotificationCenter, NotificationList, NumberStepper, NumberTicker, type NumberTickerProps, OTPCodeInput, OTPInput, OfflineBanner, OnlineUsersList, OrderSummaryCard, OutlineAvatar, OutlineDotBadge, OutlineGlowBadge, OutlineGradientButton, OutlineText, Pagination, PaginationPro, PasswordInput, PasswordStrengthMeter, PaymentFormPro, PillInput, PlusAccordion, PolymorphAvatar, PremiumBadge, PricingCard, PricingCardBasic, PricingCardPro, PricingCardsX, PricingComparisonTable, PricingSlider, PricingTableAdvanced, PricingTableSimple, PricingToggle, ProductCard, ProductCardPro, ProductGallery, ProductInventoryTable, ProductReview, ProfileCard, ProfileCardFull, ProfileSettingsForm, Progress, ProgressBadge, ProgressCircle, type ProgressProps, ProgressRing, ProgressWidget, PromoCodeInput, PulsatingButton, type PulsatingButtonProps, PulseAnim, PulseAvatar, PulseBadge, PulseLoader, QuickActionsWidget, RadarChartMock, RadioCard, RainbowButton, type RainbowButtonProps, RangeSliderInput, RankingList, RateLimitAlert, RatingStars, ReactionBar, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevealText, type RevealTextProps, RevenueChartWidget, ReviewStars, RibbonBadge, RichTooltip, RingLoader, RippleButton, Rotate, ScaleIn, ScheduleTable, ScrollArea, type ScrollAreaProps, SearchCommandInput, SearchInput, SegmentedButton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, ServerStatusWidget, ShadowAvatar, ShadowText, ShareSheet, ShimmerBlock, ShimmerButton, ShinyButton, ShinyText, type ShinyTextProps, ShippingAddressForm, SidebarLayout, SidebarMenu, SimpleAccordion, SimpleCheckbox, SimpleFooter, SimpleNavbar, SimpleSelect, SimpleSwitch, SimpleTooltip, SizeSelector, Skeleton, SkeletonCard, SkeletonList, type SkeletonProps, SlideDown, SlideLeft, SlideRight, SlideUp, Slider, type SliderProps, SocialPost, SoftAlert, SoftBadge, SolidAlert, SparklineStat, SpecialPremiumCard, SpinnerLoader, SplitButton, SplitScreenLayout, SpotlightCard, type SpotlightCardProps, SquareAvatar, SquareSpinLoader, SquircleAvatar, StackAvatar, StaggerContainer, StaggerItem, StatCard, StatCardSimple, StatCounter, StatWidget, StatWidgetCard, StatusAvatar, type StatusAvatarProps, StatusButton, StatusRingBadge, StepIndicator, StepList, Steps, StorageWidget, SubscriptionCard, SubscriptionForm, SuccessInput, SuccessModal, type SuccessModalProps, SuggestionChips, Switch, TabMenu, Tabs, TabsContent, type TabsItem, TabsList, type TabsProps, TabsRoot, TabsTrigger, TagBadge, TagInput, TagLabel, TaskChecklist, TeamSectionX, TestimonialCard, TestimonialCardBasic, TestimonialCardV2, TestimonialCarousel, TestimonialSliderX, TextButton, TextLoader, TextShimmer, type TextShimmerProps, TextareaAutosize, ThickSwitch, ThinkingLoader, ThreeDButton, TiltCard, Timeline, TimelineVertical, ToastAlertWrapper, Toaster, ToggleGroupItemWrapper, ToggleGroupWrapper, ToggleInput, Tooltip, TooltipAvatar, TooltipContent, TooltipForm, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TransactionHistory, TreeNavigation, TrendStatCard, TrustBadge, TrustBanner, TypingAnimation, type TypingAnimationProps, UnderlineInput, UploadProgress, UserDirectoryTable, UserMenuDropdown, UserProfileCard, VideoModalVisual, VideoPlayer, VisualSelectCard, VoiceInputPulse, WaitlistForm, WeatherCard, WifiLoader, WiggleHover, WordFadeReveal, type WordFadeRevealProps, WordPullUp, type WordPullUpProps, badgeVariants, buttonVariants, cn };
|
package/dist/index.d.ts
CHANGED
|
@@ -426,7 +426,7 @@ interface AccordionItemData {
|
|
|
426
426
|
title: React$1.ReactNode;
|
|
427
427
|
content: React$1.ReactNode;
|
|
428
428
|
}
|
|
429
|
-
interface AccordionProps {
|
|
429
|
+
interface AccordionProps$1 {
|
|
430
430
|
/**
|
|
431
431
|
* The array of accordion items
|
|
432
432
|
*/
|
|
@@ -451,7 +451,7 @@ interface AccordionProps {
|
|
|
451
451
|
*/
|
|
452
452
|
collapsible?: boolean;
|
|
453
453
|
}
|
|
454
|
-
declare function Accordion({ items, type, variant, className, collapsible, }: AccordionProps): react_jsx_runtime.JSX.Element;
|
|
454
|
+
declare function Accordion({ items, type, variant, className, collapsible, }: AccordionProps$1): react_jsx_runtime.JSX.Element;
|
|
455
455
|
|
|
456
456
|
declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
|
|
457
457
|
declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -899,11 +899,11 @@ declare function ShimmerBlock({ className }: {
|
|
|
899
899
|
|
|
900
900
|
interface GlassModalProps {
|
|
901
901
|
/** Trigger element that opens the modal */
|
|
902
|
-
trigger
|
|
902
|
+
trigger?: React$1.ReactNode;
|
|
903
903
|
/** Modal title */
|
|
904
|
-
title
|
|
904
|
+
title?: React$1.ReactNode;
|
|
905
905
|
/** Optional modal description */
|
|
906
|
-
description?:
|
|
906
|
+
description?: React$1.ReactNode;
|
|
907
907
|
/** Modal body content */
|
|
908
908
|
children?: React$1.ReactNode;
|
|
909
909
|
/** Control open state externally */
|
|
@@ -914,13 +914,19 @@ interface GlassModalProps {
|
|
|
914
914
|
declare function GlassModal({ trigger, title, description, children, open, onOpenChange }: GlassModalProps): react_jsx_runtime.JSX.Element;
|
|
915
915
|
interface AlertModalProps {
|
|
916
916
|
/** Trigger element that opens the modal */
|
|
917
|
-
trigger
|
|
917
|
+
trigger?: React$1.ReactNode;
|
|
918
918
|
/** Modal title */
|
|
919
|
-
title
|
|
919
|
+
title?: string;
|
|
920
920
|
/** Optional modal description */
|
|
921
921
|
description?: string;
|
|
922
922
|
/** Callback when user confirms the action */
|
|
923
923
|
onConfirm?: () => void;
|
|
924
|
+
/** Callback when user cancels the action */
|
|
925
|
+
onCancel?: () => void;
|
|
926
|
+
/** Confirm button text */
|
|
927
|
+
confirmText?: string;
|
|
928
|
+
/** Cancel button text */
|
|
929
|
+
cancelText?: string;
|
|
924
930
|
/** Modal body content */
|
|
925
931
|
children?: React$1.ReactNode;
|
|
926
932
|
/** Control open state externally */
|
|
@@ -928,12 +934,12 @@ interface AlertModalProps {
|
|
|
928
934
|
/** Callback when open state changes */
|
|
929
935
|
onOpenChange?: (open: boolean) => void;
|
|
930
936
|
}
|
|
931
|
-
declare function AlertModal({ trigger, title, description, onConfirm, children, open, onOpenChange }: AlertModalProps): react_jsx_runtime.JSX.Element;
|
|
937
|
+
declare function AlertModal({ trigger, title, description, onConfirm, onCancel, confirmText, cancelText, children, open, onOpenChange }: AlertModalProps): react_jsx_runtime.JSX.Element;
|
|
932
938
|
interface SuccessModalProps {
|
|
933
939
|
/** Trigger element */
|
|
934
|
-
trigger
|
|
940
|
+
trigger?: React$1.ReactNode;
|
|
935
941
|
/** Modal title */
|
|
936
|
-
title
|
|
942
|
+
title?: string;
|
|
937
943
|
/** Optional description */
|
|
938
944
|
description?: string;
|
|
939
945
|
/** Modal body content */
|
|
@@ -942,8 +948,12 @@ interface SuccessModalProps {
|
|
|
942
948
|
open?: boolean;
|
|
943
949
|
/** Callback when open state changes */
|
|
944
950
|
onOpenChange?: (open: boolean) => void;
|
|
951
|
+
/** Confirm button text */
|
|
952
|
+
confirmText?: string;
|
|
953
|
+
/** Callback when user confirms */
|
|
954
|
+
onConfirm?: () => void;
|
|
945
955
|
}
|
|
946
|
-
declare function SuccessModal({ trigger, title, description, children, open, onOpenChange }: SuccessModalProps): react_jsx_runtime.JSX.Element;
|
|
956
|
+
declare function SuccessModal({ trigger, title, description, children, open, onOpenChange, confirmText, onConfirm }: SuccessModalProps): react_jsx_runtime.JSX.Element;
|
|
947
957
|
interface CommandPaletteModalProps {
|
|
948
958
|
/** Trigger element */
|
|
949
959
|
trigger: React$1.ReactNode;
|
|
@@ -1350,12 +1360,59 @@ declare const FeedLayout: () => react_jsx_runtime.JSX.Element;
|
|
|
1350
1360
|
declare const DocumentationLayout: () => react_jsx_runtime.JSX.Element;
|
|
1351
1361
|
declare const HeaderFooterLayout: () => react_jsx_runtime.JSX.Element;
|
|
1352
1362
|
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1363
|
+
interface AccordionProps {
|
|
1364
|
+
title?: React$1.ReactNode;
|
|
1365
|
+
children?: React$1.ReactNode;
|
|
1366
|
+
defaultOpen?: boolean;
|
|
1367
|
+
className?: string;
|
|
1368
|
+
}
|
|
1369
|
+
declare const SimpleAccordion: ({ title, children, defaultOpen, className }: AccordionProps) => react_jsx_runtime.JSX.Element;
|
|
1370
|
+
declare const PlusAccordion: ({ title, children, defaultOpen, className }: AccordionProps) => react_jsx_runtime.JSX.Element;
|
|
1371
|
+
declare const NeonAccordion: ({ title, children, defaultOpen, className }: AccordionProps) => react_jsx_runtime.JSX.Element;
|
|
1372
|
+
interface BasicModalProps {
|
|
1373
|
+
isOpen?: boolean;
|
|
1374
|
+
onOpenChange?: (open: boolean) => void;
|
|
1375
|
+
trigger?: React$1.ReactNode;
|
|
1376
|
+
title?: React$1.ReactNode;
|
|
1377
|
+
description?: React$1.ReactNode;
|
|
1378
|
+
children?: React$1.ReactNode;
|
|
1379
|
+
confirmText?: string;
|
|
1380
|
+
cancelText?: string;
|
|
1381
|
+
onConfirm?: () => void;
|
|
1382
|
+
onCancel?: () => void;
|
|
1383
|
+
className?: string;
|
|
1384
|
+
}
|
|
1385
|
+
declare const BasicModal: ({ isOpen: externalOpen, onOpenChange, trigger, title, description, children, confirmText, cancelText, onConfirm, onCancel, className }: BasicModalProps) => react_jsx_runtime.JSX.Element;
|
|
1386
|
+
interface InteractiveGlassModalProps {
|
|
1387
|
+
isOpen?: boolean;
|
|
1388
|
+
onOpenChange?: (open: boolean) => void;
|
|
1389
|
+
trigger?: React$1.ReactNode;
|
|
1390
|
+
icon?: React$1.ReactNode;
|
|
1391
|
+
title?: React$1.ReactNode;
|
|
1392
|
+
description?: React$1.ReactNode;
|
|
1393
|
+
children?: React$1.ReactNode;
|
|
1394
|
+
confirmText?: string;
|
|
1395
|
+
cancelText?: string;
|
|
1396
|
+
onConfirm?: () => void;
|
|
1397
|
+
onCancel?: () => void;
|
|
1398
|
+
className?: string;
|
|
1399
|
+
}
|
|
1400
|
+
declare const InteractiveGlassModal: ({ isOpen: externalOpen, onOpenChange, trigger, icon, title, description, children, confirmText, cancelText, onConfirm, onCancel, className }: InteractiveGlassModalProps) => react_jsx_runtime.JSX.Element;
|
|
1401
|
+
interface DangerModalProps {
|
|
1402
|
+
isOpen?: boolean;
|
|
1403
|
+
onOpenChange?: (open: boolean) => void;
|
|
1404
|
+
trigger?: React$1.ReactNode;
|
|
1405
|
+
icon?: React$1.ReactNode;
|
|
1406
|
+
title?: React$1.ReactNode;
|
|
1407
|
+
description?: React$1.ReactNode;
|
|
1408
|
+
children?: React$1.ReactNode;
|
|
1409
|
+
confirmText?: string;
|
|
1410
|
+
cancelText?: string;
|
|
1411
|
+
onConfirm?: () => void;
|
|
1412
|
+
onCancel?: () => void;
|
|
1413
|
+
className?: string;
|
|
1414
|
+
}
|
|
1415
|
+
declare const DangerModal: ({ isOpen: externalOpen, onOpenChange, trigger, icon, title, description, children, confirmText, cancelText, onConfirm, onCancel, className }: DangerModalProps) => react_jsx_runtime.JSX.Element;
|
|
1359
1416
|
declare const SimpleCheckbox: () => react_jsx_runtime.JSX.Element;
|
|
1360
1417
|
declare const InteractiveCardCheckbox: ({ title, description, checked: externalChecked, onCheckedChange, ...props }: any) => react_jsx_runtime.JSX.Element;
|
|
1361
1418
|
declare const SimpleSwitch: () => react_jsx_runtime.JSX.Element;
|
|
@@ -1758,7 +1815,9 @@ declare function MusicPlayer({ title, artist, album, className }: {
|
|
|
1758
1815
|
album?: string;
|
|
1759
1816
|
className?: string;
|
|
1760
1817
|
}): react_jsx_runtime.JSX.Element;
|
|
1761
|
-
declare function ImageCompare({ leftLabel, rightLabel, className }: {
|
|
1818
|
+
declare function ImageCompare({ leftImage, rightImage, leftLabel, rightLabel, className }: {
|
|
1819
|
+
leftImage?: string;
|
|
1820
|
+
rightImage?: string;
|
|
1762
1821
|
leftLabel?: string;
|
|
1763
1822
|
rightLabel?: string;
|
|
1764
1823
|
className?: string;
|
|
@@ -2075,4 +2134,4 @@ declare function CopyButton({ value, className, ...props }: CopyButtonProps): re
|
|
|
2075
2134
|
|
|
2076
2135
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2077
2136
|
|
|
2078
|
-
export { AIFeatureCard, AIPromptInput, Accordion, AccordionContent, AccordionItem, type AccordionItemData, type AccordionProps, AccordionRoot, AccordionTrigger, ActionToast, ActivityFeed, ActivityHeatmap, ActivityItem, AddToCartBar, AdvancedSearchForm, Alert, AlertDescription, AlertModal, type AlertModalProps, type AlertProps, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AnimatedBorderAvatar, AnimatedGradientBorder, type AnimatedGradientBorderProps, AnimatedGridBackground, type AnimatedGridBackgroundProps, AnimatedHeroText, AnimatedLabelInput, AnimatedList, type AnimatedListProps, AppTopbar, AreaChartSimple, ArticleCard, AudioWaveform, AuthenticationLayout, Avatar, AvatarFallback, AvatarGroup, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, BannerAlert, BarChartCard, BarChartSimple, BarLoader, BasicModal, BatteryLoader, BentoCard, type BentoCardProps, BentoGrid, type BentoGridProps, BentoGridVisual, BlurFade, type BlurFadeProps, BlurText, BorderBeamButton, BottomNav, BottomSheetSimulated, type BottomSheetSimulatedProps, Bounce, BouncingBalls, BoxLoader, BoxReveal, type BoxRevealProps, Breadcrumb, BreadcrumbTrail, Button, type ButtonProps, CTASectionX, Card, CardCheckbox, type CardCheckboxProps, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, CartDrawerItem, CartItem, CategoryCard, CenteredNavbar, ChatBubbleAI, ChatBubbleUser, ChatHistorySidebar, ChatInput, ChatLayoutVisual, ChatMessage, Checkbox, CheckoutSummary, CircleLoader, CircularCheckbox, CircularProgressCard, ClockLoader, CodeBlock, CodeSnippet, ColorPickerInput, ColorSelector, ColorSwatch, CommandPalette, type CommandPaletteItem, CommandPaletteModal, type CommandPaletteModalProps, type CommandPaletteProps, CommandPaletteVisual, CommentThread, CompactDataList, ComparisonBar, ComparisonTableMock, ConfettiSuccess, ContactFormBlock, ContactFormPro, ContactFormX, ContactList, ContextActionBar, ContextMenu, type ContextMenuItem, type ContextMenuProps, CookieAlert, CoolMode, type CoolModeProps, CopyButton, type CopyButtonProps, CopyTextButton, CouponCard, CreditCardVisual, CtaBlock, CurrencyInput, CyberAlert, CyberpunkButton, DangerModal, DashboardGridLayout, DashboardShell, DataGridTable, DataTablePro, DestructiveGlowButton, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleAlert, Divider, type DividerProps, Dock, type DockProps, DocumentationLayout, DonutChart, DotBadge, DotsLoader, DottedAvatar, Drawer, type DrawerProps, DropdownMenuVisual, EmbedCard, EmptyStatePro, ErrorInput, EventCard, EventScheduleList, ExpandButton, FAQAccordionList, FadeIn, FaqAccordionX, FaqBlock, FeatureCard, FeatureGrid, FeatureGridX, FeatureShowcase, FeedLayout, FeedbackForm, FileDownloadList, FileDropzone, FileExplorerTable, FilePreviewCard, FileUploadForm, FilterBar, Flip, Float, FloatingActionForm, FloatingBadge, FloatingLabelInput, FloatingNavbar, FooterX, FunnelChart, GalleryGrid, GaugeMeter, GeneratedCodeBlock, GhostInput, GhostOutlineButton, GlassAlert, GlassAvatar, GlassBadge, GlassButton, GlassCard, GlassInput, GlassModal, type GlassModalProps, GlassNavbar, GlassmorphButton, GlitchText, type GlitchTextProps, GlowAvatar, GlowBadge, GlowButton, type GlowButtonProps, GlowCard, GlowCheckbox, GlowRingLoader, GlowSpotlightCard, type GlowSpotlightCardProps, GlowSwitch, GlowText, GradientAlert, GradientBadge, GradientButton, GradientCTABlock, GradientCard, GradientFocusInput, GradientInput, GradientMeshCard, GradientOutlineBadge, GradientRingAvatar, GradientText, HeaderFooterLayout, Heartbeat, HeartbeatLoader, HeatmapGrid, HeroSection, HeroSectionX, HexagonAvatar, HighlightText, type HighlightTextProps, HourglassLoader, HoverCard, HoverExpandAvatar, IconBadge, IconInputLeft, IconInputRight, IconSwitch, type IconSwitchProps, IconTopAlert, ImageCard, ImageCarousel, ImageCompare, ImageOverlayCard, InitialsAvatar, type InitialsAvatarProps, InitialsGradientAvatar, Input, type InputProps, InputWithLabelOverlay, InteractiveCard, InteractiveCardCheckbox, InteractiveGlassModal, InteractiveHoverButton, type InteractiveHoverButtonProps, InviteUsersForm, InvoiceCard, InvoiceTable, JobBoardList, KPIDashboard, KanbanBoard, KanbanBoardVisual, Kbd, LanguageSelector, LeaderboardTable, LeaderboardWidget, LeftBorderAlert, LineChartCard, LineScaleLoader, LoadingButton, LoginFormPro, LogoCloud, LogoCloudX, MagneticButton, Marquee, type MarqueeProps, MegaMenuVisual, MessageList, Meteors, type MeteorsProps, MetricCard, MetricGrid, MinimalAlert, MinimalBadge, MinimalDropInput, MobileDrawerNav, Modal, type ModalProps, ModelSelector, MorphButton, MorphingText, type MorphingTextProps, MultiStepProgress, MusicPlayer, NeonAccordion, NeonAlert, NeonButton, NeonGlowButton, NeonOutlineBadge, NeonSwitch, NeonText, type NeonTextProps, NeumorphicCard, NeumorphicInput, NewsletterBlock, NewsletterSignup, NotificationBadge, NotificationCard, NotificationCenter, NotificationList, NumberStepper, NumberTicker, type NumberTickerProps, OTPCodeInput, OTPInput, OfflineBanner, OnlineUsersList, OrderSummaryCard, OutlineAvatar, OutlineDotBadge, OutlineGlowBadge, OutlineGradientButton, OutlineText, Pagination, PaginationPro, PasswordInput, PasswordStrengthMeter, PaymentFormPro, PillInput, PlusAccordion, PolymorphAvatar, PremiumBadge, PricingCard, PricingCardBasic, PricingCardPro, PricingCardsX, PricingComparisonTable, PricingSlider, PricingTableAdvanced, PricingTableSimple, PricingToggle, ProductCard, ProductCardPro, ProductGallery, ProductInventoryTable, ProductReview, ProfileCard, ProfileCardFull, ProfileSettingsForm, Progress, ProgressBadge, ProgressCircle, type ProgressProps, ProgressRing, ProgressWidget, PromoCodeInput, PulsatingButton, type PulsatingButtonProps, PulseAnim, PulseAvatar, PulseBadge, PulseLoader, QuickActionsWidget, RadarChartMock, RadioCard, RainbowButton, type RainbowButtonProps, RangeSliderInput, RankingList, RateLimitAlert, RatingStars, ReactionBar, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevealText, type RevealTextProps, RevenueChartWidget, ReviewStars, RibbonBadge, RichTooltip, RingLoader, RippleButton, Rotate, ScaleIn, ScheduleTable, ScrollArea, type ScrollAreaProps, SearchCommandInput, SearchInput, SegmentedButton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, ServerStatusWidget, ShadowAvatar, ShadowText, ShareSheet, ShimmerBlock, ShimmerButton, ShinyButton, ShinyText, type ShinyTextProps, ShippingAddressForm, SidebarLayout, SidebarMenu, SimpleAccordion, SimpleCheckbox, SimpleFooter, SimpleNavbar, SimpleSelect, SimpleSwitch, SimpleTooltip, SizeSelector, Skeleton, SkeletonCard, SkeletonList, type SkeletonProps, SlideDown, SlideLeft, SlideRight, SlideUp, Slider, type SliderProps, SocialPost, SoftAlert, SoftBadge, SolidAlert, SparklineStat, SpecialPremiumCard, SpinnerLoader, SplitButton, SplitScreenLayout, SpotlightCard, type SpotlightCardProps, SquareAvatar, SquareSpinLoader, SquircleAvatar, StackAvatar, StaggerContainer, StaggerItem, StatCard, StatCardSimple, StatCounter, StatWidget, StatWidgetCard, StatusAvatar, type StatusAvatarProps, StatusButton, StatusRingBadge, StepIndicator, StepList, Steps, StorageWidget, SubscriptionCard, SubscriptionForm, SuccessInput, SuccessModal, type SuccessModalProps, SuggestionChips, Switch, TabMenu, Tabs, TabsContent, type TabsItem, TabsList, type TabsProps, TabsRoot, TabsTrigger, TagBadge, TagInput, TagLabel, TaskChecklist, TeamSectionX, TestimonialCard, TestimonialCardBasic, TestimonialCardV2, TestimonialCarousel, TestimonialSliderX, TextButton, TextLoader, TextShimmer, type TextShimmerProps, TextareaAutosize, ThickSwitch, ThinkingLoader, ThreeDButton, TiltCard, Timeline, TimelineVertical, ToastAlertWrapper, Toaster, ToggleGroupItemWrapper, ToggleGroupWrapper, ToggleInput, Tooltip, TooltipAvatar, TooltipContent, TooltipForm, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TransactionHistory, TreeNavigation, TrendStatCard, TrustBadge, TrustBanner, TypingAnimation, type TypingAnimationProps, UnderlineInput, UploadProgress, UserDirectoryTable, UserMenuDropdown, UserProfileCard, VideoModalVisual, VideoPlayer, VisualSelectCard, VoiceInputPulse, WaitlistForm, WeatherCard, WifiLoader, WiggleHover, WordFadeReveal, type WordFadeRevealProps, WordPullUp, type WordPullUpProps, badgeVariants, buttonVariants, cn };
|
|
2137
|
+
export { AIFeatureCard, AIPromptInput, Accordion, AccordionContent, AccordionItem, type AccordionItemData, type AccordionProps$1 as AccordionProps, AccordionRoot, AccordionTrigger, ActionToast, ActivityFeed, ActivityHeatmap, ActivityItem, AddToCartBar, AdvancedSearchForm, Alert, AlertDescription, AlertModal, type AlertModalProps, type AlertProps, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AnimatedBorderAvatar, AnimatedGradientBorder, type AnimatedGradientBorderProps, AnimatedGridBackground, type AnimatedGridBackgroundProps, AnimatedHeroText, AnimatedLabelInput, AnimatedList, type AnimatedListProps, AppTopbar, AreaChartSimple, ArticleCard, AudioWaveform, AuthenticationLayout, Avatar, AvatarFallback, AvatarGroup, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, BannerAlert, BarChartCard, BarChartSimple, BarLoader, BasicModal, type BasicModalProps, BatteryLoader, BentoCard, type BentoCardProps, BentoGrid, type BentoGridProps, BentoGridVisual, BlurFade, type BlurFadeProps, BlurText, BorderBeamButton, BottomNav, BottomSheetSimulated, type BottomSheetSimulatedProps, Bounce, BouncingBalls, BoxLoader, BoxReveal, type BoxRevealProps, Breadcrumb, BreadcrumbTrail, Button, type ButtonProps, CTASectionX, Card, CardCheckbox, type CardCheckboxProps, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, CartDrawerItem, CartItem, CategoryCard, CenteredNavbar, ChatBubbleAI, ChatBubbleUser, ChatHistorySidebar, ChatInput, ChatLayoutVisual, ChatMessage, Checkbox, CheckoutSummary, CircleLoader, CircularCheckbox, CircularProgressCard, ClockLoader, CodeBlock, CodeSnippet, ColorPickerInput, ColorSelector, ColorSwatch, CommandPalette, type CommandPaletteItem, CommandPaletteModal, type CommandPaletteModalProps, type CommandPaletteProps, CommandPaletteVisual, CommentThread, CompactDataList, ComparisonBar, ComparisonTableMock, ConfettiSuccess, ContactFormBlock, ContactFormPro, ContactFormX, ContactList, ContextActionBar, ContextMenu, type ContextMenuItem, type ContextMenuProps, CookieAlert, CoolMode, type CoolModeProps, CopyButton, type CopyButtonProps, CopyTextButton, CouponCard, CreditCardVisual, CtaBlock, CurrencyInput, CyberAlert, CyberpunkButton, DangerModal, type DangerModalProps, DashboardGridLayout, DashboardShell, DataGridTable, DataTablePro, DestructiveGlowButton, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleAlert, Divider, type DividerProps, Dock, type DockProps, DocumentationLayout, DonutChart, DotBadge, DotsLoader, DottedAvatar, Drawer, type DrawerProps, DropdownMenuVisual, EmbedCard, EmptyStatePro, ErrorInput, EventCard, EventScheduleList, ExpandButton, FAQAccordionList, FadeIn, FaqAccordionX, FaqBlock, FeatureCard, FeatureGrid, FeatureGridX, FeatureShowcase, FeedLayout, FeedbackForm, FileDownloadList, FileDropzone, FileExplorerTable, FilePreviewCard, FileUploadForm, FilterBar, Flip, Float, FloatingActionForm, FloatingBadge, FloatingLabelInput, FloatingNavbar, FooterX, FunnelChart, GalleryGrid, GaugeMeter, GeneratedCodeBlock, GhostInput, GhostOutlineButton, GlassAlert, GlassAvatar, GlassBadge, GlassButton, GlassCard, GlassInput, GlassModal, type GlassModalProps, GlassNavbar, GlassmorphButton, GlitchText, type GlitchTextProps, GlowAvatar, GlowBadge, GlowButton, type GlowButtonProps, GlowCard, GlowCheckbox, GlowRingLoader, GlowSpotlightCard, type GlowSpotlightCardProps, GlowSwitch, GlowText, GradientAlert, GradientBadge, GradientButton, GradientCTABlock, GradientCard, GradientFocusInput, GradientInput, GradientMeshCard, GradientOutlineBadge, GradientRingAvatar, GradientText, HeaderFooterLayout, Heartbeat, HeartbeatLoader, HeatmapGrid, HeroSection, HeroSectionX, HexagonAvatar, HighlightText, type HighlightTextProps, HourglassLoader, HoverCard, HoverExpandAvatar, IconBadge, IconInputLeft, IconInputRight, IconSwitch, type IconSwitchProps, IconTopAlert, ImageCard, ImageCarousel, ImageCompare, ImageOverlayCard, InitialsAvatar, type InitialsAvatarProps, InitialsGradientAvatar, Input, type InputProps, InputWithLabelOverlay, InteractiveCard, InteractiveCardCheckbox, InteractiveGlassModal, type InteractiveGlassModalProps, InteractiveHoverButton, type InteractiveHoverButtonProps, InviteUsersForm, InvoiceCard, InvoiceTable, JobBoardList, KPIDashboard, KanbanBoard, KanbanBoardVisual, Kbd, LanguageSelector, LeaderboardTable, LeaderboardWidget, LeftBorderAlert, LineChartCard, LineScaleLoader, LoadingButton, LoginFormPro, LogoCloud, LogoCloudX, MagneticButton, Marquee, type MarqueeProps, MegaMenuVisual, MessageList, Meteors, type MeteorsProps, MetricCard, MetricGrid, MinimalAlert, MinimalBadge, MinimalDropInput, MobileDrawerNav, Modal, type ModalProps, ModelSelector, MorphButton, MorphingText, type MorphingTextProps, MultiStepProgress, MusicPlayer, NeonAccordion, NeonAlert, NeonButton, NeonGlowButton, NeonOutlineBadge, NeonSwitch, NeonText, type NeonTextProps, NeumorphicCard, NeumorphicInput, NewsletterBlock, NewsletterSignup, NotificationBadge, NotificationCard, NotificationCenter, NotificationList, NumberStepper, NumberTicker, type NumberTickerProps, OTPCodeInput, OTPInput, OfflineBanner, OnlineUsersList, OrderSummaryCard, OutlineAvatar, OutlineDotBadge, OutlineGlowBadge, OutlineGradientButton, OutlineText, Pagination, PaginationPro, PasswordInput, PasswordStrengthMeter, PaymentFormPro, PillInput, PlusAccordion, PolymorphAvatar, PremiumBadge, PricingCard, PricingCardBasic, PricingCardPro, PricingCardsX, PricingComparisonTable, PricingSlider, PricingTableAdvanced, PricingTableSimple, PricingToggle, ProductCard, ProductCardPro, ProductGallery, ProductInventoryTable, ProductReview, ProfileCard, ProfileCardFull, ProfileSettingsForm, Progress, ProgressBadge, ProgressCircle, type ProgressProps, ProgressRing, ProgressWidget, PromoCodeInput, PulsatingButton, type PulsatingButtonProps, PulseAnim, PulseAvatar, PulseBadge, PulseLoader, QuickActionsWidget, RadarChartMock, RadioCard, RainbowButton, type RainbowButtonProps, RangeSliderInput, RankingList, RateLimitAlert, RatingStars, ReactionBar, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevealText, type RevealTextProps, RevenueChartWidget, ReviewStars, RibbonBadge, RichTooltip, RingLoader, RippleButton, Rotate, ScaleIn, ScheduleTable, ScrollArea, type ScrollAreaProps, SearchCommandInput, SearchInput, SegmentedButton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, ServerStatusWidget, ShadowAvatar, ShadowText, ShareSheet, ShimmerBlock, ShimmerButton, ShinyButton, ShinyText, type ShinyTextProps, ShippingAddressForm, SidebarLayout, SidebarMenu, SimpleAccordion, SimpleCheckbox, SimpleFooter, SimpleNavbar, SimpleSelect, SimpleSwitch, SimpleTooltip, SizeSelector, Skeleton, SkeletonCard, SkeletonList, type SkeletonProps, SlideDown, SlideLeft, SlideRight, SlideUp, Slider, type SliderProps, SocialPost, SoftAlert, SoftBadge, SolidAlert, SparklineStat, SpecialPremiumCard, SpinnerLoader, SplitButton, SplitScreenLayout, SpotlightCard, type SpotlightCardProps, SquareAvatar, SquareSpinLoader, SquircleAvatar, StackAvatar, StaggerContainer, StaggerItem, StatCard, StatCardSimple, StatCounter, StatWidget, StatWidgetCard, StatusAvatar, type StatusAvatarProps, StatusButton, StatusRingBadge, StepIndicator, StepList, Steps, StorageWidget, SubscriptionCard, SubscriptionForm, SuccessInput, SuccessModal, type SuccessModalProps, SuggestionChips, Switch, TabMenu, Tabs, TabsContent, type TabsItem, TabsList, type TabsProps, TabsRoot, TabsTrigger, TagBadge, TagInput, TagLabel, TaskChecklist, TeamSectionX, TestimonialCard, TestimonialCardBasic, TestimonialCardV2, TestimonialCarousel, TestimonialSliderX, TextButton, TextLoader, TextShimmer, type TextShimmerProps, TextareaAutosize, ThickSwitch, ThinkingLoader, ThreeDButton, TiltCard, Timeline, TimelineVertical, ToastAlertWrapper, Toaster, ToggleGroupItemWrapper, ToggleGroupWrapper, ToggleInput, Tooltip, TooltipAvatar, TooltipContent, TooltipForm, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TransactionHistory, TreeNavigation, TrendStatCard, TrustBadge, TrustBanner, TypingAnimation, type TypingAnimationProps, UnderlineInput, UploadProgress, UserDirectoryTable, UserMenuDropdown, UserProfileCard, VideoModalVisual, VideoPlayer, VisualSelectCard, VoiceInputPulse, WaitlistForm, WeatherCard, WifiLoader, WiggleHover, WordFadeReveal, type WordFadeRevealProps, WordPullUp, type WordPullUpProps, badgeVariants, buttonVariants, cn };
|