nexoreui 0.1.6 → 1.6.0

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 CHANGED
@@ -622,6 +622,10 @@ interface SliderProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Slide
622
622
  * @default 1
623
623
  */
624
624
  step?: number;
625
+ /**
626
+ * The default initial value for uncontrolled usage
627
+ */
628
+ defaultValue?: number;
625
629
  /**
626
630
  * The current value
627
631
  */
@@ -1080,25 +1084,30 @@ interface AnimatedNumberProps {
1080
1084
  }
1081
1085
  declare function AnimatedNumber({ value, className, duration, formatFn, }: AnimatedNumberProps): React$1.JSX.Element;
1082
1086
 
1083
- /**
1084
- * Props for the Rating component
1085
- */
1086
- interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> {
1087
+ type RatingVariant = "amber" | "primary" | "emerald" | "rose" | "cyan";
1088
+ type RatingIconType = "star" | "heart" | "thumb" | "flame" | "trophy" | "smile";
1089
+ type RatingSize = "xs" | "sm" | "md" | "lg" | "xl";
1090
+ interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
1087
1091
  /**
1088
- * Current rating value
1092
+ * Controlled rating score value
1089
1093
  */
1090
- value: number;
1094
+ value?: number;
1091
1095
  /**
1092
- * Maximum rating count
1096
+ * Default initial rating value for uncontrolled usage
1097
+ * @default 0
1098
+ */
1099
+ defaultValue?: number;
1100
+ /**
1101
+ * Maximum rating score count
1093
1102
  * @default 5
1094
1103
  */
1095
1104
  max?: number;
1096
1105
  /**
1097
- * Callback fired when rating value is clicked
1106
+ * Callback fired when rating value changes
1098
1107
  */
1099
1108
  onChange?: (value: number) => void;
1100
1109
  /**
1101
- * If true, rating is display-only
1110
+ * If true, rating is display-only and non-interactive
1102
1111
  * @default false
1103
1112
  */
1104
1113
  readonly?: boolean;
@@ -1106,21 +1115,60 @@ interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onCh
1106
1115
  * Size of rating icons
1107
1116
  * @default "md"
1108
1117
  */
1109
- size?: "sm" | "md" | "lg";
1118
+ size?: RatingSize;
1110
1119
  /**
1111
1120
  * Visual icon choice
1112
1121
  * @default "star"
1113
1122
  */
1114
- icon?: "star" | "heart" | "thumb";
1123
+ icon?: RatingIconType;
1124
+ /**
1125
+ * Color theme variant
1126
+ * @default "amber"
1127
+ */
1128
+ variant?: RatingVariant;
1129
+ /**
1130
+ * Allow half-step (0.5) fractional rating precision
1131
+ * @default false
1132
+ */
1133
+ allowHalf?: boolean;
1134
+ /**
1135
+ * Display score number label alongside the rating icons
1136
+ * @default false
1137
+ */
1138
+ showScore?: boolean;
1139
+ /**
1140
+ * Array of tooltip labels corresponding to each step
1141
+ * (e.g. ["Poor", "Fair", "Good", "Very Good", "Exceptional"])
1142
+ */
1143
+ tooltips?: string[];
1115
1144
  /**
1116
1145
  * Additional CSS classes
1117
1146
  */
1118
1147
  className?: string;
1119
1148
  }
1120
1149
  /**
1121
- * Rating component provides a premium selection input for score ratings (Stars, Hearts, Thumbs).
1150
+ * Rating component provides a luxury interactive scoring component supporting stars,
1151
+ * hearts, flames, trophies, half-star precision, color themes, and tooltips.
1122
1152
  */
1123
1153
  declare const Rating: React$1.ForwardRefExoticComponent<RatingProps & React$1.RefAttributes<HTMLDivElement>>;
1154
+ interface RatingBreakdownProps extends React$1.HTMLAttributes<HTMLDivElement> {
1155
+ rating: number;
1156
+ totalReviews: number;
1157
+ distribution?: Record<number, number>;
1158
+ className?: string;
1159
+ }
1160
+ declare function RatingBreakdown({ rating, totalReviews, distribution, className, ...props }: RatingBreakdownProps): React$1.JSX.Element;
1161
+ interface ReviewCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1162
+ author: string;
1163
+ avatarUrl?: string;
1164
+ rating: number;
1165
+ date: string;
1166
+ title?: string;
1167
+ content: string;
1168
+ verified?: boolean;
1169
+ className?: string;
1170
+ }
1171
+ declare function ReviewCard({ author, avatarUrl, rating, date, title, content, verified, className, ...props }: ReviewCardProps): React$1.JSX.Element;
1124
1172
 
1125
1173
  /**
1126
1174
  * Props for the FileUpload component
@@ -1263,6 +1311,8 @@ interface StepItem {
1263
1311
  description?: string;
1264
1312
  icon?: React$1.ReactNode;
1265
1313
  }
1314
+ type StepperVariant = "default" | "circles" | "arrows";
1315
+ type StepperSize = "sm" | "md" | "lg";
1266
1316
  /**
1267
1317
  * Props for the Stepper component
1268
1318
  */
@@ -1284,14 +1334,23 @@ interface StepperProps extends React$1.HTMLAttributes<HTMLDivElement> {
1284
1334
  * Style variant of the stepper
1285
1335
  * @default "default"
1286
1336
  */
1287
- variant?: "default" | "circles" | "arrows";
1337
+ variant?: StepperVariant;
1338
+ /**
1339
+ * Sizing scale of the stepper indicators
1340
+ * @default "md"
1341
+ */
1342
+ size?: StepperSize;
1343
+ /**
1344
+ * Callback fired when a step indicator is clicked
1345
+ */
1346
+ onStepClick?: (stepIndex: number) => void;
1288
1347
  /**
1289
1348
  * Additional CSS classes
1290
1349
  */
1291
1350
  className?: string;
1292
1351
  }
1293
1352
  /**
1294
- * Stepper component displays progress through a multi-step sequence with animations.
1353
+ * Stepper component displays progress through a multi-step sequence with smooth animations.
1295
1354
  */
1296
1355
  declare const Stepper: React$1.ForwardRefExoticComponent<StepperProps & React$1.RefAttributes<HTMLDivElement>>;
1297
1356
 
@@ -2571,10 +2630,11 @@ interface ProductCardProProps extends React$1.HTMLAttributes<HTMLDivElement> {
2571
2630
  rating?: number;
2572
2631
  reviewCount?: number;
2573
2632
  imageSrc?: string;
2633
+ image?: string;
2574
2634
  colors?: string[];
2575
2635
  onAddToCart?: () => void;
2576
2636
  }
2577
- declare function ProductCardPro({ name, price, originalPrice, badge, rating, reviewCount, imageSrc, colors, onAddToCart, className, ...props }: ProductCardProProps): React$1.JSX.Element;
2637
+ declare function ProductCardPro({ name, price, originalPrice, badge, rating, reviewCount, imageSrc, image, colors, onAddToCart, className, ...props }: ProductCardProProps): React$1.JSX.Element;
2578
2638
  interface CheckoutSummaryProps extends React$1.HTMLAttributes<HTMLDivElement> {
2579
2639
  subtotal: string | number;
2580
2640
  shipping?: string;
@@ -2900,6 +2960,72 @@ interface InteractiveCodeBlockProps extends Omit<React$1.HTMLAttributes<HTMLDivE
2900
2960
  */
2901
2961
  declare const InteractiveCodeBlock: React$1.ForwardRefExoticComponent<InteractiveCodeBlockProps & React$1.RefAttributes<HTMLDivElement>>;
2902
2962
 
2963
+ interface AuroraSearchSource {
2964
+ /** Unique key for the source badge */
2965
+ id: string;
2966
+ /** Label or tooltip text for the source */
2967
+ label?: string;
2968
+ /** Direct avatar image URL (e.g. favicon, PNG, SVG) */
2969
+ avatarUrl?: string;
2970
+ /** Custom icon or element */
2971
+ icon?: React$1.ReactNode;
2972
+ /** Text initials to display inside badge */
2973
+ initials?: string;
2974
+ /** Built-in preset type or custom */
2975
+ type?: 'globe' | 'gradient' | 'github' | 'claude' | 'chatgpt' | 'perplexity' | 'custom';
2976
+ /** Custom background CSS string or hex */
2977
+ bg?: string;
2978
+ }
2979
+ type AuroraSearchPillSize = 'sm' | 'md' | 'lg';
2980
+ type AuroraSearchPillSpeed = 'slow' | 'normal' | 'fast';
2981
+ type AuroraSearchPillTheme = 'light' | 'dark' | 'auto';
2982
+ type AuroraSearchPillGlow = 'subtle' | 'medium' | 'strong' | 'none';
2983
+ type AuroraSpinMode = 'always' | 'searching' | 'hover' | 'never';
2984
+ interface AuroraSearchPillProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onToggle'> {
2985
+ /** Controlled searching state */
2986
+ isSearching?: boolean;
2987
+ /** Uncontrolled default searching state */
2988
+ defaultSearching?: boolean;
2989
+ /** Callback fired when searching state toggles */
2990
+ onToggle?: (searching: boolean) => void;
2991
+ /** Main search title text shown when active (default: "Search...") */
2992
+ searchLabel?: string;
2993
+ /** List of badge sources to render in the active state */
2994
+ sources?: AuroraSearchSource[];
2995
+ /** Shortcut array of avatar image URLs */
2996
+ sourceAvatars?: string[];
2997
+ /** Color theme for the pill body: light, dark, or auto (follows dark mode) */
2998
+ theme?: AuroraSearchPillTheme;
2999
+ /** Size scale of the pill */
3000
+ size?: AuroraSearchPillSize;
3001
+ /** Glow intensity of the surrounding ambient aurora */
3002
+ glowIntensity?: AuroraSearchPillGlow;
3003
+ /** Speed of the rotating aurora beam */
3004
+ speed?: AuroraSearchPillSpeed;
3005
+ /**
3006
+ * When the aurora beam should rotate:
3007
+ * - 'always' (default): continuously rotates the aurora light wave all the time
3008
+ * - 'searching': only spins while searching/active, remains calm when idle
3009
+ * - 'hover': spins on cursor hover / focus
3010
+ * - 'never': static gradient, no rotation
3011
+ */
3012
+ spinMode?: AuroraSpinMode;
3013
+ /** Manually override spinning state */
3014
+ isSpinning?: boolean;
3015
+ /** Automatically toggle searching state at a set interval (demo mode) */
3016
+ autoCycle?: boolean;
3017
+ /** Interval in ms for autoCycle (default: 2400) */
3018
+ cycleInterval?: number;
3019
+ }
3020
+ /**
3021
+ * AuroraSearchPill Component
3022
+ *
3023
+ * An ultra-premium AI search pill with an ambient rotating aurora conic glow,
3024
+ * 1.5px illuminated border track, and smooth transition between pulsing dots and
3025
+ * active search query with source badges.
3026
+ */
3027
+ declare const AuroraSearchPill: React$1.ForwardRefExoticComponent<AuroraSearchPillProps & React$1.RefAttributes<HTMLDivElement>>;
3028
+
2903
3029
  interface DockProps {
2904
3030
  /**
2905
3031
  * Описание для items
@@ -2952,4 +3078,4 @@ declare function DarkModeToggle({ theme: controlledTheme, variant, size, showLab
2952
3078
 
2953
3079
  declare function cn(...inputs: ClassValue[]): string;
2954
3080
 
2955
- export { AIFeatureCard, type AIModelOption, AIPromptInput, Accordion, AccordionContent, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, ActionToast, ActivityFeed, ActivityItem, type ActivityItemProps, AddToCartBar, AdvancedSearchForm, AiPromptInput, type AiPromptInputProps, Alert, AlertDescription, type AlertProps, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AnimatedBorderAvatar, AnimatedGradientBorder, type AnimatedGradientBorderProps, AnimatedGridBackground, type AnimatedGridBackgroundProps, AnimatedHeroText, FloatingLabelInput as AnimatedLabelInput, AnimatedList, type AnimatedListProps, AnimatedNumber, type AnimatedNumberProps, AreaChartSimple, type AttachedFile, AudioWaveform, type AuroraAnimation, AuroraBorderCard, type AuroraBorderCardProps, AuroraBorderFX, type AuroraBorderFXProps, type AuroraColorOption, type AuroraFXColor, type AuroraFXGlow, type AuroraFXRadius, type AuroraGlow, type AuroraRadius, type AuroraSpeed, type AuroraVariant, AuthenticationLayout, Avatar, AvatarFallback, AvatarGroup, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, BannerAlert, BarChartSimple, BarLoader, BatteryLoader, BentoCard, type BentoCardProps, BentoGrid, type BentoGridProps, BentoGridVisual, BlurFade, type BlurFadeProps, BorderBeamButton, BottomNav, Bounce, BouncingBalls, BoxLoader, BoxReveal, type BoxRevealProps, Breadcrumb, BreadcrumbTrail, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, CartDrawerItem, CartItem, type CartItemProps, CategoryCard, CenteredNavbar, ChatBubbleAI, ChatBubbleUser, ChatHistorySidebar, ChatInput, ChatInputAction, type ChatInputActionProps, ChatInputActions, ChatInputCompound, ChatInputField, type ChatInputProps, ChatInputSubmit, type ChatInputSubmitProps, ChatLayoutVisual, ChatMessage, ChatMessageAvatar, type ChatMessageAvatarProps, ChatMessageBody, ChatMessageCompound, ChatMessageContent, type ChatMessageContentProps, type ChatMessageContextValue, ChatMessageHeader, type ChatMessageProps, ChatMessageSender, ChatMessageStatus, type ChatMessageStatusProps, ChatMessageTime, Checkbox, CheckoutSummary, type CheckoutSummaryProps, CircleLoader, CircularProgressCard, type CircularProgressCardProps, ClockLoader, CodeBlock, type CodeBlockTheme, CodeSnippet, ColorPickerInput, ColorSelector, ColorSwatch, Command, type CommandItem, CommandPalette, type CommandPaletteItem, type CommandPaletteProps, type CommandProps, CommentActions, CommentAuthor, CommentAvatar, type CommentAvatarProps, CommentBody, type CommentData, CommentHeader, CommentItem, CommentReply, CommentText, CommentThread, CommentThreadCompound, type CommentThreadProps, CommentTime, CompactDataList, ComparisonBar, ComparisonTableMock, ConfettiSuccess, ContactFormPro, ContactList, ContextActionBar, ContextMenu, type ContextMenuItem, type ContextMenuProps, CookieAlert, CoolMode, type CoolModeProps, CopyTextButton, CouponCard, type CouponCardProps, CreditCardVisual, type CreditCardVisualProps, CurrencyInput, CustomizableTable, type CustomizableTableProps, CyberAlert, CyberpunkButton, DarkModeToggle, type DarkModeToggleProps, DashboardGridLayout, DashboardShell, DataTable, type DataTableColumn, DataTablePro, type DataTableProColumn, type DataTableProComponent, type DataTableProProps, type DataTableProps, DestructiveGlowButton, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleAlert, Divider, type DividerProps, Dock, type DockProps, DocumentationLayout, DonutChart, DotsLoader, DottedAvatar, Drawer, type DrawerProps, DropdownMenuVisual, EmbedCard, EmptyStatePro, ErrorInput, type ErrorInputProps, EventScheduleList, ExpandButton, FAQAccordionList, FadeIn, FeatureCard, FeatureShowcase, FeedLayout, FeedbackForm, FileDownloadList, FileDropzone, FileExplorerTable, FilePreviewCard, FileUpload, FileUploadForm, type FileUploadProps, FilterBar, Flip, Float, FloatingActionForm, FloatingLabelInput, FloatingNavbar, FunnelChart, GalleryGrid, GeneratedCodeBlock, GhostInput, GhostOutlineButton, GlassAlert, GlassAvatar, GlassButton, GlassCard, GlassInput, GlassNavbar, GlassButton as GlassmorphButton, GlowAvatar, GlowButton, GlowCard, GlowRingLoader, GlowSpotlightCard, type GlowSpotlightCardProps, GradientButton, GradientCTABlock, GradientCard, GradientInput as GradientFocusInput, GradientInput, GradientMeshCard, GradientRingAvatar, HeaderFooterLayout, Heartbeat, HeartbeatLoader, HeatmapGrid, HexagonAvatar, HourglassLoader, HoverCard, HoverExpandAvatar, IconInputLeft, type IconInputProps, IconInputRight, IconTopAlert, ImageCarousel, ImageCompare, InitialsAvatar, InitialsGradientAvatar, Input, type InputProps, InputWithLabelOverlay, InteractiveCodeBlock, type InteractiveCodeBlockProps, InteractiveHoverButton, type InteractiveHoverButtonProps, InviteUsersForm, InvoiceCard, type InvoiceCardProps, InvoiceTable, JobBoardList, KPIDashboard, KanbanBoardVisual, Kbd, LanguageSelector, LeaderboardTable, LeaderboardWidget, LeftBorderAlert, LineScaleLoader, Loader, type LoaderProps, LoadingButton, LoginFormPro, MagneticButton, Marquee, type MarqueeProps, MessageList, Meteors, type MeteorsProps, MetricCard, MinimalAlert, MinimalDropInput, ModelSelector, ModernAreaChart, type ModernAreaChartProps, ModernBarChart, type ModernBarChartProps, ModernDonutChart, type ModernDonutChartProps, MorphButton, type MorphingColor, MorphingGeometry, type MorphingGeometryProps, type MorphingShape, type MorphingSize, MorphingText, type MorphingTextProps, type MorphingVariant, MultiStepProgress, MusicPlayer, NeonAlert, NeonButton, GlowButton as NeonGlowButton, NeumorphicCard, NeumorphicInput, NewsletterSignup, NotificationCenter, type NotificationCenterProps, type NotificationItemData, NotificationList, NumberStepper, NumberTicker, type NumberTickerProps, OTPCodeInput, OTPInput, OfflineBanner, type OnlineUserData, OnlineUsersList, type OnlineUsersListProps, OrderSummaryCard, OutlineAvatar, GradientButton as OutlineGradientButton, Pagination, PaginationPro, PasswordInput, PasswordStrengthMeter, PaymentFormPro, PillInput, PolymorphAvatar, PricingCard, PricingComparisonTable, PricingSlider, type PricingSliderProps, PricingToggle, ProductCardPro, type ProductCardProProps, ProductGallery, ProductInventoryTable, ProductReview, ProfileSettingsForm, Progress, ProgressCircle, type ProgressProps, ProgressRing, ProgressWidget, PromoCodeInput, PulsatingButton, type PulsatingButtonProps, PulseAnim, PulseAvatar, PulseLoader, QuickActionsWidget, RadioCard, RainbowButton, type RainbowButtonProps, RangeSliderInput, type RangeSliderInputProps, RateLimitAlert, Rating, type RatingProps, RatingStars, ReactionAdd, ReactionBar, ReactionBarCompound, type ReactionBarProps, type ReactionData, ReactionItem, type ReactionItemProps, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevenueChartWidget, ReviewStars, RichTooltip, type RichTooltipProps, RingLoader, RippleButton, Rotate, ScaleIn, ScheduleTable, ScrollArea, type ScrollAreaProps, ScrollBar, SearchInput as SearchCommandInput, SearchInput, SegmentedButton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, ServerStatusWidget, ShadowAvatar, ShareSheet, type ShareSheetProps, ShimmerBlock, ShimmerButton, ShinyButton, ShinyText, type ShinyTextProps, ShippingAddressForm, SidebarLayout, SidebarMenu, SimpleNavbar, SimpleTooltip, type SimpleTooltipProps, SizeSelector, Skeleton, SkeletonCard, SkeletonList, type SkeletonProps, SlideDown, SlideLeft, SlideRight, SlideUp, Slider, type SliderProps, SocialPost, SocialPostAction, type SocialPostActionProps, SocialPostActions, SocialPostAuthor, SocialPostAvatar, SocialPostCompound, SocialPostContent, SocialPostHandle, SocialPostHeader, type SocialPostProps, SocialPostTime, SoftAlert, SolidAlert, SpinnerLoader, SplitButton, SplitScreenLayout, SpotlightCard, SquareAvatar, SquareSpinLoader, SquircleAvatar, StackAvatar, StaggerContainer, StaggerItem, StatCard, StatCounter, StatWidget, StatWidgetCard, StatusAvatar, StatusButton, StepIndicator, type StepItem, StepList, Stepper, type StepperProps, Steps, StorageWidget, SubscriptionCard, type SubscriptionCardProps, SubscriptionForm, SuccessInput, SuggestionChips, Switch, type SwitchProps, TabMenu, Table, TableBody, TableCaption, TableCell, TableCompound, TableFooter, TableHead, TableHeader, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TagInput, TaskChecklist, TestimonialCarousel, TextButton, TextLoader, TextShimmer, type TextShimmerProps, TextareaAutosize, ThinkingLoader, ThreeDButton, TiltCard, Timeline, TimelineVertical, ToastAlertWrapper, Toaster, ToggleGroupItemWrapper, ToggleGroupWrapper, Tooltip, TooltipAvatar, TooltipContent, TooltipForm, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TransactionHistory, TreeNavigation, TrustBadge, TrustBanner, TypingAnimation, type TypingAnimationProps, UnderlineInput, UploadProgress, UserDirectoryTable, UserMenuDropdown, UserProfileAvatar, type UserProfileAvatarProps, UserProfileBio, UserProfileCard, UserProfileCardCompound, type UserProfileCardProps, UserProfileCover, type UserProfileCoverProps, UserProfileFollowButton, type UserProfileFollowButtonProps, UserProfileHandle, UserProfileInfo, UserProfileName, UserProfileStat, type UserProfileStatProps, UserProfileStats, VideoModalVisual, VideoPlayer, VisualSelectCard, VoiceInputPulse, WaitlistForm, WifiLoader, WiggleHover, WordFadeReveal, type WordFadeRevealProps, WordPullUp, type WordPullUpProps, badgeVariants, buttonVariants, cn, defaultAuroraColors };
3081
+ export { AIFeatureCard, type AIModelOption, AIPromptInput, Accordion, AccordionContent, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, ActionToast, ActivityFeed, ActivityItem, type ActivityItemProps, AddToCartBar, AdvancedSearchForm, AiPromptInput, type AiPromptInputProps, Alert, AlertDescription, type AlertProps, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AnimatedBorderAvatar, AnimatedGradientBorder, type AnimatedGradientBorderProps, AnimatedGridBackground, type AnimatedGridBackgroundProps, AnimatedHeroText, FloatingLabelInput as AnimatedLabelInput, AnimatedList, type AnimatedListProps, AnimatedNumber, type AnimatedNumberProps, AreaChartSimple, type AttachedFile, AudioWaveform, type AuroraAnimation, AuroraBorderCard, type AuroraBorderCardProps, AuroraBorderFX, type AuroraBorderFXProps, type AuroraColorOption, type AuroraFXColor, type AuroraFXGlow, type AuroraFXRadius, type AuroraGlow, type AuroraRadius, AuroraSearchPill, type AuroraSearchPillGlow, type AuroraSearchPillProps, type AuroraSearchPillSize, type AuroraSearchPillSpeed, type AuroraSearchPillTheme, type AuroraSearchSource, type AuroraSpeed, type AuroraSpinMode, type AuroraVariant, AuthenticationLayout, Avatar, AvatarFallback, AvatarGroup, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, BannerAlert, BarChartSimple, BarLoader, BatteryLoader, BentoCard, type BentoCardProps, BentoGrid, type BentoGridProps, BentoGridVisual, BlurFade, type BlurFadeProps, BorderBeamButton, BottomNav, Bounce, BouncingBalls, BoxLoader, BoxReveal, type BoxRevealProps, Breadcrumb, BreadcrumbTrail, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, CartDrawerItem, CartItem, type CartItemProps, CategoryCard, CenteredNavbar, ChatBubbleAI, ChatBubbleUser, ChatHistorySidebar, ChatInput, ChatInputAction, type ChatInputActionProps, ChatInputActions, ChatInputCompound, ChatInputField, type ChatInputProps, ChatInputSubmit, type ChatInputSubmitProps, ChatLayoutVisual, ChatMessage, ChatMessageAvatar, type ChatMessageAvatarProps, ChatMessageBody, ChatMessageCompound, ChatMessageContent, type ChatMessageContentProps, type ChatMessageContextValue, ChatMessageHeader, type ChatMessageProps, ChatMessageSender, ChatMessageStatus, type ChatMessageStatusProps, ChatMessageTime, Checkbox, CheckoutSummary, type CheckoutSummaryProps, CircleLoader, CircularProgressCard, type CircularProgressCardProps, ClockLoader, CodeBlock, type CodeBlockTheme, CodeSnippet, ColorPickerInput, ColorSelector, ColorSwatch, Command, type CommandItem, CommandPalette, type CommandPaletteItem, type CommandPaletteProps, type CommandProps, CommentActions, CommentAuthor, CommentAvatar, type CommentAvatarProps, CommentBody, type CommentData, CommentHeader, CommentItem, CommentReply, CommentText, CommentThread, CommentThreadCompound, type CommentThreadProps, CommentTime, CompactDataList, ComparisonBar, ComparisonTableMock, ConfettiSuccess, ContactFormPro, ContactList, ContextActionBar, ContextMenu, type ContextMenuItem, type ContextMenuProps, CookieAlert, CoolMode, type CoolModeProps, CopyTextButton, CouponCard, type CouponCardProps, CreditCardVisual, type CreditCardVisualProps, CurrencyInput, CustomizableTable, type CustomizableTableProps, CyberAlert, CyberpunkButton, DarkModeToggle, type DarkModeToggleProps, DashboardGridLayout, DashboardShell, DataTable, type DataTableColumn, DataTablePro, type DataTableProColumn, type DataTableProComponent, type DataTableProProps, type DataTableProps, DestructiveGlowButton, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleAlert, Divider, type DividerProps, Dock, type DockProps, DocumentationLayout, DonutChart, DotsLoader, DottedAvatar, Drawer, type DrawerProps, DropdownMenuVisual, EmbedCard, EmptyStatePro, ErrorInput, type ErrorInputProps, EventScheduleList, ExpandButton, FAQAccordionList, FadeIn, FeatureCard, FeatureShowcase, FeedLayout, FeedbackForm, FileDownloadList, FileDropzone, FileExplorerTable, FilePreviewCard, FileUpload, FileUploadForm, type FileUploadProps, FilterBar, Flip, Float, FloatingActionForm, FloatingLabelInput, FloatingNavbar, FunnelChart, GalleryGrid, GeneratedCodeBlock, GhostInput, GhostOutlineButton, GlassAlert, GlassAvatar, GlassButton, GlassCard, GlassInput, GlassNavbar, GlassButton as GlassmorphButton, GlowAvatar, GlowButton, GlowCard, GlowRingLoader, GlowSpotlightCard, type GlowSpotlightCardProps, GradientButton, GradientCTABlock, GradientCard, GradientInput as GradientFocusInput, GradientInput, GradientMeshCard, GradientRingAvatar, HeaderFooterLayout, Heartbeat, HeartbeatLoader, HeatmapGrid, HexagonAvatar, HourglassLoader, HoverCard, HoverExpandAvatar, IconInputLeft, type IconInputProps, IconInputRight, IconTopAlert, ImageCarousel, ImageCompare, InitialsAvatar, InitialsGradientAvatar, Input, type InputProps, InputWithLabelOverlay, InteractiveCodeBlock, type InteractiveCodeBlockProps, InteractiveHoverButton, type InteractiveHoverButtonProps, InviteUsersForm, InvoiceCard, type InvoiceCardProps, InvoiceTable, JobBoardList, KPIDashboard, KanbanBoardVisual, Kbd, LanguageSelector, LeaderboardTable, LeaderboardWidget, LeftBorderAlert, LineScaleLoader, Loader, type LoaderProps, LoadingButton, LoginFormPro, MagneticButton, Marquee, type MarqueeProps, MessageList, Meteors, type MeteorsProps, MetricCard, MinimalAlert, MinimalDropInput, ModelSelector, ModernAreaChart, type ModernAreaChartProps, ModernBarChart, type ModernBarChartProps, ModernDonutChart, type ModernDonutChartProps, MorphButton, type MorphingColor, MorphingGeometry, type MorphingGeometryProps, type MorphingShape, type MorphingSize, MorphingText, type MorphingTextProps, type MorphingVariant, MultiStepProgress, MusicPlayer, NeonAlert, NeonButton, GlowButton as NeonGlowButton, NeumorphicCard, NeumorphicInput, NewsletterSignup, NotificationCenter, type NotificationCenterProps, type NotificationItemData, NotificationList, NumberStepper, NumberTicker, type NumberTickerProps, OTPCodeInput, OTPInput, OfflineBanner, type OnlineUserData, OnlineUsersList, type OnlineUsersListProps, OrderSummaryCard, OutlineAvatar, GradientButton as OutlineGradientButton, Pagination, PaginationPro, PasswordInput, PasswordStrengthMeter, PaymentFormPro, PillInput, PolymorphAvatar, PricingCard, PricingComparisonTable, PricingSlider, type PricingSliderProps, PricingToggle, ProductCardPro, type ProductCardProProps, ProductGallery, ProductInventoryTable, ProductReview, ProfileSettingsForm, Progress, ProgressCircle, type ProgressProps, ProgressRing, ProgressWidget, PromoCodeInput, PulsatingButton, type PulsatingButtonProps, PulseAnim, PulseAvatar, PulseLoader, QuickActionsWidget, RadioCard, RainbowButton, type RainbowButtonProps, RangeSliderInput, type RangeSliderInputProps, RateLimitAlert, Rating, RatingBreakdown, type RatingBreakdownProps, type RatingIconType, type RatingProps, type RatingSize, RatingStars, type RatingVariant, ReactionAdd, ReactionBar, ReactionBarCompound, type ReactionBarProps, type ReactionData, ReactionItem, type ReactionItemProps, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevenueChartWidget, ReviewCard, type ReviewCardProps, ReviewStars, RichTooltip, type RichTooltipProps, RingLoader, RippleButton, Rotate, ScaleIn, ScheduleTable, ScrollArea, type ScrollAreaProps, ScrollBar, SearchInput as SearchCommandInput, SearchInput, SegmentedButton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, ServerStatusWidget, ShadowAvatar, ShareSheet, type ShareSheetProps, ShimmerBlock, ShimmerButton, ShinyButton, ShinyText, type ShinyTextProps, ShippingAddressForm, SidebarLayout, SidebarMenu, SimpleNavbar, SimpleTooltip, type SimpleTooltipProps, SizeSelector, Skeleton, SkeletonCard, SkeletonList, type SkeletonProps, SlideDown, SlideLeft, SlideRight, SlideUp, Slider, type SliderProps, SocialPost, SocialPostAction, type SocialPostActionProps, SocialPostActions, SocialPostAuthor, SocialPostAvatar, SocialPostCompound, SocialPostContent, SocialPostHandle, SocialPostHeader, type SocialPostProps, SocialPostTime, SoftAlert, SolidAlert, SpinnerLoader, SplitButton, SplitScreenLayout, SpotlightCard, SquareAvatar, SquareSpinLoader, SquircleAvatar, StackAvatar, StaggerContainer, StaggerItem, StatCard, StatCounter, StatWidget, StatWidgetCard, StatusAvatar, StatusButton, StepIndicator, type StepItem, StepList, Stepper, type StepperProps, type StepperSize, type StepperVariant, Steps, StorageWidget, SubscriptionCard, type SubscriptionCardProps, SubscriptionForm, SuccessInput, SuggestionChips, Switch, type SwitchProps, TabMenu, Table, TableBody, TableCaption, TableCell, TableCompound, TableFooter, TableHead, TableHeader, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TagInput, TaskChecklist, TestimonialCarousel, TextButton, TextLoader, TextShimmer, type TextShimmerProps, TextareaAutosize, ThinkingLoader, ThreeDButton, TiltCard, Timeline, TimelineVertical, ToastAlertWrapper, Toaster, ToggleGroupItemWrapper, ToggleGroupWrapper, Tooltip, TooltipAvatar, TooltipContent, TooltipForm, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TransactionHistory, TreeNavigation, TrustBadge, TrustBanner, TypingAnimation, type TypingAnimationProps, UnderlineInput, UploadProgress, UserDirectoryTable, UserMenuDropdown, UserProfileAvatar, type UserProfileAvatarProps, UserProfileBio, UserProfileCard, UserProfileCardCompound, type UserProfileCardProps, UserProfileCover, type UserProfileCoverProps, UserProfileFollowButton, type UserProfileFollowButtonProps, UserProfileHandle, UserProfileInfo, UserProfileName, UserProfileStat, type UserProfileStatProps, UserProfileStats, VideoModalVisual, VideoPlayer, VisualSelectCard, VoiceInputPulse, WaitlistForm, WifiLoader, WiggleHover, WordFadeReveal, type WordFadeRevealProps, WordPullUp, type WordPullUpProps, badgeVariants, buttonVariants, cn, defaultAuroraColors };
package/dist/index.d.ts CHANGED
@@ -622,6 +622,10 @@ interface SliderProps extends Omit<React$1.ComponentPropsWithoutRef<typeof Slide
622
622
  * @default 1
623
623
  */
624
624
  step?: number;
625
+ /**
626
+ * The default initial value for uncontrolled usage
627
+ */
628
+ defaultValue?: number;
625
629
  /**
626
630
  * The current value
627
631
  */
@@ -1080,25 +1084,30 @@ interface AnimatedNumberProps {
1080
1084
  }
1081
1085
  declare function AnimatedNumber({ value, className, duration, formatFn, }: AnimatedNumberProps): React$1.JSX.Element;
1082
1086
 
1083
- /**
1084
- * Props for the Rating component
1085
- */
1086
- interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange"> {
1087
+ type RatingVariant = "amber" | "primary" | "emerald" | "rose" | "cyan";
1088
+ type RatingIconType = "star" | "heart" | "thumb" | "flame" | "trophy" | "smile";
1089
+ type RatingSize = "xs" | "sm" | "md" | "lg" | "xl";
1090
+ interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
1087
1091
  /**
1088
- * Current rating value
1092
+ * Controlled rating score value
1089
1093
  */
1090
- value: number;
1094
+ value?: number;
1091
1095
  /**
1092
- * Maximum rating count
1096
+ * Default initial rating value for uncontrolled usage
1097
+ * @default 0
1098
+ */
1099
+ defaultValue?: number;
1100
+ /**
1101
+ * Maximum rating score count
1093
1102
  * @default 5
1094
1103
  */
1095
1104
  max?: number;
1096
1105
  /**
1097
- * Callback fired when rating value is clicked
1106
+ * Callback fired when rating value changes
1098
1107
  */
1099
1108
  onChange?: (value: number) => void;
1100
1109
  /**
1101
- * If true, rating is display-only
1110
+ * If true, rating is display-only and non-interactive
1102
1111
  * @default false
1103
1112
  */
1104
1113
  readonly?: boolean;
@@ -1106,21 +1115,60 @@ interface RatingProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onCh
1106
1115
  * Size of rating icons
1107
1116
  * @default "md"
1108
1117
  */
1109
- size?: "sm" | "md" | "lg";
1118
+ size?: RatingSize;
1110
1119
  /**
1111
1120
  * Visual icon choice
1112
1121
  * @default "star"
1113
1122
  */
1114
- icon?: "star" | "heart" | "thumb";
1123
+ icon?: RatingIconType;
1124
+ /**
1125
+ * Color theme variant
1126
+ * @default "amber"
1127
+ */
1128
+ variant?: RatingVariant;
1129
+ /**
1130
+ * Allow half-step (0.5) fractional rating precision
1131
+ * @default false
1132
+ */
1133
+ allowHalf?: boolean;
1134
+ /**
1135
+ * Display score number label alongside the rating icons
1136
+ * @default false
1137
+ */
1138
+ showScore?: boolean;
1139
+ /**
1140
+ * Array of tooltip labels corresponding to each step
1141
+ * (e.g. ["Poor", "Fair", "Good", "Very Good", "Exceptional"])
1142
+ */
1143
+ tooltips?: string[];
1115
1144
  /**
1116
1145
  * Additional CSS classes
1117
1146
  */
1118
1147
  className?: string;
1119
1148
  }
1120
1149
  /**
1121
- * Rating component provides a premium selection input for score ratings (Stars, Hearts, Thumbs).
1150
+ * Rating component provides a luxury interactive scoring component supporting stars,
1151
+ * hearts, flames, trophies, half-star precision, color themes, and tooltips.
1122
1152
  */
1123
1153
  declare const Rating: React$1.ForwardRefExoticComponent<RatingProps & React$1.RefAttributes<HTMLDivElement>>;
1154
+ interface RatingBreakdownProps extends React$1.HTMLAttributes<HTMLDivElement> {
1155
+ rating: number;
1156
+ totalReviews: number;
1157
+ distribution?: Record<number, number>;
1158
+ className?: string;
1159
+ }
1160
+ declare function RatingBreakdown({ rating, totalReviews, distribution, className, ...props }: RatingBreakdownProps): React$1.JSX.Element;
1161
+ interface ReviewCardProps extends React$1.HTMLAttributes<HTMLDivElement> {
1162
+ author: string;
1163
+ avatarUrl?: string;
1164
+ rating: number;
1165
+ date: string;
1166
+ title?: string;
1167
+ content: string;
1168
+ verified?: boolean;
1169
+ className?: string;
1170
+ }
1171
+ declare function ReviewCard({ author, avatarUrl, rating, date, title, content, verified, className, ...props }: ReviewCardProps): React$1.JSX.Element;
1124
1172
 
1125
1173
  /**
1126
1174
  * Props for the FileUpload component
@@ -1263,6 +1311,8 @@ interface StepItem {
1263
1311
  description?: string;
1264
1312
  icon?: React$1.ReactNode;
1265
1313
  }
1314
+ type StepperVariant = "default" | "circles" | "arrows";
1315
+ type StepperSize = "sm" | "md" | "lg";
1266
1316
  /**
1267
1317
  * Props for the Stepper component
1268
1318
  */
@@ -1284,14 +1334,23 @@ interface StepperProps extends React$1.HTMLAttributes<HTMLDivElement> {
1284
1334
  * Style variant of the stepper
1285
1335
  * @default "default"
1286
1336
  */
1287
- variant?: "default" | "circles" | "arrows";
1337
+ variant?: StepperVariant;
1338
+ /**
1339
+ * Sizing scale of the stepper indicators
1340
+ * @default "md"
1341
+ */
1342
+ size?: StepperSize;
1343
+ /**
1344
+ * Callback fired when a step indicator is clicked
1345
+ */
1346
+ onStepClick?: (stepIndex: number) => void;
1288
1347
  /**
1289
1348
  * Additional CSS classes
1290
1349
  */
1291
1350
  className?: string;
1292
1351
  }
1293
1352
  /**
1294
- * Stepper component displays progress through a multi-step sequence with animations.
1353
+ * Stepper component displays progress through a multi-step sequence with smooth animations.
1295
1354
  */
1296
1355
  declare const Stepper: React$1.ForwardRefExoticComponent<StepperProps & React$1.RefAttributes<HTMLDivElement>>;
1297
1356
 
@@ -2571,10 +2630,11 @@ interface ProductCardProProps extends React$1.HTMLAttributes<HTMLDivElement> {
2571
2630
  rating?: number;
2572
2631
  reviewCount?: number;
2573
2632
  imageSrc?: string;
2633
+ image?: string;
2574
2634
  colors?: string[];
2575
2635
  onAddToCart?: () => void;
2576
2636
  }
2577
- declare function ProductCardPro({ name, price, originalPrice, badge, rating, reviewCount, imageSrc, colors, onAddToCart, className, ...props }: ProductCardProProps): React$1.JSX.Element;
2637
+ declare function ProductCardPro({ name, price, originalPrice, badge, rating, reviewCount, imageSrc, image, colors, onAddToCart, className, ...props }: ProductCardProProps): React$1.JSX.Element;
2578
2638
  interface CheckoutSummaryProps extends React$1.HTMLAttributes<HTMLDivElement> {
2579
2639
  subtotal: string | number;
2580
2640
  shipping?: string;
@@ -2900,6 +2960,72 @@ interface InteractiveCodeBlockProps extends Omit<React$1.HTMLAttributes<HTMLDivE
2900
2960
  */
2901
2961
  declare const InteractiveCodeBlock: React$1.ForwardRefExoticComponent<InteractiveCodeBlockProps & React$1.RefAttributes<HTMLDivElement>>;
2902
2962
 
2963
+ interface AuroraSearchSource {
2964
+ /** Unique key for the source badge */
2965
+ id: string;
2966
+ /** Label or tooltip text for the source */
2967
+ label?: string;
2968
+ /** Direct avatar image URL (e.g. favicon, PNG, SVG) */
2969
+ avatarUrl?: string;
2970
+ /** Custom icon or element */
2971
+ icon?: React$1.ReactNode;
2972
+ /** Text initials to display inside badge */
2973
+ initials?: string;
2974
+ /** Built-in preset type or custom */
2975
+ type?: 'globe' | 'gradient' | 'github' | 'claude' | 'chatgpt' | 'perplexity' | 'custom';
2976
+ /** Custom background CSS string or hex */
2977
+ bg?: string;
2978
+ }
2979
+ type AuroraSearchPillSize = 'sm' | 'md' | 'lg';
2980
+ type AuroraSearchPillSpeed = 'slow' | 'normal' | 'fast';
2981
+ type AuroraSearchPillTheme = 'light' | 'dark' | 'auto';
2982
+ type AuroraSearchPillGlow = 'subtle' | 'medium' | 'strong' | 'none';
2983
+ type AuroraSpinMode = 'always' | 'searching' | 'hover' | 'never';
2984
+ interface AuroraSearchPillProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'onToggle'> {
2985
+ /** Controlled searching state */
2986
+ isSearching?: boolean;
2987
+ /** Uncontrolled default searching state */
2988
+ defaultSearching?: boolean;
2989
+ /** Callback fired when searching state toggles */
2990
+ onToggle?: (searching: boolean) => void;
2991
+ /** Main search title text shown when active (default: "Search...") */
2992
+ searchLabel?: string;
2993
+ /** List of badge sources to render in the active state */
2994
+ sources?: AuroraSearchSource[];
2995
+ /** Shortcut array of avatar image URLs */
2996
+ sourceAvatars?: string[];
2997
+ /** Color theme for the pill body: light, dark, or auto (follows dark mode) */
2998
+ theme?: AuroraSearchPillTheme;
2999
+ /** Size scale of the pill */
3000
+ size?: AuroraSearchPillSize;
3001
+ /** Glow intensity of the surrounding ambient aurora */
3002
+ glowIntensity?: AuroraSearchPillGlow;
3003
+ /** Speed of the rotating aurora beam */
3004
+ speed?: AuroraSearchPillSpeed;
3005
+ /**
3006
+ * When the aurora beam should rotate:
3007
+ * - 'always' (default): continuously rotates the aurora light wave all the time
3008
+ * - 'searching': only spins while searching/active, remains calm when idle
3009
+ * - 'hover': spins on cursor hover / focus
3010
+ * - 'never': static gradient, no rotation
3011
+ */
3012
+ spinMode?: AuroraSpinMode;
3013
+ /** Manually override spinning state */
3014
+ isSpinning?: boolean;
3015
+ /** Automatically toggle searching state at a set interval (demo mode) */
3016
+ autoCycle?: boolean;
3017
+ /** Interval in ms for autoCycle (default: 2400) */
3018
+ cycleInterval?: number;
3019
+ }
3020
+ /**
3021
+ * AuroraSearchPill Component
3022
+ *
3023
+ * An ultra-premium AI search pill with an ambient rotating aurora conic glow,
3024
+ * 1.5px illuminated border track, and smooth transition between pulsing dots and
3025
+ * active search query with source badges.
3026
+ */
3027
+ declare const AuroraSearchPill: React$1.ForwardRefExoticComponent<AuroraSearchPillProps & React$1.RefAttributes<HTMLDivElement>>;
3028
+
2903
3029
  interface DockProps {
2904
3030
  /**
2905
3031
  * Описание для items
@@ -2952,4 +3078,4 @@ declare function DarkModeToggle({ theme: controlledTheme, variant, size, showLab
2952
3078
 
2953
3079
  declare function cn(...inputs: ClassValue[]): string;
2954
3080
 
2955
- export { AIFeatureCard, type AIModelOption, AIPromptInput, Accordion, AccordionContent, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, ActionToast, ActivityFeed, ActivityItem, type ActivityItemProps, AddToCartBar, AdvancedSearchForm, AiPromptInput, type AiPromptInputProps, Alert, AlertDescription, type AlertProps, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AnimatedBorderAvatar, AnimatedGradientBorder, type AnimatedGradientBorderProps, AnimatedGridBackground, type AnimatedGridBackgroundProps, AnimatedHeroText, FloatingLabelInput as AnimatedLabelInput, AnimatedList, type AnimatedListProps, AnimatedNumber, type AnimatedNumberProps, AreaChartSimple, type AttachedFile, AudioWaveform, type AuroraAnimation, AuroraBorderCard, type AuroraBorderCardProps, AuroraBorderFX, type AuroraBorderFXProps, type AuroraColorOption, type AuroraFXColor, type AuroraFXGlow, type AuroraFXRadius, type AuroraGlow, type AuroraRadius, type AuroraSpeed, type AuroraVariant, AuthenticationLayout, Avatar, AvatarFallback, AvatarGroup, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, BannerAlert, BarChartSimple, BarLoader, BatteryLoader, BentoCard, type BentoCardProps, BentoGrid, type BentoGridProps, BentoGridVisual, BlurFade, type BlurFadeProps, BorderBeamButton, BottomNav, Bounce, BouncingBalls, BoxLoader, BoxReveal, type BoxRevealProps, Breadcrumb, BreadcrumbTrail, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, CartDrawerItem, CartItem, type CartItemProps, CategoryCard, CenteredNavbar, ChatBubbleAI, ChatBubbleUser, ChatHistorySidebar, ChatInput, ChatInputAction, type ChatInputActionProps, ChatInputActions, ChatInputCompound, ChatInputField, type ChatInputProps, ChatInputSubmit, type ChatInputSubmitProps, ChatLayoutVisual, ChatMessage, ChatMessageAvatar, type ChatMessageAvatarProps, ChatMessageBody, ChatMessageCompound, ChatMessageContent, type ChatMessageContentProps, type ChatMessageContextValue, ChatMessageHeader, type ChatMessageProps, ChatMessageSender, ChatMessageStatus, type ChatMessageStatusProps, ChatMessageTime, Checkbox, CheckoutSummary, type CheckoutSummaryProps, CircleLoader, CircularProgressCard, type CircularProgressCardProps, ClockLoader, CodeBlock, type CodeBlockTheme, CodeSnippet, ColorPickerInput, ColorSelector, ColorSwatch, Command, type CommandItem, CommandPalette, type CommandPaletteItem, type CommandPaletteProps, type CommandProps, CommentActions, CommentAuthor, CommentAvatar, type CommentAvatarProps, CommentBody, type CommentData, CommentHeader, CommentItem, CommentReply, CommentText, CommentThread, CommentThreadCompound, type CommentThreadProps, CommentTime, CompactDataList, ComparisonBar, ComparisonTableMock, ConfettiSuccess, ContactFormPro, ContactList, ContextActionBar, ContextMenu, type ContextMenuItem, type ContextMenuProps, CookieAlert, CoolMode, type CoolModeProps, CopyTextButton, CouponCard, type CouponCardProps, CreditCardVisual, type CreditCardVisualProps, CurrencyInput, CustomizableTable, type CustomizableTableProps, CyberAlert, CyberpunkButton, DarkModeToggle, type DarkModeToggleProps, DashboardGridLayout, DashboardShell, DataTable, type DataTableColumn, DataTablePro, type DataTableProColumn, type DataTableProComponent, type DataTableProProps, type DataTableProps, DestructiveGlowButton, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleAlert, Divider, type DividerProps, Dock, type DockProps, DocumentationLayout, DonutChart, DotsLoader, DottedAvatar, Drawer, type DrawerProps, DropdownMenuVisual, EmbedCard, EmptyStatePro, ErrorInput, type ErrorInputProps, EventScheduleList, ExpandButton, FAQAccordionList, FadeIn, FeatureCard, FeatureShowcase, FeedLayout, FeedbackForm, FileDownloadList, FileDropzone, FileExplorerTable, FilePreviewCard, FileUpload, FileUploadForm, type FileUploadProps, FilterBar, Flip, Float, FloatingActionForm, FloatingLabelInput, FloatingNavbar, FunnelChart, GalleryGrid, GeneratedCodeBlock, GhostInput, GhostOutlineButton, GlassAlert, GlassAvatar, GlassButton, GlassCard, GlassInput, GlassNavbar, GlassButton as GlassmorphButton, GlowAvatar, GlowButton, GlowCard, GlowRingLoader, GlowSpotlightCard, type GlowSpotlightCardProps, GradientButton, GradientCTABlock, GradientCard, GradientInput as GradientFocusInput, GradientInput, GradientMeshCard, GradientRingAvatar, HeaderFooterLayout, Heartbeat, HeartbeatLoader, HeatmapGrid, HexagonAvatar, HourglassLoader, HoverCard, HoverExpandAvatar, IconInputLeft, type IconInputProps, IconInputRight, IconTopAlert, ImageCarousel, ImageCompare, InitialsAvatar, InitialsGradientAvatar, Input, type InputProps, InputWithLabelOverlay, InteractiveCodeBlock, type InteractiveCodeBlockProps, InteractiveHoverButton, type InteractiveHoverButtonProps, InviteUsersForm, InvoiceCard, type InvoiceCardProps, InvoiceTable, JobBoardList, KPIDashboard, KanbanBoardVisual, Kbd, LanguageSelector, LeaderboardTable, LeaderboardWidget, LeftBorderAlert, LineScaleLoader, Loader, type LoaderProps, LoadingButton, LoginFormPro, MagneticButton, Marquee, type MarqueeProps, MessageList, Meteors, type MeteorsProps, MetricCard, MinimalAlert, MinimalDropInput, ModelSelector, ModernAreaChart, type ModernAreaChartProps, ModernBarChart, type ModernBarChartProps, ModernDonutChart, type ModernDonutChartProps, MorphButton, type MorphingColor, MorphingGeometry, type MorphingGeometryProps, type MorphingShape, type MorphingSize, MorphingText, type MorphingTextProps, type MorphingVariant, MultiStepProgress, MusicPlayer, NeonAlert, NeonButton, GlowButton as NeonGlowButton, NeumorphicCard, NeumorphicInput, NewsletterSignup, NotificationCenter, type NotificationCenterProps, type NotificationItemData, NotificationList, NumberStepper, NumberTicker, type NumberTickerProps, OTPCodeInput, OTPInput, OfflineBanner, type OnlineUserData, OnlineUsersList, type OnlineUsersListProps, OrderSummaryCard, OutlineAvatar, GradientButton as OutlineGradientButton, Pagination, PaginationPro, PasswordInput, PasswordStrengthMeter, PaymentFormPro, PillInput, PolymorphAvatar, PricingCard, PricingComparisonTable, PricingSlider, type PricingSliderProps, PricingToggle, ProductCardPro, type ProductCardProProps, ProductGallery, ProductInventoryTable, ProductReview, ProfileSettingsForm, Progress, ProgressCircle, type ProgressProps, ProgressRing, ProgressWidget, PromoCodeInput, PulsatingButton, type PulsatingButtonProps, PulseAnim, PulseAvatar, PulseLoader, QuickActionsWidget, RadioCard, RainbowButton, type RainbowButtonProps, RangeSliderInput, type RangeSliderInputProps, RateLimitAlert, Rating, type RatingProps, RatingStars, ReactionAdd, ReactionBar, ReactionBarCompound, type ReactionBarProps, type ReactionData, ReactionItem, type ReactionItemProps, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevenueChartWidget, ReviewStars, RichTooltip, type RichTooltipProps, RingLoader, RippleButton, Rotate, ScaleIn, ScheduleTable, ScrollArea, type ScrollAreaProps, ScrollBar, SearchInput as SearchCommandInput, SearchInput, SegmentedButton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, ServerStatusWidget, ShadowAvatar, ShareSheet, type ShareSheetProps, ShimmerBlock, ShimmerButton, ShinyButton, ShinyText, type ShinyTextProps, ShippingAddressForm, SidebarLayout, SidebarMenu, SimpleNavbar, SimpleTooltip, type SimpleTooltipProps, SizeSelector, Skeleton, SkeletonCard, SkeletonList, type SkeletonProps, SlideDown, SlideLeft, SlideRight, SlideUp, Slider, type SliderProps, SocialPost, SocialPostAction, type SocialPostActionProps, SocialPostActions, SocialPostAuthor, SocialPostAvatar, SocialPostCompound, SocialPostContent, SocialPostHandle, SocialPostHeader, type SocialPostProps, SocialPostTime, SoftAlert, SolidAlert, SpinnerLoader, SplitButton, SplitScreenLayout, SpotlightCard, SquareAvatar, SquareSpinLoader, SquircleAvatar, StackAvatar, StaggerContainer, StaggerItem, StatCard, StatCounter, StatWidget, StatWidgetCard, StatusAvatar, StatusButton, StepIndicator, type StepItem, StepList, Stepper, type StepperProps, Steps, StorageWidget, SubscriptionCard, type SubscriptionCardProps, SubscriptionForm, SuccessInput, SuggestionChips, Switch, type SwitchProps, TabMenu, Table, TableBody, TableCaption, TableCell, TableCompound, TableFooter, TableHead, TableHeader, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TagInput, TaskChecklist, TestimonialCarousel, TextButton, TextLoader, TextShimmer, type TextShimmerProps, TextareaAutosize, ThinkingLoader, ThreeDButton, TiltCard, Timeline, TimelineVertical, ToastAlertWrapper, Toaster, ToggleGroupItemWrapper, ToggleGroupWrapper, Tooltip, TooltipAvatar, TooltipContent, TooltipForm, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TransactionHistory, TreeNavigation, TrustBadge, TrustBanner, TypingAnimation, type TypingAnimationProps, UnderlineInput, UploadProgress, UserDirectoryTable, UserMenuDropdown, UserProfileAvatar, type UserProfileAvatarProps, UserProfileBio, UserProfileCard, UserProfileCardCompound, type UserProfileCardProps, UserProfileCover, type UserProfileCoverProps, UserProfileFollowButton, type UserProfileFollowButtonProps, UserProfileHandle, UserProfileInfo, UserProfileName, UserProfileStat, type UserProfileStatProps, UserProfileStats, VideoModalVisual, VideoPlayer, VisualSelectCard, VoiceInputPulse, WaitlistForm, WifiLoader, WiggleHover, WordFadeReveal, type WordFadeRevealProps, WordPullUp, type WordPullUpProps, badgeVariants, buttonVariants, cn, defaultAuroraColors };
3081
+ export { AIFeatureCard, type AIModelOption, AIPromptInput, Accordion, AccordionContent, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, ActionToast, ActivityFeed, ActivityItem, type ActivityItemProps, AddToCartBar, AdvancedSearchForm, AiPromptInput, type AiPromptInputProps, Alert, AlertDescription, type AlertProps, AlertTitle, AnimatedBeam, type AnimatedBeamProps, AnimatedBorderAvatar, AnimatedGradientBorder, type AnimatedGradientBorderProps, AnimatedGridBackground, type AnimatedGridBackgroundProps, AnimatedHeroText, FloatingLabelInput as AnimatedLabelInput, AnimatedList, type AnimatedListProps, AnimatedNumber, type AnimatedNumberProps, AreaChartSimple, type AttachedFile, AudioWaveform, type AuroraAnimation, AuroraBorderCard, type AuroraBorderCardProps, AuroraBorderFX, type AuroraBorderFXProps, type AuroraColorOption, type AuroraFXColor, type AuroraFXGlow, type AuroraFXRadius, type AuroraGlow, type AuroraRadius, AuroraSearchPill, type AuroraSearchPillGlow, type AuroraSearchPillProps, type AuroraSearchPillSize, type AuroraSearchPillSpeed, type AuroraSearchPillTheme, type AuroraSearchSource, type AuroraSpeed, type AuroraSpinMode, type AuroraVariant, AuthenticationLayout, Avatar, AvatarFallback, AvatarGroup, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, BannerAlert, BarChartSimple, BarLoader, BatteryLoader, BentoCard, type BentoCardProps, BentoGrid, type BentoGridProps, BentoGridVisual, BlurFade, type BlurFadeProps, BorderBeamButton, BottomNav, Bounce, BouncingBalls, BoxLoader, BoxReveal, type BoxRevealProps, Breadcrumb, BreadcrumbTrail, Button, type ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, type CardProps, CardTitle, CartDrawerItem, CartItem, type CartItemProps, CategoryCard, CenteredNavbar, ChatBubbleAI, ChatBubbleUser, ChatHistorySidebar, ChatInput, ChatInputAction, type ChatInputActionProps, ChatInputActions, ChatInputCompound, ChatInputField, type ChatInputProps, ChatInputSubmit, type ChatInputSubmitProps, ChatLayoutVisual, ChatMessage, ChatMessageAvatar, type ChatMessageAvatarProps, ChatMessageBody, ChatMessageCompound, ChatMessageContent, type ChatMessageContentProps, type ChatMessageContextValue, ChatMessageHeader, type ChatMessageProps, ChatMessageSender, ChatMessageStatus, type ChatMessageStatusProps, ChatMessageTime, Checkbox, CheckoutSummary, type CheckoutSummaryProps, CircleLoader, CircularProgressCard, type CircularProgressCardProps, ClockLoader, CodeBlock, type CodeBlockTheme, CodeSnippet, ColorPickerInput, ColorSelector, ColorSwatch, Command, type CommandItem, CommandPalette, type CommandPaletteItem, type CommandPaletteProps, type CommandProps, CommentActions, CommentAuthor, CommentAvatar, type CommentAvatarProps, CommentBody, type CommentData, CommentHeader, CommentItem, CommentReply, CommentText, CommentThread, CommentThreadCompound, type CommentThreadProps, CommentTime, CompactDataList, ComparisonBar, ComparisonTableMock, ConfettiSuccess, ContactFormPro, ContactList, ContextActionBar, ContextMenu, type ContextMenuItem, type ContextMenuProps, CookieAlert, CoolMode, type CoolModeProps, CopyTextButton, CouponCard, type CouponCardProps, CreditCardVisual, type CreditCardVisualProps, CurrencyInput, CustomizableTable, type CustomizableTableProps, CyberAlert, CyberpunkButton, DarkModeToggle, type DarkModeToggleProps, DashboardGridLayout, DashboardShell, DataTable, type DataTableColumn, DataTablePro, type DataTableProColumn, type DataTableProComponent, type DataTableProProps, type DataTableProps, DestructiveGlowButton, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleAlert, Divider, type DividerProps, Dock, type DockProps, DocumentationLayout, DonutChart, DotsLoader, DottedAvatar, Drawer, type DrawerProps, DropdownMenuVisual, EmbedCard, EmptyStatePro, ErrorInput, type ErrorInputProps, EventScheduleList, ExpandButton, FAQAccordionList, FadeIn, FeatureCard, FeatureShowcase, FeedLayout, FeedbackForm, FileDownloadList, FileDropzone, FileExplorerTable, FilePreviewCard, FileUpload, FileUploadForm, type FileUploadProps, FilterBar, Flip, Float, FloatingActionForm, FloatingLabelInput, FloatingNavbar, FunnelChart, GalleryGrid, GeneratedCodeBlock, GhostInput, GhostOutlineButton, GlassAlert, GlassAvatar, GlassButton, GlassCard, GlassInput, GlassNavbar, GlassButton as GlassmorphButton, GlowAvatar, GlowButton, GlowCard, GlowRingLoader, GlowSpotlightCard, type GlowSpotlightCardProps, GradientButton, GradientCTABlock, GradientCard, GradientInput as GradientFocusInput, GradientInput, GradientMeshCard, GradientRingAvatar, HeaderFooterLayout, Heartbeat, HeartbeatLoader, HeatmapGrid, HexagonAvatar, HourglassLoader, HoverCard, HoverExpandAvatar, IconInputLeft, type IconInputProps, IconInputRight, IconTopAlert, ImageCarousel, ImageCompare, InitialsAvatar, InitialsGradientAvatar, Input, type InputProps, InputWithLabelOverlay, InteractiveCodeBlock, type InteractiveCodeBlockProps, InteractiveHoverButton, type InteractiveHoverButtonProps, InviteUsersForm, InvoiceCard, type InvoiceCardProps, InvoiceTable, JobBoardList, KPIDashboard, KanbanBoardVisual, Kbd, LanguageSelector, LeaderboardTable, LeaderboardWidget, LeftBorderAlert, LineScaleLoader, Loader, type LoaderProps, LoadingButton, LoginFormPro, MagneticButton, Marquee, type MarqueeProps, MessageList, Meteors, type MeteorsProps, MetricCard, MinimalAlert, MinimalDropInput, ModelSelector, ModernAreaChart, type ModernAreaChartProps, ModernBarChart, type ModernBarChartProps, ModernDonutChart, type ModernDonutChartProps, MorphButton, type MorphingColor, MorphingGeometry, type MorphingGeometryProps, type MorphingShape, type MorphingSize, MorphingText, type MorphingTextProps, type MorphingVariant, MultiStepProgress, MusicPlayer, NeonAlert, NeonButton, GlowButton as NeonGlowButton, NeumorphicCard, NeumorphicInput, NewsletterSignup, NotificationCenter, type NotificationCenterProps, type NotificationItemData, NotificationList, NumberStepper, NumberTicker, type NumberTickerProps, OTPCodeInput, OTPInput, OfflineBanner, type OnlineUserData, OnlineUsersList, type OnlineUsersListProps, OrderSummaryCard, OutlineAvatar, GradientButton as OutlineGradientButton, Pagination, PaginationPro, PasswordInput, PasswordStrengthMeter, PaymentFormPro, PillInput, PolymorphAvatar, PricingCard, PricingComparisonTable, PricingSlider, type PricingSliderProps, PricingToggle, ProductCardPro, type ProductCardProProps, ProductGallery, ProductInventoryTable, ProductReview, ProfileSettingsForm, Progress, ProgressCircle, type ProgressProps, ProgressRing, ProgressWidget, PromoCodeInput, PulsatingButton, type PulsatingButtonProps, PulseAnim, PulseAvatar, PulseLoader, QuickActionsWidget, RadioCard, RainbowButton, type RainbowButtonProps, RangeSliderInput, type RangeSliderInputProps, RateLimitAlert, Rating, RatingBreakdown, type RatingBreakdownProps, type RatingIconType, type RatingProps, type RatingSize, RatingStars, type RatingVariant, ReactionAdd, ReactionBar, ReactionBarCompound, type ReactionBarProps, type ReactionData, ReactionItem, type ReactionItemProps, RecentCommentsList, RecentUsersWidget, RegisterFormPro, RetroGrid, type RetroGridProps, RevealClip, RevenueChartWidget, ReviewCard, type ReviewCardProps, ReviewStars, RichTooltip, type RichTooltipProps, RingLoader, RippleButton, Rotate, ScaleIn, ScheduleTable, ScrollArea, type ScrollAreaProps, ScrollBar, SearchInput as SearchCommandInput, SearchInput, SegmentedButton, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectTrigger, SelectValue, ServerStatusWidget, ShadowAvatar, ShareSheet, type ShareSheetProps, ShimmerBlock, ShimmerButton, ShinyButton, ShinyText, type ShinyTextProps, ShippingAddressForm, SidebarLayout, SidebarMenu, SimpleNavbar, SimpleTooltip, type SimpleTooltipProps, SizeSelector, Skeleton, SkeletonCard, SkeletonList, type SkeletonProps, SlideDown, SlideLeft, SlideRight, SlideUp, Slider, type SliderProps, SocialPost, SocialPostAction, type SocialPostActionProps, SocialPostActions, SocialPostAuthor, SocialPostAvatar, SocialPostCompound, SocialPostContent, SocialPostHandle, SocialPostHeader, type SocialPostProps, SocialPostTime, SoftAlert, SolidAlert, SpinnerLoader, SplitButton, SplitScreenLayout, SpotlightCard, SquareAvatar, SquareSpinLoader, SquircleAvatar, StackAvatar, StaggerContainer, StaggerItem, StatCard, StatCounter, StatWidget, StatWidgetCard, StatusAvatar, StatusButton, StepIndicator, type StepItem, StepList, Stepper, type StepperProps, type StepperSize, type StepperVariant, Steps, StorageWidget, SubscriptionCard, type SubscriptionCardProps, SubscriptionForm, SuccessInput, SuggestionChips, Switch, type SwitchProps, TabMenu, Table, TableBody, TableCaption, TableCell, TableCompound, TableFooter, TableHead, TableHeader, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, type TabsListProps, TabsTrigger, type TabsTriggerProps, TagInput, TaskChecklist, TestimonialCarousel, TextButton, TextLoader, TextShimmer, type TextShimmerProps, TextareaAutosize, ThinkingLoader, ThreeDButton, TiltCard, Timeline, TimelineVertical, ToastAlertWrapper, Toaster, ToggleGroupItemWrapper, ToggleGroupWrapper, Tooltip, TooltipAvatar, TooltipContent, TooltipForm, type TooltipProps, TooltipProvider, TooltipRoot, TooltipTrigger, TransactionHistory, TreeNavigation, TrustBadge, TrustBanner, TypingAnimation, type TypingAnimationProps, UnderlineInput, UploadProgress, UserDirectoryTable, UserMenuDropdown, UserProfileAvatar, type UserProfileAvatarProps, UserProfileBio, UserProfileCard, UserProfileCardCompound, type UserProfileCardProps, UserProfileCover, type UserProfileCoverProps, UserProfileFollowButton, type UserProfileFollowButtonProps, UserProfileHandle, UserProfileInfo, UserProfileName, UserProfileStat, type UserProfileStatProps, UserProfileStats, VideoModalVisual, VideoPlayer, VisualSelectCard, VoiceInputPulse, WaitlistForm, WifiLoader, WiggleHover, WordFadeReveal, type WordFadeRevealProps, WordPullUp, type WordPullUpProps, badgeVariants, buttonVariants, cn, defaultAuroraColors };