@trafilea/afrodita-components 6.30.1 → 6.30.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 +61 -53
- package/build/index.esm.js +579 -488
- package/build/index.esm.js.map +1 -1
- package/build/index.js +579 -487
- package/build/index.js.map +1 -1
- package/build/theme/shapermint.theme.js +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import * as
|
|
3
|
-
import
|
|
2
|
+
import * as react from 'react';
|
|
3
|
+
import react__default, { FC, SVGProps, ReactNode, CSSProperties, ElementType, ReactFragment, AriaAttributes, HTMLAttributes, LabelHTMLAttributes, DetailedHTMLProps, VideoHTMLAttributes, RefObject } from 'react';
|
|
4
4
|
import { ComponentSize as ComponentSize$1 } from 'src/types/enums';
|
|
5
5
|
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
6
6
|
import { TextProps as TextProps$1 } from 'src/components/text/Text';
|
|
@@ -73,7 +73,7 @@ interface ClubOfferTagProps {
|
|
|
73
73
|
borderColor?: string;
|
|
74
74
|
textColor?: string;
|
|
75
75
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
76
|
-
style?:
|
|
76
|
+
style?: react__default.CSSProperties;
|
|
77
77
|
}
|
|
78
78
|
declare const ClubOfferTag: ({ clubOfferText, className, disabled, backgroundColor, borderColor, textColor, size, style, }: ClubOfferTagProps) => JSX.Element;
|
|
79
79
|
|
|
@@ -87,7 +87,7 @@ interface DiscountTagProps$1 {
|
|
|
87
87
|
borderColor?: string;
|
|
88
88
|
textColor?: string;
|
|
89
89
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
90
|
-
style?:
|
|
90
|
+
style?: react__default.CSSProperties;
|
|
91
91
|
bordersRounded?: boolean;
|
|
92
92
|
}
|
|
93
93
|
declare const DiscountTag: ({ discount, offText, savings, showSavings, disabled, backgroundColor, borderColor, textColor, size, style, bordersRounded, }: DiscountTagProps$1) => JSX.Element;
|
|
@@ -100,28 +100,28 @@ interface PriceLabelProps {
|
|
|
100
100
|
discount?: DiscountTagProps$1;
|
|
101
101
|
clubOffer?: ClubOfferTagProps;
|
|
102
102
|
finalPriceStyled?: boolean;
|
|
103
|
-
finalPriceStyle?:
|
|
103
|
+
finalPriceStyle?: react__default.CSSProperties;
|
|
104
104
|
originalPriceStyled?: boolean;
|
|
105
105
|
originalPriceUnderlined?: boolean;
|
|
106
106
|
testId?: string;
|
|
107
107
|
clubStyle?: boolean;
|
|
108
108
|
bordersRounded?: boolean;
|
|
109
109
|
}
|
|
110
|
-
declare const PriceLabel:
|
|
110
|
+
declare const PriceLabel: react__default.FC<PriceLabelProps>;
|
|
111
111
|
|
|
112
112
|
declare type Props$2 = PriceLabelProps & {
|
|
113
113
|
savingsDisplay?: boolean;
|
|
114
114
|
pricePerItem?: string;
|
|
115
115
|
hasRoundedSavings?: boolean;
|
|
116
116
|
};
|
|
117
|
-
declare const PriceLabelV2:
|
|
117
|
+
declare const PriceLabelV2: react__default.FC<Props$2>;
|
|
118
118
|
|
|
119
119
|
declare type Props$1 = PriceLabelProps & {
|
|
120
120
|
savingsDisplay?: boolean;
|
|
121
121
|
itemsQuantity?: number;
|
|
122
122
|
packUnitPrice?: string;
|
|
123
123
|
};
|
|
124
|
-
declare const PriceLabelV3:
|
|
124
|
+
declare const PriceLabelV3: react__default.FC<Props$1>;
|
|
125
125
|
|
|
126
126
|
declare type PriceLabelPropsV1 = PriceLabelProps & {
|
|
127
127
|
savingsDisplay?: boolean;
|
|
@@ -170,7 +170,7 @@ declare type IconProps$1 = {
|
|
|
170
170
|
className?: string;
|
|
171
171
|
} & StyledIconProps;
|
|
172
172
|
|
|
173
|
-
declare const Icon$1:
|
|
173
|
+
declare const Icon$1: react__default.NamedExoticComponent<IconProps$1>;
|
|
174
174
|
|
|
175
175
|
declare type ImgAttributes = React.ImgHTMLAttributes<HTMLImageElement>;
|
|
176
176
|
declare type ImageStyleProps = {
|
|
@@ -193,7 +193,7 @@ declare type ImageProps = ImageStyleProps & {
|
|
|
193
193
|
declare const Image: React.FC<ImageProps>;
|
|
194
194
|
|
|
195
195
|
declare type Props = Omit<IconProps$1, 'name'>;
|
|
196
|
-
declare type IconComponent =
|
|
196
|
+
declare type IconComponent = react__default.FC<Props>;
|
|
197
197
|
|
|
198
198
|
declare const Add: IconComponent;
|
|
199
199
|
|
|
@@ -1340,7 +1340,7 @@ declare type AutoshipPropsV2 = {
|
|
|
1340
1340
|
discountLabel?: string;
|
|
1341
1341
|
disabledInputs?: AutoshipRadios[];
|
|
1342
1342
|
};
|
|
1343
|
-
declare const AutoshipV2:
|
|
1343
|
+
declare const AutoshipV2: react__default.FC<AutoshipPropsV2>;
|
|
1344
1344
|
|
|
1345
1345
|
declare enum BeforeAfterVariant {
|
|
1346
1346
|
UserInfoText = "UserInfoText",
|
|
@@ -1364,7 +1364,7 @@ declare type BeforeAfterCardProps = {
|
|
|
1364
1364
|
description?: string;
|
|
1365
1365
|
reviewDays?: string;
|
|
1366
1366
|
};
|
|
1367
|
-
declare const BeforeAfterCard:
|
|
1367
|
+
declare const BeforeAfterCard: react__default.FC<BeforeAfterCardProps>;
|
|
1368
1368
|
|
|
1369
1369
|
interface SimpleProps {
|
|
1370
1370
|
title: string;
|
|
@@ -2310,7 +2310,7 @@ interface CheckboxProps {
|
|
|
2310
2310
|
backgroundColor?: string;
|
|
2311
2311
|
variant: 'primary' | 'secondary' | 'color';
|
|
2312
2312
|
}
|
|
2313
|
-
declare const Checkbox:
|
|
2313
|
+
declare const Checkbox: react__default.FC<CheckboxProps>;
|
|
2314
2314
|
|
|
2315
2315
|
interface RatingProps {
|
|
2316
2316
|
rating: number;
|
|
@@ -2427,18 +2427,18 @@ interface ProductItemSmallMobileProps extends ProductItemProps {
|
|
|
2427
2427
|
color: string;
|
|
2428
2428
|
};
|
|
2429
2429
|
isClubMember?: boolean;
|
|
2430
|
-
wrapperStyle?:
|
|
2430
|
+
wrapperStyle?: react__default.CSSProperties;
|
|
2431
2431
|
isCollections?: boolean;
|
|
2432
2432
|
};
|
|
2433
2433
|
}
|
|
2434
2434
|
|
|
2435
|
-
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent:
|
|
2435
|
+
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: react__default.FC<P>, data: ProductItemProps[]): {
|
|
2436
2436
|
(props: Omit<P, 'title' | 'image' | 'price' | 'rating'>): JSX.Element;
|
|
2437
2437
|
displayName: string;
|
|
2438
2438
|
};
|
|
2439
2439
|
|
|
2440
2440
|
declare const Collection: {
|
|
2441
|
-
ProductItemMobile:
|
|
2441
|
+
ProductItemMobile: react.FC<ProductItemSmallMobileProps>;
|
|
2442
2442
|
withProductGrid: typeof withProductGrid;
|
|
2443
2443
|
ProductItemTK: ({ title, titleStyle, hasSpacing, textContainerGap, customSizeRating, image, ImageBorderRadius, imageHover, price, rating, size, alignName, url, className, topTag, topRightTag, bottomTag, onClick, priceDisplayType, originalPriceStyled, priceAtBottom, priceLoading, noFollow, colorPicker, isBNPL, hasStrength, clubPrice, showClubPriceLabel, }: ProductItemSmallMobileProps$1) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
2444
2444
|
};
|
|
@@ -2653,11 +2653,11 @@ interface NoteProps {
|
|
|
2653
2653
|
declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
|
|
2654
2654
|
|
|
2655
2655
|
interface DrawerProps {
|
|
2656
|
-
children:
|
|
2656
|
+
children: react__default.ReactNode;
|
|
2657
2657
|
isOpen: boolean;
|
|
2658
2658
|
onClose?: () => void;
|
|
2659
2659
|
onOpen?: () => void;
|
|
2660
|
-
onClickOutside?: (event:
|
|
2660
|
+
onClickOutside?: (event: react__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
2661
2661
|
backgroundColor?: string;
|
|
2662
2662
|
backdropColor?: string;
|
|
2663
2663
|
position?: 'left' | 'right';
|
|
@@ -2681,7 +2681,7 @@ interface SelectedOption {
|
|
|
2681
2681
|
size: string;
|
|
2682
2682
|
detail: string;
|
|
2683
2683
|
}
|
|
2684
|
-
declare const SizeDropdown:
|
|
2684
|
+
declare const SizeDropdown: react__default.FC<DropdownProps>;
|
|
2685
2685
|
|
|
2686
2686
|
interface DialogPositionProps {
|
|
2687
2687
|
top: string;
|
|
@@ -2693,7 +2693,7 @@ interface DialogDropdownProps {
|
|
|
2693
2693
|
value: string;
|
|
2694
2694
|
}[];
|
|
2695
2695
|
position: DialogPositionProps;
|
|
2696
|
-
style?:
|
|
2696
|
+
style?: react__default.CSSProperties;
|
|
2697
2697
|
className?: string;
|
|
2698
2698
|
}
|
|
2699
2699
|
declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
|
|
@@ -2802,9 +2802,9 @@ declare type ProductGalleryProps = {
|
|
|
2802
2802
|
declare const ProductGallery: React.FC<ProductGalleryProps>;
|
|
2803
2803
|
|
|
2804
2804
|
interface IconButtonProps {
|
|
2805
|
-
children:
|
|
2805
|
+
children: react__default.ReactNode;
|
|
2806
2806
|
disabled?: boolean;
|
|
2807
|
-
onClick?: (event:
|
|
2807
|
+
onClick?: (event: react__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
2808
2808
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2809
2809
|
}
|
|
2810
2810
|
declare const IconButton: ({ children, disabled, size, onClick, }: IconButtonProps) => JSX.Element;
|
|
@@ -2842,7 +2842,7 @@ declare const ImageCardWithDescription: ({ image, title, description, titlePosit
|
|
|
2842
2842
|
interface BaseInputCommonProps {
|
|
2843
2843
|
id?: string;
|
|
2844
2844
|
value?: string;
|
|
2845
|
-
innerRef?:
|
|
2845
|
+
innerRef?: react__default.Ref<HTMLInputElement>;
|
|
2846
2846
|
onBlur?: () => void;
|
|
2847
2847
|
onFocus?: () => void;
|
|
2848
2848
|
onChange?: (value: string, event: any) => void;
|
|
@@ -2854,7 +2854,7 @@ interface BaseInputCommonProps {
|
|
|
2854
2854
|
onValidation?: (status: InputValidationType) => void;
|
|
2855
2855
|
disabled?: boolean;
|
|
2856
2856
|
required?: string;
|
|
2857
|
-
children?:
|
|
2857
|
+
children?: react__default.ReactNode;
|
|
2858
2858
|
size?: 'regular' | 'small';
|
|
2859
2859
|
inlinePlaceholder?: boolean;
|
|
2860
2860
|
hasError?: boolean;
|
|
@@ -2929,7 +2929,7 @@ interface ProductGalleryMobileProps$3 {
|
|
|
2929
2929
|
hasToPreserveOrder?: boolean;
|
|
2930
2930
|
itemsOnViewport?: number;
|
|
2931
2931
|
}
|
|
2932
|
-
declare const ProductGalleryMobile:
|
|
2932
|
+
declare const ProductGalleryMobile: react__default.FC<ProductGalleryMobileProps$3>;
|
|
2933
2933
|
|
|
2934
2934
|
interface ProductGalleryMobileProps$2 {
|
|
2935
2935
|
images: ContentType[];
|
|
@@ -2951,7 +2951,7 @@ interface ProductGalleryMobileProps$1 {
|
|
|
2951
2951
|
borderRadiusVariant?: boolean;
|
|
2952
2952
|
selectedValue?: ContentType$1;
|
|
2953
2953
|
}
|
|
2954
|
-
declare const ProductGalleryMobileV3:
|
|
2954
|
+
declare const ProductGalleryMobileV3: react__default.FC<ProductGalleryMobileProps$1>;
|
|
2955
2955
|
|
|
2956
2956
|
declare type ModalProps = {
|
|
2957
2957
|
id: string;
|
|
@@ -2959,7 +2959,7 @@ declare type ModalProps = {
|
|
|
2959
2959
|
maxFullScreen?: boolean;
|
|
2960
2960
|
padding?: string;
|
|
2961
2961
|
onClickOverlayHandler?: () => void;
|
|
2962
|
-
children:
|
|
2962
|
+
children: react__default.ReactNode;
|
|
2963
2963
|
width?: string;
|
|
2964
2964
|
initialTop?: string;
|
|
2965
2965
|
};
|
|
@@ -2972,8 +2972,8 @@ interface ContainerProps {
|
|
|
2972
2972
|
}
|
|
2973
2973
|
declare const Overlay: _emotion_styled.StyledComponent<{
|
|
2974
2974
|
theme?: _emotion_react.Theme | undefined;
|
|
2975
|
-
as?:
|
|
2976
|
-
} & Pick<ContainerProps, "opened">,
|
|
2975
|
+
as?: react__default.ElementType<any> | undefined;
|
|
2976
|
+
} & Pick<ContainerProps, "opened">, react__default.DetailedHTMLProps<react__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
2977
2977
|
declare const Modal: FC<ModalProps>;
|
|
2978
2978
|
declare const modalEvent: (id: string, detail: Omit<Events['modal'], 'id'>) => void;
|
|
2979
2979
|
declare const useModalEvent: (id: string, cb: (event: CustomEvent<Events['modal']>) => void) => void;
|
|
@@ -3035,6 +3035,14 @@ declare type BasicAccordionProps = {
|
|
|
3035
3035
|
};
|
|
3036
3036
|
declare const BasicAccordion: FC<BasicAccordionProps>;
|
|
3037
3037
|
|
|
3038
|
+
interface TableProps$3 {
|
|
3039
|
+
headers: string[];
|
|
3040
|
+
data: string[][];
|
|
3041
|
+
newSizeTableCss?: boolean;
|
|
3042
|
+
}
|
|
3043
|
+
|
|
3044
|
+
declare const SizeChartTableV3: React.FC<TableProps$3>;
|
|
3045
|
+
|
|
3038
3046
|
interface PackOption {
|
|
3039
3047
|
label: string;
|
|
3040
3048
|
description: string;
|
|
@@ -3081,9 +3089,9 @@ interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
|
|
|
3081
3089
|
color?: string;
|
|
3082
3090
|
}
|
|
3083
3091
|
interface ProductOrderItemProps {
|
|
3084
|
-
title:
|
|
3092
|
+
title: react__default.ReactNode | string;
|
|
3085
3093
|
subtitle: string;
|
|
3086
|
-
midElement?:
|
|
3094
|
+
midElement?: react__default.ReactNode;
|
|
3087
3095
|
className?: string;
|
|
3088
3096
|
image: {
|
|
3089
3097
|
src: string;
|
|
@@ -3095,7 +3103,7 @@ interface ProductOrderItemProps {
|
|
|
3095
3103
|
text: string;
|
|
3096
3104
|
backgroundColor: string;
|
|
3097
3105
|
};
|
|
3098
|
-
finalPriceStyle?:
|
|
3106
|
+
finalPriceStyle?: react__default.CSSProperties;
|
|
3099
3107
|
}
|
|
3100
3108
|
declare const SimpleOrderItem: ({ title, className, subtitle, midElement, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
|
|
3101
3109
|
|
|
@@ -3135,7 +3143,7 @@ interface RadioProps$1 {
|
|
|
3135
3143
|
checked?: boolean;
|
|
3136
3144
|
disabled?: boolean;
|
|
3137
3145
|
onChange: (option: RadioGroupOption) => void;
|
|
3138
|
-
style?:
|
|
3146
|
+
style?: react__default.CSSProperties;
|
|
3139
3147
|
}
|
|
3140
3148
|
declare const RadioPrimary: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps$1) => JSX.Element;
|
|
3141
3149
|
|
|
@@ -3146,7 +3154,7 @@ interface RadioGroupInputProps {
|
|
|
3146
3154
|
onChange: (value: RadioGroupOption) => void;
|
|
3147
3155
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
3148
3156
|
disabled?: boolean;
|
|
3149
|
-
style?:
|
|
3157
|
+
style?: react__default.CSSProperties;
|
|
3150
3158
|
}
|
|
3151
3159
|
declare const RadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
|
|
3152
3160
|
|
|
@@ -3157,7 +3165,7 @@ interface ClubRadioGroupInputProps {
|
|
|
3157
3165
|
onChange: (value: RadioGroupOption) => void;
|
|
3158
3166
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
3159
3167
|
disabled?: boolean;
|
|
3160
|
-
style?:
|
|
3168
|
+
style?: react__default.CSSProperties;
|
|
3161
3169
|
}
|
|
3162
3170
|
declare const ClubRadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: ClubRadioGroupInputProps) => JSX.Element;
|
|
3163
3171
|
|
|
@@ -3170,8 +3178,8 @@ interface RadioProps {
|
|
|
3170
3178
|
checked?: boolean;
|
|
3171
3179
|
disabled?: boolean;
|
|
3172
3180
|
onChange: (option: RadioGroupOption$1) => void;
|
|
3173
|
-
style?:
|
|
3174
|
-
labelStyle?:
|
|
3181
|
+
style?: react__default.CSSProperties;
|
|
3182
|
+
labelStyle?: react__default.CSSProperties;
|
|
3175
3183
|
useV2Style?: boolean;
|
|
3176
3184
|
}
|
|
3177
3185
|
declare const RadioInput: ({ style, name, value, id, label, checked, disabled, onChange, size, useV2Style, labelStyle, }: RadioProps) => JSX.Element;
|
|
@@ -3251,7 +3259,7 @@ interface ScrollToTopProps {
|
|
|
3251
3259
|
scrollToTopText: string;
|
|
3252
3260
|
onClick: () => void;
|
|
3253
3261
|
fill?: string;
|
|
3254
|
-
Icon?:
|
|
3262
|
+
Icon?: react__default.FC<IconProps$2>;
|
|
3255
3263
|
}
|
|
3256
3264
|
declare const ScrollToTop: ({ scrollToTopText, onClick, fill, Icon, }: ScrollToTopProps) => JSX.Element;
|
|
3257
3265
|
|
|
@@ -3271,7 +3279,7 @@ declare type SearchBarProps = {
|
|
|
3271
3279
|
id?: string;
|
|
3272
3280
|
autoComplete?: string;
|
|
3273
3281
|
};
|
|
3274
|
-
declare const SearchBar:
|
|
3282
|
+
declare const SearchBar: react__default.FC<SearchBarProps>;
|
|
3275
3283
|
|
|
3276
3284
|
interface SearchNavigationProps {
|
|
3277
3285
|
returnText?: string;
|
|
@@ -3465,9 +3473,9 @@ interface SeasonOfferRoundedTagProps {
|
|
|
3465
3473
|
declare const SeasonOfferRoundedTag: ({ text, backgroundColor, size, className, }: SeasonOfferRoundedTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3466
3474
|
|
|
3467
3475
|
interface BaseButtonProps {
|
|
3468
|
-
children:
|
|
3469
|
-
renderLeading?:
|
|
3470
|
-
renderTrailing?:
|
|
3476
|
+
children: react__default.ReactNode;
|
|
3477
|
+
renderLeading?: react__default.ReactNode;
|
|
3478
|
+
renderTrailing?: react__default.ReactNode;
|
|
3471
3479
|
disabled?: boolean;
|
|
3472
3480
|
type?: ButtonType;
|
|
3473
3481
|
onClick: () => void;
|
|
@@ -3612,9 +3620,9 @@ interface TextWithImageProps {
|
|
|
3612
3620
|
btnBGColor?: string;
|
|
3613
3621
|
btnHoverBGColor?: string;
|
|
3614
3622
|
imgVideo: imageVideoProps;
|
|
3615
|
-
contentAfterButton?:
|
|
3616
|
-
titleStyle?:
|
|
3617
|
-
textStyle?:
|
|
3623
|
+
contentAfterButton?: react__default.ReactNode;
|
|
3624
|
+
titleStyle?: react__default.CSSProperties;
|
|
3625
|
+
textStyle?: react__default.CSSProperties;
|
|
3618
3626
|
buttonWideOnMobile?: boolean;
|
|
3619
3627
|
}
|
|
3620
3628
|
declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
@@ -3641,22 +3649,22 @@ interface ToastProps {
|
|
|
3641
3649
|
life?: number;
|
|
3642
3650
|
withCloseIcon?: boolean;
|
|
3643
3651
|
distanceFromTop?: string;
|
|
3644
|
-
ref:
|
|
3652
|
+
ref: react__default.RefObject<HTMLElement>;
|
|
3645
3653
|
}
|
|
3646
3654
|
declare type ShowToast = {
|
|
3647
3655
|
show: () => void;
|
|
3648
3656
|
};
|
|
3649
|
-
declare const Toast:
|
|
3657
|
+
declare const Toast: react__default.ForwardRefExoticComponent<Pick<ToastProps, "summary" | "severity" | "life" | "withCloseIcon" | "distanceFromTop"> & react__default.RefAttributes<ShowToast>>;
|
|
3650
3658
|
|
|
3651
3659
|
interface TooltipProps {
|
|
3652
|
-
children:
|
|
3660
|
+
children: react__default.ReactNode;
|
|
3653
3661
|
position: ComponentPosition;
|
|
3654
3662
|
align?: 'start' | 'center' | 'end';
|
|
3655
3663
|
content?: {
|
|
3656
3664
|
text: string;
|
|
3657
3665
|
color?: string;
|
|
3658
3666
|
};
|
|
3659
|
-
elementContent?:
|
|
3667
|
+
elementContent?: react__default.ReactNode;
|
|
3660
3668
|
backgroundColor?: string;
|
|
3661
3669
|
maxWidth?: string;
|
|
3662
3670
|
showCloseIcon?: boolean;
|
|
@@ -3745,7 +3753,7 @@ declare type HurryUpProps = {
|
|
|
3745
3753
|
isFullVersion?: boolean;
|
|
3746
3754
|
hurryUpTextColor?: string;
|
|
3747
3755
|
} & Partial<TimerProps>;
|
|
3748
|
-
declare const HurryUp:
|
|
3756
|
+
declare const HurryUp: react__default.FC<HurryUpProps>;
|
|
3749
3757
|
|
|
3750
3758
|
declare type SpinnerProps = {
|
|
3751
3759
|
fill: string;
|
|
@@ -3790,7 +3798,7 @@ declare type ClubOfferProps = {
|
|
|
3790
3798
|
disabledInputs?: ClubOfferRadios[];
|
|
3791
3799
|
};
|
|
3792
3800
|
|
|
3793
|
-
declare const ClubOfferSelector:
|
|
3801
|
+
declare const ClubOfferSelector: react__default.FC<ClubOfferProps>;
|
|
3794
3802
|
|
|
3795
3803
|
declare type JoinClubProps = {
|
|
3796
3804
|
onCheckToggle: (value: boolean) => void;
|
|
@@ -3893,7 +3901,7 @@ declare type ProductGalleryMobileProps = {
|
|
|
3893
3901
|
thumbnailSettings?: ThumbnailSettings;
|
|
3894
3902
|
isRatioSquare?: boolean;
|
|
3895
3903
|
};
|
|
3896
|
-
declare const ProductGalleryMobileV4:
|
|
3904
|
+
declare const ProductGalleryMobileV4: react__default.FC<ProductGalleryMobileProps>;
|
|
3897
3905
|
|
|
3898
3906
|
interface TableProps {
|
|
3899
3907
|
headers: string[];
|
|
@@ -3973,4 +3981,4 @@ declare type Partner = 'RevelBeauty' | 'TheSpaDr' | 'TheBodCon';
|
|
|
3973
3981
|
declare type PartnerContent = 'RevelBeauty-1' | 'RevelBeauty-2' | 'TheSpaDr-1' | 'TheSpaDr-2' | 'TheBodCon';
|
|
3974
3982
|
declare const CancellationFlowAccordionContentPerPartner: Record<Partner, JSX.Element[]>;
|
|
3975
3983
|
|
|
3976
|
-
export { AbsorbencyLevel, Accordion, AccordionOptions, AmazonButton, AssetsProvider, Autoship, AutoshipV2, BasicAccordion, BeforeAfterCard, BeforeAfterVariant, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, BuyNowPayLater, CTAProps, CancellationFlowAccordionContentPerPartner, _default as Card, CardSectionType, CartProductItem, CategorySquareTag, CategoryTag, Checkbox, ClubOfferSelector, ClubOfferTag, ClubPriceMemberLabel, ClubRadioGroupInput, Collection, ColorPickerOption, ColorPickerWithTooltip, ComponentPosition, ComponentSize, ContentType, CouponCard, index_d as CrossSell, DeliveryDetails, DeviceType, DiscountTag, Drawer, DropdownDialog, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitGuarantee, FitPredictor, HurryUp, HurryUpProps, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageCardWithDescription, ImageProps, Input, InputValidationType, JoinClubCard, Icon$1 as LibIcon, IconProps$1 as LibIconProps, Modal, MotivatorProgressBar, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, PackSelectorV2, Pagination, PaginatorBlog, Partner, PartnerContent, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, PriceLabelV2, PriceLabelV3, ProductCard, ProductCardV2, ProductCardV3, ProductGallery, ProductGalleryMobile, ProductGalleryMobileV2, ProductGalleryMobileV3, ProductGalleryMobileV4, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, RadioPrimary, Rating, Review, Review$1 as ReviewDetail, ReviewsHeader, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, ShortBanner, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeChartTable, SizeChartTableV2, SizeDropdown, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, SpinnerProps, StarList, StrengthBars, Tab, Tabs, Text, TextButton, TextWithImage, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeProviderProps, ThemeTypography, ThemeVariables, Timer, Toast, Tooltip, Totals, TrackingProgress, TrackingProgressV2, Video, VideoProps, WithTestId, buildImageUrl, componentSizeMapper, decimalFormat, formatPrice, getSrcSet, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, mediaQueries, modalEvent, SeasonOfferRoundedTag as seasonOfferRoundedTag, simulateMouseClick, sliceString, useDeviceType, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|
|
3984
|
+
export { AbsorbencyLevel, Accordion, AccordionOptions, AmazonButton, AssetsProvider, Autoship, AutoshipV2, BasicAccordion, BeforeAfterCard, BeforeAfterVariant, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, BuyNowPayLater, CTAProps, CancellationFlowAccordionContentPerPartner, _default as Card, CardSectionType, CartProductItem, CategorySquareTag, CategoryTag, Checkbox, ClubOfferSelector, ClubOfferTag, ClubPriceMemberLabel, ClubRadioGroupInput, Collection, ColorPickerOption, ColorPickerWithTooltip, ComponentPosition, ComponentSize, ContentType, CouponCard, index_d as CrossSell, DeliveryDetails, DeviceType, DiscountTag, Drawer, DropdownDialog, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitGuarantee, FitPredictor, HurryUp, HurryUpProps, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageCardWithDescription, ImageProps, Input, InputValidationType, JoinClubCard, Icon$1 as LibIcon, IconProps$1 as LibIconProps, Modal, MotivatorProgressBar, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, PackSelectorV2, Pagination, PaginatorBlog, Partner, PartnerContent, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, PriceLabelV2, PriceLabelV3, ProductCard, ProductCardV2, ProductCardV3, ProductGallery, ProductGalleryMobile, ProductGalleryMobileV2, ProductGalleryMobileV3, ProductGalleryMobileV4, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, RadioPrimary, Rating, Review, Review$1 as ReviewDetail, ReviewsHeader, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, ShortBanner, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeChartTable, SizeChartTableV2, SizeChartTableV3, SizeDropdown, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, SpinnerProps, StarList, StrengthBars, Tab, Tabs, Text, TextButton, TextWithImage, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeProviderProps, ThemeTypography, ThemeVariables, Timer, Toast, Tooltip, Totals, TrackingProgress, TrackingProgressV2, Video, VideoProps, WithTestId, buildImageUrl, componentSizeMapper, decimalFormat, formatPrice, getSrcSet, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, mediaQueries, modalEvent, SeasonOfferRoundedTag as seasonOfferRoundedTag, simulateMouseClick, sliceString, useDeviceType, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|