@szymonpiatek/designsystem 0.0.7 → 0.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1212 -965
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +232 -43
- package/dist/index.d.ts +232 -43
- package/dist/index.js +1194 -965
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import * as react from 'react';
|
|
2
2
|
import { ReactNode, MouseEventHandler, AriaAttributes, ButtonHTMLAttributes, InputHTMLAttributes, TextareaHTMLAttributes, HTMLAttributes, CSSProperties, FormEvent } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
-
import { ThemeOptions, Theme } from '@mui/material/styles';
|
|
5
4
|
import * as _mui_material from '@mui/material';
|
|
5
|
+
import { ContainerProps as ContainerProps$1 } from '@mui/material';
|
|
6
|
+
import { ThemeOptions, Theme } from '@mui/material/styles';
|
|
6
7
|
|
|
7
8
|
declare const Button: react.ForwardRefExoticComponent<ButtonProps & react.RefAttributes<HTMLButtonElement>>;
|
|
8
9
|
|
|
@@ -472,40 +473,38 @@ interface CategoryCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
472
473
|
|
|
473
474
|
declare const CategoryCard: react.ForwardRefExoticComponent<CategoryCardProps & react.RefAttributes<HTMLDivElement>>;
|
|
474
475
|
|
|
475
|
-
|
|
476
|
+
interface CategoryCardImageProps {
|
|
477
|
+
src?: string;
|
|
478
|
+
alt?: string;
|
|
479
|
+
}
|
|
476
480
|
|
|
477
|
-
|
|
481
|
+
declare const CategoryCardImage: {
|
|
482
|
+
({ src, alt }: CategoryCardImageProps): react_jsx_runtime.JSX.Element;
|
|
483
|
+
displayName: string;
|
|
484
|
+
};
|
|
485
|
+
|
|
486
|
+
interface CategoryCardInfoProps {
|
|
478
487
|
name: string;
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
price: number;
|
|
482
|
-
originalPrice?: number;
|
|
483
|
-
currency?: string;
|
|
484
|
-
locale?: string;
|
|
485
|
-
lowestPrice?: number;
|
|
486
|
-
badge?: string;
|
|
487
|
-
badgeVariant?: BadgeVariant;
|
|
488
|
-
rating?: number;
|
|
489
|
-
reviewCount?: number;
|
|
490
|
-
ctaLabel?: string;
|
|
491
|
-
onAddToCart?: () => void;
|
|
488
|
+
count?: number;
|
|
489
|
+
countLabel?: string;
|
|
492
490
|
}
|
|
493
491
|
|
|
494
|
-
declare const
|
|
492
|
+
declare const CategoryCardInfo: {
|
|
493
|
+
({ name, count, countLabel, }: CategoryCardInfoProps): react_jsx_runtime.JSX.Element;
|
|
494
|
+
displayName: string;
|
|
495
|
+
};
|
|
495
496
|
|
|
496
|
-
|
|
497
|
+
declare const DealCard: react.ForwardRefExoticComponent<DealCardProps & react.RefAttributes<HTMLDivElement>>;
|
|
498
|
+
|
|
499
|
+
interface DealCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
497
500
|
name: string;
|
|
498
501
|
imageUrl?: string;
|
|
499
502
|
imageAlt?: string;
|
|
500
503
|
price: number;
|
|
501
|
-
originalPrice
|
|
504
|
+
originalPrice: number;
|
|
502
505
|
currency?: string;
|
|
503
506
|
locale?: string;
|
|
504
|
-
|
|
505
|
-
badge?: string;
|
|
506
|
-
badgeVariant?: BadgeVariant;
|
|
507
|
-
rating?: number;
|
|
508
|
-
reviewCount?: number;
|
|
507
|
+
dealEndsAt?: string;
|
|
509
508
|
ctaLabel?: string;
|
|
510
509
|
onAddToCart?: () => void;
|
|
511
510
|
}
|
|
@@ -581,6 +580,76 @@ interface PricingCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
581
580
|
cardVariant?: CardVariant;
|
|
582
581
|
}
|
|
583
582
|
|
|
583
|
+
interface PricingCardPriceProps {
|
|
584
|
+
price: string | number;
|
|
585
|
+
currency?: string;
|
|
586
|
+
period?: string;
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
declare const PricingCardPrice: {
|
|
590
|
+
({ price, currency, period }: PricingCardPriceProps): react_jsx_runtime.JSX.Element;
|
|
591
|
+
displayName: string;
|
|
592
|
+
};
|
|
593
|
+
|
|
594
|
+
interface PricingCardFeatureListProps {
|
|
595
|
+
features: PricingFeature[];
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
declare const PricingCardFeatureList: {
|
|
599
|
+
({ features }: PricingCardFeatureListProps): react_jsx_runtime.JSX.Element;
|
|
600
|
+
displayName: string;
|
|
601
|
+
};
|
|
602
|
+
|
|
603
|
+
declare const ProductCard: react.ForwardRefExoticComponent<ProductCardProps & react.RefAttributes<HTMLDivElement>>;
|
|
604
|
+
|
|
605
|
+
interface ProductCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
606
|
+
name: string;
|
|
607
|
+
imageUrl?: string;
|
|
608
|
+
imageAlt?: string;
|
|
609
|
+
price: number;
|
|
610
|
+
originalPrice?: number;
|
|
611
|
+
currency?: string;
|
|
612
|
+
locale?: string;
|
|
613
|
+
lowestPrice?: number;
|
|
614
|
+
badge?: string;
|
|
615
|
+
badgeVariant?: BadgeVariant;
|
|
616
|
+
rating?: number;
|
|
617
|
+
reviewCount?: number;
|
|
618
|
+
ctaLabel?: string;
|
|
619
|
+
onAddToCart?: () => void;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
interface ProductCardImageProps {
|
|
623
|
+
src?: string;
|
|
624
|
+
alt?: string;
|
|
625
|
+
badge?: string;
|
|
626
|
+
badgeVariant?: BadgeVariant;
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
declare const ProductCardImage: {
|
|
630
|
+
({ src, alt, badge, badgeVariant, }: ProductCardImageProps): react_jsx_runtime.JSX.Element;
|
|
631
|
+
displayName: string;
|
|
632
|
+
};
|
|
633
|
+
|
|
634
|
+
declare const ProductCardHorizontal: react.ForwardRefExoticComponent<ProductCardHorizontalProps & react.RefAttributes<HTMLDivElement>>;
|
|
635
|
+
|
|
636
|
+
interface ProductCardHorizontalProps extends HTMLAttributes<HTMLDivElement> {
|
|
637
|
+
name: string;
|
|
638
|
+
imageUrl?: string;
|
|
639
|
+
imageAlt?: string;
|
|
640
|
+
price: number;
|
|
641
|
+
originalPrice?: number;
|
|
642
|
+
currency?: string;
|
|
643
|
+
locale?: string;
|
|
644
|
+
lowestPrice?: number;
|
|
645
|
+
badge?: string;
|
|
646
|
+
badgeVariant?: BadgeVariant;
|
|
647
|
+
rating?: number;
|
|
648
|
+
reviewCount?: number;
|
|
649
|
+
ctaLabel?: string;
|
|
650
|
+
onAddToCart?: () => void;
|
|
651
|
+
}
|
|
652
|
+
|
|
584
653
|
declare const StatCard: react.ForwardRefExoticComponent<StatCardProps & react.RefAttributes<HTMLDivElement>>;
|
|
585
654
|
|
|
586
655
|
interface StatItem {
|
|
@@ -594,6 +663,44 @@ interface StatCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
594
663
|
align?: 'left' | 'center';
|
|
595
664
|
}
|
|
596
665
|
|
|
666
|
+
declare const TeamMemberCard: react.ForwardRefExoticComponent<TeamMemberCardProps & react.RefAttributes<HTMLDivElement>>;
|
|
667
|
+
|
|
668
|
+
interface TeamMember {
|
|
669
|
+
name: string;
|
|
670
|
+
role: string;
|
|
671
|
+
initials?: string;
|
|
672
|
+
avatarUrl?: string;
|
|
673
|
+
avatarAlt?: string;
|
|
674
|
+
avatarColor?: AvatarColor;
|
|
675
|
+
}
|
|
676
|
+
interface TeamMemberCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
677
|
+
member: TeamMember;
|
|
678
|
+
cardVariant?: CardVariant;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
interface TeamMemberAvatarProps {
|
|
682
|
+
name: string;
|
|
683
|
+
avatarUrl?: string;
|
|
684
|
+
avatarAlt?: string;
|
|
685
|
+
initials?: string;
|
|
686
|
+
avatarColor?: AvatarColor;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
declare const TeamMemberAvatar: {
|
|
690
|
+
({ name, avatarUrl, avatarAlt, initials, avatarColor, }: TeamMemberAvatarProps): react_jsx_runtime.JSX.Element;
|
|
691
|
+
displayName: string;
|
|
692
|
+
};
|
|
693
|
+
|
|
694
|
+
interface TeamMemberInfoProps {
|
|
695
|
+
name: string;
|
|
696
|
+
role?: string;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
declare const TeamMemberInfo: {
|
|
700
|
+
({ name, role }: TeamMemberInfoProps): react_jsx_runtime.JSX.Element;
|
|
701
|
+
displayName: string;
|
|
702
|
+
};
|
|
703
|
+
|
|
597
704
|
declare const TestimonialCard: react.ForwardRefExoticComponent<TestimonialCardProps & react.RefAttributes<HTMLDivElement>>;
|
|
598
705
|
|
|
599
706
|
interface Testimonial {
|
|
@@ -609,21 +716,38 @@ interface TestimonialCardProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
609
716
|
cardVariant?: CardVariant;
|
|
610
717
|
}
|
|
611
718
|
|
|
612
|
-
|
|
719
|
+
interface TestimonialQuoteProps {
|
|
720
|
+
quote: string;
|
|
721
|
+
}
|
|
613
722
|
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
723
|
+
declare const TestimonialQuote: {
|
|
724
|
+
({ quote }: TestimonialQuoteProps): react_jsx_runtime.JSX.Element;
|
|
725
|
+
displayName: string;
|
|
726
|
+
};
|
|
727
|
+
|
|
728
|
+
interface TestimonialAuthorProps {
|
|
729
|
+
authorName: string;
|
|
730
|
+
authorRole?: string;
|
|
731
|
+
authorAvatarUrl?: string;
|
|
732
|
+
authorInitials?: string;
|
|
621
733
|
}
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
734
|
+
|
|
735
|
+
declare const TestimonialAuthor: {
|
|
736
|
+
({ authorName, authorRole, authorAvatarUrl, authorInitials, }: TestimonialAuthorProps): react_jsx_runtime.JSX.Element;
|
|
737
|
+
displayName: string;
|
|
738
|
+
};
|
|
739
|
+
|
|
740
|
+
interface VoucherCardProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onCopy'> {
|
|
741
|
+
code: string;
|
|
742
|
+
discount: string;
|
|
743
|
+
description?: string;
|
|
744
|
+
expiresAt?: string;
|
|
745
|
+
copied?: boolean;
|
|
746
|
+
onCopy?: (code: string) => void;
|
|
625
747
|
}
|
|
626
748
|
|
|
749
|
+
declare const VoucherCard: react.ForwardRefExoticComponent<VoucherCardProps & react.RefAttributes<HTMLDivElement>>;
|
|
750
|
+
|
|
627
751
|
declare function CompareTool({ products, specLabels, onRemove, highlightDifferences, className, }: CompareToolProps): react_jsx_runtime.JSX.Element | null;
|
|
628
752
|
|
|
629
753
|
type CompareSpecValue = string | number | boolean;
|
|
@@ -1133,7 +1257,7 @@ declare const tabsVariants: TabsVariant[];
|
|
|
1133
1257
|
|
|
1134
1258
|
declare const CartDrawer: react.ForwardRefExoticComponent<CartDrawerProps & react.RefAttributes<HTMLDivElement>>;
|
|
1135
1259
|
|
|
1136
|
-
interface CartDrawerItem {
|
|
1260
|
+
interface CartDrawerItem$1 {
|
|
1137
1261
|
id: string;
|
|
1138
1262
|
name: string;
|
|
1139
1263
|
price: string;
|
|
@@ -1144,7 +1268,7 @@ interface CartDrawerItem {
|
|
|
1144
1268
|
interface CartDrawerProps extends HTMLAttributes<HTMLDivElement> {
|
|
1145
1269
|
open: boolean;
|
|
1146
1270
|
title?: string;
|
|
1147
|
-
items: CartDrawerItem[];
|
|
1271
|
+
items: CartDrawerItem$1[];
|
|
1148
1272
|
subtotal: string;
|
|
1149
1273
|
checkoutLabel?: string;
|
|
1150
1274
|
closeLabel?: string;
|
|
@@ -1154,6 +1278,22 @@ interface CartDrawerProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
1154
1278
|
onRemove?: (id: string) => void;
|
|
1155
1279
|
}
|
|
1156
1280
|
|
|
1281
|
+
interface CartDrawerItemProps {
|
|
1282
|
+
id: string;
|
|
1283
|
+
name: string;
|
|
1284
|
+
price: string;
|
|
1285
|
+
quantity: number;
|
|
1286
|
+
imageUrl?: string;
|
|
1287
|
+
imageAlt?: string;
|
|
1288
|
+
onQuantityChange?: (id: string, quantity: number) => void;
|
|
1289
|
+
onRemove?: (id: string) => void;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
declare const CartDrawerItem: {
|
|
1293
|
+
({ id, name, price, quantity, imageUrl, imageAlt, onQuantityChange, onRemove, }: CartDrawerItemProps): react_jsx_runtime.JSX.Element;
|
|
1294
|
+
displayName: string;
|
|
1295
|
+
};
|
|
1296
|
+
|
|
1157
1297
|
declare const FilterSidebar: react.ForwardRefExoticComponent<FilterSidebarProps & react.RefAttributes<HTMLDivElement>>;
|
|
1158
1298
|
|
|
1159
1299
|
interface FilterOption {
|
|
@@ -1186,7 +1326,7 @@ interface OrderSummaryLine {
|
|
|
1186
1326
|
label: ReactNode;
|
|
1187
1327
|
value: ReactNode;
|
|
1188
1328
|
}
|
|
1189
|
-
interface OrderSummaryItem {
|
|
1329
|
+
interface OrderSummaryItem$1 {
|
|
1190
1330
|
id: string;
|
|
1191
1331
|
name: ReactNode;
|
|
1192
1332
|
price: ReactNode;
|
|
@@ -1197,7 +1337,7 @@ interface OrderSummaryItem {
|
|
|
1197
1337
|
}
|
|
1198
1338
|
interface OrderSummaryProps extends HTMLAttributes<HTMLDivElement> {
|
|
1199
1339
|
title?: string;
|
|
1200
|
-
items?: OrderSummaryItem[];
|
|
1340
|
+
items?: OrderSummaryItem$1[];
|
|
1201
1341
|
itemsTitle?: string;
|
|
1202
1342
|
subtotal: ReactNode;
|
|
1203
1343
|
shipping?: ReactNode;
|
|
@@ -1209,6 +1349,32 @@ interface OrderSummaryProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
1209
1349
|
onCheckout?: () => void;
|
|
1210
1350
|
}
|
|
1211
1351
|
|
|
1352
|
+
interface OrderSummaryItemProps {
|
|
1353
|
+
id: string;
|
|
1354
|
+
name: ReactNode;
|
|
1355
|
+
price: ReactNode;
|
|
1356
|
+
imageUrl?: string;
|
|
1357
|
+
imageAlt?: string;
|
|
1358
|
+
quantity?: number;
|
|
1359
|
+
meta?: ReactNode;
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
declare const OrderSummaryItem: {
|
|
1363
|
+
({ name, price, imageUrl, imageAlt, quantity, meta, }: OrderSummaryItemProps): react_jsx_runtime.JSX.Element;
|
|
1364
|
+
displayName: string;
|
|
1365
|
+
};
|
|
1366
|
+
|
|
1367
|
+
interface OrderSummaryRowProps {
|
|
1368
|
+
label: ReactNode;
|
|
1369
|
+
value: ReactNode;
|
|
1370
|
+
total?: boolean;
|
|
1371
|
+
}
|
|
1372
|
+
|
|
1373
|
+
declare const OrderSummaryRow: {
|
|
1374
|
+
({ label, value, total }: OrderSummaryRowProps): react_jsx_runtime.JSX.Element;
|
|
1375
|
+
displayName: string;
|
|
1376
|
+
};
|
|
1377
|
+
|
|
1212
1378
|
type RelatedProductsLayout = 'grid' | 'scroll';
|
|
1213
1379
|
interface RelatedProductsProps extends HTMLAttributes<HTMLDivElement> {
|
|
1214
1380
|
products: ProductCardProps[];
|
|
@@ -1241,6 +1407,26 @@ interface ReviewSectionProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
1241
1407
|
|
|
1242
1408
|
declare const ReviewSection: react.ForwardRefExoticComponent<ReviewSectionProps & react.RefAttributes<HTMLDivElement>>;
|
|
1243
1409
|
|
|
1410
|
+
interface ReviewItemProps {
|
|
1411
|
+
review: Review;
|
|
1412
|
+
}
|
|
1413
|
+
|
|
1414
|
+
declare const ReviewItem: {
|
|
1415
|
+
({ review }: ReviewItemProps): react_jsx_runtime.JSX.Element;
|
|
1416
|
+
displayName: string;
|
|
1417
|
+
};
|
|
1418
|
+
|
|
1419
|
+
interface ReviewSummaryProps {
|
|
1420
|
+
averageRating: number;
|
|
1421
|
+
totalReviews?: number;
|
|
1422
|
+
ratingDistribution?: Record<1 | 2 | 3 | 4 | 5, number>;
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
declare const ReviewSummary: {
|
|
1426
|
+
({ averageRating, totalReviews, ratingDistribution, }: ReviewSummaryProps): react_jsx_runtime.JSX.Element;
|
|
1427
|
+
displayName: string;
|
|
1428
|
+
};
|
|
1429
|
+
|
|
1244
1430
|
declare const FaqSection: react.ForwardRefExoticComponent<FaqSectionProps & react.RefAttributes<HTMLElement>>;
|
|
1245
1431
|
|
|
1246
1432
|
interface FaqSectionProps extends HTMLAttributes<HTMLElement> {
|
|
@@ -1423,7 +1609,7 @@ interface CookieConsentProps {
|
|
|
1423
1609
|
privacyPolicyHref?: string;
|
|
1424
1610
|
}
|
|
1425
1611
|
|
|
1426
|
-
declare function Footer({ logo, description, columns, socialLinks, copyright, }: FooterProps): react_jsx_runtime.JSX.Element;
|
|
1612
|
+
declare function Footer({ logo, description, columns, socialLinks, copyright, maxWidth, style, }: FooterProps): react_jsx_runtime.JSX.Element;
|
|
1427
1613
|
|
|
1428
1614
|
interface FooterLink {
|
|
1429
1615
|
label: string;
|
|
@@ -1445,9 +1631,11 @@ interface FooterProps {
|
|
|
1445
1631
|
columns?: FooterColumn[];
|
|
1446
1632
|
socialLinks?: SocialLink[];
|
|
1447
1633
|
copyright?: string;
|
|
1634
|
+
maxWidth?: ContainerProps$1['maxWidth'];
|
|
1635
|
+
style?: CSSProperties;
|
|
1448
1636
|
}
|
|
1449
1637
|
|
|
1450
|
-
declare function Navbar({ logo, navItems, actions, sticky, variant, maxWidth, }: NavbarProps): react_jsx_runtime.JSX.Element;
|
|
1638
|
+
declare function Navbar({ logo, navItems, actions, sticky, variant, maxWidth, style, }: NavbarProps): react_jsx_runtime.JSX.Element;
|
|
1451
1639
|
|
|
1452
1640
|
interface NavItem {
|
|
1453
1641
|
label: string;
|
|
@@ -1460,7 +1648,8 @@ interface NavbarProps {
|
|
|
1460
1648
|
actions?: ReactNode;
|
|
1461
1649
|
sticky?: boolean;
|
|
1462
1650
|
variant?: 'filled' | 'transparent';
|
|
1463
|
-
maxWidth?:
|
|
1651
|
+
maxWidth?: ContainerProps$1['maxWidth'];
|
|
1652
|
+
style?: CSSProperties;
|
|
1464
1653
|
}
|
|
1465
1654
|
|
|
1466
1655
|
interface CreateMyThemeOptions {
|
|
@@ -1511,4 +1700,4 @@ declare const themeLight: _mui_material.Theme;
|
|
|
1511
1700
|
declare const themeDark: _mui_material.Theme;
|
|
1512
1701
|
declare const themeHighContrast: _mui_material.Theme;
|
|
1513
1702
|
|
|
1514
|
-
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, type CartDrawerProps, CategoryCard, 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, 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, type OrderSummaryLine, type OrderSummaryProps, 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, type PricingCardProps, type PricingFeature, PricingSection, type PricingSectionProps, ProcessSection, type ProcessSectionProps, type ProcessSectionStep, ProcessStep, type ProcessStepProps, ProductCard, ProductCardHorizontal, type ProductCardHorizontalProps, 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, ReviewSection, type ReviewSectionProps, 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, TeamMemberCard, type TeamMemberCardProps, TeamSection, type TeamSectionColumns, type TeamSectionProps, type Testimonial, TestimonialCard, type TestimonialCardProps, 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, 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 };
|
|
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 };
|