@szymonpiatek/designsystem 0.0.8 → 0.0.10

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.cts CHANGED
@@ -1,9 +1,8 @@
1
1
  import * as react from 'react';
2
- import { ReactNode, MouseEventHandler, AriaAttributes, ButtonHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, HTMLAttributes, CSSProperties, FormEvent } from 'react';
2
+ import { ReactNode, MouseEventHandler, AriaAttributes, ButtonHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, HTMLAttributes, CSSProperties, ImgHTMLAttributes, FormEvent } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
+ import { Theme, CSSObject, ThemeOptions } from '@mui/material/styles';
4
5
  import * as _mui_material from '@mui/material';
5
- import { ContainerProps as ContainerProps$1 } from '@mui/material';
6
- import { ThemeOptions, Theme } from '@mui/material/styles';
7
6
 
8
7
  declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
9
8
 
@@ -299,16 +298,6 @@ interface DateTimePickerProps {
299
298
  }
300
299
  declare const dateTimePickerModes: DateTimePickerMode[];
301
300
 
302
- declare const CountryFlag: {
303
- ({ countryCode, size, style, ...rest }: CountryFlagProps): react_jsx_runtime.JSX.Element;
304
- displayName: string;
305
- };
306
-
307
- interface CountryFlagProps extends HTMLAttributes<HTMLSpanElement> {
308
- countryCode: string;
309
- size?: InputSize;
310
- }
311
-
312
301
  type CardVariant = 'default' | 'muted' | 'accent' | 'primary' | 'ghost' | 'elevated' | 'glass' | 'gradient' | 'gradient-primary' | 'outline' | 'outline-primary' | 'flat' | 'dots' | 'grid' | 'mesh' | 'aurora' | 'spotlight' | 'neon' | 'diagonal' | 'blueprint' | 'noise' | 'crosshatch';
313
302
  type CardPadding = 'none' | 'sm' | 'md' | 'lg' | 'xl';
314
303
  type CardRounded = 'none' | 'sm' | 'md' | 'lg' | 'full';
@@ -323,24 +312,25 @@ declare const cardVariants: CardVariant[];
323
312
  declare const cardPaddings: CardPadding[];
324
313
  declare const cardRoundeds: CardRounded[];
325
314
 
326
- declare function Badge({ variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
315
+ declare const variantStyles: {
316
+ default: (theme: Theme) => CSSObject;
317
+ secondary: (theme: Theme) => CSSObject;
318
+ outline: (theme: Theme) => CSSObject;
319
+ destructive: (theme: Theme) => CSSObject;
320
+ success: (theme: Theme) => CSSObject;
321
+ ghost: (theme: Theme) => CSSObject;
322
+ warning: (theme: Theme) => CSSObject;
323
+ promo: (theme: Theme) => CSSObject;
324
+ };
325
+ type BadgeVariant = keyof typeof variantStyles;
327
326
  declare const badgeVariants: BadgeVariant[];
328
327
 
329
- type BadgeVariant = 'default' | 'secondary' | 'outline' | 'destructive' | 'success' | 'ghost' | 'promo';
328
+ declare function Badge({ variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
329
+
330
330
  interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
331
331
  variant?: BadgeVariant;
332
332
  }
333
333
 
334
- type SaleBadgeVariant = 'default' | 'flash' | 'new' | 'hot';
335
- interface SaleBadgeProps extends HTMLAttributes<HTMLSpanElement> {
336
- discount?: number;
337
- label?: string;
338
- variant?: SaleBadgeVariant;
339
- }
340
-
341
- declare function SaleBadge({ discount, label, variant, ...props }: SaleBadgeProps): react_jsx_runtime.JSX.Element;
342
- declare const saleBadgeVariants: SaleBadgeVariant[];
343
-
344
334
  declare function Avatar({ initials, size, color, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
345
335
  declare const avatarSizes: AvatarSize[];
346
336
  declare const avatarColors: AvatarColor[];
@@ -353,6 +343,16 @@ interface AvatarProps extends Omit<HTMLAttributes<HTMLDivElement>, 'color'> {
353
343
  color?: AvatarColor;
354
344
  }
355
345
 
346
+ declare const CountryFlag: {
347
+ ({ countryCode, size, style, ...rest }: CountryFlagProps): react_jsx_runtime.JSX.Element;
348
+ displayName: string;
349
+ };
350
+
351
+ interface CountryFlagProps extends HTMLAttributes<HTMLSpanElement> {
352
+ countryCode: string;
353
+ size?: InputSize;
354
+ }
355
+
356
356
  declare function SectionHeading({ title, description, align, as, ...props }: SectionHeadingProps): react_jsx_runtime.JSX.Element;
357
357
  declare const sectionHeadingAligns: SectionHeadingAlign[];
358
358
 
@@ -494,6 +494,19 @@ declare const CategoryCardInfo: {
494
494
  displayName: string;
495
495
  };
496
496
 
497
+ declare const ProfileCard: react.ForwardRefExoticComponent<ProfileCardProps & react.RefAttributes<HTMLDivElement>>;
498
+
499
+ interface ProfileCardProps extends HTMLAttributes<HTMLDivElement> {
500
+ name: string;
501
+ subtitle?: string;
502
+ initials?: string;
503
+ avatarUrl?: string;
504
+ avatarColor?: AvatarColor;
505
+ avatarSize?: AvatarSize;
506
+ actions?: ReactNode;
507
+ cardVariant?: CardVariant;
508
+ }
509
+
497
510
  declare const DealCard: react.ForwardRefExoticComponent<DealCardProps & react.RefAttributes<HTMLDivElement>>;
498
511
 
499
512
  interface DealCardProps extends HTMLAttributes<HTMLDivElement> {
@@ -522,6 +535,7 @@ interface PostCardProps extends HTMLAttributes<HTMLDivElement> {
522
535
  author?: string;
523
536
  href?: string;
524
537
  category?: string;
538
+ categoryBadgeVariant?: BadgeVariant;
525
539
  variant?: PostCardVariant;
526
540
  cardVariant?: CardVariant;
527
541
  }
@@ -577,6 +591,7 @@ interface PricingCardProps extends HTMLAttributes<HTMLDivElement> {
577
591
  href?: string;
578
592
  popular?: boolean;
579
593
  popularLabel?: string;
594
+ popularBadgeVariant?: BadgeVariant;
580
595
  cardVariant?: CardVariant;
581
596
  }
582
597
 
@@ -613,10 +628,14 @@ interface ProductCardProps extends HTMLAttributes<HTMLDivElement> {
613
628
  lowestPrice?: number;
614
629
  badge?: string;
615
630
  badgeVariant?: BadgeVariant;
631
+ imageRatio?: AspectRatioPreset | number;
616
632
  rating?: number;
617
633
  reviewCount?: number;
618
634
  ctaLabel?: string;
619
635
  onAddToCart?: () => void;
636
+ buttonVariant?: ButtonVariant;
637
+ disabledButton?: boolean;
638
+ hideButton?: boolean;
620
639
  }
621
640
 
622
641
  interface ProductCardImageProps {
@@ -839,6 +858,7 @@ interface ProductGalleryProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onCh
839
858
  images: ProductGalleryImage[];
840
859
  selectedIndex?: number;
841
860
  onSelect?: (index: number) => void;
861
+ imageRatio?: AspectRatioPreset | number;
842
862
  }
843
863
 
844
864
  declare const PromoStrip: react.ForwardRefExoticComponent<PromoStripProps & react.RefAttributes<HTMLDivElement>>;
@@ -930,6 +950,59 @@ interface VariantSelectorProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onC
930
950
  declare const VariantSelector: react.ForwardRefExoticComponent<VariantSelectorProps & react.RefAttributes<HTMLDivElement>>;
931
951
  declare const variantSelectorModes: VariantSelectorMode[];
932
952
 
953
+ declare const CommentCard: react.ForwardRefExoticComponent<CommentCardProps & react.RefAttributes<HTMLDivElement>>;
954
+
955
+ interface CommentAuthor {
956
+ name: string;
957
+ avatarUrl?: string;
958
+ isPostAuthor?: boolean;
959
+ }
960
+ interface CommentItem {
961
+ id: string;
962
+ author: CommentAuthor;
963
+ date: string;
964
+ content: string;
965
+ likesCount?: number;
966
+ replies?: CommentItem[];
967
+ }
968
+ interface CommentCardProps extends HTMLAttributes<HTMLDivElement> {
969
+ comment: CommentItem;
970
+ depth?: number;
971
+ onLike?: (commentId: string) => void;
972
+ onReply?: (commentId: string) => void;
973
+ }
974
+
975
+ interface CommentMetaProps {
976
+ author: CommentAuthor;
977
+ date: string;
978
+ }
979
+
980
+ declare function CommentMeta({ author, date }: CommentMetaProps): react_jsx_runtime.JSX.Element;
981
+ declare namespace CommentMeta {
982
+ var displayName: string;
983
+ }
984
+
985
+ interface CommentBodyProps {
986
+ content: string;
987
+ }
988
+
989
+ declare function CommentBody({ content }: CommentBodyProps): react_jsx_runtime.JSX.Element;
990
+ declare namespace CommentBody {
991
+ var displayName: string;
992
+ }
993
+
994
+ interface CommentActionsProps {
995
+ commentId: string;
996
+ likesCount?: number;
997
+ onLike?: (commentId: string) => void;
998
+ onReply?: (commentId: string) => void;
999
+ }
1000
+
1001
+ declare function CommentActions({ commentId, likesCount, onLike, onReply }: CommentActionsProps): react_jsx_runtime.JSX.Element;
1002
+ declare namespace CommentActions {
1003
+ var displayName: string;
1004
+ }
1005
+
933
1006
  declare const FaqItem: react.ForwardRefExoticComponent<FaqItemProps & react.RefAttributes<HTMLDivElement>>;
934
1007
 
935
1008
  interface FaqItemData {
@@ -1035,6 +1108,16 @@ interface CarouselProps {
1035
1108
  className?: string;
1036
1109
  }
1037
1110
 
1111
+ interface ImageProps extends Omit<ImgHTMLAttributes<HTMLImageElement>, 'src'> {
1112
+ src?: string;
1113
+ alt?: string;
1114
+ ratio?: AspectRatioPreset | number;
1115
+ objectFit?: CSSProperties['objectFit'];
1116
+ objectPosition?: CSSProperties['objectPosition'];
1117
+ }
1118
+
1119
+ declare const Image: react.ForwardRefExoticComponent<ImageProps & react.RefAttributes<HTMLImageElement>>;
1120
+
1038
1121
  declare function VideoPlayer({ src, provider, title, poster, ratio, autoPlay, muted, loop, controls, className, }: VideoPlayerProps): react_jsx_runtime.JSX.Element;
1039
1122
 
1040
1123
  type VideoPlayerProvider = 'youtube' | 'vimeo' | 'local' | 'auto';
@@ -1139,7 +1222,7 @@ type AlertSeverity = 'info' | 'success' | 'warning' | 'error';
1139
1222
  interface AlertProps extends HTMLAttributes<HTMLDivElement> {
1140
1223
  severity?: AlertSeverity;
1141
1224
  title?: string;
1142
- children: ReactNode;
1225
+ children?: ReactNode;
1143
1226
  onClose?: () => void;
1144
1227
  icon?: ReactNode;
1145
1228
  }
@@ -1427,6 +1510,16 @@ declare const ReviewSummary: {
1427
1510
  displayName: string;
1428
1511
  };
1429
1512
 
1513
+ declare const CommentSection: react.ForwardRefExoticComponent<CommentSectionProps & react.RefAttributes<HTMLElement>>;
1514
+
1515
+ interface CommentSectionProps extends HTMLAttributes<HTMLElement> {
1516
+ title?: string;
1517
+ comments: CommentItem[];
1518
+ maxWidth?: ContainerMaxWidth;
1519
+ onLike?: (commentId: string) => void;
1520
+ onReply?: (commentId: string) => void;
1521
+ }
1522
+
1430
1523
  declare const FaqSection: react.ForwardRefExoticComponent<FaqSectionProps & react.RefAttributes<HTMLElement>>;
1431
1524
 
1432
1525
  interface FaqSectionProps extends HTMLAttributes<HTMLElement> {
@@ -1631,7 +1724,7 @@ interface FooterProps {
1631
1724
  columns?: FooterColumn[];
1632
1725
  socialLinks?: SocialLink[];
1633
1726
  copyright?: string;
1634
- maxWidth?: ContainerProps$1['maxWidth'];
1727
+ maxWidth?: ContainerMaxWidth;
1635
1728
  style?: CSSProperties;
1636
1729
  }
1637
1730
 
@@ -1648,7 +1741,7 @@ interface NavbarProps {
1648
1741
  actions?: ReactNode;
1649
1742
  sticky?: boolean;
1650
1743
  variant?: 'filled' | 'transparent';
1651
- maxWidth?: ContainerProps$1['maxWidth'];
1744
+ maxWidth?: ContainerMaxWidth;
1652
1745
  style?: CSSProperties;
1653
1746
  }
1654
1747
 
@@ -1700,4 +1793,4 @@ declare const themeLight: _mui_material.Theme;
1700
1793
  declare const themeDark: _mui_material.Theme;
1701
1794
  declare const themeHighContrast: _mui_material.Theme;
1702
1795
 
1703
- export { Accordion, type AccordionItemData, type AccordionProps, type AccordionVariant, Alert, type AlertProps, type AlertSeverity, Article, type ArticleProps, AspectRatio, type AspectRatioPreset, type AspectRatioProps, Avatar, type AvatarColor, type AvatarProps, type AvatarSize, BackToTop, type BackToTopPosition, type BackToTopProps, type BackToTopVariant, Badge, type BadgeProps, type BadgeVariant, BaseInput, type BaseInputProps, BaseSelectInput, type BaseSelectInputProps, Box, type BoxProps, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardPadding, type CardProps, type CardRounded, type CardVariant, Carousel, type CarouselProps, type CarouselSlide, CartButton, type CartButtonProps, type CartButtonSize, CartDrawer, type CartDrawerItem$1 as CartDrawerItem, CartDrawerItem as CartDrawerItemComponent, type CartDrawerItemProps, type CartDrawerProps, CategoryCard, CategoryCardImage, type CategoryCardImageProps, CategoryCardInfo, type CategoryCardInfoProps, type CategoryCardProps, CheckboxInput, type CheckboxInputProps, type CommandGroup, type CommandItem, CommandPalette, type CommandPaletteProps, type CompareProduct, type CompareSpecValue, CompareTool, type CompareToolProps, Container, type ContainerMaxWidth, type ContainerProps, ContextMenu, type ContextMenuItemData, type ContextMenuProps, type CookieCategory, CookieConsent, type CookieConsentProps, type CookiePreferences, CountdownTimer, type CountdownTimerProps, type CountdownTimerVariant, CountryFlag, type CountryFlagProps, CouponInput, type CouponInputProps, type CreateMyThemeOptions, DateTimePicker, type DateTimePickerMode, type DateTimePickerProps, DealCard, type DealCardProps, EmailInput, type EmailInputProps, EmptyState, type EmptyStateProps, FaqItem, type FaqItemData, type FaqItemProps, FaqSection, type FaqSectionProps, type Feature, FeatureGrid, type FeatureGridColumns, type FeatureGridProps, FeatureItem, type FeatureItemProps, FileInput, type FileInputProps, type FilterOption, FilterSidebar, type FilterSidebarProps, Footer, type FooterColumn, type FooterLink, type FooterProps, type GapValue, type GridValue, Lightbox, type LightboxImage, type LightboxProps, List, type ListItemData, type ListProps, type ListSize, type ListVariant, LogoCloud, type LogoCloudColumns, type LogoTileItem as LogoCloudItem, type LogoCloudProps, type LogoCloudVariant, LogoTile, type LogoTileItem, type LogoTileProps, type LogoTileVariant, Main, type MainProps, Marquee, type MarqueeDirection, type MarqueeProps, type MarqueeSpeed, Modal, type ModalProps, type ModalSize, MultiSelectInput, type MultiSelectInputProps, type MyThemeMode, MyThemeProvider, type MyThemeProviderProps, type NavItem, Navbar, type NavbarProps, type NewsletterLayout, NewsletterSection, type NewsletterSectionProps, NumberInput, type NumberInputProps, OrderSummary, type OrderSummaryItem$1 as OrderSummaryItem, OrderSummaryItem as OrderSummaryItemComponent, type OrderSummaryItemProps, type OrderSummaryLine, type OrderSummaryProps, OrderSummaryRow, type OrderSummaryRowProps, PaginationBar, type PaginationBarProps, type PaginationBarSize, PaginationButton, type PaginationButtonProps, type PaginationButtonSize, PaginationEllipsis, Partners, PasswordInput, type PasswordInputProps, type PaymentMethod, PaymentMethodSelector, type PaymentMethodSelectorProps, type PhoneCountry, PhoneInput, type PhoneInputMeta, type PhoneInputProps, PostCard, PostCardImage, type PostCardImageProps, PostCardMeta, type PostCardMetaProps, type PostCardProps, type PostCardVariant, Price, type PriceProps, type PriceRange, type PriceSize, PricingCard, PricingCardFeatureList, type PricingCardFeatureListProps, PricingCardPrice, type PricingCardPriceProps, type PricingCardProps, type PricingFeature, PricingSection, type PricingSectionProps, ProcessSection, type ProcessSectionProps, type ProcessSectionStep, ProcessStep, type ProcessStepProps, ProductCard, ProductCardHorizontal, type ProductCardHorizontalProps, ProductCardImage, type ProductCardImageProps, type ProductCardProps, ProductGallery, type ProductGalleryImage, type ProductGalleryProps, ProgressBar, type ProgressBarProps, type ProgressBarSize, type ProgressBarVariant, ProgressCircle, type ProgressCircleProps, type ProgressCircleSize, type ProgressCircleVariant, PromoStrip, type PromoStripProps, type PromoStripVariant, Prose, type ProseProps, QuantitySelector, type QuantitySelectorProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, Rating, type RatingProps, RelatedProducts, type RelatedProductsLayout, type RelatedProductsProps, type ResponsiveValue, type Review, ReviewItem, type ReviewItemProps, ReviewSection, type ReviewSectionProps, ReviewSummary, type ReviewSummaryProps, SaleBadge, type SaleBadgeProps, type SaleBadgeVariant, SearchInput, type SearchInputProps, Section, SectionHeading, type SectionHeadingAlign, type SectionHeadingProps, type SectionProps, SelectInput, type SelectInputProps, type SelectOption, type ShippingOption, ShippingSelector, type ShippingSelectorProps, Skeleton, type SkeletonProps, type SkeletonVariant, type SocialLink, type SocialPlatform, SortBar, type SortBarProps, type SortOption, Spinner, type SpinnerColor, type SpinnerProps, type SpinnerSize, type SpinnerVariant, StatCard, type StatCardProps, type StatItem, StatsSection, type StatsSectionColumns, type StatsSectionProps, StockStatus, type StockStatusProps, type StockStatusValue, type SwitchColor, SwitchInput, type SwitchInputProps, type TabItem, Tabs, type TabsProps, type TabsVariant, type TeamMember, TeamMemberAvatar, type TeamMemberAvatarProps, TeamMemberCard, type TeamMemberCardProps, TeamMemberInfo, type TeamMemberInfoProps, TeamSection, type TeamSectionColumns, type TeamSectionProps, type Testimonial, TestimonialAuthor, type TestimonialAuthorProps, TestimonialCard, type TestimonialCardProps, TestimonialQuote, type TestimonialQuoteProps, TestimonialsSection, type TestimonialsSectionColumns, type TestimonialsSectionProps, TextInput, type TextInputProps, TextareaInput, type TextareaInputProps, Timeline, type TimelineAlign, type TimelineItem, type TimelineItemStatus, type TimelineProps, type TimelineVariant, type VariantOption, VariantSelector, type VariantSelectorMode, type VariantSelectorProps, VideoPlayer, type VideoPlayerProps, type VideoPlayerProvider, type ViewMode, VoucherCard, type VoucherCardProps, WishlistButton, type WishlistButtonProps, accordionVariants, alertSeverities, aspectRatioPresets, avatarColors, avatarSizes, backToTopPositions, backToTopVariants, badgeVariants, cardPaddings, cardRoundeds, cardVariants, countdownTimerVariants, createMyTheme, dateTimePickerModes, defaultCookieCategories, featureGridColumns, listSizes, listVariants, logoCloudColumns, logoCloudVariants, logoTileVariants, marqueeDirections, marqueeSpeeds, modalSizes, myTheme, newsletterLayouts, postCardVariants, priceSizes, progressBarSizes, progressBarVariants, progressCircleSizes, progressCircleVariants, promoStripVariants, rangeSliderSizes, relatedProductsLayouts, saleBadgeVariants, sectionHeadingAligns, skeletonVariants, spinnerColors, spinnerSizes, spinnerVariants, statsSectionColumns, stockStatusValues, switchColors, tabsVariants, teamSectionColumns, testimonialsSectionColumns, themeDark, themeHighContrast, themeLight, timelineItemStatuses, timelineVariants, variantSelectorModes };
1796
+ export { Accordion, type AccordionItemData, type AccordionProps, type AccordionVariant, Alert, type AlertProps, type AlertSeverity, Article, type ArticleProps, AspectRatio, type AspectRatioPreset, type AspectRatioProps, Avatar, type AvatarColor, type AvatarProps, type AvatarSize, BackToTop, type BackToTopPosition, type BackToTopProps, type BackToTopVariant, Badge, type BadgeProps, type BadgeVariant, BaseInput, type BaseInputProps, BaseSelectInput, type BaseSelectInputProps, Box, type BoxProps, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardPadding, type CardProps, type CardRounded, type CardVariant, Carousel, type CarouselProps, type CarouselSlide, CartButton, type CartButtonProps, type CartButtonSize, CartDrawer, type CartDrawerItem$1 as CartDrawerItem, CartDrawerItem as CartDrawerItemComponent, type CartDrawerItemProps, type CartDrawerProps, CategoryCard, CategoryCardImage, type CategoryCardImageProps, CategoryCardInfo, type CategoryCardInfoProps, type CategoryCardProps, CheckboxInput, type CheckboxInputProps, type CommandGroup, type CommandItem, CommandPalette, type CommandPaletteProps, CommentActions, type CommentActionsProps, type CommentAuthor, CommentBody, type CommentBodyProps, CommentCard, type CommentCardProps, type CommentItem, CommentMeta, type CommentMetaProps, CommentSection, type CommentSectionProps, type CompareProduct, type CompareSpecValue, CompareTool, type CompareToolProps, Container, type ContainerMaxWidth, type ContainerProps, ContextMenu, type ContextMenuItemData, type ContextMenuProps, type CookieCategory, CookieConsent, type CookieConsentProps, type CookiePreferences, CountdownTimer, type CountdownTimerProps, type CountdownTimerVariant, CountryFlag, type CountryFlagProps, CouponInput, type CouponInputProps, type CreateMyThemeOptions, DateTimePicker, type DateTimePickerMode, type DateTimePickerProps, DealCard, type DealCardProps, EmailInput, type EmailInputProps, EmptyState, type EmptyStateProps, FaqItem, type FaqItemData, type FaqItemProps, FaqSection, type FaqSectionProps, type Feature, FeatureGrid, type FeatureGridColumns, type FeatureGridProps, FeatureItem, type FeatureItemProps, FileInput, type FileInputProps, type FilterOption, FilterSidebar, type FilterSidebarProps, Footer, type FooterColumn, type FooterLink, type FooterProps, type GapValue, type GridValue, Image, type ImageProps, Lightbox, type LightboxImage, type LightboxProps, List, type ListItemData, type ListProps, type ListSize, type ListVariant, LogoCloud, type LogoCloudColumns, type LogoTileItem as LogoCloudItem, type LogoCloudProps, type LogoCloudVariant, LogoTile, type LogoTileItem, type LogoTileProps, type LogoTileVariant, Main, type MainProps, Marquee, type MarqueeDirection, type MarqueeProps, type MarqueeSpeed, Modal, type ModalProps, type ModalSize, MultiSelectInput, type MultiSelectInputProps, type MyThemeMode, MyThemeProvider, type MyThemeProviderProps, type NavItem, Navbar, type NavbarProps, type NewsletterLayout, NewsletterSection, type NewsletterSectionProps, NumberInput, type NumberInputProps, OrderSummary, type OrderSummaryItem$1 as OrderSummaryItem, OrderSummaryItem as OrderSummaryItemComponent, type OrderSummaryItemProps, type OrderSummaryLine, type OrderSummaryProps, OrderSummaryRow, type OrderSummaryRowProps, PaginationBar, type PaginationBarProps, type PaginationBarSize, PaginationButton, type PaginationButtonProps, type PaginationButtonSize, PaginationEllipsis, Partners, PasswordInput, type PasswordInputProps, type PaymentMethod, PaymentMethodSelector, type PaymentMethodSelectorProps, type PhoneCountry, PhoneInput, type PhoneInputMeta, type PhoneInputProps, PostCard, PostCardImage, type PostCardImageProps, PostCardMeta, type PostCardMetaProps, type PostCardProps, type PostCardVariant, Price, type PriceProps, type PriceRange, type PriceSize, PricingCard, PricingCardFeatureList, type PricingCardFeatureListProps, PricingCardPrice, type PricingCardPriceProps, type PricingCardProps, type PricingFeature, PricingSection, type PricingSectionProps, ProcessSection, type ProcessSectionProps, type ProcessSectionStep, ProcessStep, type ProcessStepProps, ProductCard, ProductCardHorizontal, type ProductCardHorizontalProps, ProductCardImage, type ProductCardImageProps, type ProductCardProps, ProductGallery, type ProductGalleryImage, type ProductGalleryProps, ProfileCard, type ProfileCardProps, ProgressBar, type ProgressBarProps, type ProgressBarSize, type ProgressBarVariant, ProgressCircle, type ProgressCircleProps, type ProgressCircleSize, type ProgressCircleVariant, PromoStrip, type PromoStripProps, type PromoStripVariant, Prose, type ProseProps, QuantitySelector, type QuantitySelectorProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, Rating, type RatingProps, RelatedProducts, type RelatedProductsLayout, type RelatedProductsProps, type ResponsiveValue, type Review, ReviewItem, type ReviewItemProps, ReviewSection, type ReviewSectionProps, ReviewSummary, type ReviewSummaryProps, SearchInput, type SearchInputProps, Section, SectionHeading, type SectionHeadingAlign, type SectionHeadingProps, type SectionProps, SelectInput, type SelectInputProps, type SelectOption, type ShippingOption, ShippingSelector, type ShippingSelectorProps, Skeleton, type SkeletonProps, type SkeletonVariant, type SocialLink, type SocialPlatform, SortBar, type SortBarProps, type SortOption, Spinner, type SpinnerColor, type SpinnerProps, type SpinnerSize, type SpinnerVariant, StatCard, type StatCardProps, type StatItem, StatsSection, type StatsSectionColumns, type StatsSectionProps, StockStatus, type StockStatusProps, type StockStatusValue, type SwitchColor, SwitchInput, type SwitchInputProps, type TabItem, Tabs, type TabsProps, type TabsVariant, type TeamMember, TeamMemberAvatar, type TeamMemberAvatarProps, TeamMemberCard, type TeamMemberCardProps, TeamMemberInfo, type TeamMemberInfoProps, TeamSection, type TeamSectionColumns, type TeamSectionProps, type Testimonial, TestimonialAuthor, type TestimonialAuthorProps, TestimonialCard, type TestimonialCardProps, TestimonialQuote, type TestimonialQuoteProps, TestimonialsSection, type TestimonialsSectionColumns, type TestimonialsSectionProps, TextInput, type TextInputProps, TextareaInput, type TextareaInputProps, Timeline, type TimelineAlign, type TimelineItem, type TimelineItemStatus, type TimelineProps, type TimelineVariant, type VariantOption, VariantSelector, type VariantSelectorMode, type VariantSelectorProps, VideoPlayer, type VideoPlayerProps, type VideoPlayerProvider, type ViewMode, VoucherCard, type VoucherCardProps, WishlistButton, type WishlistButtonProps, accordionVariants, alertSeverities, aspectRatioPresets, avatarColors, avatarSizes, backToTopPositions, backToTopVariants, badgeVariants, cardPaddings, cardRoundeds, cardVariants, countdownTimerVariants, createMyTheme, dateTimePickerModes, defaultCookieCategories, featureGridColumns, listSizes, listVariants, logoCloudColumns, logoCloudVariants, logoTileVariants, marqueeDirections, marqueeSpeeds, modalSizes, myTheme, newsletterLayouts, postCardVariants, priceSizes, progressBarSizes, progressBarVariants, progressCircleSizes, progressCircleVariants, promoStripVariants, rangeSliderSizes, relatedProductsLayouts, sectionHeadingAligns, skeletonVariants, spinnerColors, spinnerSizes, spinnerVariants, statsSectionColumns, stockStatusValues, switchColors, tabsVariants, teamSectionColumns, testimonialsSectionColumns, themeDark, themeHighContrast, themeLight, timelineItemStatuses, timelineVariants, variantSelectorModes };
package/dist/index.d.ts CHANGED
@@ -1,9 +1,8 @@
1
1
  import * as react from 'react';
2
- import { ReactNode, MouseEventHandler, AriaAttributes, ButtonHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, HTMLAttributes, CSSProperties, FormEvent } from 'react';
2
+ import { ReactNode, MouseEventHandler, AriaAttributes, ButtonHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, HTMLAttributes, CSSProperties, ImgHTMLAttributes, FormEvent } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
+ import { Theme, CSSObject, ThemeOptions } from '@mui/material/styles';
4
5
  import * as _mui_material from '@mui/material';
5
- import { ContainerProps as ContainerProps$1 } from '@mui/material';
6
- import { ThemeOptions, Theme } from '@mui/material/styles';
7
6
 
8
7
  declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
9
8
 
@@ -299,16 +298,6 @@ interface DateTimePickerProps {
299
298
  }
300
299
  declare const dateTimePickerModes: DateTimePickerMode[];
301
300
 
302
- declare const CountryFlag: {
303
- ({ countryCode, size, style, ...rest }: CountryFlagProps): react_jsx_runtime.JSX.Element;
304
- displayName: string;
305
- };
306
-
307
- interface CountryFlagProps extends HTMLAttributes<HTMLSpanElement> {
308
- countryCode: string;
309
- size?: InputSize;
310
- }
311
-
312
301
  type CardVariant = 'default' | 'muted' | 'accent' | 'primary' | 'ghost' | 'elevated' | 'glass' | 'gradient' | 'gradient-primary' | 'outline' | 'outline-primary' | 'flat' | 'dots' | 'grid' | 'mesh' | 'aurora' | 'spotlight' | 'neon' | 'diagonal' | 'blueprint' | 'noise' | 'crosshatch';
313
302
  type CardPadding = 'none' | 'sm' | 'md' | 'lg' | 'xl';
314
303
  type CardRounded = 'none' | 'sm' | 'md' | 'lg' | 'full';
@@ -323,24 +312,25 @@ declare const cardVariants: CardVariant[];
323
312
  declare const cardPaddings: CardPadding[];
324
313
  declare const cardRoundeds: CardRounded[];
325
314
 
326
- declare function Badge({ variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
315
+ declare const variantStyles: {
316
+ default: (theme: Theme) => CSSObject;
317
+ secondary: (theme: Theme) => CSSObject;
318
+ outline: (theme: Theme) => CSSObject;
319
+ destructive: (theme: Theme) => CSSObject;
320
+ success: (theme: Theme) => CSSObject;
321
+ ghost: (theme: Theme) => CSSObject;
322
+ warning: (theme: Theme) => CSSObject;
323
+ promo: (theme: Theme) => CSSObject;
324
+ };
325
+ type BadgeVariant = keyof typeof variantStyles;
327
326
  declare const badgeVariants: BadgeVariant[];
328
327
 
329
- type BadgeVariant = 'default' | 'secondary' | 'outline' | 'destructive' | 'success' | 'ghost' | 'promo';
328
+ declare function Badge({ variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
329
+
330
330
  interface BadgeProps extends HTMLAttributes<HTMLSpanElement> {
331
331
  variant?: BadgeVariant;
332
332
  }
333
333
 
334
- type SaleBadgeVariant = 'default' | 'flash' | 'new' | 'hot';
335
- interface SaleBadgeProps extends HTMLAttributes<HTMLSpanElement> {
336
- discount?: number;
337
- label?: string;
338
- variant?: SaleBadgeVariant;
339
- }
340
-
341
- declare function SaleBadge({ discount, label, variant, ...props }: SaleBadgeProps): react_jsx_runtime.JSX.Element;
342
- declare const saleBadgeVariants: SaleBadgeVariant[];
343
-
344
334
  declare function Avatar({ initials, size, color, ...props }: AvatarProps): react_jsx_runtime.JSX.Element;
345
335
  declare const avatarSizes: AvatarSize[];
346
336
  declare const avatarColors: AvatarColor[];
@@ -353,6 +343,16 @@ interface AvatarProps extends Omit<HTMLAttributes<HTMLDivElement>, 'color'> {
353
343
  color?: AvatarColor;
354
344
  }
355
345
 
346
+ declare const CountryFlag: {
347
+ ({ countryCode, size, style, ...rest }: CountryFlagProps): react_jsx_runtime.JSX.Element;
348
+ displayName: string;
349
+ };
350
+
351
+ interface CountryFlagProps extends HTMLAttributes<HTMLSpanElement> {
352
+ countryCode: string;
353
+ size?: InputSize;
354
+ }
355
+
356
356
  declare function SectionHeading({ title, description, align, as, ...props }: SectionHeadingProps): react_jsx_runtime.JSX.Element;
357
357
  declare const sectionHeadingAligns: SectionHeadingAlign[];
358
358
 
@@ -494,6 +494,19 @@ declare const CategoryCardInfo: {
494
494
  displayName: string;
495
495
  };
496
496
 
497
+ declare const ProfileCard: react.ForwardRefExoticComponent<ProfileCardProps & react.RefAttributes<HTMLDivElement>>;
498
+
499
+ interface ProfileCardProps extends HTMLAttributes<HTMLDivElement> {
500
+ name: string;
501
+ subtitle?: string;
502
+ initials?: string;
503
+ avatarUrl?: string;
504
+ avatarColor?: AvatarColor;
505
+ avatarSize?: AvatarSize;
506
+ actions?: ReactNode;
507
+ cardVariant?: CardVariant;
508
+ }
509
+
497
510
  declare const DealCard: react.ForwardRefExoticComponent<DealCardProps & react.RefAttributes<HTMLDivElement>>;
498
511
 
499
512
  interface DealCardProps extends HTMLAttributes<HTMLDivElement> {
@@ -522,6 +535,7 @@ interface PostCardProps extends HTMLAttributes<HTMLDivElement> {
522
535
  author?: string;
523
536
  href?: string;
524
537
  category?: string;
538
+ categoryBadgeVariant?: BadgeVariant;
525
539
  variant?: PostCardVariant;
526
540
  cardVariant?: CardVariant;
527
541
  }
@@ -577,6 +591,7 @@ interface PricingCardProps extends HTMLAttributes<HTMLDivElement> {
577
591
  href?: string;
578
592
  popular?: boolean;
579
593
  popularLabel?: string;
594
+ popularBadgeVariant?: BadgeVariant;
580
595
  cardVariant?: CardVariant;
581
596
  }
582
597
 
@@ -613,10 +628,14 @@ interface ProductCardProps extends HTMLAttributes<HTMLDivElement> {
613
628
  lowestPrice?: number;
614
629
  badge?: string;
615
630
  badgeVariant?: BadgeVariant;
631
+ imageRatio?: AspectRatioPreset | number;
616
632
  rating?: number;
617
633
  reviewCount?: number;
618
634
  ctaLabel?: string;
619
635
  onAddToCart?: () => void;
636
+ buttonVariant?: ButtonVariant;
637
+ disabledButton?: boolean;
638
+ hideButton?: boolean;
620
639
  }
621
640
 
622
641
  interface ProductCardImageProps {
@@ -839,6 +858,7 @@ interface ProductGalleryProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onCh
839
858
  images: ProductGalleryImage[];
840
859
  selectedIndex?: number;
841
860
  onSelect?: (index: number) => void;
861
+ imageRatio?: AspectRatioPreset | number;
842
862
  }
843
863
 
844
864
  declare const PromoStrip: react.ForwardRefExoticComponent<PromoStripProps & react.RefAttributes<HTMLDivElement>>;
@@ -930,6 +950,59 @@ interface VariantSelectorProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onC
930
950
  declare const VariantSelector: react.ForwardRefExoticComponent<VariantSelectorProps & react.RefAttributes<HTMLDivElement>>;
931
951
  declare const variantSelectorModes: VariantSelectorMode[];
932
952
 
953
+ declare const CommentCard: react.ForwardRefExoticComponent<CommentCardProps & react.RefAttributes<HTMLDivElement>>;
954
+
955
+ interface CommentAuthor {
956
+ name: string;
957
+ avatarUrl?: string;
958
+ isPostAuthor?: boolean;
959
+ }
960
+ interface CommentItem {
961
+ id: string;
962
+ author: CommentAuthor;
963
+ date: string;
964
+ content: string;
965
+ likesCount?: number;
966
+ replies?: CommentItem[];
967
+ }
968
+ interface CommentCardProps extends HTMLAttributes<HTMLDivElement> {
969
+ comment: CommentItem;
970
+ depth?: number;
971
+ onLike?: (commentId: string) => void;
972
+ onReply?: (commentId: string) => void;
973
+ }
974
+
975
+ interface CommentMetaProps {
976
+ author: CommentAuthor;
977
+ date: string;
978
+ }
979
+
980
+ declare function CommentMeta({ author, date }: CommentMetaProps): react_jsx_runtime.JSX.Element;
981
+ declare namespace CommentMeta {
982
+ var displayName: string;
983
+ }
984
+
985
+ interface CommentBodyProps {
986
+ content: string;
987
+ }
988
+
989
+ declare function CommentBody({ content }: CommentBodyProps): react_jsx_runtime.JSX.Element;
990
+ declare namespace CommentBody {
991
+ var displayName: string;
992
+ }
993
+
994
+ interface CommentActionsProps {
995
+ commentId: string;
996
+ likesCount?: number;
997
+ onLike?: (commentId: string) => void;
998
+ onReply?: (commentId: string) => void;
999
+ }
1000
+
1001
+ declare function CommentActions({ commentId, likesCount, onLike, onReply }: CommentActionsProps): react_jsx_runtime.JSX.Element;
1002
+ declare namespace CommentActions {
1003
+ var displayName: string;
1004
+ }
1005
+
933
1006
  declare const FaqItem: react.ForwardRefExoticComponent<FaqItemProps & react.RefAttributes<HTMLDivElement>>;
934
1007
 
935
1008
  interface FaqItemData {
@@ -1035,6 +1108,16 @@ interface CarouselProps {
1035
1108
  className?: string;
1036
1109
  }
1037
1110
 
1111
+ interface ImageProps extends Omit<ImgHTMLAttributes<HTMLImageElement>, 'src'> {
1112
+ src?: string;
1113
+ alt?: string;
1114
+ ratio?: AspectRatioPreset | number;
1115
+ objectFit?: CSSProperties['objectFit'];
1116
+ objectPosition?: CSSProperties['objectPosition'];
1117
+ }
1118
+
1119
+ declare const Image: react.ForwardRefExoticComponent<ImageProps & react.RefAttributes<HTMLImageElement>>;
1120
+
1038
1121
  declare function VideoPlayer({ src, provider, title, poster, ratio, autoPlay, muted, loop, controls, className, }: VideoPlayerProps): react_jsx_runtime.JSX.Element;
1039
1122
 
1040
1123
  type VideoPlayerProvider = 'youtube' | 'vimeo' | 'local' | 'auto';
@@ -1139,7 +1222,7 @@ type AlertSeverity = 'info' | 'success' | 'warning' | 'error';
1139
1222
  interface AlertProps extends HTMLAttributes<HTMLDivElement> {
1140
1223
  severity?: AlertSeverity;
1141
1224
  title?: string;
1142
- children: ReactNode;
1225
+ children?: ReactNode;
1143
1226
  onClose?: () => void;
1144
1227
  icon?: ReactNode;
1145
1228
  }
@@ -1427,6 +1510,16 @@ declare const ReviewSummary: {
1427
1510
  displayName: string;
1428
1511
  };
1429
1512
 
1513
+ declare const CommentSection: react.ForwardRefExoticComponent<CommentSectionProps & react.RefAttributes<HTMLElement>>;
1514
+
1515
+ interface CommentSectionProps extends HTMLAttributes<HTMLElement> {
1516
+ title?: string;
1517
+ comments: CommentItem[];
1518
+ maxWidth?: ContainerMaxWidth;
1519
+ onLike?: (commentId: string) => void;
1520
+ onReply?: (commentId: string) => void;
1521
+ }
1522
+
1430
1523
  declare const FaqSection: react.ForwardRefExoticComponent<FaqSectionProps & react.RefAttributes<HTMLElement>>;
1431
1524
 
1432
1525
  interface FaqSectionProps extends HTMLAttributes<HTMLElement> {
@@ -1631,7 +1724,7 @@ interface FooterProps {
1631
1724
  columns?: FooterColumn[];
1632
1725
  socialLinks?: SocialLink[];
1633
1726
  copyright?: string;
1634
- maxWidth?: ContainerProps$1['maxWidth'];
1727
+ maxWidth?: ContainerMaxWidth;
1635
1728
  style?: CSSProperties;
1636
1729
  }
1637
1730
 
@@ -1648,7 +1741,7 @@ interface NavbarProps {
1648
1741
  actions?: ReactNode;
1649
1742
  sticky?: boolean;
1650
1743
  variant?: 'filled' | 'transparent';
1651
- maxWidth?: ContainerProps$1['maxWidth'];
1744
+ maxWidth?: ContainerMaxWidth;
1652
1745
  style?: CSSProperties;
1653
1746
  }
1654
1747
 
@@ -1700,4 +1793,4 @@ declare const themeLight: _mui_material.Theme;
1700
1793
  declare const themeDark: _mui_material.Theme;
1701
1794
  declare const themeHighContrast: _mui_material.Theme;
1702
1795
 
1703
- export { Accordion, type AccordionItemData, type AccordionProps, type AccordionVariant, Alert, type AlertProps, type AlertSeverity, Article, type ArticleProps, AspectRatio, type AspectRatioPreset, type AspectRatioProps, Avatar, type AvatarColor, type AvatarProps, type AvatarSize, BackToTop, type BackToTopPosition, type BackToTopProps, type BackToTopVariant, Badge, type BadgeProps, type BadgeVariant, BaseInput, type BaseInputProps, BaseSelectInput, type BaseSelectInputProps, Box, type BoxProps, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardPadding, type CardProps, type CardRounded, type CardVariant, Carousel, type CarouselProps, type CarouselSlide, CartButton, type CartButtonProps, type CartButtonSize, CartDrawer, type CartDrawerItem$1 as CartDrawerItem, CartDrawerItem as CartDrawerItemComponent, type CartDrawerItemProps, type CartDrawerProps, CategoryCard, CategoryCardImage, type CategoryCardImageProps, CategoryCardInfo, type CategoryCardInfoProps, type CategoryCardProps, CheckboxInput, type CheckboxInputProps, type CommandGroup, type CommandItem, CommandPalette, type CommandPaletteProps, type CompareProduct, type CompareSpecValue, CompareTool, type CompareToolProps, Container, type ContainerMaxWidth, type ContainerProps, ContextMenu, type ContextMenuItemData, type ContextMenuProps, type CookieCategory, CookieConsent, type CookieConsentProps, type CookiePreferences, CountdownTimer, type CountdownTimerProps, type CountdownTimerVariant, CountryFlag, type CountryFlagProps, CouponInput, type CouponInputProps, type CreateMyThemeOptions, DateTimePicker, type DateTimePickerMode, type DateTimePickerProps, DealCard, type DealCardProps, EmailInput, type EmailInputProps, EmptyState, type EmptyStateProps, FaqItem, type FaqItemData, type FaqItemProps, FaqSection, type FaqSectionProps, type Feature, FeatureGrid, type FeatureGridColumns, type FeatureGridProps, FeatureItem, type FeatureItemProps, FileInput, type FileInputProps, type FilterOption, FilterSidebar, type FilterSidebarProps, Footer, type FooterColumn, type FooterLink, type FooterProps, type GapValue, type GridValue, Lightbox, type LightboxImage, type LightboxProps, List, type ListItemData, type ListProps, type ListSize, type ListVariant, LogoCloud, type LogoCloudColumns, type LogoTileItem as LogoCloudItem, type LogoCloudProps, type LogoCloudVariant, LogoTile, type LogoTileItem, type LogoTileProps, type LogoTileVariant, Main, type MainProps, Marquee, type MarqueeDirection, type MarqueeProps, type MarqueeSpeed, Modal, type ModalProps, type ModalSize, MultiSelectInput, type MultiSelectInputProps, type MyThemeMode, MyThemeProvider, type MyThemeProviderProps, type NavItem, Navbar, type NavbarProps, type NewsletterLayout, NewsletterSection, type NewsletterSectionProps, NumberInput, type NumberInputProps, OrderSummary, type OrderSummaryItem$1 as OrderSummaryItem, OrderSummaryItem as OrderSummaryItemComponent, type OrderSummaryItemProps, type OrderSummaryLine, type OrderSummaryProps, OrderSummaryRow, type OrderSummaryRowProps, PaginationBar, type PaginationBarProps, type PaginationBarSize, PaginationButton, type PaginationButtonProps, type PaginationButtonSize, PaginationEllipsis, Partners, PasswordInput, type PasswordInputProps, type PaymentMethod, PaymentMethodSelector, type PaymentMethodSelectorProps, type PhoneCountry, PhoneInput, type PhoneInputMeta, type PhoneInputProps, PostCard, PostCardImage, type PostCardImageProps, PostCardMeta, type PostCardMetaProps, type PostCardProps, type PostCardVariant, Price, type PriceProps, type PriceRange, type PriceSize, PricingCard, PricingCardFeatureList, type PricingCardFeatureListProps, PricingCardPrice, type PricingCardPriceProps, type PricingCardProps, type PricingFeature, PricingSection, type PricingSectionProps, ProcessSection, type ProcessSectionProps, type ProcessSectionStep, ProcessStep, type ProcessStepProps, ProductCard, ProductCardHorizontal, type ProductCardHorizontalProps, ProductCardImage, type ProductCardImageProps, type ProductCardProps, ProductGallery, type ProductGalleryImage, type ProductGalleryProps, ProgressBar, type ProgressBarProps, type ProgressBarSize, type ProgressBarVariant, ProgressCircle, type ProgressCircleProps, type ProgressCircleSize, type ProgressCircleVariant, PromoStrip, type PromoStripProps, type PromoStripVariant, Prose, type ProseProps, QuantitySelector, type QuantitySelectorProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, Rating, type RatingProps, RelatedProducts, type RelatedProductsLayout, type RelatedProductsProps, type ResponsiveValue, type Review, ReviewItem, type ReviewItemProps, ReviewSection, type ReviewSectionProps, ReviewSummary, type ReviewSummaryProps, SaleBadge, type SaleBadgeProps, type SaleBadgeVariant, SearchInput, type SearchInputProps, Section, SectionHeading, type SectionHeadingAlign, type SectionHeadingProps, type SectionProps, SelectInput, type SelectInputProps, type SelectOption, type ShippingOption, ShippingSelector, type ShippingSelectorProps, Skeleton, type SkeletonProps, type SkeletonVariant, type SocialLink, type SocialPlatform, SortBar, type SortBarProps, type SortOption, Spinner, type SpinnerColor, type SpinnerProps, type SpinnerSize, type SpinnerVariant, StatCard, type StatCardProps, type StatItem, StatsSection, type StatsSectionColumns, type StatsSectionProps, StockStatus, type StockStatusProps, type StockStatusValue, type SwitchColor, SwitchInput, type SwitchInputProps, type TabItem, Tabs, type TabsProps, type TabsVariant, type TeamMember, TeamMemberAvatar, type TeamMemberAvatarProps, TeamMemberCard, type TeamMemberCardProps, TeamMemberInfo, type TeamMemberInfoProps, TeamSection, type TeamSectionColumns, type TeamSectionProps, type Testimonial, TestimonialAuthor, type TestimonialAuthorProps, TestimonialCard, type TestimonialCardProps, TestimonialQuote, type TestimonialQuoteProps, TestimonialsSection, type TestimonialsSectionColumns, type TestimonialsSectionProps, TextInput, type TextInputProps, TextareaInput, type TextareaInputProps, Timeline, type TimelineAlign, type TimelineItem, type TimelineItemStatus, type TimelineProps, type TimelineVariant, type VariantOption, VariantSelector, type VariantSelectorMode, type VariantSelectorProps, VideoPlayer, type VideoPlayerProps, type VideoPlayerProvider, type ViewMode, VoucherCard, type VoucherCardProps, WishlistButton, type WishlistButtonProps, accordionVariants, alertSeverities, aspectRatioPresets, avatarColors, avatarSizes, backToTopPositions, backToTopVariants, badgeVariants, cardPaddings, cardRoundeds, cardVariants, countdownTimerVariants, createMyTheme, dateTimePickerModes, defaultCookieCategories, featureGridColumns, listSizes, listVariants, logoCloudColumns, logoCloudVariants, logoTileVariants, marqueeDirections, marqueeSpeeds, modalSizes, myTheme, newsletterLayouts, postCardVariants, priceSizes, progressBarSizes, progressBarVariants, progressCircleSizes, progressCircleVariants, promoStripVariants, rangeSliderSizes, relatedProductsLayouts, saleBadgeVariants, sectionHeadingAligns, skeletonVariants, spinnerColors, spinnerSizes, spinnerVariants, statsSectionColumns, stockStatusValues, switchColors, tabsVariants, teamSectionColumns, testimonialsSectionColumns, themeDark, themeHighContrast, themeLight, timelineItemStatuses, timelineVariants, variantSelectorModes };
1796
+ export { Accordion, type AccordionItemData, type AccordionProps, type AccordionVariant, Alert, type AlertProps, type AlertSeverity, Article, type ArticleProps, AspectRatio, type AspectRatioPreset, type AspectRatioProps, Avatar, type AvatarColor, type AvatarProps, type AvatarSize, BackToTop, type BackToTopPosition, type BackToTopProps, type BackToTopVariant, Badge, type BadgeProps, type BadgeVariant, BaseInput, type BaseInputProps, BaseSelectInput, type BaseSelectInputProps, Box, type BoxProps, type BreadcrumbItem, Breadcrumbs, type BreadcrumbsProps, type Breakpoint, Button, type ButtonProps, type ButtonSize, type ButtonVariant, Card, type CardPadding, type CardProps, type CardRounded, type CardVariant, Carousel, type CarouselProps, type CarouselSlide, CartButton, type CartButtonProps, type CartButtonSize, CartDrawer, type CartDrawerItem$1 as CartDrawerItem, CartDrawerItem as CartDrawerItemComponent, type CartDrawerItemProps, type CartDrawerProps, CategoryCard, CategoryCardImage, type CategoryCardImageProps, CategoryCardInfo, type CategoryCardInfoProps, type CategoryCardProps, CheckboxInput, type CheckboxInputProps, type CommandGroup, type CommandItem, CommandPalette, type CommandPaletteProps, CommentActions, type CommentActionsProps, type CommentAuthor, CommentBody, type CommentBodyProps, CommentCard, type CommentCardProps, type CommentItem, CommentMeta, type CommentMetaProps, CommentSection, type CommentSectionProps, type CompareProduct, type CompareSpecValue, CompareTool, type CompareToolProps, Container, type ContainerMaxWidth, type ContainerProps, ContextMenu, type ContextMenuItemData, type ContextMenuProps, type CookieCategory, CookieConsent, type CookieConsentProps, type CookiePreferences, CountdownTimer, type CountdownTimerProps, type CountdownTimerVariant, CountryFlag, type CountryFlagProps, CouponInput, type CouponInputProps, type CreateMyThemeOptions, DateTimePicker, type DateTimePickerMode, type DateTimePickerProps, DealCard, type DealCardProps, EmailInput, type EmailInputProps, EmptyState, type EmptyStateProps, FaqItem, type FaqItemData, type FaqItemProps, FaqSection, type FaqSectionProps, type Feature, FeatureGrid, type FeatureGridColumns, type FeatureGridProps, FeatureItem, type FeatureItemProps, FileInput, type FileInputProps, type FilterOption, FilterSidebar, type FilterSidebarProps, Footer, type FooterColumn, type FooterLink, type FooterProps, type GapValue, type GridValue, Image, type ImageProps, Lightbox, type LightboxImage, type LightboxProps, List, type ListItemData, type ListProps, type ListSize, type ListVariant, LogoCloud, type LogoCloudColumns, type LogoTileItem as LogoCloudItem, type LogoCloudProps, type LogoCloudVariant, LogoTile, type LogoTileItem, type LogoTileProps, type LogoTileVariant, Main, type MainProps, Marquee, type MarqueeDirection, type MarqueeProps, type MarqueeSpeed, Modal, type ModalProps, type ModalSize, MultiSelectInput, type MultiSelectInputProps, type MyThemeMode, MyThemeProvider, type MyThemeProviderProps, type NavItem, Navbar, type NavbarProps, type NewsletterLayout, NewsletterSection, type NewsletterSectionProps, NumberInput, type NumberInputProps, OrderSummary, type OrderSummaryItem$1 as OrderSummaryItem, OrderSummaryItem as OrderSummaryItemComponent, type OrderSummaryItemProps, type OrderSummaryLine, type OrderSummaryProps, OrderSummaryRow, type OrderSummaryRowProps, PaginationBar, type PaginationBarProps, type PaginationBarSize, PaginationButton, type PaginationButtonProps, type PaginationButtonSize, PaginationEllipsis, Partners, PasswordInput, type PasswordInputProps, type PaymentMethod, PaymentMethodSelector, type PaymentMethodSelectorProps, type PhoneCountry, PhoneInput, type PhoneInputMeta, type PhoneInputProps, PostCard, PostCardImage, type PostCardImageProps, PostCardMeta, type PostCardMetaProps, type PostCardProps, type PostCardVariant, Price, type PriceProps, type PriceRange, type PriceSize, PricingCard, PricingCardFeatureList, type PricingCardFeatureListProps, PricingCardPrice, type PricingCardPriceProps, type PricingCardProps, type PricingFeature, PricingSection, type PricingSectionProps, ProcessSection, type ProcessSectionProps, type ProcessSectionStep, ProcessStep, type ProcessStepProps, ProductCard, ProductCardHorizontal, type ProductCardHorizontalProps, ProductCardImage, type ProductCardImageProps, type ProductCardProps, ProductGallery, type ProductGalleryImage, type ProductGalleryProps, ProfileCard, type ProfileCardProps, ProgressBar, type ProgressBarProps, type ProgressBarSize, type ProgressBarVariant, ProgressCircle, type ProgressCircleProps, type ProgressCircleSize, type ProgressCircleVariant, PromoStrip, type PromoStripProps, type PromoStripVariant, Prose, type ProseProps, QuantitySelector, type QuantitySelectorProps, RangeSlider, type RangeSliderProps, type RangeSliderSize, Rating, type RatingProps, RelatedProducts, type RelatedProductsLayout, type RelatedProductsProps, type ResponsiveValue, type Review, ReviewItem, type ReviewItemProps, ReviewSection, type ReviewSectionProps, ReviewSummary, type ReviewSummaryProps, SearchInput, type SearchInputProps, Section, SectionHeading, type SectionHeadingAlign, type SectionHeadingProps, type SectionProps, SelectInput, type SelectInputProps, type SelectOption, type ShippingOption, ShippingSelector, type ShippingSelectorProps, Skeleton, type SkeletonProps, type SkeletonVariant, type SocialLink, type SocialPlatform, SortBar, type SortBarProps, type SortOption, Spinner, type SpinnerColor, type SpinnerProps, type SpinnerSize, type SpinnerVariant, StatCard, type StatCardProps, type StatItem, StatsSection, type StatsSectionColumns, type StatsSectionProps, StockStatus, type StockStatusProps, type StockStatusValue, type SwitchColor, SwitchInput, type SwitchInputProps, type TabItem, Tabs, type TabsProps, type TabsVariant, type TeamMember, TeamMemberAvatar, type TeamMemberAvatarProps, TeamMemberCard, type TeamMemberCardProps, TeamMemberInfo, type TeamMemberInfoProps, TeamSection, type TeamSectionColumns, type TeamSectionProps, type Testimonial, TestimonialAuthor, type TestimonialAuthorProps, TestimonialCard, type TestimonialCardProps, TestimonialQuote, type TestimonialQuoteProps, TestimonialsSection, type TestimonialsSectionColumns, type TestimonialsSectionProps, TextInput, type TextInputProps, TextareaInput, type TextareaInputProps, Timeline, type TimelineAlign, type TimelineItem, type TimelineItemStatus, type TimelineProps, type TimelineVariant, type VariantOption, VariantSelector, type VariantSelectorMode, type VariantSelectorProps, VideoPlayer, type VideoPlayerProps, type VideoPlayerProvider, type ViewMode, VoucherCard, type VoucherCardProps, WishlistButton, type WishlistButtonProps, accordionVariants, alertSeverities, aspectRatioPresets, avatarColors, avatarSizes, backToTopPositions, backToTopVariants, badgeVariants, cardPaddings, cardRoundeds, cardVariants, countdownTimerVariants, createMyTheme, dateTimePickerModes, defaultCookieCategories, featureGridColumns, listSizes, listVariants, logoCloudColumns, logoCloudVariants, logoTileVariants, marqueeDirections, marqueeSpeeds, modalSizes, myTheme, newsletterLayouts, postCardVariants, priceSizes, progressBarSizes, progressBarVariants, progressCircleSizes, progressCircleVariants, promoStripVariants, rangeSliderSizes, relatedProductsLayouts, sectionHeadingAligns, skeletonVariants, spinnerColors, spinnerSizes, spinnerVariants, statsSectionColumns, stockStatusValues, switchColors, tabsVariants, teamSectionColumns, testimonialsSectionColumns, themeDark, themeHighContrast, themeLight, timelineItemStatuses, timelineVariants, variantSelectorModes };