@trafilea/afrodita-components 5.0.0-beta.193 → 5.0.0-beta.195
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 +39 -1
- package/build/index.esm.js +437 -374
- package/build/index.esm.js.map +1 -1
- package/build/index.js +437 -373
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -381,6 +381,8 @@ declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
|
381
381
|
|
|
382
382
|
declare const FitGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
383
383
|
|
|
384
|
+
declare const QuestionWithCircle: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
385
|
+
|
|
384
386
|
type Other_LoadingProps = LoadingProps;
|
|
385
387
|
declare const Other_Shapermint: typeof Shapermint;
|
|
386
388
|
declare const Other_McAfee: typeof McAfee;
|
|
@@ -396,6 +398,7 @@ declare const Other_ShopNow: typeof ShopNow;
|
|
|
396
398
|
declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
|
|
397
399
|
declare const Other_Play: typeof Play;
|
|
398
400
|
declare const Other_FitGuarantee: typeof FitGuarantee;
|
|
401
|
+
declare const Other_QuestionWithCircle: typeof QuestionWithCircle;
|
|
399
402
|
declare namespace Other {
|
|
400
403
|
export {
|
|
401
404
|
FitPredictor$1 as FitPredictor,
|
|
@@ -415,6 +418,7 @@ declare namespace Other {
|
|
|
415
418
|
Other_HasselFreeReturns as HasselFreeReturns,
|
|
416
419
|
Other_Play as Play,
|
|
417
420
|
Other_FitGuarantee as FitGuarantee,
|
|
421
|
+
Other_QuestionWithCircle as QuestionWithCircle,
|
|
418
422
|
};
|
|
419
423
|
}
|
|
420
424
|
|
|
@@ -527,6 +531,10 @@ declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
527
531
|
|
|
528
532
|
declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
529
533
|
|
|
534
|
+
declare const Drop: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
535
|
+
|
|
536
|
+
declare const DropEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
537
|
+
|
|
530
538
|
declare const PDP_Clock: typeof Clock;
|
|
531
539
|
declare const PDP_FlagUSA: typeof FlagUSA;
|
|
532
540
|
declare const PDP_Minus: typeof Minus;
|
|
@@ -542,6 +550,8 @@ declare const PDP_CircleNumber: typeof CircleNumber;
|
|
|
542
550
|
declare const PDP_SizeEmpty: typeof SizeEmpty;
|
|
543
551
|
declare const PDP_PlayMini: typeof PlayMini;
|
|
544
552
|
declare const PDP_ShippingEmpty: typeof ShippingEmpty;
|
|
553
|
+
declare const PDP_Drop: typeof Drop;
|
|
554
|
+
declare const PDP_DropEmpty: typeof DropEmpty;
|
|
545
555
|
declare namespace PDP {
|
|
546
556
|
export {
|
|
547
557
|
PDP_Clock as Clock,
|
|
@@ -560,6 +570,8 @@ declare namespace PDP {
|
|
|
560
570
|
PDP_SizeEmpty as SizeEmpty,
|
|
561
571
|
PDP_PlayMini as PlayMini,
|
|
562
572
|
PDP_ShippingEmpty as ShippingEmpty,
|
|
573
|
+
PDP_Drop as Drop,
|
|
574
|
+
PDP_DropEmpty as DropEmpty,
|
|
563
575
|
};
|
|
564
576
|
}
|
|
565
577
|
|
|
@@ -907,6 +919,23 @@ declare namespace MyAccount {
|
|
|
907
919
|
};
|
|
908
920
|
}
|
|
909
921
|
|
|
922
|
+
declare const Atom: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
923
|
+
|
|
924
|
+
declare const Bubbles: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
925
|
+
|
|
926
|
+
declare const FairAdvantages: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
927
|
+
|
|
928
|
+
declare const RevelIcons_Atom: typeof Atom;
|
|
929
|
+
declare const RevelIcons_Bubbles: typeof Bubbles;
|
|
930
|
+
declare const RevelIcons_FairAdvantages: typeof FairAdvantages;
|
|
931
|
+
declare namespace RevelIcons {
|
|
932
|
+
export {
|
|
933
|
+
RevelIcons_Atom as Atom,
|
|
934
|
+
RevelIcons_Bubbles as Bubbles,
|
|
935
|
+
RevelIcons_FairAdvantages as FairAdvantages,
|
|
936
|
+
};
|
|
937
|
+
}
|
|
938
|
+
|
|
910
939
|
declare type IconType = ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
911
940
|
declare const Icon: {
|
|
912
941
|
Custom: typeof Custom;
|
|
@@ -922,6 +951,7 @@ declare const Icon: {
|
|
|
922
951
|
SlideDots: typeof SlideDots;
|
|
923
952
|
Emoji: typeof Emoji;
|
|
924
953
|
MyAccount: typeof MyAccount;
|
|
954
|
+
RevelIcons: typeof RevelIcons;
|
|
925
955
|
};
|
|
926
956
|
|
|
927
957
|
interface CardBodyProps {
|
|
@@ -2698,6 +2728,14 @@ interface ProductGalleryMobileProps {
|
|
|
2698
2728
|
}
|
|
2699
2729
|
declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
|
|
2700
2730
|
|
|
2731
|
+
interface AbsorbencyLevelProps {
|
|
2732
|
+
dropTotal: number;
|
|
2733
|
+
drops: number;
|
|
2734
|
+
absorbencyTitle: string;
|
|
2735
|
+
absorbencyDescription: string;
|
|
2736
|
+
}
|
|
2737
|
+
declare const AbsorbencyLevel: ({ dropTotal, drops, absorbencyTitle, absorbencyDescription, }: AbsorbencyLevelProps) => JSX.Element;
|
|
2738
|
+
|
|
2701
2739
|
declare global {
|
|
2702
2740
|
interface Events {
|
|
2703
2741
|
modal: {
|
|
@@ -2739,4 +2777,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
2739
2777
|
|
|
2740
2778
|
declare const mediaQueries: facepaint.DynamicStyleFunction;
|
|
2741
2779
|
|
|
2742
|
-
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 };
|
|
2780
|
+
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 };
|