@trafilea/afrodita-components 5.0.0-beta.4 → 5.0.0-beta.7
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 +19 -5
- package/build/index.esm.js +329 -273
- package/build/index.esm.js.map +1 -1
- package/build/index.js +330 -273
- package/build/index.js.map +1 -1
- package/package.json +2 -1
package/build/index.d.ts
CHANGED
|
@@ -491,16 +491,16 @@ interface SizeSelectorProps {
|
|
|
491
491
|
selectedValue: SizeOption;
|
|
492
492
|
onChange: (size: SizeOption) => void;
|
|
493
493
|
inline?: boolean;
|
|
494
|
+
width?: string;
|
|
494
495
|
}
|
|
495
|
-
declare const SizeSelector: ({ label, sizes, selectedValue, onChange, inline, }: SizeSelectorProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
496
|
+
declare const SizeSelector: ({ label, sizes, selectedValue, onChange, inline, width, }: SizeSelectorProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
496
497
|
|
|
497
498
|
interface SizeFitGuideProps {
|
|
498
499
|
title: string;
|
|
499
|
-
|
|
500
|
-
fitPercentage: number;
|
|
500
|
+
fitPercentage?: number;
|
|
501
501
|
onClick: () => void;
|
|
502
502
|
}
|
|
503
|
-
declare const SizeFitGuide: ({ title,
|
|
503
|
+
declare const SizeFitGuide: ({ title, fitPercentage, onClick }: SizeFitGuideProps) => JSX.Element;
|
|
504
504
|
|
|
505
505
|
interface BaseButtonProps {
|
|
506
506
|
children: React.ReactNode;
|
|
@@ -1675,6 +1675,20 @@ interface PackSelectorProps {
|
|
|
1675
1675
|
}
|
|
1676
1676
|
declare const PackSelector: FC<PackSelectorProps>;
|
|
1677
1677
|
|
|
1678
|
+
interface FiltersProps {
|
|
1679
|
+
filters: Filter[];
|
|
1680
|
+
onChange: (update: FilterChange) => void;
|
|
1681
|
+
tagsColor?: string;
|
|
1682
|
+
filterByText: string;
|
|
1683
|
+
clearAllText: string;
|
|
1684
|
+
filtersSelectText: string;
|
|
1685
|
+
isMobile: boolean;
|
|
1686
|
+
applyText: string;
|
|
1687
|
+
mobileBackArrowClick: () => void;
|
|
1688
|
+
mobileApplyButtonClick: () => void;
|
|
1689
|
+
}
|
|
1690
|
+
declare const Filters: ({ filters, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, }: FiltersProps) => JSX.Element;
|
|
1691
|
+
|
|
1678
1692
|
declare global {
|
|
1679
1693
|
interface Events {
|
|
1680
1694
|
modal: {
|
|
@@ -1714,4 +1728,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1714
1728
|
currency?: string | undefined;
|
|
1715
1729
|
}) => string;
|
|
1716
1730
|
|
|
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 };
|
|
1731
|
+
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, Filters, 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 };
|