@trafilea/afrodita-components 4.4.0-beta.7 → 5.0.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.d.ts +25 -3
- package/build/index.esm.js +4300 -489
- package/build/index.esm.js.map +1 -1
- package/build/index.js +4395 -583
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -67,8 +67,11 @@ declare type Pattern = {
|
|
|
67
67
|
};
|
|
68
68
|
declare type ColorPickerOption = {
|
|
69
69
|
label: string;
|
|
70
|
-
|
|
71
|
-
|
|
70
|
+
description: string;
|
|
71
|
+
meta: {
|
|
72
|
+
color?: Color;
|
|
73
|
+
pattern?: Pattern;
|
|
74
|
+
};
|
|
72
75
|
};
|
|
73
76
|
declare type RadioGroupOption = {
|
|
74
77
|
value: string;
|
|
@@ -1653,6 +1656,25 @@ declare type SpacingProps = {
|
|
|
1653
1656
|
};
|
|
1654
1657
|
declare const Spacing: FC<SpacingProps>;
|
|
1655
1658
|
|
|
1659
|
+
interface PackOption {
|
|
1660
|
+
label: string;
|
|
1661
|
+
description: string;
|
|
1662
|
+
meta: {
|
|
1663
|
+
discountPercentage: number;
|
|
1664
|
+
originalPrice: number;
|
|
1665
|
+
price: number;
|
|
1666
|
+
quantity: number;
|
|
1667
|
+
icon: string;
|
|
1668
|
+
tag?: string;
|
|
1669
|
+
};
|
|
1670
|
+
}
|
|
1671
|
+
interface PackSelectorProps {
|
|
1672
|
+
packs: PackOption[];
|
|
1673
|
+
selectedValue: string;
|
|
1674
|
+
onChange: (size: PackOption) => void;
|
|
1675
|
+
}
|
|
1676
|
+
declare const PackSelector: FC<PackSelectorProps>;
|
|
1677
|
+
|
|
1656
1678
|
declare global {
|
|
1657
1679
|
interface Events {
|
|
1658
1680
|
modal: {
|
|
@@ -1692,4 +1714,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1692
1714
|
currency?: string | undefined;
|
|
1693
1715
|
}) => string;
|
|
1694
1716
|
|
|
1695
|
-
export { Accordion, AmazonButton, AssetsProvider, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, Color, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, FitPredictor, Icon, IconButton, IconProps, IconWithOpacityProps, Image, ImageType, Input, InputValidationType, Modal, MultiColorPicker, OfferBanner, OrderBar, Overlay, Pagination, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, ProductGallery, ProductGalleryMobile, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review, ScrollToTop, SearchBar, SearchBarOptionItem, SeasonOfferTag, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Text, TextButton, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, WithTestId, decimalFormat, formatPrice, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, modalEvent, simulateMouseClick, sliceString, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|
|
1717
|
+
export { Accordion, AmazonButton, AssetsProvider, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, Color, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, FitPredictor, Icon, IconButton, IconProps, IconWithOpacityProps, Image, ImageType, Input, InputValidationType, Modal, MultiColorPicker, OfferBanner, OrderBar, Overlay, PackSelector, Pagination, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, ProductGallery, ProductGalleryMobile, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review, ScrollToTop, SearchBar, SearchBarOptionItem, SeasonOfferTag, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Text, TextButton, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, WithTestId, decimalFormat, formatPrice, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, modalEvent, simulateMouseClick, sliceString, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|