@trafilea/afrodita-components 5.0.0-beta.194 → 5.0.0-beta.196

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 CHANGED
@@ -531,6 +531,10 @@ declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
531
531
 
532
532
  declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
533
533
 
534
+ declare const Drop: ({ height, width, fill }: IconProps) => JSX.Element;
535
+
536
+ declare const DropEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
537
+
534
538
  declare const PDP_Clock: typeof Clock;
535
539
  declare const PDP_FlagUSA: typeof FlagUSA;
536
540
  declare const PDP_Minus: typeof Minus;
@@ -546,6 +550,8 @@ declare const PDP_CircleNumber: typeof CircleNumber;
546
550
  declare const PDP_SizeEmpty: typeof SizeEmpty;
547
551
  declare const PDP_PlayMini: typeof PlayMini;
548
552
  declare const PDP_ShippingEmpty: typeof ShippingEmpty;
553
+ declare const PDP_Drop: typeof Drop;
554
+ declare const PDP_DropEmpty: typeof DropEmpty;
549
555
  declare namespace PDP {
550
556
  export {
551
557
  PDP_Clock as Clock,
@@ -564,6 +570,8 @@ declare namespace PDP {
564
570
  PDP_SizeEmpty as SizeEmpty,
565
571
  PDP_PlayMini as PlayMini,
566
572
  PDP_ShippingEmpty as ShippingEmpty,
573
+ PDP_Drop as Drop,
574
+ PDP_DropEmpty as DropEmpty,
567
575
  };
568
576
  }
569
577
 
@@ -1117,8 +1125,9 @@ interface ProductGalleryProps {
1117
1125
  previewImgBorderColor?: string;
1118
1126
  ctaText?: string;
1119
1127
  ctaAction?: () => void;
1128
+ hideCTA?: boolean;
1120
1129
  }
1121
- declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, }: ProductGalleryProps) => JSX.Element;
1130
+ declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, hideCTA, }: ProductGalleryProps) => JSX.Element;
1122
1131
 
1123
1132
  interface RatingProps {
1124
1133
  rating: number;
@@ -2720,6 +2729,14 @@ interface ProductGalleryMobileProps {
2720
2729
  }
2721
2730
  declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
2722
2731
 
2732
+ interface AbsorbencyLevelProps {
2733
+ dropTotal: number;
2734
+ drops: number;
2735
+ absorbencyTitle: string;
2736
+ absorbencyDescription: string;
2737
+ }
2738
+ declare const AbsorbencyLevel: ({ dropTotal, drops, absorbencyTitle, absorbencyDescription, }: AbsorbencyLevelProps) => JSX.Element;
2739
+
2723
2740
  declare global {
2724
2741
  interface Events {
2725
2742
  modal: {
@@ -2761,4 +2778,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
2761
2778
 
2762
2779
  declare const mediaQueries: facepaint.DynamicStyleFunction;
2763
2780
 
2764
- export { Accordion, AccordionOptions, AmazonButton, AssetsProvider, BeforeAfterCard, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownDialog, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitPredictor, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageCardWithDescription, ImageType, Input, InputValidationType, Modal, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, PackSelectorV2, Pagination, PaginatorBlog, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, PriceLabelV2, ProductGallery, ProductGalleryMobile, ProductGalleryMobileV2, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review$1 as Review, Review as ReviewDetail, ReviewsHeader, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, ShortBanner, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeChartTable, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Tab, Tabs, Text, TextButton, TextWithImage, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, TrackingProgress, WithTestId, decimalFormat, formatPrice, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, mediaQueries, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
2781
+ export { AbsorbencyLevel, Accordion, AccordionOptions, AmazonButton, AssetsProvider, BeforeAfterCard, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownDialog, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitPredictor, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageCardWithDescription, ImageType, Input, InputValidationType, Modal, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, PackSelectorV2, Pagination, PaginatorBlog, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, PriceLabelV2, ProductGallery, ProductGalleryMobile, ProductGalleryMobileV2, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review$1 as Review, Review as ReviewDetail, ReviewsHeader, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, ShortBanner, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeChartTable, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Tab, Tabs, Text, TextButton, TextWithImage, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, TrackingProgress, WithTestId, decimalFormat, formatPrice, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, mediaQueries, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };