@trafilea/afrodita-components 5.0.0 → 6.0.1

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
@@ -1,645 +1,660 @@
1
1
  /// <reference types="react" />
2
- import { IconProps as IconProps$1 } from 'src/types/types';
3
- import React, { FC, ReactNode, ElementType, CSSProperties, AriaAttributes, HTMLAttributes, LabelHTMLAttributes, RefObject } from 'react';
2
+ import * as React$1 from 'react';
3
+ import React__default, { FC, SVGProps, ReactNode, CSSProperties, ElementType, ReactFragment, AriaAttributes, HTMLAttributes, LabelHTMLAttributes, RefObject } from 'react';
4
+ import { ComponentSize as ComponentSize$1 } from 'src/types/enums';
5
+ import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
6
+ import { TextProps as TextProps$1 } from 'src/components/text/Text';
4
7
  import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
5
8
  import * as _emotion_styled from '@emotion/styled';
6
9
  import { StyledComponent } from '@emotion/styled';
7
10
  export { default as styled } from '@emotion/styled';
8
- import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
9
11
  import * as _emotion_react from '@emotion/react';
10
- import { ComponentSize as ComponentSize$1 } from 'src/types/enums';
12
+ import { Theme as Theme$1 } from '@emotion/react';
13
+ export { Global, css } from '@emotion/react';
14
+ import { IconProps as IconProps$1 } from 'src/types/types';
15
+ import facepaint from 'facepaint';
11
16
 
12
- declare enum CardSectionType {
13
- Header = 0,
14
- Footer = 1
15
- }
16
- declare enum ComponentSize {
17
- Large = "large",
18
- Medium = "medium",
19
- Small = "small",
20
- XSmall = "xsmall"
21
- }
22
- declare enum ComponentPosition {
23
- Top = 0,
24
- Bottom = 1,
25
- Left = 2,
26
- Right = 3
17
+ interface HurryUpProps {
18
+ hurryUpText: string;
19
+ backgroundColor?: string;
20
+ showTimer?: boolean;
21
+ iconSize?: number;
22
+ textPosition?: 'left' | 'right' | 'center';
27
23
  }
28
- declare enum InputValidationType {
29
- Error = 0,
30
- Valid = 1,
31
- Empty = 2
32
- }
24
+ declare const HurryUp: ({ hurryUpText, backgroundColor, iconSize, textPosition, showTimer, }: HurryUpProps) => JSX.Element;
33
25
 
34
- interface IconProps {
35
- width?: number;
36
- height?: number;
37
- fill?: string;
38
- title?: string;
39
- testId?: string;
40
- }
41
- declare type ButtonType = 'button' | 'submit' | 'reset';
42
- interface CTAProps {
43
- onClick: () => void;
44
- disabled?: boolean;
45
- wide?: boolean | false;
46
- size?: ComponentSize;
47
- text: string;
48
- type?: ButtonType;
49
- className?: string;
50
- testId?: string;
51
- inline?: boolean;
52
- }
53
- declare type DropdownOption<T> = {
54
- key: string;
55
- label: string;
56
- value: T;
57
- disabled: boolean;
58
- };
59
- declare type SizeOption = {
60
- label: string;
61
- description: string;
62
- disabled?: boolean;
63
- noStock?: boolean;
64
- };
65
- declare type Pattern = {
66
- url: string;
67
- };
68
- declare type ColorPickerOption = {
26
+ interface PackOption$1 {
69
27
  label: string;
70
28
  description: string;
71
- noStock?: boolean;
72
29
  meta: {
73
- color?: string[];
74
- pattern?: Pattern;
30
+ discountPercentage: number;
31
+ originalPrice: number;
32
+ price: number;
33
+ quantity: number;
34
+ icon: string;
35
+ tag?: string;
75
36
  };
76
- };
77
- declare type RadioGroupOption = {
78
- value: string;
79
- label: string;
80
- };
81
- declare type ImageType = {
82
- key: string;
83
- imageUrl: string;
84
- alt: string;
85
- };
86
- interface IconWithOpacityProps extends IconProps {
87
- opacity?: number;
88
- }
89
- interface WithTestId {
90
- testId?: string;
91
37
  }
92
- declare type DropdownListIconsItem = {
93
- Icon: IconType;
94
- items: DropdownListIconsSubItem[];
95
- };
96
- declare type DropdownListIconsSubItem = {
97
- description: string;
98
- callback: () => void;
99
- };
100
- declare type Filter = {
101
- title: string;
102
- columns: number;
103
- isOpenByDefault?: boolean;
104
- isLinkOption?: boolean;
105
- link?: string;
106
- color?: string;
107
- isMultiselect: boolean;
108
- items: Array<{
109
- label: string;
110
- checked?: boolean;
111
- isLinkItem?: boolean;
112
- link?: string;
113
- blockUncheck?: boolean;
114
- }>;
115
- showInMobile: boolean;
116
- };
117
- declare type FilterChange = {
118
- sectionIndex: number;
119
- itemIndex: number;
120
- checked?: boolean;
121
- };
122
- interface SearchBarOptionItem {
123
- src: string;
124
- price: string;
125
- title: string;
126
- optionUrl: string;
38
+ interface PackSelectorProps$1 {
39
+ packs: PackOption$1[];
40
+ selectedValue: PackOption$1;
41
+ onChange: (size: PackOption$1) => void;
42
+ currencyCode?: string;
127
43
  }
128
- interface imageVideoProps {
129
- imageLink: string;
130
- isVideo?: {
131
- videoTitle?: string;
132
- videoSubtitle?: string;
133
- textColor?: string;
134
- videoLink?: string;
135
- };
136
- isMobile?: boolean;
137
- }
138
-
139
- declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
140
-
141
- declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
44
+ declare const PackSelectorV2: FC<PackSelectorProps$1>;
142
45
 
143
- declare const Smiling: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
144
-
145
- declare const BulletOne: ({ height, width, fill, title }: IconProps) => JSX.Element;
146
-
147
- declare const BulletTwo: ({ height, width, fill, title }: IconProps) => JSX.Element;
46
+ interface AbsorbencyLevelProps {
47
+ dropTotal: number;
48
+ drops: number;
49
+ absorbencyTitle: string;
50
+ absorbencyDescription: string;
51
+ }
52
+ declare const AbsorbencyLevel: ({ dropTotal, drops, absorbencyTitle, absorbencyDescription, }: AbsorbencyLevelProps) => JSX.Element;
148
53
 
149
- declare const BulletThree: ({ height, width, fill, title }: IconProps) => JSX.Element;
54
+ declare type StyledIconProps = {
55
+ backgroundColor?: string;
56
+ opacity?: number | string;
57
+ };
150
58
 
151
- declare const ThumbsUp: ({ height, width, fill, title }: IconProps) => JSX.Element;
59
+ declare type Actions$1 = 'actions/add' | 'actions/check_box_empty' | 'actions/check_box_light' | 'actions/check_box_solid' | 'actions/check' | 'actions/circle_check' | 'actions/circle_clear' | 'actions/circle_info' | 'actions/circle_minus' | 'actions/circle_plus' | 'actions/circle_question' | 'actions/circle_solid_check' | 'actions/circle_solid_clear' | 'actions/circle_solid_info' | 'actions/circle_solid_minus' | 'actions/circle_solid_plus' | 'actions/circle_solid_question' | 'actions/circle_solid_styled_check' | 'actions/circle_solid_warning' | 'actions/circle_warning' | 'actions/clear_light' | 'actions/close' | 'actions/copy_outlined' | 'actions/copy' | 'actions/edit' | 'actions/light_check' | 'actions/light_exclamation' | 'actions/like_solid' | 'actions/like' | 'actions/minus' | 'actions/not_allowed' | 'actions/question' | 'actions/radio_empty' | 'actions/radio_filled' | 'actions/settings_solid' | 'actions/settings' | 'actions/share' | 'actions/signout' | 'actions/trash' | 'actions/warning';
60
+ declare type Arrows$1 = 'arrows/chevron_down' | 'arrows/chevron_down_variant' | 'arrows/chevron_left' | 'arrows/chevron_left_lite' | 'arrows/chevron_left_variant' | 'arrows/chevron_right' | 'arrows/chevron_right_lite' | 'arrows/chevron_right_variant' | 'arrows/chevron_up' | 'arrows/chevron_up_solid' | 'arrows/chevron_up_variant' | 'arrows/circle_chevron_down' | 'arrows/circle_chevron_left' | 'arrows/circle_chevron_right' | 'arrows/circle_chevron_up' | 'arrows/circle_line_down' | 'arrows/circle_line_left' | 'arrows/circle_line_right' | 'arrows/circle_line_up' | 'arrows/circle_up' | 'arrows/double_arrow_up';
61
+ declare type Custom$1 = 'custom/atom' | 'custom/bra' | 'custom/bubbles' | 'custom/bullet_one' | 'custom/bullet_three' | 'custom/bullet_two' | 'custom/certified' | 'custom/clinically_tested' | 'custom/cruelty_free' | 'custom/fair_advantages' | 'custom/frown' | 'custom/frown' | 'custom/money_flow' | 'custom/new_sixty_days_guarantee' | 'custom/packs_and_bundles' | 'custom/seamless_support_bra' | 'custom/sixty_days_bold' | 'custom/sixty_days_guarantee' | 'custom/smiling' | 'custom/thumbs_down' | 'custom/thumbs_up' | 'custom/underwear' | 'custom/wire_free_comfort';
62
+ declare type Download$1 = 'download/apple_store' | 'download/google_play';
63
+ declare type Emoji$1 = 'emoji/blowing_kiss' | 'emoji/frowning' | 'emoji/grinning' | 'emoji/grinning_with_sweat' | 'emoji/relieved' | 'emoji/smiling_v2' | 'emoji/thinking';
64
+ declare type Messaging$1 = 'messaging/ada_chat' | 'messaging/comment' | 'messaging/comment_dots' | 'messaging/comment_light' | 'messaging/comment_money' | 'messaging/community' | 'messaging/light' | 'messaging/light_bulb' | 'messaging/light_bulb_solid' | 'messaging/mail' | 'messaging/messenger' | 'messaging/question_circle' | 'messaging/quote_left' | 'messaging/quote_right' | 'messaging/quote_solid_left' | 'messaging/quote_solid_right';
65
+ declare type MyAccount$1 = 'myaccount/birthday_gifts' | 'myaccount/community' | 'myaccount/deals_offers' | 'myaccount/free_returns' | 'myaccount/free_shipping' | 'myaccount/guard' | 'myaccount/members_only_discount' | 'myaccount/members_only_discount_opposite' | 'myaccount/personal_stylist' | 'myaccount/priority_shipping' | 'myaccount/profile' | 'myaccount/sale_tag' | 'myaccount/style_fashion_content' | 'myaccount/vip';
66
+ declare type Navigation$1 = 'navigation/address_information' | 'navigation/benefits' | 'navigation/club_membership' | 'navigation/ellipsis' | 'navigation/ellipsis_horizontal' | 'navigation/filters' | 'navigation/hamburger' | 'navigation/home' | 'navigation/home_solid' | 'navigation/loading' | 'navigation/lock' | 'navigation/lock_solid' | 'navigation/map_marker' | 'navigation/map_solid' | 'navigation/menu_lines' | 'navigation/search' | 'navigation/shaperbox' | 'navigation/shopping_bag' | 'navigation/shopping_bag_v2' | 'navigation/shopping_bag_v3' | 'navigation/shopping_cart' | 'navigation/shopping_cart_v2' | 'navigation/slide_dot' | 'navigation/slide_dot_solid' | 'navigation/user' | 'navigation/user_solid' | 'navigation/user_v2';
67
+ declare type Other$1 = 'other/bod_con_label' | 'other/bod_con_mobile_label' | 'other/call_us' | 'other/chat' | 'other/email' | 'other/express_shipping' | 'other/fit_guarantee' | 'other/fit_predictor' | 'other/free_exchange' | 'other/get_discount' | 'other/hassel_free_returns' | 'other/loading' | 'other/mc_afee' | 'other/play' | 'other/qr_code' | 'other/question_with_circle' | 'other/revel_beauty' | 'other/shapermint' | 'other/shapermint_club_icon' | 'other/shapermint_club_icon2' | 'other/shapermint_club_label' | 'other/shapermint_club_mobile_label' | 'other/shapermint_logo' | 'other/shm_club' | 'other/shop_now' | 'other/sign_form' | 'other/sixty_days_tsd' | 'other/the_bod_con' | 'other/the_spa_dr';
68
+ declare type Payment$1 = 'payment/amazon' | 'payment/amex' | 'payment/jcb' | 'payment/klarna' | 'payment/master_card' | 'payment/paypal' | 'payment/visa';
69
+ declare type PDP$1 = 'pdp/circle_number' | 'pdp/clock' | 'pdp/drop' | 'pdp/drop_empty' | 'pdp/error_cross' | 'pdp/flag_usa' | 'pdp/hours' | 'pdp/klarna_logo' | 'pdp/light_bulb' | 'pdp/minus' | 'pdp/moon' | 'pdp/new_clock' | 'pdp/play_mini' | 'pdp/plus' | 'pdp/rule' | 'pdp/shipping' | 'pdp/shipping_empty' | 'pdp/size_empty' | 'pdp/size_empty_v2' | 'pdp/star' | 'pdp/stars' | 'pdp/star_empty' | 'pdp/star_half' | 'pdp/stopwatch' | 'pdp/trust_badge';
70
+ declare type SlideDots$1 = 'slidedots/slide_dot';
71
+ declare type SocialMedia$1 = 'socialmedia/facebook' | 'socialmedia/facebook_solid' | 'socialmedia/instagram' | 'socialmedia/instagram_solid' | 'socialmedia/interaction' | 'socialmedia/pinterest' | 'socialmedia/twitter' | 'socialmedia/youtube';
72
+ declare type IconName = Actions$1 | Arrows$1 | Custom$1 | Download$1 | Emoji$1 | Messaging$1 | MyAccount$1 | Navigation$1 | Other$1 | Payment$1 | PDP$1 | SlideDots$1 | SocialMedia$1;
73
+
74
+ declare type Props$2 = {
75
+ width?: number | string;
76
+ height?: number | string;
77
+ title?: string;
78
+ testId?: string;
79
+ fill?: string;
80
+ name: IconName;
81
+ svgProps?: Omit<SVGProps<SVGElement>, 'ref'>;
82
+ className?: string;
83
+ } & StyledIconProps;
84
+ declare const Icon$1: React__default.FC<Props$2>;
152
85
 
153
- declare const ThumbsDown: ({ height, width, fill, title }: IconProps) => JSX.Element;
86
+ declare type Props$1 = Omit<Props$2, 'name'>;
87
+ declare type IconComponent = React__default.FC<Props$1>;
154
88
 
155
- declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
156
- declare const Custom_Frown: typeof Frown;
157
- declare const Custom_Smiling: typeof Smiling;
158
- declare const Custom_BulletOne: typeof BulletOne;
159
- declare const Custom_BulletTwo: typeof BulletTwo;
160
- declare const Custom_BulletThree: typeof BulletThree;
161
- declare const Custom_ThumbsUp: typeof ThumbsUp;
162
- declare const Custom_ThumbsDown: typeof ThumbsDown;
163
- declare namespace Custom {
164
- export {
165
- Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
166
- Custom_Frown as Frown,
167
- Custom_Smiling as Smiling,
168
- Custom_BulletOne as BulletOne,
169
- Custom_BulletTwo as BulletTwo,
170
- Custom_BulletThree as BulletThree,
171
- Custom_ThumbsUp as ThumbsUp,
172
- Custom_ThumbsDown as ThumbsDown,
173
- };
174
- }
89
+ declare const Add: IconComponent;
175
90
 
176
- declare const Check: ({ height, width, fill }: IconProps) => JSX.Element;
91
+ declare const Check: IconComponent;
177
92
 
178
- declare const ClearLight: ({ height, width, fill }: IconProps) => JSX.Element;
93
+ declare const CheckboxEmpty: IconComponent;
179
94
 
180
- declare const LightExclamation: ({ height, width, fill }: IconProps) => JSX.Element;
95
+ declare const CheckboxLight: IconComponent;
181
96
 
182
- interface LightCheckProps extends IconProps {
183
- strokeWidth?: number;
184
- }
185
- declare const LightCheck: ({ height, width, fill, strokeWidth }: LightCheckProps) => JSX.Element;
97
+ declare const CheckboxSolid: IconComponent;
186
98
 
187
- declare const Question: ({ height, width, fill }: IconProps) => JSX.Element;
99
+ declare const CircleCheck: IconComponent;
188
100
 
189
- declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
101
+ declare const CircleClear: IconComponent;
190
102
 
191
- declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
103
+ declare const CircleInfo: IconComponent;
192
104
 
193
- declare const Warning: ({ height, width, fill }: IconProps) => JSX.Element;
105
+ declare const CircleMinus: IconComponent;
194
106
 
195
- declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
107
+ declare const CirclePlus: IconComponent;
196
108
 
197
- declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
109
+ declare const CircleQuestion: IconComponent;
198
110
 
199
- declare const Add: ({ height, width, fill }: IconProps) => JSX.Element;
111
+ declare const CircleSolidCheck: IconComponent;
200
112
 
201
- interface CopyProps extends IconProps {
202
- stroke?: string;
203
- }
204
- declare const Copy: ({ height, width, fill, stroke }: CopyProps) => JSX.Element;
113
+ declare const CircleSolidClear: IconComponent;
205
114
 
206
- declare const CheckboxEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
115
+ declare const CircleSolidMinus: IconComponent;
207
116
 
208
- declare const CheckboxLight: ({ height, width, fill }: IconProps) => JSX.Element;
117
+ declare const CircleSolidPlus: IconComponent;
209
118
 
210
- declare const CheckboxSolid: ({ height, width, fill }: IconProps) => JSX.Element;
119
+ declare const CircleSolidQuestion: IconComponent;
211
120
 
212
- declare const Like: ({ height, width, fill }: IconProps) => JSX.Element;
121
+ declare const CircleSolidStyledCheck: IconComponent;
213
122
 
214
- declare const LikeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
123
+ declare const CircleSolidWarning: IconComponent;
215
124
 
216
- declare const NotAllowed: ({ height, width, fill }: IconProps) => JSX.Element;
125
+ declare const CircleWarning: IconComponent;
217
126
 
218
- declare const RadioEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
127
+ declare const ClearLight: IconComponent;
219
128
 
220
- declare const RadioFilled: ({ height, width, fill }: IconProps) => JSX.Element;
129
+ declare const Close: IconComponent;
221
130
 
222
- declare const Minus$1: ({ height, width, fill }: IconProps) => JSX.Element;
131
+ declare const Copy: IconComponent;
223
132
 
224
- declare const SettingsSolid: ({ height, width, fill }: IconProps) => JSX.Element;
133
+ declare const CopyOutlined: IconComponent;
225
134
 
226
- declare const Settings: ({ height, width, fill }: IconProps) => JSX.Element;
135
+ declare const Edit: IconComponent;
227
136
 
228
- declare const Share: ({ height, width, fill }: IconProps) => JSX.Element;
137
+ declare const LightCheck: IconComponent;
229
138
 
230
- declare const CircleCheck: ({ height, width, fill }: IconProps) => JSX.Element;
139
+ declare const LightExclamation: IconComponent;
231
140
 
232
- declare const CircleClear: ({ height, width, fill }: IconProps) => JSX.Element;
141
+ declare const Like: IconComponent;
233
142
 
234
- declare const CircleInfo: ({ height, width, fill }: IconProps) => JSX.Element;
143
+ declare const LikeSolid: IconComponent;
235
144
 
236
- declare const CircleMinus: ({ height, width, fill }: IconProps) => JSX.Element;
145
+ declare const Minus$1: IconComponent;
237
146
 
238
- declare const CirclePlus: ({ height, width, fill }: IconProps) => JSX.Element;
147
+ declare const NotAllowed: IconComponent;
239
148
 
240
- declare const CircleQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
149
+ declare const Question: IconComponent;
241
150
 
242
- declare const CircleWarning: ({ height, width, fill }: IconProps) => JSX.Element;
151
+ declare const RadioEmpty: IconComponent;
243
152
 
244
- declare const CircleSolidCheck: ({ height, width, fill }: IconProps) => JSX.Element;
153
+ declare const RadioFilled: IconComponent;
245
154
 
246
- declare const CircleSolidClear: ({ height, width, fill }: IconProps) => JSX.Element;
155
+ declare const Settings: IconComponent;
247
156
 
248
- declare const CircleSolidMinus: ({ height, width, fill }: IconProps) => JSX.Element;
157
+ declare const SettingsSolid: IconComponent;
249
158
 
250
- declare const CircleSolidPlus: ({ height, width, fill }: IconProps) => JSX.Element;
159
+ declare const Share: IconComponent;
251
160
 
252
- declare const CircleSolidQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
161
+ declare const SignOut: IconComponent;
253
162
 
254
- declare const CircleSolidWarning: ({ height, width, fill }: IconProps) => JSX.Element;
163
+ declare const Trash: IconComponent;
255
164
 
256
- declare const CircleSolidStyledCheck: ({ height, width, fill }: IconProps) => JSX.Element;
165
+ declare const Warning: IconComponent;
257
166
 
258
- declare const Actions_Check: typeof Check;
259
- declare const Actions_ClearLight: typeof ClearLight;
260
- declare const Actions_LightExclamation: typeof LightExclamation;
261
- type Actions_LightCheckProps = LightCheckProps;
262
- declare const Actions_LightCheck: typeof LightCheck;
263
- declare const Actions_Question: typeof Question;
264
- declare const Actions_Close: typeof Close;
265
- declare const Actions_Trash: typeof Trash;
266
- declare const Actions_Warning: typeof Warning;
267
- declare const Actions_Edit: typeof Edit;
268
- declare const Actions_SignOut: typeof SignOut;
269
167
  declare const Actions_Add: typeof Add;
270
- type Actions_CopyProps = CopyProps;
271
- declare const Actions_Copy: typeof Copy;
168
+ declare const Actions_Check: typeof Check;
272
169
  declare const Actions_CheckboxEmpty: typeof CheckboxEmpty;
273
170
  declare const Actions_CheckboxLight: typeof CheckboxLight;
274
171
  declare const Actions_CheckboxSolid: typeof CheckboxSolid;
275
- declare const Actions_Like: typeof Like;
276
- declare const Actions_LikeSolid: typeof LikeSolid;
277
- declare const Actions_NotAllowed: typeof NotAllowed;
278
- declare const Actions_RadioEmpty: typeof RadioEmpty;
279
- declare const Actions_RadioFilled: typeof RadioFilled;
280
- declare const Actions_SettingsSolid: typeof SettingsSolid;
281
- declare const Actions_Settings: typeof Settings;
282
- declare const Actions_Share: typeof Share;
283
172
  declare const Actions_CircleCheck: typeof CircleCheck;
284
173
  declare const Actions_CircleClear: typeof CircleClear;
285
174
  declare const Actions_CircleInfo: typeof CircleInfo;
286
175
  declare const Actions_CircleMinus: typeof CircleMinus;
287
176
  declare const Actions_CirclePlus: typeof CirclePlus;
288
177
  declare const Actions_CircleQuestion: typeof CircleQuestion;
289
- declare const Actions_CircleWarning: typeof CircleWarning;
290
178
  declare const Actions_CircleSolidCheck: typeof CircleSolidCheck;
291
179
  declare const Actions_CircleSolidClear: typeof CircleSolidClear;
292
180
  declare const Actions_CircleSolidMinus: typeof CircleSolidMinus;
293
181
  declare const Actions_CircleSolidPlus: typeof CircleSolidPlus;
294
182
  declare const Actions_CircleSolidQuestion: typeof CircleSolidQuestion;
295
- declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
296
183
  declare const Actions_CircleSolidStyledCheck: typeof CircleSolidStyledCheck;
184
+ declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
185
+ declare const Actions_CircleWarning: typeof CircleWarning;
186
+ declare const Actions_ClearLight: typeof ClearLight;
187
+ declare const Actions_Close: typeof Close;
188
+ declare const Actions_Copy: typeof Copy;
189
+ declare const Actions_CopyOutlined: typeof CopyOutlined;
190
+ declare const Actions_Edit: typeof Edit;
191
+ declare const Actions_LightCheck: typeof LightCheck;
192
+ declare const Actions_LightExclamation: typeof LightExclamation;
193
+ declare const Actions_Like: typeof Like;
194
+ declare const Actions_LikeSolid: typeof LikeSolid;
195
+ declare const Actions_NotAllowed: typeof NotAllowed;
196
+ declare const Actions_Question: typeof Question;
197
+ declare const Actions_RadioEmpty: typeof RadioEmpty;
198
+ declare const Actions_RadioFilled: typeof RadioFilled;
199
+ declare const Actions_Settings: typeof Settings;
200
+ declare const Actions_SettingsSolid: typeof SettingsSolid;
201
+ declare const Actions_Share: typeof Share;
202
+ declare const Actions_SignOut: typeof SignOut;
203
+ declare const Actions_Trash: typeof Trash;
204
+ declare const Actions_Warning: typeof Warning;
297
205
  declare namespace Actions {
298
206
  export {
299
- Actions_Check as Check,
300
- Actions_ClearLight as ClearLight,
301
- Actions_LightExclamation as LightExclamation,
302
- Actions_LightCheckProps as LightCheckProps,
303
- Actions_LightCheck as LightCheck,
304
- Actions_Question as Question,
305
- Actions_Close as Close,
306
- Actions_Trash as Trash,
307
- Actions_Warning as Warning,
308
- Actions_Edit as Edit,
309
- Actions_SignOut as SignOut,
310
207
  Actions_Add as Add,
311
- Actions_CopyProps as CopyProps,
312
- Actions_Copy as Copy,
208
+ Actions_Check as Check,
313
209
  Actions_CheckboxEmpty as CheckboxEmpty,
314
210
  Actions_CheckboxLight as CheckboxLight,
315
211
  Actions_CheckboxSolid as CheckboxSolid,
316
- Actions_Like as Like,
317
- Actions_LikeSolid as LikeSolid,
318
- Actions_NotAllowed as NotAllowed,
319
- Actions_RadioEmpty as RadioEmpty,
320
- Actions_RadioFilled as RadioFilled,
321
- Minus$1 as Minus,
322
- Actions_SettingsSolid as SettingsSolid,
323
- Actions_Settings as Settings,
324
- Actions_Share as Share,
325
212
  Actions_CircleCheck as CircleCheck,
326
213
  Actions_CircleClear as CircleClear,
327
214
  Actions_CircleInfo as CircleInfo,
328
215
  Actions_CircleMinus as CircleMinus,
329
216
  Actions_CirclePlus as CirclePlus,
330
217
  Actions_CircleQuestion as CircleQuestion,
331
- Actions_CircleWarning as CircleWarning,
332
218
  Actions_CircleSolidCheck as CircleSolidCheck,
333
219
  Actions_CircleSolidClear as CircleSolidClear,
334
220
  Actions_CircleSolidMinus as CircleSolidMinus,
335
221
  Actions_CircleSolidPlus as CircleSolidPlus,
336
222
  Actions_CircleSolidQuestion as CircleSolidQuestion,
337
- Actions_CircleSolidWarning as CircleSolidWarning,
338
223
  Actions_CircleSolidStyledCheck as CircleSolidStyledCheck,
224
+ Actions_CircleSolidWarning as CircleSolidWarning,
225
+ Actions_CircleWarning as CircleWarning,
226
+ Actions_ClearLight as ClearLight,
227
+ Actions_Close as Close,
228
+ Actions_Copy as Copy,
229
+ Actions_CopyOutlined as CopyOutlined,
230
+ Actions_Edit as Edit,
231
+ Actions_LightCheck as LightCheck,
232
+ Actions_LightExclamation as LightExclamation,
233
+ Actions_Like as Like,
234
+ Actions_LikeSolid as LikeSolid,
235
+ Minus$1 as Minus,
236
+ Actions_NotAllowed as NotAllowed,
237
+ Actions_Question as Question,
238
+ Actions_RadioEmpty as RadioEmpty,
239
+ Actions_RadioFilled as RadioFilled,
240
+ Actions_Settings as Settings,
241
+ Actions_SettingsSolid as SettingsSolid,
242
+ Actions_Share as Share,
243
+ Actions_SignOut as SignOut,
244
+ Actions_Trash as Trash,
245
+ Actions_Warning as Warning,
339
246
  };
340
247
  }
341
248
 
342
- declare const FitPredictor$1: ({ height, width, fill }: IconProps) => JSX.Element;
249
+ declare const ChevronDown: IconComponent;
343
250
 
344
- interface LoadingProps extends IconProps {
345
- backgroundColor: string;
346
- }
347
- declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
251
+ declare const ChevronDownVariant: IconComponent;
348
252
 
349
- declare const Shapermint: ({ height, width }: IconProps) => JSX.Element;
253
+ declare const ChevronLeft: IconComponent;
350
254
 
351
- declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
255
+ declare const ChevronLeftLite: IconComponent;
352
256
 
353
- declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
257
+ declare const ChevronLeftVariant: IconComponent;
354
258
 
355
- declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
259
+ declare const ChevronRight: IconComponent;
356
260
 
357
- declare const Chat: ({ height, width, fill, testId }: IconProps) => JSX.Element;
261
+ declare const ChevronRightLite: IconComponent;
358
262
 
359
- declare const Email: ({ height, width, fill, testId }: IconProps) => JSX.Element;
263
+ declare const ChevronRightVariant: IconComponent;
360
264
 
361
- declare const CallUs: ({ height, width, fill, testId }: IconProps) => JSX.Element;
265
+ declare const ChevronUp: IconComponent;
362
266
 
363
- declare const SignForm: ({ height, width, fill }: IconProps) => JSX.Element;
267
+ declare const ChevronUpSolid: IconComponent;
364
268
 
365
- declare const QrCode: ({ height, width, fill }: IconProps) => JSX.Element;
269
+ declare const ChevronUpVariant: IconComponent;
366
270
 
367
- declare const FreeExchange: ({ height, width, fill, testId }: IconProps) => JSX.Element;
271
+ declare const CircleChevronDown: IconComponent;
368
272
 
369
- declare const ShopNow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
273
+ declare const CircleChevronLeft: IconComponent;
370
274
 
371
- declare const HasselFreeReturns: ({ height, width, fill, testId }: IconProps) => JSX.Element;
275
+ declare const CircleChevronRight: IconComponent;
372
276
 
373
- declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
277
+ declare const CircleChevronUp: IconComponent;
374
278
 
375
- declare const FitGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
279
+ declare const CircleLineDown: IconComponent;
376
280
 
377
- type Other_LoadingProps = LoadingProps;
378
- declare const Other_Shapermint: typeof Shapermint;
379
- declare const Other_McAfee: typeof McAfee;
380
- declare const Other_GetDiscount: typeof GetDiscount;
381
- declare const Other_ShapermintLogo: typeof ShapermintLogo;
382
- declare const Other_Chat: typeof Chat;
383
- declare const Other_Email: typeof Email;
384
- declare const Other_CallUs: typeof CallUs;
385
- declare const Other_SignForm: typeof SignForm;
386
- declare const Other_QrCode: typeof QrCode;
387
- declare const Other_FreeExchange: typeof FreeExchange;
388
- declare const Other_ShopNow: typeof ShopNow;
389
- declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
390
- declare const Other_Play: typeof Play;
391
- declare const Other_FitGuarantee: typeof FitGuarantee;
392
- declare namespace Other {
393
- export {
394
- FitPredictor$1 as FitPredictor,
395
- Other_LoadingProps as LoadingProps,
396
- Loading$1 as Loading,
397
- Other_Shapermint as Shapermint,
398
- Other_McAfee as McAfee,
399
- Other_GetDiscount as GetDiscount,
400
- Other_ShapermintLogo as ShapermintLogo,
401
- Other_Chat as Chat,
402
- Other_Email as Email,
403
- Other_CallUs as CallUs,
404
- Other_SignForm as SignForm,
405
- Other_QrCode as QrCode,
406
- Other_FreeExchange as FreeExchange,
407
- Other_ShopNow as ShopNow,
408
- Other_HasselFreeReturns as HasselFreeReturns,
409
- Other_Play as Play,
410
- Other_FitGuarantee as FitGuarantee,
411
- };
412
- }
413
-
414
- declare const ChevronDown: ({ height, width, fill }: IconProps) => JSX.Element;
415
-
416
- declare const ChevronLeft: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
417
-
418
- declare const ChevronRight: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
419
-
420
- declare const ChevronRightVariant: ({ height, width, fill }: IconProps) => JSX.Element;
421
-
422
- declare const ChevronUp: ({ height, width, fill }: IconProps) => JSX.Element;
281
+ declare const CircleLineLeft: IconComponent;
423
282
 
424
- declare const ChevronUpSolid: ({ height, width, fill }: IconProps) => JSX.Element;
283
+ declare const CircleLineRight: IconComponent;
425
284
 
426
- declare const CircleUp: ({ width, height, fill }: IconProps) => JSX.Element;
285
+ declare const CircleLineUp: IconComponent;
427
286
 
428
- declare const CircleChevronLeft: ({ width, height, fill }: IconProps) => JSX.Element;
287
+ declare const CircleUp: IconComponent;
429
288
 
430
- declare const CircleChevronRight: ({ width, height, fill }: IconProps) => JSX.Element;
431
-
432
- declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
433
-
434
- declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
435
-
436
- declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
437
-
438
- declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
439
-
440
- declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
441
-
442
- declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
443
-
444
- declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
445
-
446
- declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
447
-
448
- declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
289
+ declare const DoubleArrowUp: IconComponent;
449
290
 
450
291
  declare const Arrows_ChevronDown: typeof ChevronDown;
292
+ declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
451
293
  declare const Arrows_ChevronLeft: typeof ChevronLeft;
294
+ declare const Arrows_ChevronLeftLite: typeof ChevronLeftLite;
295
+ declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
452
296
  declare const Arrows_ChevronRight: typeof ChevronRight;
297
+ declare const Arrows_ChevronRightLite: typeof ChevronRightLite;
453
298
  declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
454
299
  declare const Arrows_ChevronUp: typeof ChevronUp;
455
300
  declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
456
- declare const Arrows_CircleUp: typeof CircleUp;
301
+ declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
302
+ declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
457
303
  declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
458
304
  declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
459
- declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
460
305
  declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
461
- declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
462
- declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
463
- declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
464
- declare const Arrows_CircleLineUp: typeof CircleLineUp;
465
306
  declare const Arrows_CircleLineDown: typeof CircleLineDown;
466
307
  declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
467
308
  declare const Arrows_CircleLineRight: typeof CircleLineRight;
309
+ declare const Arrows_CircleLineUp: typeof CircleLineUp;
310
+ declare const Arrows_CircleUp: typeof CircleUp;
311
+ declare const Arrows_DoubleArrowUp: typeof DoubleArrowUp;
468
312
  declare namespace Arrows {
469
313
  export {
470
314
  Arrows_ChevronDown as ChevronDown,
315
+ Arrows_ChevronDownVariant as ChevronDownVariant,
471
316
  Arrows_ChevronLeft as ChevronLeft,
317
+ Arrows_ChevronLeftLite as ChevronLeftLite,
318
+ Arrows_ChevronLeftVariant as ChevronLeftVariant,
472
319
  Arrows_ChevronRight as ChevronRight,
320
+ Arrows_ChevronRightLite as ChevronRightLite,
473
321
  Arrows_ChevronRightVariant as ChevronRightVariant,
474
322
  Arrows_ChevronUp as ChevronUp,
475
323
  Arrows_ChevronUpSolid as ChevronUpSolid,
476
- Arrows_CircleUp as CircleUp,
324
+ Arrows_ChevronUpVariant as ChevronUpVariant,
325
+ Arrows_CircleChevronDown as CircleChevronDown,
477
326
  Arrows_CircleChevronLeft as CircleChevronLeft,
478
327
  Arrows_CircleChevronRight as CircleChevronRight,
479
- Arrows_CircleChevronDown as CircleChevronDown,
480
328
  Arrows_CircleChevronUp as CircleChevronUp,
481
- Arrows_ChevronDownVariant as ChevronDownVariant,
482
- Arrows_ChevronUpVariant as ChevronUpVariant,
483
- Arrows_ChevronLeftVariant as ChevronLeftVariant,
484
- Arrows_CircleLineUp as CircleLineUp,
485
329
  Arrows_CircleLineDown as CircleLineDown,
486
330
  Arrows_CircleLineLeft as CircleLineLeft,
487
331
  Arrows_CircleLineRight as CircleLineRight,
332
+ Arrows_CircleLineUp as CircleLineUp,
333
+ Arrows_CircleUp as CircleUp,
334
+ Arrows_DoubleArrowUp as DoubleArrowUp,
488
335
  };
489
336
  }
490
337
 
491
- declare const Clock: ({ height, width, fill }: IconProps) => JSX.Element;
338
+ declare const SixtyDaysGuarantee: IconComponent;
492
339
 
493
- declare const FlagUSA: ({ height, width, fill }: IconProps) => JSX.Element;
340
+ declare const Bra: IconComponent;
494
341
 
495
- declare const Minus: ({ height, width, fill, title }: IconProps) => JSX.Element;
342
+ declare const Underwear: IconComponent;
496
343
 
497
- declare const Plus: ({ height, width, fill, title }: IconProps) => JSX.Element;
344
+ declare const PacksAndBundles: IconComponent;
498
345
 
499
- declare const Rule: ({ width, height, fill }: IconProps) => JSX.Element;
346
+ declare const SeamlessSupportBra: IconComponent;
500
347
 
501
- declare const Star: ({ height, width, fill }: IconProps) => JSX.Element;
348
+ declare const WireFreeComfort: IconComponent;
502
349
 
503
- declare const StarEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
350
+ declare const SixtyDaysBold: IconComponent;
504
351
 
505
- declare const StarHalf: ({ height, width, fill }: IconProps) => JSX.Element;
352
+ declare const Frown: IconComponent;
506
353
 
507
- declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Element;
354
+ declare const Smiling: IconComponent;
508
355
 
509
- declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
356
+ declare const BulletOne: IconComponent;
510
357
 
511
- declare const LightBulb$1: ({ height, width, fill }: IconProps) => JSX.Element;
358
+ declare const BulletTwo: IconComponent;
512
359
 
513
- declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
360
+ declare const BulletThree: IconComponent;
514
361
 
515
- declare const CircleNumber: ({ height, width, fill }: IconProps) => JSX.Element;
362
+ declare const ThumbsUp: IconComponent;
516
363
 
517
- declare const SizeEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
364
+ declare const ThumbsDown: IconComponent;
518
365
 
519
- declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
366
+ declare const Atom: IconComponent;
520
367
 
521
- declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
368
+ declare const Bubbles: IconComponent;
522
369
 
523
- declare const PDP_Clock: typeof Clock;
524
- declare const PDP_FlagUSA: typeof FlagUSA;
525
- declare const PDP_Minus: typeof Minus;
526
- declare const PDP_Plus: typeof Plus;
527
- declare const PDP_Rule: typeof Rule;
528
- declare const PDP_Star: typeof Star;
529
- declare const PDP_StarEmpty: typeof StarEmpty;
530
- declare const PDP_StarHalf: typeof StarHalf;
531
- declare const PDP_Stopwatch: typeof Stopwatch;
532
- declare const PDP_Shipping: typeof Shipping;
533
- declare const PDP_ErrorCross: typeof ErrorCross;
534
- declare const PDP_CircleNumber: typeof CircleNumber;
535
- declare const PDP_SizeEmpty: typeof SizeEmpty;
536
- declare const PDP_PlayMini: typeof PlayMini;
537
- declare const PDP_ShippingEmpty: typeof ShippingEmpty;
538
- declare namespace PDP {
370
+ declare const FairAdvantages: IconComponent;
371
+
372
+ declare const MoneyFlow: IconComponent;
373
+
374
+ declare const ClinicallyTested: IconComponent;
375
+
376
+ declare const CrueltyFree: IconComponent;
377
+
378
+ declare const Certified: IconComponent;
379
+
380
+ declare const NewSixtyDaysGuarantee: IconComponent;
381
+
382
+ declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
383
+ declare const Custom_Bra: typeof Bra;
384
+ declare const Custom_Underwear: typeof Underwear;
385
+ declare const Custom_PacksAndBundles: typeof PacksAndBundles;
386
+ declare const Custom_SeamlessSupportBra: typeof SeamlessSupportBra;
387
+ declare const Custom_WireFreeComfort: typeof WireFreeComfort;
388
+ declare const Custom_SixtyDaysBold: typeof SixtyDaysBold;
389
+ declare const Custom_Frown: typeof Frown;
390
+ declare const Custom_Smiling: typeof Smiling;
391
+ declare const Custom_BulletOne: typeof BulletOne;
392
+ declare const Custom_BulletTwo: typeof BulletTwo;
393
+ declare const Custom_BulletThree: typeof BulletThree;
394
+ declare const Custom_ThumbsUp: typeof ThumbsUp;
395
+ declare const Custom_ThumbsDown: typeof ThumbsDown;
396
+ declare const Custom_Atom: typeof Atom;
397
+ declare const Custom_Bubbles: typeof Bubbles;
398
+ declare const Custom_FairAdvantages: typeof FairAdvantages;
399
+ declare const Custom_MoneyFlow: typeof MoneyFlow;
400
+ declare const Custom_ClinicallyTested: typeof ClinicallyTested;
401
+ declare const Custom_CrueltyFree: typeof CrueltyFree;
402
+ declare const Custom_Certified: typeof Certified;
403
+ declare const Custom_NewSixtyDaysGuarantee: typeof NewSixtyDaysGuarantee;
404
+ declare namespace Custom {
539
405
  export {
540
- PDP_Clock as Clock,
541
- PDP_FlagUSA as FlagUSA,
542
- PDP_Minus as Minus,
543
- PDP_Plus as Plus,
544
- PDP_Rule as Rule,
545
- PDP_Star as Star,
546
- PDP_StarEmpty as StarEmpty,
547
- PDP_StarHalf as StarHalf,
548
- PDP_Stopwatch as Stopwatch,
549
- PDP_Shipping as Shipping,
406
+ Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
407
+ Custom_Bra as Bra,
408
+ Custom_Underwear as Underwear,
409
+ Custom_PacksAndBundles as PacksAndBundles,
410
+ Custom_SeamlessSupportBra as SeamlessSupportBra,
411
+ Custom_WireFreeComfort as WireFreeComfort,
412
+ Custom_SixtyDaysBold as SixtyDaysBold,
413
+ Custom_Frown as Frown,
414
+ Custom_Smiling as Smiling,
415
+ Custom_BulletOne as BulletOne,
416
+ Custom_BulletTwo as BulletTwo,
417
+ Custom_BulletThree as BulletThree,
418
+ Custom_ThumbsUp as ThumbsUp,
419
+ Custom_ThumbsDown as ThumbsDown,
420
+ Custom_Atom as Atom,
421
+ Custom_Bubbles as Bubbles,
422
+ Custom_FairAdvantages as FairAdvantages,
423
+ Custom_MoneyFlow as MoneyFlow,
424
+ Custom_ClinicallyTested as ClinicallyTested,
425
+ Custom_CrueltyFree as CrueltyFree,
426
+ Custom_Certified as Certified,
427
+ Custom_NewSixtyDaysGuarantee as NewSixtyDaysGuarantee,
428
+ };
429
+ }
430
+
431
+ declare const AppleStore: IconComponent;
432
+
433
+ declare const GooglePlay: IconComponent;
434
+
435
+ declare const Download_AppleStore: typeof AppleStore;
436
+ declare const Download_GooglePlay: typeof GooglePlay;
437
+ declare namespace Download {
438
+ export {
439
+ Download_AppleStore as AppleStore,
440
+ Download_GooglePlay as GooglePlay,
441
+ };
442
+ }
443
+
444
+ declare const Thinking: IconComponent;
445
+
446
+ declare const SmilingV2: IconComponent;
447
+
448
+ declare const Grinning: IconComponent;
449
+
450
+ declare const GrinningWithSweat: IconComponent;
451
+
452
+ declare const BlowingKiss: IconComponent;
453
+
454
+ declare const Frowning: IconComponent;
455
+
456
+ declare const Relieved: IconComponent;
457
+
458
+ declare const Emoji_Thinking: typeof Thinking;
459
+ declare const Emoji_SmilingV2: typeof SmilingV2;
460
+ declare const Emoji_Grinning: typeof Grinning;
461
+ declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
462
+ declare const Emoji_BlowingKiss: typeof BlowingKiss;
463
+ declare const Emoji_Frowning: typeof Frowning;
464
+ declare const Emoji_Relieved: typeof Relieved;
465
+ declare namespace Emoji {
466
+ export {
467
+ Emoji_Thinking as Thinking,
468
+ Emoji_SmilingV2 as SmilingV2,
469
+ Emoji_Grinning as Grinning,
470
+ Emoji_GrinningWithSweat as GrinningWithSweat,
471
+ Emoji_BlowingKiss as BlowingKiss,
472
+ Emoji_Frowning as Frowning,
473
+ Emoji_Relieved as Relieved,
474
+ };
475
+ }
476
+
477
+ declare const AdaChat: IconComponent;
478
+
479
+ declare const QuestionCircle: IconComponent;
480
+
481
+ declare const Messenger: IconComponent;
482
+
483
+ declare const Comment: IconComponent;
484
+
485
+ declare const Mail: IconComponent;
486
+
487
+ declare const Community$1: IconComponent;
488
+
489
+ declare const QuoteLeft: IconComponent;
490
+
491
+ declare const QuoteRight: IconComponent;
492
+
493
+ declare const QuoteSolidLeft: IconComponent;
494
+
495
+ declare const QuoteSolidRight: IconComponent;
496
+
497
+ declare const Light: IconComponent;
498
+
499
+ declare const LightBulb$1: IconComponent;
500
+
501
+ declare const LightBulbSolid: IconComponent;
502
+
503
+ declare const CommentDots: IconComponent;
504
+
505
+ declare const CommentLight: IconComponent;
506
+
507
+ declare const CommentMoney: IconComponent;
508
+
509
+ declare const Messaging_AdaChat: typeof AdaChat;
510
+ declare const Messaging_QuestionCircle: typeof QuestionCircle;
511
+ declare const Messaging_Messenger: typeof Messenger;
512
+ declare const Messaging_Comment: typeof Comment;
513
+ declare const Messaging_Mail: typeof Mail;
514
+ declare const Messaging_QuoteLeft: typeof QuoteLeft;
515
+ declare const Messaging_QuoteRight: typeof QuoteRight;
516
+ declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
517
+ declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
518
+ declare const Messaging_Light: typeof Light;
519
+ declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
520
+ declare const Messaging_CommentDots: typeof CommentDots;
521
+ declare const Messaging_CommentLight: typeof CommentLight;
522
+ declare const Messaging_CommentMoney: typeof CommentMoney;
523
+ declare namespace Messaging {
524
+ export {
525
+ Messaging_AdaChat as AdaChat,
526
+ Messaging_QuestionCircle as QuestionCircle,
527
+ Messaging_Messenger as Messenger,
528
+ Messaging_Comment as Comment,
529
+ Messaging_Mail as Mail,
530
+ Community$1 as Community,
531
+ Messaging_QuoteLeft as QuoteLeft,
532
+ Messaging_QuoteRight as QuoteRight,
533
+ Messaging_QuoteSolidLeft as QuoteSolidLeft,
534
+ Messaging_QuoteSolidRight as QuoteSolidRight,
535
+ Messaging_Light as Light,
550
536
  LightBulb$1 as LightBulb,
551
- PDP_ErrorCross as ErrorCross,
552
- PDP_CircleNumber as CircleNumber,
553
- PDP_SizeEmpty as SizeEmpty,
554
- PDP_PlayMini as PlayMini,
555
- PDP_ShippingEmpty as ShippingEmpty,
537
+ Messaging_LightBulbSolid as LightBulbSolid,
538
+ Messaging_CommentDots as CommentDots,
539
+ Messaging_CommentLight as CommentLight,
540
+ Messaging_CommentMoney as CommentMoney,
556
541
  };
557
542
  }
558
543
 
559
- declare const Facebook: ({ height, width, fill }: IconProps) => JSX.Element;
544
+ declare const FreeShipping: IconComponent;
560
545
 
561
- declare const FacebookSolid: ({ height, width, fill }: IconProps) => JSX.Element;
546
+ declare const PersonalStylist: IconComponent;
562
547
 
563
- declare const Instagram: ({ height, width, fill }: IconProps) => JSX.Element;
548
+ declare const Community: IconComponent;
564
549
 
565
- declare const InstagramSolid: ({ height, width, fill }: IconProps) => JSX.Element;
550
+ declare const VIP: IconComponent;
566
551
 
567
- declare const Pinterest: ({ height, width, fill }: IconProps) => JSX.Element;
552
+ declare const DealsOffers: IconComponent;
568
553
 
569
- declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
554
+ declare const StyleFashionContent: IconComponent;
570
555
 
571
- declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
556
+ declare const MembersOnlyDiscount: IconComponent;
572
557
 
573
- declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
558
+ declare const Profile: IconComponent;
574
559
 
575
- declare const SocialMedia_Facebook: typeof Facebook;
576
- declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
577
- declare const SocialMedia_Instagram: typeof Instagram;
578
- declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
579
- declare const SocialMedia_Pinterest: typeof Pinterest;
580
- declare const SocialMedia_Twitter: typeof Twitter;
581
- declare const SocialMedia_Youtube: typeof Youtube;
582
- declare const SocialMedia_Interaction: typeof Interaction;
583
- declare namespace SocialMedia {
560
+ declare const MembersOnlyDiscountOpposite: IconComponent;
561
+
562
+ declare const PriorityShipping: IconComponent;
563
+
564
+ declare const Guard: IconComponent;
565
+
566
+ declare const BirthdayGifts: IconComponent;
567
+
568
+ declare const SaleTag: IconComponent;
569
+
570
+ declare const FreeReturns: IconComponent;
571
+
572
+ declare const MyAccount_FreeShipping: typeof FreeShipping;
573
+ declare const MyAccount_PersonalStylist: typeof PersonalStylist;
574
+ declare const MyAccount_Community: typeof Community;
575
+ declare const MyAccount_VIP: typeof VIP;
576
+ declare const MyAccount_DealsOffers: typeof DealsOffers;
577
+ declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
578
+ declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
579
+ declare const MyAccount_Profile: typeof Profile;
580
+ declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
581
+ declare const MyAccount_PriorityShipping: typeof PriorityShipping;
582
+ declare const MyAccount_Guard: typeof Guard;
583
+ declare const MyAccount_BirthdayGifts: typeof BirthdayGifts;
584
+ declare const MyAccount_SaleTag: typeof SaleTag;
585
+ declare const MyAccount_FreeReturns: typeof FreeReturns;
586
+ declare namespace MyAccount {
584
587
  export {
585
- SocialMedia_Facebook as Facebook,
586
- SocialMedia_FacebookSolid as FacebookSolid,
587
- SocialMedia_Instagram as Instagram,
588
- SocialMedia_InstagramSolid as InstagramSolid,
589
- SocialMedia_Pinterest as Pinterest,
590
- SocialMedia_Twitter as Twitter,
591
- SocialMedia_Youtube as Youtube,
592
- SocialMedia_Interaction as Interaction,
588
+ MyAccount_FreeShipping as FreeShipping,
589
+ MyAccount_PersonalStylist as PersonalStylist,
590
+ MyAccount_Community as Community,
591
+ MyAccount_VIP as VIP,
592
+ MyAccount_DealsOffers as DealsOffers,
593
+ MyAccount_StyleFashionContent as StyleFashionContent,
594
+ MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
595
+ MyAccount_Profile as Profile,
596
+ MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
597
+ MyAccount_PriorityShipping as PriorityShipping,
598
+ MyAccount_Guard as Guard,
599
+ MyAccount_BirthdayGifts as BirthdayGifts,
600
+ MyAccount_SaleTag as SaleTag,
601
+ MyAccount_FreeReturns as FreeReturns,
593
602
  };
594
603
  }
595
604
 
596
- declare const Search: ({ height, width, fill, testId }: IconProps) => JSX.Element;
605
+ declare const Search: IconComponent;
606
+
607
+ declare const User: IconComponent;
608
+
609
+ declare const ShoppingBag: IconComponent;
597
610
 
598
- declare const User: ({ height, width, fill }: IconProps) => JSX.Element;
611
+ declare const ShoppingCart: IconComponent;
599
612
 
600
- declare const ShoppingBag: ({ height, width, fill, testId }: IconProps) => JSX.Element;
613
+ declare const MapMarker: IconComponent;
601
614
 
602
- declare const ShoppingCart: FC<IconProps>;
615
+ declare const Hamburger: IconComponent;
603
616
 
604
- declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
617
+ declare const AddressInformation: IconComponent;
605
618
 
606
- declare const Hamburger: FC<IconProps>;
619
+ declare const ClubMembership: IconComponent;
607
620
 
608
- declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
621
+ declare const Benefits: IconComponent;
609
622
 
610
- declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
623
+ declare const Home: IconComponent;
611
624
 
612
- declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
625
+ declare const HomeSolid: IconComponent;
613
626
 
614
- declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
627
+ declare const ShoppingBagV2: IconComponent;
615
628
 
616
- declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
629
+ declare const UserSolid: IconComponent;
617
630
 
618
- declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
631
+ declare const SlideDot$1: IconComponent;
619
632
 
620
- declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
633
+ declare const SlideDotSolid: IconComponent;
621
634
 
622
- declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
635
+ declare const Ellipsis: IconComponent;
623
636
 
624
- declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
637
+ declare const EllipsisHorizontal: IconComponent;
625
638
 
626
- declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
639
+ declare const Filters$1: IconComponent;
627
640
 
628
- declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
641
+ declare const Lock: IconComponent;
629
642
 
630
- declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
643
+ declare const LockSolid: IconComponent;
631
644
 
632
- declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
645
+ declare const Loading$1: IconComponent;
633
646
 
634
- declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
647
+ declare const MapSolid: IconComponent;
635
648
 
636
- declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
649
+ declare const MenuLines: IconComponent;
637
650
 
638
- declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
651
+ declare const UserV2: IconComponent;
639
652
 
640
- declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
653
+ declare const ShoppingCartV2: IconComponent;
641
654
 
642
- declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
655
+ declare const ShoppingBagV3: IconComponent;
656
+
657
+ declare const Shaperbox: IconComponent;
643
658
 
644
659
  declare const Navigation_Search: typeof Search;
645
660
  declare const Navigation_User: typeof User;
@@ -659,10 +674,12 @@ declare const Navigation_Ellipsis: typeof Ellipsis;
659
674
  declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
660
675
  declare const Navigation_Lock: typeof Lock;
661
676
  declare const Navigation_LockSolid: typeof LockSolid;
662
- declare const Navigation_Loading: typeof Loading;
663
677
  declare const Navigation_MapSolid: typeof MapSolid;
678
+ declare const Navigation_MenuLines: typeof MenuLines;
664
679
  declare const Navigation_UserV2: typeof UserV2;
665
680
  declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
681
+ declare const Navigation_ShoppingBagV3: typeof ShoppingBagV3;
682
+ declare const Navigation_Shaperbox: typeof Shaperbox;
666
683
  declare namespace Navigation {
667
684
  export {
668
685
  Navigation_Search as Search,
@@ -685,114 +702,253 @@ declare namespace Navigation {
685
702
  Filters$1 as Filters,
686
703
  Navigation_Lock as Lock,
687
704
  Navigation_LockSolid as LockSolid,
688
- Navigation_Loading as Loading,
705
+ Loading$1 as Loading,
689
706
  Navigation_MapSolid as MapSolid,
707
+ Navigation_MenuLines as MenuLines,
690
708
  Navigation_UserV2 as UserV2,
691
709
  Navigation_ShoppingCartV2 as ShoppingCartV2,
710
+ Navigation_ShoppingBagV3 as ShoppingBagV3,
711
+ Navigation_Shaperbox as Shaperbox,
692
712
  };
693
713
  }
694
714
 
695
- declare const QuestionCircle: ({ height, width, fill }: IconProps) => JSX.Element;
715
+ declare const BodConLabel: IconComponent;
696
716
 
697
- declare const Messenger: ({ height, width, fill }: IconProps) => JSX.Element;
717
+ declare const BodConMobileLabel: IconComponent;
698
718
 
699
- declare const Comment: ({ height, width, fill }: IconProps) => JSX.Element;
719
+ declare const CallUs: IconComponent;
700
720
 
701
- interface IconWrapperProps {
702
- width?: number;
703
- height?: number;
704
- title?: string;
705
- viewBoxX: number;
706
- viewBoxY: number;
707
- children: React.ReactNode;
708
- testId?: string;
709
- fill?: string;
710
- }
721
+ declare const Chat: IconComponent;
711
722
 
712
- declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
723
+ declare const Email: IconComponent;
713
724
 
714
- declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
725
+ declare const ExpressShipping: IconComponent;
715
726
 
716
- declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
727
+ declare const FitGuarantee$1: IconComponent;
717
728
 
718
- declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
729
+ declare const FitPredictor$1: IconComponent;
719
730
 
720
- declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
731
+ declare const FreeExchange: IconComponent;
721
732
 
722
- declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
733
+ declare const GetDiscount: IconComponent;
723
734
 
724
- declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
735
+ declare const HasselFreeReturns: IconComponent;
725
736
 
726
- declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
737
+ declare const Loading: IconComponent;
727
738
 
728
- declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
739
+ declare const McAfee: IconComponent;
729
740
 
730
- declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
741
+ declare const Play: IconComponent;
731
742
 
732
- declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
743
+ declare const QrCode: IconComponent;
733
744
 
734
- declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
745
+ declare const QuestionWithCircle: IconComponent;
735
746
 
736
- declare const Messaging_QuestionCircle: typeof QuestionCircle;
737
- declare const Messaging_Messenger: typeof Messenger;
738
- declare const Messaging_Comment: typeof Comment;
739
- declare const Messaging_Mail: typeof Mail;
740
- declare const Messaging_QuoteLeft: typeof QuoteLeft;
741
- declare const Messaging_QuoteRight: typeof QuoteRight;
742
- declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
743
- declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
744
- declare const Messaging_Light: typeof Light;
745
- declare const Messaging_LightBulb: typeof LightBulb;
746
- declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
747
- declare const Messaging_CommentDots: typeof CommentDots;
748
- declare const Messaging_CommentLight: typeof CommentLight;
749
- declare const Messaging_CommentMoney: typeof CommentMoney;
750
- declare namespace Messaging {
747
+ declare const RevelBeauty: IconComponent;
748
+
749
+ declare const Shapermint: IconComponent;
750
+
751
+ declare const ShapermintClubIcon: IconComponent;
752
+
753
+ declare const ShapermintClubIcon2: IconComponent;
754
+
755
+ declare const ShapermintClubLabel: IconComponent;
756
+
757
+ declare const ShapermintClubMobileLabel: IconComponent;
758
+
759
+ declare const ShapermintLogo: IconComponent;
760
+
761
+ declare const ShmClub: IconComponent;
762
+
763
+ declare const ShopNow: IconComponent;
764
+
765
+ declare const SignForm: IconComponent;
766
+
767
+ declare const SixtyDaysTSD: IconComponent;
768
+
769
+ declare const TheBodCon: IconComponent;
770
+
771
+ declare const TheSpaDr: IconComponent;
772
+
773
+ declare const Other_BodConLabel: typeof BodConLabel;
774
+ declare const Other_BodConMobileLabel: typeof BodConMobileLabel;
775
+ declare const Other_CallUs: typeof CallUs;
776
+ declare const Other_Chat: typeof Chat;
777
+ declare const Other_Email: typeof Email;
778
+ declare const Other_ExpressShipping: typeof ExpressShipping;
779
+ declare const Other_FreeExchange: typeof FreeExchange;
780
+ declare const Other_GetDiscount: typeof GetDiscount;
781
+ declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
782
+ declare const Other_Loading: typeof Loading;
783
+ declare const Other_McAfee: typeof McAfee;
784
+ declare const Other_Play: typeof Play;
785
+ declare const Other_QrCode: typeof QrCode;
786
+ declare const Other_QuestionWithCircle: typeof QuestionWithCircle;
787
+ declare const Other_RevelBeauty: typeof RevelBeauty;
788
+ declare const Other_Shapermint: typeof Shapermint;
789
+ declare const Other_ShapermintClubIcon: typeof ShapermintClubIcon;
790
+ declare const Other_ShapermintClubIcon2: typeof ShapermintClubIcon2;
791
+ declare const Other_ShapermintClubLabel: typeof ShapermintClubLabel;
792
+ declare const Other_ShapermintClubMobileLabel: typeof ShapermintClubMobileLabel;
793
+ declare const Other_ShapermintLogo: typeof ShapermintLogo;
794
+ declare const Other_ShmClub: typeof ShmClub;
795
+ declare const Other_ShopNow: typeof ShopNow;
796
+ declare const Other_SignForm: typeof SignForm;
797
+ declare const Other_SixtyDaysTSD: typeof SixtyDaysTSD;
798
+ declare const Other_TheBodCon: typeof TheBodCon;
799
+ declare const Other_TheSpaDr: typeof TheSpaDr;
800
+ declare namespace Other {
751
801
  export {
752
- Messaging_QuestionCircle as QuestionCircle,
753
- Messaging_Messenger as Messenger,
754
- Messaging_Comment as Comment,
755
- Messaging_Mail as Mail,
756
- Community$1 as Community,
757
- Messaging_QuoteLeft as QuoteLeft,
758
- Messaging_QuoteRight as QuoteRight,
759
- Messaging_QuoteSolidLeft as QuoteSolidLeft,
760
- Messaging_QuoteSolidRight as QuoteSolidRight,
761
- Messaging_Light as Light,
762
- Messaging_LightBulb as LightBulb,
763
- Messaging_LightBulbSolid as LightBulbSolid,
764
- Messaging_CommentDots as CommentDots,
765
- Messaging_CommentLight as CommentLight,
766
- Messaging_CommentMoney as CommentMoney,
802
+ Other_BodConLabel as BodConLabel,
803
+ Other_BodConMobileLabel as BodConMobileLabel,
804
+ Other_CallUs as CallUs,
805
+ Other_Chat as Chat,
806
+ Other_Email as Email,
807
+ Other_ExpressShipping as ExpressShipping,
808
+ FitGuarantee$1 as FitGuarantee,
809
+ FitPredictor$1 as FitPredictor,
810
+ Other_FreeExchange as FreeExchange,
811
+ Other_GetDiscount as GetDiscount,
812
+ Other_HasselFreeReturns as HasselFreeReturns,
813
+ Other_Loading as Loading,
814
+ Other_McAfee as McAfee,
815
+ Other_Play as Play,
816
+ Other_QrCode as QrCode,
817
+ Other_QuestionWithCircle as QuestionWithCircle,
818
+ Other_RevelBeauty as RevelBeauty,
819
+ Other_Shapermint as Shapermint,
820
+ Other_ShapermintClubIcon as ShapermintClubIcon,
821
+ Other_ShapermintClubIcon2 as ShapermintClubIcon2,
822
+ Other_ShapermintClubLabel as ShapermintClubLabel,
823
+ Other_ShapermintClubMobileLabel as ShapermintClubMobileLabel,
824
+ Other_ShapermintLogo as ShapermintLogo,
825
+ Other_ShmClub as ShmClub,
826
+ Other_ShopNow as ShopNow,
827
+ Other_SignForm as SignForm,
828
+ Other_SixtyDaysTSD as SixtyDaysTSD,
829
+ Other_TheBodCon as TheBodCon,
830
+ Other_TheSpaDr as TheSpaDr,
767
831
  };
768
832
  }
769
833
 
770
- declare const AppleStore: ({ height, width }: IconProps) => JSX.Element;
834
+ declare const Clock: IconComponent;
771
835
 
772
- declare const GooglePlay: ({ height, width }: IconProps) => JSX.Element;
836
+ declare const FlagUSA: IconComponent;
773
837
 
774
- declare const Download_AppleStore: typeof AppleStore;
775
- declare const Download_GooglePlay: typeof GooglePlay;
776
- declare namespace Download {
838
+ declare const Minus: IconComponent;
839
+
840
+ declare const Plus: IconComponent;
841
+
842
+ declare const Rule: IconComponent;
843
+
844
+ declare const Star: IconComponent;
845
+
846
+ declare const StarEmpty: IconComponent;
847
+
848
+ declare const StarHalf: IconComponent;
849
+
850
+ declare const Stopwatch: IconComponent;
851
+
852
+ declare const Shipping: IconComponent;
853
+
854
+ declare const LightBulb: IconComponent;
855
+
856
+ declare const ErrorCross: IconComponent;
857
+
858
+ declare const CircleNumber: IconComponent;
859
+
860
+ declare const SizeEmpty: IconComponent;
861
+
862
+ declare const SizeEmptyV2: IconComponent;
863
+
864
+ declare const PlayMini: IconComponent;
865
+
866
+ declare const ShippingEmpty: IconComponent;
867
+
868
+ declare const Drop: IconComponent;
869
+
870
+ declare const DropEmpty: IconComponent;
871
+
872
+ declare const Stars: IconComponent;
873
+
874
+ declare const Moon: IconComponent;
875
+
876
+ declare const Hours: IconComponent;
877
+
878
+ declare const NewClock: IconComponent;
879
+
880
+ declare const KlarnaLogo: IconComponent;
881
+
882
+ declare const TrustBadge: IconComponent;
883
+
884
+ declare const PDP_Clock: typeof Clock;
885
+ declare const PDP_FlagUSA: typeof FlagUSA;
886
+ declare const PDP_Minus: typeof Minus;
887
+ declare const PDP_Plus: typeof Plus;
888
+ declare const PDP_Rule: typeof Rule;
889
+ declare const PDP_Star: typeof Star;
890
+ declare const PDP_StarEmpty: typeof StarEmpty;
891
+ declare const PDP_StarHalf: typeof StarHalf;
892
+ declare const PDP_Stopwatch: typeof Stopwatch;
893
+ declare const PDP_Shipping: typeof Shipping;
894
+ declare const PDP_LightBulb: typeof LightBulb;
895
+ declare const PDP_ErrorCross: typeof ErrorCross;
896
+ declare const PDP_CircleNumber: typeof CircleNumber;
897
+ declare const PDP_SizeEmpty: typeof SizeEmpty;
898
+ declare const PDP_SizeEmptyV2: typeof SizeEmptyV2;
899
+ declare const PDP_PlayMini: typeof PlayMini;
900
+ declare const PDP_ShippingEmpty: typeof ShippingEmpty;
901
+ declare const PDP_Drop: typeof Drop;
902
+ declare const PDP_DropEmpty: typeof DropEmpty;
903
+ declare const PDP_Stars: typeof Stars;
904
+ declare const PDP_Moon: typeof Moon;
905
+ declare const PDP_Hours: typeof Hours;
906
+ declare const PDP_NewClock: typeof NewClock;
907
+ declare const PDP_KlarnaLogo: typeof KlarnaLogo;
908
+ declare const PDP_TrustBadge: typeof TrustBadge;
909
+ declare namespace PDP {
777
910
  export {
778
- Download_AppleStore as AppleStore,
779
- Download_GooglePlay as GooglePlay,
911
+ PDP_Clock as Clock,
912
+ PDP_FlagUSA as FlagUSA,
913
+ PDP_Minus as Minus,
914
+ PDP_Plus as Plus,
915
+ PDP_Rule as Rule,
916
+ PDP_Star as Star,
917
+ PDP_StarEmpty as StarEmpty,
918
+ PDP_StarHalf as StarHalf,
919
+ PDP_Stopwatch as Stopwatch,
920
+ PDP_Shipping as Shipping,
921
+ PDP_LightBulb as LightBulb,
922
+ PDP_ErrorCross as ErrorCross,
923
+ PDP_CircleNumber as CircleNumber,
924
+ PDP_SizeEmpty as SizeEmpty,
925
+ PDP_SizeEmptyV2 as SizeEmptyV2,
926
+ PDP_PlayMini as PlayMini,
927
+ PDP_ShippingEmpty as ShippingEmpty,
928
+ PDP_Drop as Drop,
929
+ PDP_DropEmpty as DropEmpty,
930
+ PDP_Stars as Stars,
931
+ PDP_Moon as Moon,
932
+ PDP_Hours as Hours,
933
+ PDP_NewClock as NewClock,
934
+ PDP_KlarnaLogo as KlarnaLogo,
935
+ PDP_TrustBadge as TrustBadge,
780
936
  };
781
937
  }
782
938
 
783
- declare const Visa: ({ height, width }: IconProps) => JSX.Element;
939
+ declare const Visa: IconComponent;
784
940
 
785
- declare const MasterCard: ({ height, width }: IconProps) => JSX.Element;
941
+ declare const MasterCard: IconComponent;
786
942
 
787
- declare const Amex: ({ height, width }: IconProps) => JSX.Element;
943
+ declare const Amex: IconComponent;
788
944
 
789
- declare const JCB: ({ height, width }: IconProps) => JSX.Element;
945
+ declare const JCB: IconComponent;
790
946
 
791
- declare const Paypal: ({ height, width }: IconProps) => JSX.Element;
947
+ declare const Paypal: IconComponent;
792
948
 
793
- declare const Klarna: ({ height, width }: IconProps) => JSX.Element;
949
+ declare const Klarna: IconComponent;
794
950
 
795
- declare const Amazon: ({ height, width }: IconProps) => JSX.Element;
951
+ declare const Amazon: IconComponent;
796
952
 
797
953
  declare const Payment_Visa: typeof Visa;
798
954
  declare const Payment_MasterCard: typeof MasterCard;
@@ -813,7 +969,7 @@ declare namespace Payment {
813
969
  };
814
970
  }
815
971
 
816
- declare const SlideDot: ({ height, width, fill, opacity, testId, }: IconWithOpacityProps & WithTestId) => JSX.Element;
972
+ declare const SlideDot: IconComponent;
817
973
 
818
974
  declare const SlideDots_SlideDot: typeof SlideDot;
819
975
  declare namespace SlideDots {
@@ -822,81 +978,44 @@ declare namespace SlideDots {
822
978
  };
823
979
  }
824
980
 
825
- declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
826
-
827
- declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
828
-
829
- declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
830
-
831
- declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
832
-
833
- declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
834
-
835
- declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
836
-
837
- declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
838
-
839
- declare const Emoji_Thinking: typeof Thinking;
840
- declare const Emoji_SmilingV2: typeof SmilingV2;
841
- declare const Emoji_Grinning: typeof Grinning;
842
- declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
843
- declare const Emoji_BlowingKiss: typeof BlowingKiss;
844
- declare const Emoji_Frowning: typeof Frowning;
845
- declare const Emoji_Relieved: typeof Relieved;
846
- declare namespace Emoji {
847
- export {
848
- Emoji_Thinking as Thinking,
849
- Emoji_SmilingV2 as SmilingV2,
850
- Emoji_Grinning as Grinning,
851
- Emoji_GrinningWithSweat as GrinningWithSweat,
852
- Emoji_BlowingKiss as BlowingKiss,
853
- Emoji_Frowning as Frowning,
854
- Emoji_Relieved as Relieved,
855
- };
856
- }
857
-
858
- declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
981
+ declare const Facebook: IconComponent;
859
982
 
860
- declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
983
+ declare const FacebookSolid: IconComponent;
861
984
 
862
- declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
985
+ declare const Instagram: IconComponent;
863
986
 
864
- declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
987
+ declare const InstagramSolid: IconComponent;
865
988
 
866
- declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
989
+ declare const Pinterest: IconComponent;
867
990
 
868
- declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
991
+ declare const Twitter: IconComponent;
869
992
 
870
- declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
993
+ declare const Youtube: IconComponent;
871
994
 
872
- declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
995
+ declare const Interaction: IconComponent;
873
996
 
874
- declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
875
-
876
- declare const MyAccount_FreeShipping: typeof FreeShipping;
877
- declare const MyAccount_PersonalStylist: typeof PersonalStylist;
878
- declare const MyAccount_Community: typeof Community;
879
- declare const MyAccount_VIP: typeof VIP;
880
- declare const MyAccount_DealsOffers: typeof DealsOffers;
881
- declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
882
- declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
883
- declare const MyAccount_Profile: typeof Profile;
884
- declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
885
- declare namespace MyAccount {
997
+ declare const SocialMedia_Facebook: typeof Facebook;
998
+ declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
999
+ declare const SocialMedia_Instagram: typeof Instagram;
1000
+ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
1001
+ declare const SocialMedia_Pinterest: typeof Pinterest;
1002
+ declare const SocialMedia_Twitter: typeof Twitter;
1003
+ declare const SocialMedia_Youtube: typeof Youtube;
1004
+ declare const SocialMedia_Interaction: typeof Interaction;
1005
+ declare namespace SocialMedia {
886
1006
  export {
887
- MyAccount_FreeShipping as FreeShipping,
888
- MyAccount_PersonalStylist as PersonalStylist,
889
- MyAccount_Community as Community,
890
- MyAccount_VIP as VIP,
891
- MyAccount_DealsOffers as DealsOffers,
892
- MyAccount_StyleFashionContent as StyleFashionContent,
893
- MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
894
- MyAccount_Profile as Profile,
895
- MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
1007
+ SocialMedia_Facebook as Facebook,
1008
+ SocialMedia_FacebookSolid as FacebookSolid,
1009
+ SocialMedia_Instagram as Instagram,
1010
+ SocialMedia_InstagramSolid as InstagramSolid,
1011
+ SocialMedia_Pinterest as Pinterest,
1012
+ SocialMedia_Twitter as Twitter,
1013
+ SocialMedia_Youtube as Youtube,
1014
+ SocialMedia_Interaction as Interaction,
896
1015
  };
897
1016
  }
898
1017
 
899
- declare type IconType = ({ height, width, fill, testId }: IconProps) => JSX.Element;
1018
+ declare type IconType = IconComponent;
900
1019
  declare const Icon: {
901
1020
  Custom: typeof Custom;
902
1021
  Arrows: typeof Arrows;
@@ -913,260 +1032,180 @@ declare const Icon: {
913
1032
  MyAccount: typeof MyAccount;
914
1033
  };
915
1034
 
916
- interface CardBodyProps {
917
- children: ReactNode;
918
- }
919
-
920
- interface CardSectionProps {
921
- children: ReactNode;
922
- }
923
-
924
- interface borderProps {
925
- borderColor: string;
926
- borderWidth: string;
1035
+ interface AccordionProps {
1036
+ defaultOpen?: boolean;
1037
+ forceOpenHandler?: boolean;
1038
+ forceOpenValue?: boolean;
1039
+ titleColor?: string;
1040
+ variant: 'simple' | 'box';
1041
+ header: ReactNode;
1042
+ headerOnOpen?: ReactNode;
1043
+ content: ReactNode;
1044
+ disabled?: boolean;
1045
+ innerHTML?: boolean;
1046
+ controlIconPos?: 'right' | 'bottom';
1047
+ backgroundCover?: {
1048
+ value: boolean;
1049
+ iconBgColor?: string;
1050
+ };
1051
+ openIcon: IconType;
1052
+ closeIcon: IconType;
1053
+ onClick?: (index: number) => void;
927
1054
  }
928
- interface CardProps {
929
- children: ReactNode;
930
- backgroundColor?: string;
931
- widthAuto?: boolean;
932
- border?: borderProps;
933
- flex?: boolean;
1055
+ declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, backgroundCover, controlIconPos, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
1056
+
1057
+ interface AccordionOptionsProps {
1058
+ titleColor: string;
1059
+ accordions: AccordionProps[];
934
1060
  }
935
- declare const _default: (({ children, backgroundColor, widthAuto, border, flex }: CardProps) => JSX.Element) & {
936
- Header: ({ children }: CardSectionProps) => JSX.Element;
937
- Footer: ({ children }: CardSectionProps) => JSX.Element;
938
- Body: ({ children }: CardBodyProps) => JSX.Element;
939
- };
1061
+ declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
940
1062
 
941
- declare const ButtonPrimary: ({ testId, ...props }: CTAProps) => _emotion_react_jsx_runtime.JSX.Element;
1063
+ declare type AutoshipProps = {
1064
+ singlePurchaseLabel: string;
1065
+ subscriptionLabel: string;
1066
+ tooltipContent?: {
1067
+ text: string;
1068
+ color?: string;
1069
+ };
1070
+ tooltipHeader?: {
1071
+ title: string;
1072
+ };
1073
+ pricing?: {
1074
+ originalPrice: number;
1075
+ discountedPrice: number;
1076
+ discountPercentage: number;
1077
+ };
1078
+ frequencyValues?: Array<number>;
1079
+ frequencyUnit?: string;
1080
+ autoshipBenefits: string[];
1081
+ onChange: (values: {
1082
+ subscriptionPeriod: number;
1083
+ autoship: boolean;
1084
+ originalPrice: number;
1085
+ discountedPrice: number;
1086
+ }) => void;
1087
+ className?: string;
1088
+ };
1089
+ declare const Autoship: React.FC<AutoshipProps>;
942
1090
 
943
- declare const ButtonSecondary: (props: CTAProps) => _emotion_react_jsx_runtime.JSX.Element;
1091
+ declare enum BeforeAfterVariant {
1092
+ UserInfoText = "UserInfoText",
1093
+ ResultFeedback = "ResultFeedback"
1094
+ }
1095
+ declare type NewSize = 'small' | 'medium' | 'large';
1096
+ declare const componentSizeMapper: {
1097
+ [size in ComponentSize$1]: NewSize;
1098
+ };
944
1099
 
945
- declare const ButtonSecondaryOutline: (props: CTAProps) => _emotion_react_jsx_runtime.JSX.Element;
1100
+ declare type BeforeAfterCardProps = {
1101
+ name: string;
1102
+ age?: string;
1103
+ months?: string;
1104
+ beforeImage: string;
1105
+ afterImage: string;
1106
+ alignCenter?: boolean;
1107
+ imageBorderRadius?: string;
1108
+ size?: ComponentSize$1;
1109
+ variant?: BeforeAfterVariant;
1110
+ description?: string;
1111
+ reviewDays?: string;
1112
+ };
1113
+ declare const BeforeAfterCard: React__default.FC<BeforeAfterCardProps>;
946
1114
 
947
- declare type Value<T> = DropdownOption<T>;
948
- declare type OnChange<T> = (option: Value<T>) => void;
949
- declare type CommonProps<T> = {
950
- options: Value<T>[];
951
- disabled?: boolean;
952
- wide?: boolean;
953
- label?: string;
954
- sort?: boolean;
955
- initialValue?: Value<T>;
956
- placeHolder: string;
957
- testId?: string;
958
- };
959
- declare type ControlledProps<T> = {
960
- value: Value<T>;
961
- onChange: OnChange<T>;
962
- } & CommonProps<T>;
963
- declare type UncontrolledProps<T> = {
964
- value?: never;
965
- onChange?: OnChange<T>;
966
- } & CommonProps<T>;
967
- declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
968
- declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, }: SimpleDropdownProps<T>): JSX.Element;
969
-
970
- interface DialogPositionProps {
971
- top: string;
972
- right: string;
973
- }
974
- interface DialogDropdownProps {
975
- options: {
976
- label: string;
977
- value: string;
978
- }[];
979
- position: DialogPositionProps;
980
- style?: React.CSSProperties;
981
- className?: string;
982
- }
983
- declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
984
-
985
- interface SizeSelectorProps {
986
- label: string;
987
- sizes: SizeOption[];
988
- selectedValue: SizeOption;
989
- onChange: (size: SizeOption) => void;
990
- inline?: boolean;
991
- width?: string;
992
- }
993
- declare const SizeSelector: ({ label, sizes, selectedValue, onChange, inline, width, }: SizeSelectorProps) => _emotion_react_jsx_runtime.JSX.Element;
994
-
995
- interface SizeFitGuideProps {
1115
+ interface SimpleProps {
996
1116
  title: string;
997
- fitPercentage?: number;
998
- onClick: () => void;
999
- onClickFitPercentage?: () => void;
1000
- }
1001
- declare const SizeFitGuide: ({ title, fitPercentage, onClick, onClickFitPercentage, }: SizeFitGuideProps) => JSX.Element;
1002
-
1003
- interface BaseButtonProps {
1004
- children: React.ReactNode;
1005
- renderLeading?: React.ReactNode;
1006
- renderTrailing?: React.ReactNode;
1007
- disabled?: boolean;
1008
- type?: ButtonType;
1009
- onClick: () => void;
1010
- className?: string;
1011
- inline?: boolean;
1012
- uppercase?: boolean;
1013
- testId?: string;
1117
+ freeShippingText: string;
1118
+ price: string;
1119
+ anyQtyForText: string;
1120
+ backgroundColor: string;
1121
+ widthAuto?: boolean;
1014
1122
  }
1015
1123
 
1016
- declare type BaseProps = Pick<BaseButtonProps, 'disabled' | 'type' | 'onClick'>;
1017
- interface TextButtonProps$1 extends BaseProps {
1018
- text: string;
1019
- LeadingIcon?: IconType;
1020
- TrailingIcon?: IconType;
1021
- iconColor?: string;
1022
- size?: ComponentSize;
1023
- uppercase?: boolean;
1024
- }
1025
- declare const TextButton: ({ text, LeadingIcon, TrailingIcon, iconColor, disabled, type, size, uppercase, onClick, }: TextButtonProps$1) => _emotion_react_jsx_runtime.JSX.Element;
1026
-
1027
- interface DiscountTagProps {
1028
- discount: number;
1029
- offText: string;
1030
- disabled?: boolean;
1124
+ interface MinimalisticProps {
1031
1125
  backgroundColor?: string;
1032
1126
  borderColor?: string;
1033
- textColor?: string;
1034
- size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1035
- style?: React.CSSProperties;
1036
- }
1037
- declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
1038
-
1039
- interface PriceLabelProps {
1040
- finalPrice: string | number;
1041
- originalPrice?: string | number;
1042
- color?: string;
1043
- size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1044
- discount?: DiscountTagProps;
1045
- finalPriceStyled?: boolean;
1046
- finalPriceStyle?: React.CSSProperties;
1047
- originalPriceStyled?: boolean;
1048
- originalPriceUnderlined?: boolean;
1127
+ originalPrice: string;
1128
+ price: string;
1129
+ savingPrice: string;
1130
+ getMorePayLessText: string;
1131
+ youAreSavingText: string;
1132
+ getQtyForText: string;
1133
+ discount: number;
1134
+ offText: string;
1135
+ widthAuto?: boolean;
1049
1136
  testId?: string;
1050
- }
1051
- declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
1137
+ }
1052
1138
 
1053
- declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
1139
+ declare const Bundle: {
1140
+ Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, testId, }: MinimalisticProps) => JSX.Element;
1141
+ Simple: ({ title, freeShippingText, price, anyQtyForText, backgroundColor, widthAuto, }: SimpleProps) => JSX.Element;
1142
+ };
1054
1143
 
1055
- interface ColorPickerProps {
1056
- options: ColorPickerOption[];
1057
- selectedValue?: ColorPickerOption;
1058
- label: string;
1059
- onChange: (color: ColorPickerOption) => void;
1060
- inline?: boolean;
1144
+ interface BuyNowPayLaterProps {
1145
+ displayBNPL: boolean;
1146
+ installments: number;
1147
+ installmentPrice: string;
1148
+ iconFolder?: string;
1149
+ iconName: string;
1150
+ showLogo?: boolean;
1151
+ iconColor?: string;
1152
+ fontSize?: string;
1061
1153
  }
1062
- declare const SingleColorPicker: ({ options, selectedValue, label, onChange, inline, }: ColorPickerProps) => _emotion_react_jsx_runtime.JSX.Element;
1154
+ declare const BuyNowPayLater: ({ displayBNPL, installments, installmentPrice, iconFolder, iconName, showLogo, iconColor, fontSize, }: BuyNowPayLaterProps) => JSX.Element | null;
1063
1155
 
1064
- interface MultiColorPickerProps {
1065
- options?: ColorPickerOption[];
1066
- label: string;
1067
- selectedValue?: ColorPickerOption;
1068
- onChange: (color: Set<ColorPickerOption>) => void;
1069
- }
1070
- declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: MultiColorPickerProps) => JSX.Element;
1156
+ interface CloseButtonProps {
1157
+ onClick: () => void;
1158
+ size: number;
1159
+ }
1071
1160
 
1072
- interface ProductGalleryProps {
1073
- images: ImageType[];
1074
- selectedValue?: ImageType;
1075
- topTag?: JSX.Element;
1076
- bottomTag?: JSX.Element;
1077
- productImageDataTestId?: string;
1078
- previewListDataTestId?: string;
1079
- thumbnailPosition?: 'vertical' | 'horizontal';
1080
- borderRadiusVariant?: boolean;
1081
- previewImgBorderColor?: string;
1082
- ctaText?: string;
1083
- ctaAction?: () => void;
1084
- }
1085
- declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, }: ProductGalleryProps) => JSX.Element;
1161
+ interface DescriptionProps {
1162
+ text: string;
1163
+ }
1086
1164
 
1087
- interface RatingProps {
1088
- rating: number;
1089
- size?: ComponentSize;
1090
- reviews: number;
1091
- reviewsText: string;
1092
- wrapWithParenthesis?: boolean;
1093
- underline?: boolean;
1094
- reviewsContainerId?: string;
1095
- }
1096
- declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
1165
+ interface PromoProps {
1166
+ text: string;
1167
+ }
1097
1168
 
1098
- interface FitPredictorProps {
1099
- onClick: () => void;
1169
+ interface OfferBannerProps {
1170
+ discountAppliedText: string;
1171
+ backgroundColor: string;
1100
1172
  }
1101
- declare const FitPredictor: ({ onClick }: FitPredictorProps) => _emotion_react_jsx_runtime.JSX.Element;
1173
+ declare const OfferBanner: ({ discountAppliedText, backgroundColor }: OfferBannerProps) => JSX.Element;
1102
1174
 
1103
- interface ProgressBarProps {
1104
- description?: string;
1105
- fillColor: string;
1106
- widthAuto?: boolean;
1107
- percent?: number;
1108
- }
1109
- declare const ProgressBar: ({ description, fillColor, widthAuto, percent, }: ProgressBarProps) => JSX.Element;
1175
+ interface TitleProps {
1176
+ title: string;
1177
+ }
1110
1178
 
1111
- interface IconButtonProps {
1112
- children: React.ReactNode;
1113
- disabled?: boolean;
1114
- onClick?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
1115
- size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1116
- }
1117
- declare const IconButton: ({ children, disabled, size, onClick, }: IconButtonProps) => JSX.Element;
1179
+ declare const CartProductItem: {
1180
+ Title: ({ title }: TitleProps) => JSX.Element;
1181
+ Tag: ({ discountAppliedText, backgroundColor }: OfferBannerProps) => JSX.Element;
1182
+ Promo: ({ text }: PromoProps) => JSX.Element;
1183
+ Description: ({ text }: DescriptionProps) => JSX.Element;
1184
+ CloseButton: ({ onClick, size }: CloseButtonProps) => JSX.Element;
1185
+ };
1118
1186
 
1119
- interface TooltipProps {
1120
- children: React.ReactNode;
1121
- position: ComponentPosition;
1122
- align?: 'start' | 'center' | 'end';
1123
- content?: {
1124
- text: string;
1125
- color?: string;
1126
- };
1127
- backgroundColor?: string;
1128
- maxWidth?: string;
1129
- header?: {
1130
- title: string;
1131
- titleColor?: string;
1132
- Icon?: IconType;
1133
- iconFill?: string;
1134
- };
1135
- onClick?: () => void;
1187
+ declare enum CardSectionType {
1188
+ Header = 0,
1189
+ Footer = 1
1136
1190
  }
1137
- declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
1138
-
1139
- interface AccordionProps {
1140
- defaultOpen?: boolean;
1141
- forceOpenHandler?: boolean;
1142
- forceOpenValue?: boolean;
1143
- titleColor?: string;
1144
- variant: 'simple' | 'box';
1145
- header: ReactNode;
1146
- headerOnOpen?: ReactNode;
1147
- content: ReactNode;
1148
- disabled?: boolean;
1149
- innerHTML?: boolean;
1150
- openIcon: IconType;
1151
- closeIcon: IconType;
1152
- onClick?: (index: number) => void;
1191
+ declare enum ComponentSize {
1192
+ Large = "large",
1193
+ Medium = "medium",
1194
+ Small = "small",
1195
+ XSmall = "xsmall"
1196
+ }
1197
+ declare enum ComponentPosition {
1198
+ Top = 0,
1199
+ Bottom = 1,
1200
+ Left = 2,
1201
+ Right = 3
1153
1202
  }
1154
- declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
1203
+ declare enum InputValidationType {
1204
+ Error = 0,
1205
+ Valid = 1,
1206
+ Empty = 2
1207
+ }
1155
1208
 
1156
- declare const ThemeProvider: FC<{
1157
- theme: Theme;
1158
- children: ReactNode;
1159
- }>;
1160
- declare const useTheme: () => Theme;
1161
-
1162
- declare const ThemeVariables: FC<{
1163
- theme: Theme;
1164
- Container?: ElementType;
1165
- }>;
1166
- declare const AssetsProvider: FC<{
1167
- assets: ThemeAssets;
1168
- }>;
1169
- declare const useThemeAssets: () => ThemeAssets;
1170
1209
  declare type Theme = {
1171
1210
  name: string;
1172
1211
  fontSizes: number[];
@@ -1188,6 +1227,7 @@ declare type Theme = {
1188
1227
  };
1189
1228
  declare type ThemeBreakpoints = {
1190
1229
  mobile: number;
1230
+ tablet?: number;
1191
1231
  desktop: number;
1192
1232
  };
1193
1233
  declare type ThemeBasicPallete = {
@@ -1195,7 +1235,7 @@ declare type ThemeBasicPallete = {
1195
1235
  contrast: string;
1196
1236
  };
1197
1237
  declare type ThemeColorPallete = ThemeBasicPallete & {
1198
- soft: ThemeBasicPallete;
1238
+ soft?: ThemeBasicPallete;
1199
1239
  };
1200
1240
  declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
1201
1241
  20: ThemeColorPallete;
@@ -1207,6 +1247,7 @@ declare type ThemeColors = {
1207
1247
  pallete: {
1208
1248
  primary: ThemeColorPrimaryPallete;
1209
1249
  secondary: ThemeColorPrimaryPallete;
1250
+ tertiary?: ThemeColorPrimaryPallete;
1210
1251
  } & Partial<Record<string, ThemeColorPallete>>;
1211
1252
  shades: {
1212
1253
  black: ThemeBasicPallete;
@@ -1216,6 +1257,7 @@ declare type ThemeColors = {
1216
1257
  50: ThemeBasicPallete;
1217
1258
  100: ThemeBasicPallete;
1218
1259
  150: ThemeBasicPallete;
1260
+ 175: ThemeBasicPallete;
1219
1261
  200: ThemeBasicPallete;
1220
1262
  250: ThemeBasicPallete;
1221
1263
  300: ThemeBasicPallete;
@@ -1244,6 +1286,8 @@ declare type ThemeColors = {
1244
1286
  color: string;
1245
1287
  disabled: string;
1246
1288
  highlight: string;
1289
+ shadow?: string;
1290
+ isChecked?: string;
1247
1291
  };
1248
1292
  background: {
1249
1293
  color: string;
@@ -1550,12 +1594,20 @@ declare type ThemeComponent = {
1550
1594
  fontWeight: number;
1551
1595
  lineHeight: string;
1552
1596
  padding: string;
1597
+ optionPadding: string;
1553
1598
  color: string;
1554
1599
  fill: string;
1600
+ borderWidth?: string;
1555
1601
  options: {
1556
1602
  borderColor: string;
1557
1603
  color: string;
1558
1604
  borderRadius: string;
1605
+ borderRadiusV2?: string;
1606
+ backgroundColor?: string;
1607
+ };
1608
+ optionsWrapper: {
1609
+ borderRadius: string;
1610
+ overflow: string;
1559
1611
  };
1560
1612
  };
1561
1613
  modal: {
@@ -1662,11 +1714,7 @@ declare type ThemeComponent = {
1662
1714
  alignSelf?: string;
1663
1715
  };
1664
1716
  savings: {
1665
- textFontSize: string;
1666
- textLineHeight: string;
1667
- amountFontSize: string;
1668
1717
  amountFontWeight: number;
1669
- amountLineHeight: string;
1670
1718
  color?: string;
1671
1719
  };
1672
1720
  };
@@ -1683,18 +1731,38 @@ declare type ThemeComponent = {
1683
1731
  pricing: {
1684
1732
  priceLabel: {
1685
1733
  price: {
1686
- size: ComponentSize$1.Small | ComponentSize$1.Medium | ComponentSize$1.Large;
1734
+ size: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1687
1735
  originalPriceColor: string;
1688
1736
  actualPriceColor: string;
1737
+ defaultFontSize?: {
1738
+ large: string;
1739
+ medium: string;
1740
+ small: string;
1741
+ };
1742
+ smallFontSize?: {
1743
+ large: string;
1744
+ medium: string;
1745
+ small: string;
1746
+ };
1747
+ largeFontSize?: {
1748
+ large: string;
1749
+ medium: string;
1750
+ small: string;
1751
+ };
1752
+ discountFontSize?: {
1753
+ large: string;
1754
+ medium: string;
1755
+ small: string;
1756
+ };
1689
1757
  };
1690
1758
  };
1691
1759
  };
1692
1760
  orderSummary: {
1693
1761
  headingTextAlign: string;
1694
- backgroundColor: string;
1695
- maxWidth?: string;
1762
+ backgroundColor?: string;
1696
1763
  padding?: string;
1697
1764
  borderRadius?: string;
1765
+ maxWidth?: string;
1698
1766
  onMobile: {
1699
1767
  maxWidth?: string;
1700
1768
  padding?: string;
@@ -1702,9 +1770,9 @@ declare type ThemeComponent = {
1702
1770
  };
1703
1771
  };
1704
1772
  expressCheckout: {
1705
- fontFamily: string;
1706
- fontWeight: number;
1707
- lineHeight: string;
1773
+ button: {
1774
+ borderRadius: string;
1775
+ };
1708
1776
  };
1709
1777
  copyrightText: {
1710
1778
  fontSize: string;
@@ -1712,24 +1780,126 @@ declare type ThemeComponent = {
1712
1780
  lineHeight: string;
1713
1781
  color: string;
1714
1782
  };
1783
+ thankyouFooterText: {
1784
+ fontSize: string;
1785
+ fontWeight: string;
1786
+ lineHeight: string;
1787
+ };
1715
1788
  textButton: {
1716
1789
  fontWeight: number;
1717
1790
  lineHeight: string;
1718
1791
  };
1719
1792
  deliveryDetails: {
1793
+ title: {
1794
+ fontSize: string;
1795
+ lineHeight: string;
1796
+ fontWeight: number;
1797
+ };
1720
1798
  note: {
1721
1799
  accentColor: string;
1722
1800
  color: string;
1723
1801
  backgroundColor: string;
1724
1802
  };
1725
- SectionDetails?: {
1726
- marginLeft: string;
1803
+ sectionTitle: {
1804
+ fontSize: string;
1805
+ lineHeight: string;
1806
+ fontWeight: number;
1807
+ };
1808
+ sectionDetails: {
1809
+ fontSize: string;
1810
+ lineHeight: string;
1811
+ fontWeight: number;
1812
+ marginLeft?: string;
1727
1813
  };
1728
1814
  };
1729
1815
  text: {
1730
1816
  orderHeader: {
1731
1817
  color: string;
1732
1818
  };
1819
+ fitGuarantee: {
1820
+ titleFontSize?: string;
1821
+ titleFontWeight?: number | string;
1822
+ fontWeight: number | string;
1823
+ };
1824
+ offerBanner: {
1825
+ borderRadius: string;
1826
+ };
1827
+ };
1828
+ orderBar: {
1829
+ backgroundColor: string;
1830
+ fontColor: string;
1831
+ };
1832
+ banner: {
1833
+ outlineColor: string;
1834
+ filledColor: string;
1835
+ fontColor: string;
1836
+ };
1837
+ offerTitleText: {
1838
+ size: string;
1839
+ weight: number;
1840
+ lineHeight: string;
1841
+ };
1842
+ linePrice: {
1843
+ color: string;
1844
+ badge: {
1845
+ color: string;
1846
+ borderRadius: string;
1847
+ };
1848
+ };
1849
+ divider: {
1850
+ color: string;
1851
+ };
1852
+ checkout: {
1853
+ paymentInformation: {
1854
+ borderRadius?: string;
1855
+ };
1856
+ creditCardSection: {
1857
+ borderRadius?: string;
1858
+ };
1859
+ };
1860
+ upsell: {
1861
+ banner: {
1862
+ outlined: {
1863
+ color?: string;
1864
+ };
1865
+ };
1866
+ price: {
1867
+ colors: {
1868
+ regular: string;
1869
+ deal: string;
1870
+ each: string;
1871
+ badgeBG: string;
1872
+ badgeColor: string;
1873
+ };
1874
+ };
1875
+ hurryTimeCard: {
1876
+ backgroundColor: string;
1877
+ };
1878
+ guaranteedFit?: {
1879
+ backgroundColor: string;
1880
+ };
1881
+ };
1882
+ thankyou: {
1883
+ orderBanner?: {
1884
+ text: {
1885
+ left: string;
1886
+ };
1887
+ };
1888
+ emailSection: {
1889
+ backgroundColor?: string;
1890
+ };
1891
+ socialIcon: {
1892
+ color?: string;
1893
+ };
1894
+ orderId: {
1895
+ color: string;
1896
+ };
1897
+ };
1898
+ hurryUp: {
1899
+ borderRadius?: string;
1900
+ };
1901
+ qtyPicker: {
1902
+ borderRadius: string;
1733
1903
  };
1734
1904
  };
1735
1905
  declare type ThemeTypography = {
@@ -1754,6 +1924,7 @@ declare type ThemeFonts = {
1754
1924
  }>;
1755
1925
  };
1756
1926
  declare type ThemeAssets = {
1927
+ cdn: string;
1757
1928
  images: {
1758
1929
  favicon: string;
1759
1930
  logo: string;
@@ -1762,10 +1933,40 @@ declare type ThemeAssets = {
1762
1933
  height: string;
1763
1934
  };
1764
1935
  logoMobile?: string;
1936
+ checkoutLogo?: {
1937
+ url: string;
1938
+ width: string;
1939
+ height: string;
1940
+ };
1941
+ upsellLogo?: {
1942
+ url: string;
1943
+ width: string;
1944
+ height: string;
1945
+ };
1946
+ tyLogo?: {
1947
+ url: string;
1948
+ width: string;
1949
+ height: string;
1950
+ };
1765
1951
  };
1766
1952
  [key: string]: any;
1767
1953
  };
1768
1954
 
1955
+ declare const ThemeProvider: FC<{
1956
+ theme: Theme$1;
1957
+ children: ReactNode;
1958
+ }>;
1959
+ declare const useTheme: () => Theme$1;
1960
+
1961
+ declare const ThemeVariables: FC<{
1962
+ theme: Theme$1;
1963
+ Container?: ElementType;
1964
+ }>;
1965
+ declare const AssetsProvider: FC<{
1966
+ assets: ThemeAssets;
1967
+ }>;
1968
+ declare const useThemeAssets: () => ThemeAssets;
1969
+
1769
1970
  interface CheckboxProps {
1770
1971
  disabled?: boolean;
1771
1972
  onChange: (checked: boolean) => void;
@@ -1775,193 +1976,336 @@ interface CheckboxProps {
1775
1976
  blockUncheck?: boolean;
1776
1977
  id: string;
1777
1978
  backgroundColor?: string;
1778
- variant: 'primary' | 'secondary';
1979
+ variant: 'primary' | 'secondary' | 'color';
1779
1980
  }
1780
- declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, blockUncheck, }: CheckboxProps) => JSX.Element;
1981
+ declare const Checkbox: React__default.FC<CheckboxProps>;
1781
1982
 
1782
- interface RadioGroupInputProps {
1783
- name: string;
1784
- options?: RadioGroupOption[];
1785
- value?: RadioGroupOption;
1786
- onChange: (value: RadioGroupOption) => void;
1787
- size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1788
- disabled?: boolean;
1983
+ interface ImageStyleProps {
1984
+ height?: string;
1985
+ width?: string;
1986
+ borderRadius?: string;
1987
+ objectFit?: string;
1988
+ objectPosition?: string;
1989
+ className?: string;
1789
1990
  }
1790
- declare const RadioGroupInput: ({ name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
1791
-
1792
- interface SimpleProps {
1793
- title: string;
1794
- freeShippingText: string;
1795
- price: string;
1796
- anyQtyForText: string;
1797
- backgroundColor: string;
1798
- widthAuto?: boolean;
1799
- }
1991
+ interface ImageProps extends ImageStyleProps {
1992
+ src: string;
1993
+ alt: string;
1994
+ srcSet?: string;
1995
+ sizes?: string;
1996
+ loading?: 'lazy' | 'eager';
1997
+ }
1998
+ declare const Image: ({ src, srcSet, sizes, loading, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
1800
1999
 
1801
- interface MinimalisticProps {
1802
- backgroundColor?: string;
1803
- borderColor?: string;
1804
- originalPrice: string;
1805
- price: string;
1806
- savingPrice: string;
1807
- getMorePayLessText: string;
1808
- youAreSavingText: string;
1809
- getQtyForText: string;
2000
+ interface DiscountTagProps {
1810
2001
  discount: number;
1811
2002
  offText: string;
1812
- widthAuto?: boolean;
1813
- testId?: string;
1814
- }
1815
-
1816
- declare const Bundle: {
1817
- Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, testId, }: MinimalisticProps) => JSX.Element;
1818
- Simple: ({ title, freeShippingText, price, anyQtyForText, backgroundColor, widthAuto, }: SimpleProps) => JSX.Element;
1819
- };
1820
-
1821
- interface CategoryTagProps {
1822
- text: string;
1823
- size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1824
- className?: string;
1825
- styledBorder?: boolean;
1826
- }
1827
- declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1828
-
1829
- interface SeasonOfferTagProps {
1830
- text: string;
2003
+ savings?: string;
2004
+ showSavings?: boolean;
2005
+ disabled?: boolean;
1831
2006
  backgroundColor?: string;
1832
- size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1833
- className?: string;
1834
- styledBorder?: boolean;
2007
+ borderColor?: string;
2008
+ textColor?: string;
2009
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
2010
+ style?: React__default.CSSProperties;
2011
+ bordersRounded?: boolean;
1835
2012
  }
1836
- declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
2013
+ declare const DiscountTag: ({ discount, offText, savings, showSavings, disabled, backgroundColor, borderColor, textColor, size, style, bordersRounded, }: DiscountTagProps) => JSX.Element;
1837
2014
 
1838
- interface TimeProps {
1839
- hours: number;
1840
- minutes: number;
1841
- seconds: number;
1842
- }
1843
- interface TimerProps extends TimeProps {
1844
- onTimeUp: () => void;
1845
- displayZeroValues?: boolean;
2015
+ interface ClubOfferTagProps {
2016
+ clubOfferText?: string;
2017
+ className?: string;
2018
+ disabled?: boolean;
2019
+ backgroundColor?: string;
2020
+ borderColor?: string;
2021
+ textColor?: string;
2022
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
2023
+ style?: React__default.CSSProperties;
1846
2024
  }
1847
- declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
2025
+ declare const ClubOfferTag: ({ clubOfferText, className, disabled, backgroundColor, borderColor, textColor, size, style, }: ClubOfferTagProps) => JSX.Element;
1848
2026
 
1849
- interface BaseInputCommonProps {
1850
- id?: string;
1851
- value?: string;
1852
- innerRef?: React.Ref<HTMLInputElement>;
1853
- onBlur?: () => void;
1854
- onFocus?: () => void;
1855
- onChange?: (value: string, event: any) => void;
1856
- hideClear?: boolean;
1857
- defaultValue?: string;
1858
- maxLength?: number;
1859
- placeholder?: string;
1860
- label?: string;
1861
- onValidation?: (status: InputValidationType) => void;
1862
- disabled?: boolean;
1863
- required?: string;
1864
- children?: React.ReactNode;
1865
- size?: 'regular' | 'small';
1866
- inlinePlaceholder?: boolean;
1867
- hasError?: boolean;
1868
- inputType?: 'text' | 'email' | 'password' | 'url';
1869
- name?: string;
1870
- autoFocus?: boolean;
2027
+ interface PriceLabelProps {
2028
+ finalPrice: string | number;
2029
+ originalPrice?: string | number;
2030
+ color?: string;
2031
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
2032
+ discount?: DiscountTagProps;
2033
+ clubOffer?: ClubOfferTagProps;
2034
+ finalPriceStyled?: boolean;
2035
+ finalPriceStyle?: React__default.CSSProperties;
2036
+ originalPriceStyled?: boolean;
2037
+ originalPriceUnderlined?: boolean;
2038
+ testId?: string;
2039
+ clubStyle?: boolean;
2040
+ bordersRounded?: boolean;
1871
2041
  }
1872
- declare type BaseInputProps = BaseInputCommonProps;
2042
+ declare const PriceLabel: React__default.FC<PriceLabelProps>;
1873
2043
 
1874
- declare type BasePlusIconProps = BaseInputProps & {
1875
- Icon: IconType;
1876
- };
2044
+ declare type Props = PriceLabelProps & {
2045
+ savingsDisplay?: boolean;
2046
+ };
2047
+ declare const PriceLabelV2: React__default.FC<Props>;
1877
2048
 
1878
- declare type BasePlusButtonProps = BaseInputProps & {
1879
- label?: undefined;
1880
- onClick: (value: string) => void;
1881
- onClickEdit: () => void;
1882
- text: string;
1883
- success: boolean;
1884
- editText: string;
1885
- successText: string;
1886
- };
2049
+ interface RatingProps {
2050
+ rating: number;
2051
+ size?: ComponentSize;
2052
+ reviews?: number;
2053
+ reviewsText?: string;
2054
+ wrapWithParenthesis?: boolean;
2055
+ underline?: boolean;
2056
+ reviewsContainerId?: string;
2057
+ }
2058
+ declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
1887
2059
 
1888
- interface BaseCTAProps {
1889
- onClick: () => void;
1890
- disabled?: boolean;
1891
- wide?: boolean;
2060
+ interface ProductItemProps {
2061
+ title: string;
2062
+ image: ImageProps;
2063
+ price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
2064
+ rating: Pick<RatingProps, 'rating' | 'reviews'>;
2065
+ tags?: {
2066
+ categoryTagText?: string;
2067
+ seasonOfferTagText?: string;
2068
+ };
2069
+ alignName?: 'left' | 'center';
2070
+ url?: string;
1892
2071
  className?: string;
1893
- size?: ComponentSize;
1894
- text: string;
1895
- type?: ButtonType;
1896
- inline?: boolean;
1897
- testId?: string;
1898
2072
  }
1899
2073
 
1900
- declare type ButtonProps = {
1901
- variant: 'primary' | 'secondary' | 'secondary-outline';
1902
- } & BaseCTAProps;
1903
-
1904
- declare type CustomProps = BaseInputProps & {
1905
- onClick: () => void;
1906
- text: string;
1907
- variant: ButtonProps['variant'];
1908
- };
1909
-
1910
- declare const Input: {
1911
- Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, ...rest }: BaseInputCommonProps) => JSX.Element;
1912
- Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
1913
- SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
1914
- SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
1915
- };
1916
-
1917
- interface PaymentMethodsProps {
1918
- Icon: IconType;
1919
- width: string;
1920
- height: string;
2074
+ interface ProductItemSmallMobileProps$1 extends ProductItemProps {
2075
+ titleStyle?: Pick<TextProps$1, 'variant' | 'weight' | 'size'>;
2076
+ ImageBorderRadius?: string;
2077
+ hasSpacing?: boolean;
2078
+ textContainerGap?: string;
2079
+ customSizeRating?: ComponentSize.XSmall | ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large | '';
2080
+ size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
2081
+ imageHover?: ImageProps;
2082
+ topTag?: JSX.Element;
2083
+ bottomTag?: JSX.Element;
1921
2084
  onClick?: () => void;
1922
- }
1923
- declare const PaymentMethod: ({ Icon, width, height, onClick }: PaymentMethodsProps) => JSX.Element;
1924
-
1925
- interface OfferBannerProps {
1926
- discountAppliedText: string;
1927
- backgroundColor: string;
1928
- }
1929
- declare const OfferBanner: ({ discountAppliedText, backgroundColor }: OfferBannerProps) => JSX.Element;
2085
+ originalPriceStyled?: boolean;
2086
+ priceDisplayType?: 'default' | 'styled';
2087
+ priceAtBottom?: boolean;
2088
+ priceLoading?: boolean;
2089
+ noFollow?: boolean;
2090
+ colorPicker?: {
2091
+ display: boolean;
2092
+ position: string;
2093
+ component: JSX.Element | JSX.Element[] | undefined;
2094
+ };
2095
+ isBNPL?: {
2096
+ displayBNPL: boolean;
2097
+ installments: number;
2098
+ installmentPrice: string;
2099
+ iconFolder?: string;
2100
+ iconName: string;
2101
+ showLogo?: boolean;
2102
+ iconColor: string;
2103
+ fontSize: string;
2104
+ };
2105
+ hasStrength?: {
2106
+ strength: number;
2107
+ description: string;
2108
+ };
2109
+ clubPrice?: string;
2110
+ showClubPriceLabel?: boolean;
2111
+ }
1930
2112
 
1931
- declare type SubtotalOption = {
2113
+ interface ProductItemSmallMobileProps extends ProductItemProps {
2114
+ size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
2115
+ imageHover?: ImageProps;
2116
+ topTag?: JSX.Element;
2117
+ bottomTag?: JSX.Element;
2118
+ onClick?: () => void;
2119
+ priceDisplayType?: 'default' | 'styled';
2120
+ priceAtBottom?: boolean;
2121
+ priceLoading?: boolean;
2122
+ noFollow?: boolean;
2123
+ colorPicker?: {
2124
+ display: boolean;
2125
+ position: string;
2126
+ component: JSX.Element | JSX.Element[] | undefined;
2127
+ };
2128
+ isBNPL?: {
2129
+ displayBNPL: boolean;
2130
+ installments: number;
2131
+ installmentPrice: string;
2132
+ iconFolder?: string;
2133
+ iconName: string;
2134
+ showLogo?: boolean;
2135
+ iconColor: string;
2136
+ fontSize: string;
2137
+ };
2138
+ hasStrength?: {
2139
+ strength: number;
2140
+ description: string;
2141
+ };
2142
+ clubPrice?: string;
2143
+ showClubPriceLabel?: boolean;
2144
+ isRatingLoading?: boolean;
2145
+ }
2146
+
2147
+ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React__default.FC<P>, data: ProductItemProps[]): {
2148
+ (props: Omit<P, 'title' | 'image' | 'price' | 'rating'>): JSX.Element;
2149
+ displayName: string;
2150
+ };
2151
+
2152
+ declare const Collection: {
2153
+ ProductItemMobile: React$1.FC<ProductItemSmallMobileProps>;
2154
+ withProductGrid: typeof withProductGrid;
2155
+ ProductItemTK: ({ title, titleStyle, hasSpacing, textContainerGap, customSizeRating, image, ImageBorderRadius, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, originalPriceStyled, priceAtBottom, priceLoading, noFollow, colorPicker, isBNPL, hasStrength, clubPrice, showClubPriceLabel, }: ProductItemSmallMobileProps$1) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
2156
+ };
2157
+
2158
+ interface IconProps {
2159
+ width?: number | string;
2160
+ height?: number | string;
2161
+ fill?: string;
2162
+ title?: string;
2163
+ testId?: string;
2164
+ }
2165
+ declare type ButtonType = 'button' | 'submit' | 'reset';
2166
+ interface CTAProps {
2167
+ onClick: () => void;
2168
+ disabled?: boolean;
2169
+ wide?: boolean | false;
2170
+ size?: ComponentSize;
2171
+ text: string;
2172
+ type?: ButtonType;
2173
+ className?: string;
2174
+ testId?: string;
2175
+ inline?: boolean;
2176
+ }
2177
+ declare type DropdownOption<T> = {
2178
+ key: string;
2179
+ label: string;
2180
+ value: T;
2181
+ disabled: boolean;
2182
+ };
2183
+ declare type SizeOption = {
2184
+ label: string;
2185
+ description: string;
2186
+ disabled?: boolean;
2187
+ noStock?: boolean;
2188
+ };
2189
+ declare type Pattern = {
2190
+ url: string;
2191
+ };
2192
+ declare type ColorPickerOption = {
1932
2193
  label: string;
2194
+ description: string;
2195
+ noStock?: boolean;
2196
+ meta: {
2197
+ color?: string[];
2198
+ pattern?: Pattern;
2199
+ };
2200
+ };
2201
+ declare type RadioGroupOption = {
1933
2202
  value: string;
2203
+ label: string | ReactFragment;
1934
2204
  };
1935
- declare type Coupon = {
1936
- code: string;
1937
- amount: string;
2205
+ declare type ImageType = {
2206
+ key: string;
2207
+ imageUrl: string;
2208
+ alt: string;
2209
+ thumbnailUrl?: string;
1938
2210
  };
1939
- interface SubtotalProps {
1940
- subtotal: SubtotalOption;
1941
- shipping: SubtotalOption;
1942
- taxes: SubtotalOption;
1943
- highlightColor?: string;
1944
- coupon?: {
1945
- couponText: string;
1946
- appliedText: string;
1947
- coupons: Coupon[];
2211
+ interface IconWithOpacityProps extends IconProps {
2212
+ opacity?: number;
2213
+ }
2214
+ interface WithTestId {
2215
+ testId?: string;
2216
+ }
2217
+ declare type DropdownListIconsItem = {
2218
+ Icon: IconType;
2219
+ items: DropdownListIconsSubItem[];
2220
+ };
2221
+ declare type DropdownListIconsSubItem = {
2222
+ description: string;
2223
+ callback: () => void;
2224
+ };
2225
+ declare type Filter = {
2226
+ title: string;
2227
+ columns: number;
2228
+ isOpenByDefault?: boolean;
2229
+ isLinkOption?: boolean;
2230
+ link?: string;
2231
+ color?: string;
2232
+ isMultiselect: boolean;
2233
+ type?: string;
2234
+ items: Array<{
2235
+ label: string;
2236
+ checked?: boolean;
2237
+ isLinkItem?: boolean;
2238
+ link?: string;
2239
+ blockUncheck?: boolean;
2240
+ value?: string;
2241
+ }>;
2242
+ showInMobile: boolean;
2243
+ };
2244
+ declare type FilterChange = {
2245
+ sectionIndex: number;
2246
+ itemIndex: number;
2247
+ checked?: boolean;
2248
+ };
2249
+ interface SearchBarOptionItem {
2250
+ src: string;
2251
+ price: string;
2252
+ title: string;
2253
+ optionUrl: string;
2254
+ }
2255
+ interface imageVideoProps {
2256
+ imageLink: string;
2257
+ isVideo?: {
2258
+ videoTitle?: string;
2259
+ videoSubtitle?: string;
2260
+ textColor?: string;
2261
+ videoLink?: string;
1948
2262
  };
2263
+ isMobile?: boolean;
1949
2264
  }
1950
2265
 
1951
- interface TotalProps {
1952
- total: string;
1953
- currency: string;
1954
- highlightColor?: string;
1955
- saving?: {
1956
- amount: string;
1957
- savingText: string;
1958
- };
2266
+ interface MultiColorPickerProps {
2267
+ options?: ColorPickerOption[];
2268
+ label: string;
2269
+ selectedValue?: ColorPickerOption;
2270
+ onChange: (color: Set<ColorPickerOption>) => void;
2271
+ }
2272
+ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: MultiColorPickerProps) => JSX.Element;
2273
+
2274
+ interface ColorPickerProps {
2275
+ options: ColorPickerOption[];
2276
+ selectedValue?: ColorPickerOption;
2277
+ label: string;
2278
+ onChange: (color: ColorPickerOption) => void;
2279
+ inline?: boolean;
2280
+ }
2281
+ declare const SingleColorPicker: ({ options, selectedValue, label, onChange, inline, }: ColorPickerProps) => _emotion_react_jsx_runtime.JSX.Element;
2282
+
2283
+ interface CrossSellCheckboxProps extends rightToLeftProps {
2284
+ imageURL: string;
2285
+ title: string;
2286
+ description: string;
2287
+ freeShippingText: string;
2288
+ onChange: (checked: Boolean) => void;
2289
+ }
2290
+ interface rightToLeftProps {
2291
+ rightToLeft: boolean;
2292
+ }
2293
+ declare const CrossSellCheckbox: ({ imageURL, title, description, freeShippingText, rightToLeft, onChange, }: CrossSellCheckboxProps) => JSX.Element;
2294
+
2295
+ type index_d_CrossSellCheckboxProps = CrossSellCheckboxProps;
2296
+ declare const index_d_CrossSellCheckbox: typeof CrossSellCheckbox;
2297
+ declare namespace index_d {
2298
+ export {
2299
+ index_d_CrossSellCheckboxProps as CrossSellCheckboxProps,
2300
+ index_d_CrossSellCheckbox as CrossSellCheckbox,
2301
+ };
1959
2302
  }
1960
2303
 
1961
- declare const Totals: {
1962
- Total: ({ total, currency, saving, highlightColor }: TotalProps) => JSX.Element;
1963
- Subtotal: ({ subtotal, shipping, taxes, coupon, highlightColor, }: SubtotalProps) => JSX.Element;
1964
- };
2304
+ declare const ButtonPrimary: ({ testId, ...props }: CTAProps) => _emotion_react_jsx_runtime.JSX.Element;
2305
+
2306
+ declare const ButtonSecondary: (props: CTAProps) => _emotion_react_jsx_runtime.JSX.Element;
2307
+
2308
+ declare const ButtonSecondaryOutline: (props: CTAProps) => _emotion_react_jsx_runtime.JSX.Element;
1965
2309
 
1966
2310
  declare type detail = {
1967
2311
  title: string;
@@ -1988,368 +2332,260 @@ interface DeliveryDetailsProps {
1988
2332
  }
1989
2333
  declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
1990
2334
 
1991
- interface ScrollToTopProps {
1992
- scrollToTopText: string;
1993
- onClick: () => void;
1994
- fill?: string;
1995
- }
1996
- declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
1997
-
1998
- interface OrderBarProps {
1999
- message: string;
2335
+ interface NoteProps {
2336
+ accentColor?: string;
2000
2337
  color?: string;
2338
+ backgroundColor?: string;
2339
+ importantNoteText: string;
2340
+ text: string;
2001
2341
  }
2002
- declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
2342
+ declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
2003
2343
 
2004
- interface TableProps$1 {
2005
- headers: string[];
2006
- data: string[][];
2344
+ interface DrawerProps {
2345
+ children: React__default.ReactNode;
2346
+ isOpen: boolean;
2347
+ onClose?: () => void;
2348
+ onOpen?: () => void;
2349
+ onClickOutside?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
2350
+ backgroundColor?: string;
2351
+ backdropColor?: string;
2352
+ position?: 'left' | 'right';
2353
+ width?: string;
2007
2354
  }
2008
- declare const SizeTable: ({ headers, data }: TableProps$1) => JSX.Element;
2355
+ declare const Drawer: ({ children, isOpen, onClose, onOpen, backgroundColor, backdropColor, position, width, onClickOutside, }: DrawerProps) => JSX.Element | null;
2009
2356
 
2010
- interface TableProps {
2011
- headers: string[];
2012
- data: string[][];
2013
- newSizeTableCss?: boolean;
2357
+ interface DropdownListIconsProps {
2358
+ items: DropdownListIconsItem[];
2014
2359
  }
2015
- declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
2360
+ declare const DropdownListIcons: ({ items }: DropdownListIconsProps) => JSX.Element;
2016
2361
 
2017
- interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
2018
- color?: string;
2362
+ interface DropdownProps {
2363
+ options: SelectedOption[];
2364
+ defaultLabel: string;
2365
+ onOptionSelect: (option: string) => void;
2019
2366
  }
2020
- interface ProductOrderItemProps {
2021
- title: string;
2022
- subtitle: string;
2023
- className?: string;
2024
- image: {
2025
- src: string;
2026
- alt: string;
2027
- };
2028
- quantity?: number;
2029
- price: Price;
2030
- tag?: {
2031
- text: string;
2032
- backgroundColor: string;
2033
- };
2034
- finalPriceStyle?: React.CSSProperties;
2367
+ interface SelectedOption {
2368
+ size: string;
2369
+ detail: string;
2035
2370
  }
2036
- declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
2371
+ declare const SizeDropdown: React__default.FC<DropdownProps>;
2037
2372
 
2038
- interface ReviewProps$1 {
2039
- reviewId: string;
2040
- reviewerName: string;
2041
- date: Date;
2042
- rating: number;
2043
- stars: {
2044
- color: string;
2045
- size: ComponentSize.Medium | ComponentSize.Small;
2046
- };
2047
- title: string;
2048
- description: string;
2049
- images?: {
2050
- src: string;
2051
- alt: string;
2373
+ interface DialogPositionProps {
2374
+ top: string;
2375
+ right: string;
2376
+ }
2377
+ interface DialogDropdownProps {
2378
+ options: {
2379
+ label: string;
2380
+ value: string;
2052
2381
  }[];
2053
- reviewVariant?: string;
2054
- onClickImage?: (image: string) => void;
2055
- helpfulActionText?: string;
2056
- helpfulAction?: (id: string) => void;
2057
- helpfulCount?: number;
2382
+ position: DialogPositionProps;
2383
+ style?: React__default.CSSProperties;
2384
+ className?: string;
2058
2385
  }
2059
- declare const Review$1: ({ reviewId, reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, helpfulActionText, helpfulAction, helpfulCount, }: ReviewProps$1) => JSX.Element;
2386
+ declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
2060
2387
 
2061
- interface SliderNavigationProps {
2062
- children: JSX.Element | JSX.Element[] | StyledComponent<any>;
2063
- infinite: boolean;
2064
- adaptiveHeight: boolean;
2065
- dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
2066
- dotListMarginTop?: number;
2067
- initialSlide?: number;
2068
- arrows?: {
2069
- arrowWidth: number;
2070
- arrowHeight: number;
2071
- arrowPadding: number;
2072
- };
2073
- dots?: boolean;
2074
- slidesToShow?: number;
2075
- speed?: number;
2076
- }
2077
- declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
2388
+ declare type FilteringDropdownProps<T> = {
2389
+ options: DropdownOption<T>[];
2390
+ disabled?: boolean;
2391
+ wide?: boolean;
2392
+ onChange: (options: DropdownOption<T>[]) => void;
2393
+ filter?: boolean;
2394
+ sliceAfter?: number;
2395
+ placeHolder: string;
2396
+ };
2397
+ declare function FilteringDropdown<T>({ options, disabled, placeHolder, wide, sliceAfter, filter, onChange, }: FilteringDropdownProps<T>): JSX.Element;
2078
2398
 
2079
- interface DropdownListIconsProps {
2080
- items: DropdownListIconsItem[];
2081
- }
2082
- declare const DropdownListIcons: ({ items }: DropdownListIconsProps) => JSX.Element;
2399
+ declare type Value<T> = DropdownOption<T>;
2400
+ declare type OnChange<T> = (option: Value<T>) => void;
2401
+ declare type CommonProps<T> = {
2402
+ options: Value<T>[];
2403
+ disabled?: boolean;
2404
+ wide?: boolean;
2405
+ label?: string;
2406
+ sort?: boolean;
2407
+ initialValue?: Value<T>;
2408
+ placeHolder: string;
2409
+ testId?: string;
2410
+ required?: string;
2411
+ showRequiredPlaceholder?: boolean;
2412
+ };
2413
+ declare type ControlledProps<T> = {
2414
+ value: Value<T>;
2415
+ onChange: OnChange<T>;
2416
+ } & CommonProps<T>;
2417
+ declare type UncontrolledProps<T> = {
2418
+ value?: never;
2419
+ onChange?: OnChange<T>;
2420
+ } & CommonProps<T>;
2421
+ declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
2422
+ declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, required, showRequiredPlaceholder, }: SimpleDropdownProps<T>): JSX.Element;
2083
2423
 
2084
- interface ImageStyleProps {
2085
- height?: string;
2086
- width?: string;
2087
- borderRadius?: string;
2088
- objectFit?: string;
2089
- objectPosition?: string;
2090
- className?: string;
2091
- }
2092
- interface ImageProps extends ImageStyleProps {
2093
- src: string;
2094
- alt: string;
2424
+ interface FiltersProps {
2425
+ values: Filter[];
2426
+ onChange: (newValues: Filter[], filtersState?: FilterChange) => void;
2427
+ tagsColor?: string;
2428
+ filterByText: string;
2429
+ clearAllText: string;
2430
+ filtersSelectText: string;
2431
+ isMobile: boolean;
2432
+ applyText: string;
2433
+ mobileBackArrowClick: () => void;
2434
+ mobileApplyButtonClick: () => void;
2435
+ onResetValues: () => void;
2095
2436
  }
2096
- declare const Image: ({ src, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
2437
+ declare const Filters: ({ values, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, onResetValues, }: FiltersProps) => JSX.Element;
2097
2438
 
2098
- interface AmazonPaypalBtnProps {
2099
- onClick: () => void;
2439
+ interface TagsProps {
2440
+ color?: string;
2441
+ items: string[];
2442
+ onCloseClick: (index: number) => void;
2100
2443
  }
2101
- declare const AmazonButton: ({ onClick }: AmazonPaypalBtnProps) => JSX.Element;
2102
- declare const PaypalButton: ({ onClick }: AmazonPaypalBtnProps) => JSX.Element;
2444
+ declare const Tags: ({ color, items, onCloseClick }: TagsProps) => JSX.Element;
2103
2445
 
2104
- interface CrossSellCheckboxProps extends rightToLeftProps {
2105
- imageURL: string;
2446
+ interface FitGuaranteeProps {
2447
+ backgroundColor?: string;
2448
+ borderColor?: string;
2106
2449
  title: string;
2107
2450
  description: string;
2108
- freeShippingText: string;
2109
- onChange: (checked: Boolean) => void;
2110
- }
2111
- interface rightToLeftProps {
2112
- rightToLeft: boolean;
2451
+ widthAuto?: boolean;
2452
+ testId?: string;
2453
+ iconFolder?: string;
2454
+ iconName?: string;
2455
+ iconWidth?: number;
2456
+ iconHeight?: number;
2113
2457
  }
2114
- declare const CrossSellCheckbox: ({ imageURL, title, description, freeShippingText, rightToLeft, onChange, }: CrossSellCheckboxProps) => JSX.Element;
2458
+ declare const FitGuarantee: ({ backgroundColor, borderColor, title, description, widthAuto, testId, iconFolder, iconName, iconWidth, iconHeight, }: FitGuaranteeProps) => JSX.Element | null;
2115
2459
 
2116
- type index_d_CrossSellCheckboxProps = CrossSellCheckboxProps;
2117
- declare const index_d_CrossSellCheckbox: typeof CrossSellCheckbox;
2118
- declare namespace index_d {
2119
- export {
2120
- index_d_CrossSellCheckboxProps as CrossSellCheckboxProps,
2121
- index_d_CrossSellCheckbox as CrossSellCheckbox,
2122
- };
2123
- }
2124
-
2125
- interface ProductItemProps {
2126
- title: string;
2127
- image: ImageProps;
2128
- price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
2129
- rating: Pick<RatingProps, 'rating' | 'reviews'>;
2130
- tags?: {
2131
- categoryTagText?: string;
2132
- seasonOfferTagText?: string;
2133
- };
2134
- alignName?: 'left' | 'center';
2135
- url?: string;
2136
- className?: string;
2137
- }
2460
+ interface FitPredictorProps {
2461
+ onClick: () => void;
2462
+ }
2463
+ declare const FitPredictor: ({ onClick }: FitPredictorProps) => _emotion_react_jsx_runtime.JSX.Element;
2138
2464
 
2139
- interface ProductItemSmallMobileProps extends ProductItemProps {
2140
- size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
2141
- imageHover?: ImageProps;
2465
+ interface ProductGalleryProps {
2466
+ images: ImageType[];
2467
+ selectedValue?: ImageType;
2142
2468
  topTag?: JSX.Element;
2143
2469
  bottomTag?: JSX.Element;
2144
- onClick?: () => void;
2145
- priceDisplayType?: 'default' | 'styled';
2146
- priceAtBottom?: boolean;
2147
- priceLoading?: boolean;
2148
- colorPicker?: {
2149
- display: boolean;
2150
- position: string;
2151
- component: JSX.Element | JSX.Element[] | undefined;
2152
- };
2153
- }
2154
-
2155
- declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
2156
- (props: Omit<P, 'title' | 'image' | 'price' | 'rating'>): JSX.Element;
2157
- displayName: string;
2158
- };
2159
-
2160
- declare const Collection: {
2161
- ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, colorPicker, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
2162
- withProductGrid: typeof withProductGrid;
2163
- };
2164
-
2165
- interface StarListProps {
2166
- rating: number;
2167
- size?: ComponentSize;
2168
- starsNumber: number;
2169
- fill: string;
2470
+ productImageDataTestId?: string;
2471
+ previewListDataTestId?: string;
2472
+ thumbnailPosition?: 'vertical' | 'horizontal';
2473
+ borderRadiusVariant?: boolean;
2474
+ previewImgBorderColor?: string;
2475
+ ctaText?: string;
2476
+ ctaAction?: () => void;
2477
+ hideCTA?: boolean;
2478
+ hasOverflowArrows?: boolean;
2170
2479
  }
2171
- declare const StarList: ({ rating, starsNumber, fill, size, }: StarListProps) => JSX.Element;
2480
+ declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, hideCTA, hasOverflowArrows, }: ProductGalleryProps) => JSX.Element;
2172
2481
 
2173
- interface DrawerProps {
2174
- children: React.ReactNode;
2175
- isOpen: boolean;
2176
- onClose?: () => void;
2177
- onOpen?: () => void;
2178
- onClickOutside?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
2179
- backgroundColor?: string;
2180
- backdropColor?: string;
2181
- position?: 'left' | 'right';
2182
- width?: string;
2482
+ interface IconButtonProps {
2483
+ children: React__default.ReactNode;
2484
+ disabled?: boolean;
2485
+ onClick?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
2486
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
2183
2487
  }
2184
- declare const Drawer: ({ children, isOpen, onClose, onOpen, backgroundColor, backdropColor, position, width, onClickOutside, }: DrawerProps) => JSX.Element | null;
2488
+ declare const IconButton: ({ children, disabled, size, onClick, }: IconButtonProps) => JSX.Element;
2185
2489
 
2186
- interface SpinnerProps {
2187
- fill: string;
2188
- background: string;
2189
- animationDuration?: number;
2190
- complete?: boolean;
2191
- completeIconStroke?: number;
2192
- size?: string;
2490
+ interface AmazonPaypalBtnProps {
2491
+ onClick: () => void;
2193
2492
  }
2194
- declare const Spinner: ({ fill, background, animationDuration, complete, completeIconStroke, size, }: SpinnerProps) => JSX.Element;
2493
+ declare const AmazonButton: ({ onClick }: AmazonPaypalBtnProps) => JSX.Element;
2494
+ declare const PaypalButton: ({ onClick }: AmazonPaypalBtnProps) => JSX.Element;
2195
2495
 
2196
- interface TagsProps {
2197
- color?: string;
2198
- items: string[];
2199
- onCloseClick: (index: number) => void;
2496
+ interface IconsWithTitleProps {
2497
+ backgroundColor: string;
2498
+ iconColor: string;
2499
+ iconName: string;
2500
+ iconFolder?: string;
2501
+ withWrapper?: boolean;
2502
+ iconTitle: string;
2503
+ iconSizeDesktop?: number;
2504
+ iconSizeMobile?: number;
2505
+ iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
2506
+ iconTitleStyle?: string;
2507
+ iconStyle?: string;
2508
+ isTitleInnerHtml?: boolean;
2200
2509
  }
2201
- declare const Tags: ({ color, items, onCloseClick }: TagsProps) => JSX.Element;
2510
+ declare const IconsWithTitle: ({ iconName, iconTitle, iconFolder, withWrapper, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconsWithTitleProps) => JSX.Element | null;
2202
2511
 
2203
- declare type FilteringDropdownProps<T> = {
2204
- options: DropdownOption<T>[];
2205
- disabled?: boolean;
2206
- wide?: boolean;
2207
- onChange: (options: DropdownOption<T>[]) => void;
2208
- filter?: boolean;
2209
- sliceAfter?: number;
2210
- placeHolder: string;
2211
- };
2212
- declare function FilteringDropdown<T>({ options, disabled, placeHolder, wide, sliceAfter, filter, onChange, }: FilteringDropdownProps<T>): JSX.Element;
2512
+ interface ImageCardWithDescriptionProps {
2513
+ image: string;
2514
+ title?: string;
2515
+ description?: string;
2516
+ titlePosition?: 'center' | 'left';
2517
+ }
2518
+ declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
2213
2519
 
2214
- interface PaginationProps {
2215
- from: number;
2216
- to: number;
2217
- onChange: (page: number) => void;
2218
- currentPage?: number;
2219
- underlineActive?: boolean;
2220
- boldActive?: boolean;
2520
+ interface BaseInputCommonProps {
2521
+ id?: string;
2522
+ value?: string;
2523
+ innerRef?: React__default.Ref<HTMLInputElement>;
2524
+ onBlur?: () => void;
2525
+ onFocus?: () => void;
2526
+ onChange?: (value: string, event: any) => void;
2527
+ hideClear?: boolean;
2528
+ defaultValue?: string;
2529
+ maxLength?: number;
2530
+ placeholder?: string;
2531
+ label?: string;
2532
+ onValidation?: (status: InputValidationType) => void;
2221
2533
  disabled?: boolean;
2222
- showReducedPages?: boolean;
2534
+ required?: string;
2535
+ children?: React__default.ReactNode;
2536
+ size?: 'regular' | 'small';
2537
+ inlinePlaceholder?: boolean;
2538
+ hasError?: boolean;
2539
+ inputType?: 'text' | 'email' | 'password' | 'url';
2540
+ name?: string;
2541
+ autoFocus?: boolean;
2542
+ requiredPlaceholder?: string;
2223
2543
  }
2224
- declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
2544
+ declare type BaseInputProps = BaseInputCommonProps;
2225
2545
 
2226
- declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
2546
+ declare type BasePlusIconProps = BaseInputProps & {
2547
+ Icon: IconType;
2548
+ };
2227
2549
 
2228
- declare const Text: ({ variant, children, testId, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
2229
- declare type TextHeroProps = {
2230
- variant: 'hero1' | 'hero2' | 'hero3';
2231
- weight?: 'heavy' | 'bold' | 'demi';
2232
- size?: 'regular';
2233
- underline?: never;
2234
- disabled?: never;
2235
- wide?: never;
2236
- original?: never;
2237
- allCaps?: never;
2238
- href: never;
2239
- };
2240
- declare type TextDisplayProps = {
2241
- variant: 'display1' | 'display2';
2242
- weight?: 'bold' | 'demi';
2243
- size?: 'regular';
2244
- underline?: never;
2245
- disabled?: never;
2246
- wide?: never;
2247
- original?: never;
2248
- allCaps?: never;
2249
- href: never;
2250
- };
2251
- declare type TextHeadingProps = {
2252
- variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
2253
- weight?: 'bold' | 'demi' | 'regular';
2254
- size?: 'regular';
2255
- underline?: never;
2256
- disabled?: never;
2257
- wide?: never;
2258
- original?: never;
2259
- allCaps?: never;
2260
- href?: never;
2261
- };
2262
- declare type TextBodyProps = {
2263
- variant: 'body';
2264
- size?: 'regular' | 'small';
2265
- weight?: 'bold' | 'demi' | 'regular';
2266
- underline?: never;
2267
- disabled?: never;
2268
- wide?: never;
2269
- original?: never;
2270
- allCaps?: never;
2271
- href?: never;
2272
- };
2273
- declare type TextButtonProps = {
2274
- variant: 'button';
2275
- size: 'large' | 'regular' | 'small';
2276
- weight: 'bold' | 'demi';
2277
- underline?: never;
2278
- disabled?: never;
2279
- wide?: boolean;
2280
- original?: never;
2281
- allCaps?: never;
2282
- href?: never;
2283
- };
2284
- declare type TextPricingProps = {
2285
- variant: 'pricing';
2286
- size: 'large' | 'medium' | 'regular' | 'small';
2287
- weight?: never;
2288
- underline?: never;
2289
- disabled?: never;
2290
- wide?: never;
2291
- original?: boolean;
2292
- allCaps?: never;
2293
- href?: never;
2294
- };
2295
- declare type TextLinkProps = {
2296
- variant: 'link';
2297
- weight?: 'demi' | 'regular';
2298
- size?: 'regular' | 'small';
2299
- underline?: boolean;
2300
- disabled?: boolean;
2301
- wide?: never;
2302
- original?: never;
2303
- allCaps?: never;
2304
- href?: string;
2305
- };
2306
- declare type TextLabelProps = {
2307
- variant: 'label';
2308
- color?: string;
2309
- weight?: 'regular' | 'demi';
2310
- size?: 'regular' | 'small';
2311
- underline?: never;
2312
- disabled?: boolean;
2313
- wide?: never;
2314
- original?: never;
2315
- allCaps?: never;
2316
- href?: never;
2317
- } & LabelHTMLAttributes<'label'>;
2318
- declare type TextTagProps = {
2319
- variant: 'tag';
2320
- size?: 'regular' | 'small' | 'x-small';
2321
- weight?: 'regular' | 'demi' | 'bold';
2322
- underline?: never;
2550
+ declare type BasePlusButtonProps = BaseInputProps & {
2551
+ label?: undefined;
2552
+ onClick: (value: string) => void;
2553
+ onClickEdit: () => void;
2554
+ text: string;
2555
+ success: boolean;
2556
+ editText: string;
2557
+ successText: string;
2558
+ };
2559
+
2560
+ interface BaseCTAProps {
2561
+ onClick: () => void;
2323
2562
  disabled?: boolean;
2324
- wide?: never;
2325
- original?: never;
2326
- allCaps?: boolean;
2327
- href?: never;
2328
- };
2329
- declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
2330
- children: ReactNode;
2331
- style?: CSSProperties;
2563
+ wide?: boolean;
2332
2564
  className?: string;
2333
- testId?: string;
2334
- } & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
2335
-
2336
- interface SearchBarProps {
2337
- suggestions: SearchBarOptionItem[];
2338
- resultOptions: SearchBarOptionItem[];
2339
- onChange: (text: string) => void;
2340
- onSearch: (term: string) => void;
2341
- onClose: () => void;
2342
- resultsPanelDataTestId?: string;
2343
- allResults?: number;
2344
- initialTerm?: string;
2345
- shouldClear?: boolean;
2346
- isBlogSearchBar?: boolean;
2347
- ariaLabel?: string;
2348
- placeholder?: string;
2349
- id?: string;
2350
- autoComplete?: string;
2351
- }
2352
- declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
2565
+ size?: ComponentSize;
2566
+ text: string;
2567
+ type?: ButtonType;
2568
+ inline?: boolean;
2569
+ testId?: string;
2570
+ }
2571
+
2572
+ declare type ButtonProps = {
2573
+ variant: 'primary' | 'secondary' | 'secondary-outline';
2574
+ } & BaseCTAProps;
2575
+
2576
+ declare type CustomProps = BaseInputProps & {
2577
+ onClick: () => void;
2578
+ text: string;
2579
+ variant: ButtonProps['variant'];
2580
+ defaultRounded?: boolean;
2581
+ };
2582
+
2583
+ declare const Input: {
2584
+ Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, requiredPlaceholder, ...rest }: BaseInputCommonProps) => JSX.Element;
2585
+ Custom: ({ onClick, text, variant, defaultRounded, ...rest }: CustomProps) => JSX.Element;
2586
+ SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
2587
+ SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
2588
+ };
2353
2589
 
2354
2590
  interface ProductGalleryMobileProps$1 {
2355
2591
  images: ImageType[];
@@ -2362,31 +2598,23 @@ interface ProductGalleryMobileProps$1 {
2362
2598
  }
2363
2599
  declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps$1) => JSX.Element;
2364
2600
 
2365
- interface RadioProps {
2366
- name: string;
2367
- value: string;
2368
- id: string;
2369
- label: string;
2370
- size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
2371
- checked?: boolean;
2372
- disabled?: boolean;
2373
- onChange: (option: RadioGroupOption) => void;
2601
+ interface ProductGalleryMobileProps {
2602
+ images: ImageType[];
2603
+ selectedValue?: ImageType;
2604
+ topTag?: JSX.Element;
2605
+ bottomTag?: JSX.Element;
2606
+ productImageDataTestId?: string;
2607
+ slideDotsDataTestId?: string;
2608
+ borderRadiusVariant?: boolean;
2374
2609
  }
2375
- declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
2376
-
2377
- declare type PortalProps = {
2378
- id: string;
2379
- className?: string;
2380
- overflow?: boolean;
2381
- style?: CSSProperties;
2382
- };
2383
- declare const Portal: FC<PortalProps>;
2610
+ declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
2384
2611
 
2385
2612
  declare type ModalProps = {
2386
2613
  id: string;
2387
2614
  dismissable?: boolean;
2388
2615
  maxFullScreen?: boolean;
2389
2616
  padding?: string;
2617
+ children: React__default.ReactNode;
2390
2618
  };
2391
2619
  interface ContainerProps {
2392
2620
  maxFullScreen: boolean;
@@ -2395,8 +2623,8 @@ interface ContainerProps {
2395
2623
  }
2396
2624
  declare const Overlay: _emotion_styled.StyledComponent<{
2397
2625
  theme?: _emotion_react.Theme | undefined;
2398
- as?: React.ElementType<any> | undefined;
2399
- } & Pick<ContainerProps, "opened">, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2626
+ as?: React__default.ElementType<any> | undefined;
2627
+ } & Pick<ContainerProps, "opened">, React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2400
2628
  declare const Modal: FC<ModalProps>;
2401
2629
  declare const modalEvent: (id: string, detail: Omit<Events['modal'], 'id'>) => void;
2402
2630
  declare const useModalEvent: (id: string, cb: (event: CustomEvent<Events['modal']>) => void) => void;
@@ -2406,46 +2634,297 @@ declare const useModal: (id: string) => {
2406
2634
  close: () => void;
2407
2635
  };
2408
2636
 
2409
- interface CloseButtonProps {
2637
+ interface MotivatorProgressBarProps {
2638
+ fillColor?: string;
2639
+ currentAmount?: number;
2640
+ backgroundColor?: string;
2641
+ unfilledColor?: string;
2642
+ borderRadius?: string;
2643
+ rewardUnlockedMessage: string;
2644
+ endingValue?: number;
2645
+ currencyCode?: string;
2646
+ }
2647
+ declare const MotivatorProgressBar: ({ fillColor, backgroundColor, unfilledColor, currencyCode, endingValue, currentAmount, rewardUnlockedMessage, }: MotivatorProgressBarProps) => JSX.Element;
2648
+
2649
+ interface OrderBarProps {
2650
+ message: string;
2651
+ color?: string;
2652
+ }
2653
+ declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
2654
+
2655
+ interface PackOption {
2656
+ label: string;
2657
+ description: string;
2658
+ meta: {
2659
+ discountPercentage: number;
2660
+ originalPrice: number;
2661
+ price: number;
2662
+ quantity: number;
2663
+ icon: string;
2664
+ tag?: string;
2665
+ };
2666
+ }
2667
+ interface PackSelectorProps {
2668
+ packs: PackOption[];
2669
+ selectedValue: PackOption;
2670
+ onChange: (size: PackOption) => void;
2671
+ currencyCode?: string;
2672
+ }
2673
+ declare const PackSelector: FC<PackSelectorProps>;
2674
+
2675
+ interface PaginationProps {
2676
+ from: number;
2677
+ to: number;
2678
+ onChange: (page: number) => void;
2679
+ currentPage?: number;
2680
+ underlineActive?: boolean;
2681
+ boldActive?: boolean;
2682
+ disabled?: boolean;
2683
+ showReducedPages?: boolean;
2684
+ }
2685
+ declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
2686
+
2687
+ declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
2688
+
2689
+ interface PaymentMethodsProps {
2690
+ Icon: IconType;
2691
+ width: string;
2692
+ height: string;
2693
+ onClick?: () => void;
2694
+ }
2695
+ declare const PaymentMethod: ({ Icon, width, height, onClick }: PaymentMethodsProps) => JSX.Element;
2696
+
2697
+ interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
2698
+ color?: string;
2699
+ }
2700
+ interface ProductOrderItemProps {
2701
+ title: React__default.ReactNode | string;
2702
+ subtitle: string;
2703
+ className?: string;
2704
+ image: {
2705
+ src: string;
2706
+ alt: string;
2707
+ };
2708
+ quantity?: number;
2709
+ price: Price;
2710
+ tag?: {
2711
+ text: string;
2712
+ backgroundColor: string;
2713
+ };
2714
+ finalPriceStyle?: React__default.CSSProperties;
2715
+ }
2716
+ declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
2717
+
2718
+ interface ProgressBarProps {
2719
+ description?: string;
2720
+ fillColor: string;
2721
+ widthAuto?: boolean;
2722
+ percent?: number;
2723
+ height?: string;
2724
+ backgroundColor?: string;
2725
+ borderRadius?: string;
2726
+ }
2727
+ declare const ProgressBar: ({ description, fillColor, widthAuto, percent, height, backgroundColor, borderRadius, }: ProgressBarProps) => JSX.Element;
2728
+
2729
+ declare type QuantityPickerPropsOnChange = (value: number) => void;
2730
+ declare type QuantityPickerPropsControlled = {
2731
+ value: number;
2732
+ onChange: QuantityPickerPropsOnChange;
2733
+ };
2734
+ declare type QuantityPickerPropsUncontrolled = {
2735
+ value?: never;
2736
+ onChange?: QuantityPickerPropsOnChange;
2737
+ };
2738
+ declare type QuantityPickerProps = {
2739
+ initialValue?: number;
2740
+ maxValue?: number;
2741
+ testId?: string;
2742
+ } & (QuantityPickerPropsControlled | QuantityPickerPropsUncontrolled);
2743
+ declare const QuantityPicker: ({ initialValue, maxValue, value, testId, onChange, }: QuantityPickerProps) => JSX.Element;
2744
+
2745
+ interface RadioProps$1 {
2746
+ name: string;
2747
+ value: string;
2748
+ id: string;
2749
+ label: string | ReactFragment;
2750
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
2751
+ checked?: boolean;
2752
+ disabled?: boolean;
2753
+ onChange: (option: RadioGroupOption) => void;
2754
+ style?: React__default.CSSProperties;
2755
+ }
2756
+ declare const RadioPrimary: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps$1) => JSX.Element;
2757
+
2758
+ interface RadioGroupInputProps {
2759
+ name: string;
2760
+ options?: RadioGroupOption[];
2761
+ value?: RadioGroupOption;
2762
+ onChange: (value: RadioGroupOption) => void;
2763
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
2764
+ disabled?: boolean;
2765
+ style?: React__default.CSSProperties;
2766
+ }
2767
+ declare const RadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
2768
+
2769
+ interface ClubRadioGroupInputProps {
2770
+ name: string;
2771
+ options?: RadioGroupOption[];
2772
+ value?: RadioGroupOption;
2773
+ onChange: (value: RadioGroupOption) => void;
2774
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
2775
+ disabled?: boolean;
2776
+ style?: React__default.CSSProperties;
2777
+ }
2778
+ declare const ClubRadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: ClubRadioGroupInputProps) => JSX.Element;
2779
+
2780
+ interface RadioProps {
2781
+ name: string;
2782
+ value: string;
2783
+ id: string;
2784
+ label: string | ReactFragment;
2785
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
2786
+ checked?: boolean;
2787
+ disabled?: boolean;
2788
+ onChange: (option: RadioGroupOption) => void;
2789
+ style?: React__default.CSSProperties;
2790
+ }
2791
+ declare const RadioInput: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
2792
+
2793
+ interface StarListProps {
2794
+ rating: number;
2795
+ size?: ComponentSize;
2796
+ starsNumber: number;
2797
+ fill: string;
2798
+ }
2799
+ declare const StarList: ({ rating, starsNumber, fill, size, }: StarListProps) => JSX.Element;
2800
+
2801
+ interface ReviewProps$1 {
2802
+ reviewId: string;
2803
+ reviewerName: string;
2804
+ date: Date;
2805
+ rating: number;
2806
+ stars: {
2807
+ color: string;
2808
+ size: ComponentSize.Medium | ComponentSize.Small;
2809
+ };
2810
+ title: string;
2811
+ description: string;
2812
+ image?: {
2813
+ src: string;
2814
+ alt: string;
2815
+ };
2816
+ modalId: string;
2817
+ maxFullScreen?: boolean;
2818
+ verified?: boolean;
2819
+ productImage?: string;
2820
+ productTitle?: string;
2821
+ productLink?: string;
2822
+ helpfulCount?: number;
2823
+ helpfulAction?: (id: string) => void;
2824
+ notHelpfulCount?: number;
2825
+ notHelpfulAction?: (id: string) => void;
2826
+ }
2827
+ declare const Review$1: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps$1) => JSX.Element;
2828
+
2829
+ interface ReviewProps {
2830
+ reviewId: string;
2831
+ reviewerName: string;
2832
+ date: Date;
2833
+ rating: number;
2834
+ stars: {
2835
+ color: string;
2836
+ size: ComponentSize.Medium | ComponentSize.Small;
2837
+ };
2838
+ title: string;
2839
+ description: string;
2840
+ images?: {
2841
+ src: string;
2842
+ alt: string;
2843
+ }[];
2844
+ reviewVariant?: string;
2845
+ onClickImage?: (image: string) => void;
2846
+ helpfulActionText?: string;
2847
+ helpfulAction?: (id: string) => void;
2848
+ helpfulCount?: number;
2849
+ }
2850
+ declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, helpfulActionText, helpfulAction, helpfulCount, }: ReviewProps) => JSX.Element;
2851
+
2852
+ interface ReviewsHeaderProps {
2853
+ title?: string;
2854
+ rating: number;
2855
+ reviews: number;
2856
+ reviewsText: string;
2857
+ reviewsSummary: string[];
2858
+ onClickReview: (reveiw: string) => void;
2859
+ }
2860
+ declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
2861
+
2862
+ interface ScrollToTopProps {
2863
+ scrollToTopText: string;
2410
2864
  onClick: () => void;
2411
- size: number;
2412
- }
2865
+ fill?: string;
2866
+ Icon?: React__default.FC<IconProps$1>;
2867
+ }
2868
+ declare const ScrollToTop: ({ scrollToTopText, onClick, fill, Icon, }: ScrollToTopProps) => JSX.Element;
2869
+
2870
+ declare type SearchBarProps = {
2871
+ suggestions: SearchBarOptionItem[];
2872
+ resultOptions: SearchBarOptionItem[];
2873
+ onChange: (text: string) => void;
2874
+ onSearch: (term: string) => void;
2875
+ onClose: () => void;
2876
+ resultsPanelDataTestId?: string;
2877
+ allResults?: number;
2878
+ initialTerm?: string;
2879
+ shouldClear?: boolean;
2880
+ isBlogSearchBar?: boolean;
2881
+ ariaLabel?: string;
2882
+ placeholder?: string;
2883
+ id?: string;
2884
+ autoComplete?: string;
2885
+ };
2886
+ declare const SearchBar: React__default.FC<SearchBarProps>;
2413
2887
 
2414
- interface DescriptionProps {
2415
- text: string;
2416
- }
2888
+ interface SearchNavigationProps {
2889
+ returnText?: string;
2890
+ returnUrl?: string;
2891
+ steps?: string[];
2892
+ returnAction?: () => void;
2893
+ }
2894
+ declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
2417
2895
 
2418
- interface PromoProps {
2419
- text: string;
2896
+ interface CardBodyProps {
2897
+ children: ReactNode;
2420
2898
  }
2421
2899
 
2422
- interface TitleProps {
2423
- title: string;
2900
+ interface CardSectionProps {
2901
+ children: ReactNode;
2424
2902
  }
2425
2903
 
2426
- declare const CartProductItem: {
2427
- Title: ({ title }: TitleProps) => JSX.Element;
2428
- Tag: ({ discountAppliedText, backgroundColor }: OfferBannerProps) => JSX.Element;
2429
- Promo: ({ text }: PromoProps) => JSX.Element;
2430
- Description: ({ text }: DescriptionProps) => JSX.Element;
2431
- CloseButton: ({ onClick, size }: CloseButtonProps) => JSX.Element;
2904
+ interface borderProps {
2905
+ borderColor: string;
2906
+ borderWidth: string;
2907
+ }
2908
+ interface CardProps {
2909
+ children: ReactNode;
2910
+ backgroundColor?: string;
2911
+ widthAuto?: boolean;
2912
+ border?: borderProps;
2913
+ flex?: boolean;
2914
+ }
2915
+ declare const _default: (({ children, backgroundColor, widthAuto, border, flex }: CardProps) => JSX.Element) & {
2916
+ Header: ({ children }: CardSectionProps) => JSX.Element;
2917
+ Footer: ({ children }: CardSectionProps) => JSX.Element;
2918
+ Body: ({ children }: CardBodyProps) => JSX.Element;
2432
2919
  };
2433
2920
 
2434
- declare type QuantityPickerPropsOnChange = (value: number) => void;
2435
- declare type QuantityPickerPropsControlled = {
2436
- value: number;
2437
- onChange: QuantityPickerPropsOnChange;
2438
- };
2439
- declare type QuantityPickerPropsUncontrolled = {
2440
- value?: never;
2441
- onChange?: QuantityPickerPropsOnChange;
2921
+ declare type PortalProps = {
2922
+ id: string;
2923
+ className?: string;
2924
+ overflow?: boolean;
2925
+ style?: CSSProperties;
2442
2926
  };
2443
- declare type QuantityPickerProps = {
2444
- initialValue?: number;
2445
- maxValue?: number;
2446
- testId?: string;
2447
- } & (QuantityPickerPropsControlled | QuantityPickerPropsUncontrolled);
2448
- declare const QuantityPicker: ({ initialValue, maxValue, value, testId, onChange, }: QuantityPickerProps) => JSX.Element;
2927
+ declare const Portal: FC<PortalProps>;
2449
2928
 
2450
2929
  declare type SpacingProps = {
2451
2930
  size: number;
@@ -2454,50 +2933,85 @@ declare type SpacingProps = {
2454
2933
  };
2455
2934
  declare const Spacing: FC<SpacingProps>;
2456
2935
 
2457
- interface PackOption {
2458
- label: string;
2459
- description: string;
2460
- meta: {
2461
- discountPercentage: number;
2462
- originalPrice: number;
2463
- price: number;
2464
- quantity: number;
2465
- icon: string;
2466
- tag?: string;
2467
- };
2936
+ interface ShortBannerProps {
2937
+ title: string;
2938
+ bannerText: string;
2939
+ backgroundColor: string;
2940
+ alignCenter?: boolean;
2941
+ widthAuto?: boolean;
2942
+ textColor: string;
2468
2943
  }
2469
- interface PackSelectorProps {
2470
- packs: PackOption[];
2471
- selectedValue: PackOption;
2472
- onChange: (size: PackOption) => void;
2473
- currencyCode?: string;
2944
+ declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
2945
+
2946
+ interface TableProps$1 {
2947
+ headers: string[];
2948
+ data: string[][];
2949
+ newSizeTableCss?: boolean;
2474
2950
  }
2475
- declare const PackSelector: FC<PackSelectorProps>;
2951
+ declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps$1) => JSX.Element;
2476
2952
 
2477
- interface FiltersProps {
2478
- values: Filter[];
2479
- onChange: (newValues: Filter[], filtersState?: FilterChange) => void;
2480
- tagsColor?: string;
2481
- filterByText: string;
2482
- clearAllText: string;
2483
- filtersSelectText: string;
2484
- isMobile: boolean;
2485
- applyText: string;
2486
- mobileBackArrowClick: () => void;
2487
- mobileApplyButtonClick: () => void;
2488
- onResetValues: () => void;
2953
+ interface TableProps {
2954
+ headers: string[];
2955
+ data: string[][];
2956
+ className?: string;
2489
2957
  }
2490
- declare const Filters: ({ values, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, onResetValues, }: FiltersProps) => JSX.Element;
2958
+ declare const SizeTable: ({ headers, data, className }: TableProps) => JSX.Element;
2491
2959
 
2492
- interface SearchNavigationProps {
2493
- returnText?: string;
2494
- returnUrl?: string;
2495
- steps?: string[];
2496
- returnAction?: () => void;
2960
+ interface SizeFitGuideProps {
2961
+ title: string;
2962
+ fitPercentage?: number;
2963
+ onClick: () => void;
2964
+ onClickFitPercentage?: () => void;
2497
2965
  }
2498
- declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
2966
+ declare const SizeFitGuide: ({ title, fitPercentage, onClick, onClickFitPercentage, }: SizeFitGuideProps) => JSX.Element;
2967
+
2968
+ interface SizeSelectorProps {
2969
+ label: string;
2970
+ sizes: SizeOption[];
2971
+ selectedValue: SizeOption;
2972
+ onChange: (size: SizeOption) => void;
2973
+ inline?: boolean;
2974
+ width?: string;
2975
+ }
2976
+ declare const SizeSelector: ({ label, sizes, selectedValue, onChange, inline, width, }: SizeSelectorProps) => _emotion_react_jsx_runtime.JSX.Element;
2977
+
2978
+ interface SliderNavigationProps {
2979
+ children: JSX.Element | JSX.Element[] | StyledComponent<any>;
2980
+ infinite: boolean;
2981
+ adaptiveHeight: boolean;
2982
+ dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
2983
+ dotListMarginTop?: number;
2984
+ initialSlide?: number;
2985
+ arrows?: {
2986
+ arrowWidth: number;
2987
+ arrowHeight: number;
2988
+ arrowPadding: number;
2989
+ };
2990
+ dots?: boolean;
2991
+ slidesToShow?: number;
2992
+ speed?: number;
2993
+ }
2994
+ declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
2995
+
2996
+ interface StrengthBarProps {
2997
+ barsFilled?: number;
2998
+ supportText?: string;
2999
+ }
3000
+ declare const StrengthBars: ({ barsFilled, supportText }: StrengthBarProps) => JSX.Element;
2499
3001
 
2500
3002
  interface TabProps$1 {
3003
+ title: string;
3004
+ titleSize?: string;
3005
+ selectedTitleWeight?: number;
3006
+ height?: string;
3007
+ selected?: boolean;
3008
+ color?: string;
3009
+ tabsMaxWidth?: string;
3010
+ onClick: (clickedTab: string) => void;
3011
+ }
3012
+ declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps$1) => JSX.Element;
3013
+
3014
+ interface TabProps {
2501
3015
  title: string;
2502
3016
  content: ReactNode;
2503
3017
  }
@@ -2505,44 +3019,183 @@ interface TabsProps {
2505
3019
  backgroundColor?: string;
2506
3020
  initialSelected?: string;
2507
3021
  tabsMaxWidth?: string;
2508
- tabs: TabProps$1[];
3022
+ tabs: TabProps[];
2509
3023
  }
2510
3024
  declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
2511
3025
 
2512
- interface TabProps {
2513
- title: string;
2514
- titleSize?: string;
2515
- selectedTitleWeight?: number;
2516
- height?: string;
2517
- selected?: boolean;
3026
+ interface CategoryTagProps {
3027
+ text: string;
3028
+ size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
3029
+ className?: string;
3030
+ styledBorder?: boolean;
3031
+ }
3032
+ declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
3033
+
3034
+ interface CategorySquareTagProps {
3035
+ text: string;
3036
+ size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
3037
+ className?: string;
3038
+ styledBorder?: boolean;
3039
+ }
3040
+ declare const CategorySquareTag: ({ text, size, className, styledBorder, }: CategorySquareTagProps) => _emotion_react_jsx_runtime.JSX.Element;
3041
+
3042
+ interface SeasonOfferTagProps {
3043
+ text: string;
3044
+ backgroundColor?: string;
3045
+ size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
3046
+ className?: string;
3047
+ styledBorder?: boolean;
3048
+ bottomRightBorderRounded?: string;
3049
+ allBordersRounded?: {
3050
+ value: string;
3051
+ size?: ComponentSize;
3052
+ };
3053
+ color?: string;
3054
+ }
3055
+ declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, bottomRightBorderRounded, allBordersRounded, color, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
3056
+
3057
+ interface SeasonOfferRoundedTagProps {
3058
+ text: string;
3059
+ backgroundColor?: string;
3060
+ size: ComponentSize;
3061
+ className?: string;
3062
+ }
3063
+ declare const SeasonOfferRoundedTag: ({ text, backgroundColor, size, className, }: SeasonOfferRoundedTagProps) => _emotion_react_jsx_runtime.JSX.Element;
3064
+
3065
+ interface BaseButtonProps {
3066
+ children: React__default.ReactNode;
3067
+ renderLeading?: React__default.ReactNode;
3068
+ renderTrailing?: React__default.ReactNode;
3069
+ disabled?: boolean;
3070
+ type?: ButtonType;
3071
+ onClick: () => void;
3072
+ className?: string;
3073
+ inline?: boolean;
3074
+ uppercase?: boolean;
3075
+ testId?: string;
3076
+ id?: string;
3077
+ }
3078
+
3079
+ declare type BaseProps = Pick<BaseButtonProps, 'disabled' | 'type' | 'onClick'>;
3080
+ interface TextButtonProps$1 extends BaseProps {
3081
+ text: string;
3082
+ LeadingIcon?: IconType;
3083
+ TrailingIcon?: IconType;
3084
+ iconColor?: string;
3085
+ size?: ComponentSize;
3086
+ uppercase?: boolean;
3087
+ }
3088
+ declare const TextButton: ({ text, LeadingIcon, TrailingIcon, iconColor, disabled, type, size, uppercase, onClick, }: TextButtonProps$1) => _emotion_react_jsx_runtime.JSX.Element;
3089
+
3090
+ declare const Text: ({ variant, children, testId, asSpan, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
3091
+ declare type TextHeroProps = {
3092
+ variant: 'hero1' | 'hero2' | 'hero3';
3093
+ weight?: 'heavy' | 'bold' | 'demi';
3094
+ size?: 'regular' | 'xsmall';
3095
+ underline?: never;
3096
+ disabled?: never;
3097
+ wide?: never;
3098
+ original?: never;
3099
+ allCaps?: never;
3100
+ href?: never;
3101
+ };
3102
+ declare type TextDisplayProps = {
3103
+ variant: 'display1' | 'display2' | 'display3';
3104
+ weight?: 'bold' | 'demi';
3105
+ size?: 'regular' | 'xsmall';
3106
+ underline?: never;
3107
+ disabled?: never;
3108
+ wide?: never;
3109
+ original?: never;
3110
+ allCaps?: never;
3111
+ href?: never;
3112
+ };
3113
+ declare type TextHeadingProps = {
3114
+ variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6' | 'heading7' | 'heading8';
3115
+ weight?: 'bold' | 'demi' | 'regular';
3116
+ size?: 'regular' | 'xsmall';
3117
+ underline?: never;
3118
+ disabled?: never;
3119
+ wide?: never;
3120
+ original?: never;
3121
+ allCaps?: never;
3122
+ href?: never;
3123
+ };
3124
+ declare type TextBodyProps = {
3125
+ variant: 'body';
3126
+ size?: 'large' | 'regular' | 'small' | 'xsmall';
3127
+ weight?: 'bold' | 'demi' | 'regular';
3128
+ underline?: never;
3129
+ disabled?: never;
3130
+ wide?: never;
3131
+ original?: never;
3132
+ allCaps?: never;
3133
+ href?: never;
3134
+ };
3135
+ declare type TextButtonProps = {
3136
+ variant: 'button';
3137
+ size: 'large' | 'regular' | 'small';
3138
+ weight: 'bold' | 'demi';
3139
+ underline?: never;
3140
+ disabled?: never;
3141
+ wide?: boolean;
3142
+ original?: never;
3143
+ allCaps?: never;
3144
+ href?: never;
3145
+ };
3146
+ declare type TextPricingProps = {
3147
+ variant: 'pricing';
3148
+ size: 'large' | 'medium' | 'regular' | 'small';
3149
+ weight?: never;
3150
+ underline?: never;
3151
+ disabled?: never;
3152
+ wide?: never;
3153
+ original?: boolean;
3154
+ allCaps?: never;
3155
+ href?: never;
3156
+ };
3157
+ declare type TextLinkProps = {
3158
+ variant: 'link';
3159
+ weight?: 'demi' | 'regular';
3160
+ size?: 'regular' | 'small';
3161
+ underline?: boolean;
3162
+ disabled?: boolean;
3163
+ wide?: never;
3164
+ original?: never;
3165
+ allCaps?: never;
3166
+ href?: string;
3167
+ };
3168
+ declare type TextLabelProps = {
3169
+ variant: 'label';
2518
3170
  color?: string;
2519
- tabsMaxWidth?: string;
2520
- onClick: (clickedTab: string) => void;
2521
- }
2522
- declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
2523
-
2524
- interface IconList {
2525
- backgroundColor: string;
2526
- iconColor: string;
2527
- iconName: string;
2528
- iconTitle: string;
2529
- iconSizeDesktop?: number;
2530
- iconSizeMobile?: number;
2531
- iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
2532
- iconTitleStyle?: string;
2533
- iconStyle?: string;
2534
- isTitleInnerHtml?: boolean;
2535
- }
2536
- declare const IconsWithTitle: ({ iconName, iconTitle, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconList) => JSX.Element | null;
2537
-
2538
- interface NoteProps {
2539
- accentColor?: string;
3171
+ weight?: 'regular' | 'demi';
3172
+ size?: 'large' | 'regular' | 'small';
3173
+ underline?: never;
3174
+ disabled?: boolean;
3175
+ wide?: never;
3176
+ original?: never;
3177
+ allCaps?: never;
3178
+ href?: never;
3179
+ } & LabelHTMLAttributes<'label'>;
3180
+ declare type TextTagProps = {
3181
+ variant: 'tag';
3182
+ size?: 'regular' | 'small' | 'x-small';
3183
+ weight?: 'regular' | 'demi' | 'bold';
3184
+ underline?: never;
3185
+ disabled?: boolean;
3186
+ wide?: never;
3187
+ original?: never;
3188
+ allCaps?: boolean;
3189
+ href?: never;
3190
+ };
3191
+ declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
3192
+ children: ReactNode;
3193
+ style?: CSSProperties;
3194
+ className?: string;
3195
+ testId?: string;
3196
+ asSpan?: boolean;
2540
3197
  color?: string;
2541
- backgroundColor?: string;
2542
- importantNoteText: string;
2543
- text: string;
2544
- }
2545
- declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
3198
+ } & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
2546
3199
 
2547
3200
  interface TextWithImageProps {
2548
3201
  title: string;
@@ -2557,48 +3210,92 @@ interface TextWithImageProps {
2557
3210
  btnBGColor?: string;
2558
3211
  btnHoverBGColor?: string;
2559
3212
  imgVideo: imageVideoProps;
2560
- contentAfterButton?: React.ReactNode;
2561
- titleStyle?: React.CSSProperties;
2562
- textStyle?: React.CSSProperties;
3213
+ contentAfterButton?: React__default.ReactNode;
3214
+ titleStyle?: React__default.CSSProperties;
3215
+ textStyle?: React__default.CSSProperties;
2563
3216
  buttonWideOnMobile?: boolean;
2564
3217
  }
2565
3218
  declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
2566
3219
 
2567
- interface AccordionOptionsProps {
2568
- titleColor: string;
2569
- accordions: AccordionProps[];
3220
+ interface TimeProps {
3221
+ hours: number;
3222
+ minutes: number;
3223
+ seconds: number;
2570
3224
  }
2571
- declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
2572
-
2573
- interface ShortBannerProps {
2574
- title: string;
2575
- bannerText: string;
2576
- backgroundColor: string;
2577
- alignCenter?: boolean;
2578
- widthAuto?: boolean;
2579
- textColor: string;
3225
+ interface TimerProps extends TimeProps {
3226
+ onTimeUp: () => void;
3227
+ displayZeroValues?: boolean;
2580
3228
  }
2581
- declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
3229
+ declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
2582
3230
 
2583
- interface BeforeAfterCardProps {
2584
- name: string;
2585
- age: string;
2586
- months: string;
2587
- beforeImage: string;
2588
- afterImage: string;
2589
- alignCenter?: boolean;
2590
- imageBorderRadius?: string;
2591
- size?: ComponentSize;
3231
+ interface TooltipProps {
3232
+ children: React__default.ReactNode;
3233
+ position: ComponentPosition;
3234
+ align?: 'start' | 'center' | 'end';
3235
+ content?: {
3236
+ text: string;
3237
+ color?: string;
3238
+ };
3239
+ backgroundColor?: string;
3240
+ maxWidth?: string;
3241
+ header?: {
3242
+ title: string;
3243
+ titleColor?: string;
3244
+ Icon?: IconType;
3245
+ iconFill?: string;
3246
+ };
3247
+ onClick?: () => void;
2592
3248
  }
2593
- declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
3249
+ declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
2594
3250
 
2595
- interface ImageCardWithDescriptionProps {
2596
- image: string;
2597
- title?: string;
2598
- description?: string;
2599
- titlePosition?: 'center' | 'left';
3251
+ declare type SubtotalOption = {
3252
+ label: string;
3253
+ value: string;
3254
+ };
3255
+ declare type Coupon = {
3256
+ code: string;
3257
+ amount: string;
3258
+ };
3259
+ interface SubtotalProps {
3260
+ subtotal: SubtotalOption;
3261
+ shipping: SubtotalOption;
3262
+ taxes: SubtotalOption;
3263
+ highlightColor?: string;
3264
+ coupon?: {
3265
+ couponText: string;
3266
+ appliedText: string;
3267
+ coupons: Coupon[];
3268
+ };
3269
+ }
3270
+
3271
+ interface TotalProps {
3272
+ total: string;
3273
+ currency: string;
3274
+ highlightColor?: string;
3275
+ saving?: {
3276
+ amount: string;
3277
+ savingText: string;
3278
+ };
3279
+ }
3280
+
3281
+ declare const Totals: {
3282
+ Total: ({ total, currency, saving, highlightColor }: TotalProps) => JSX.Element;
3283
+ Subtotal: ({ subtotal, shipping, taxes, coupon, highlightColor, }: SubtotalProps) => JSX.Element;
3284
+ };
3285
+
3286
+ interface Checkpoint$1 {
3287
+ day: string;
3288
+ date: string;
3289
+ statusMessage: string;
2600
3290
  }
2601
- declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
3291
+ interface TrackingProgressV2Props {
3292
+ checkPoints: Checkpoint$1[];
3293
+ amountOfCheckPoints: number;
3294
+ resumedStyle?: boolean;
3295
+ warning?: boolean;
3296
+ activeCheckpointColor?: string;
3297
+ }
3298
+ declare const TrackingProgressV2: ({ checkPoints, amountOfCheckPoints, resumedStyle, activeCheckpointColor, warning, }: TrackingProgressV2Props) => JSX.Element;
2602
3299
 
2603
3300
  interface Checkpoint {
2604
3301
  day: string;
@@ -2611,54 +3308,26 @@ interface TrackingProgressProps {
2611
3308
  }
2612
3309
  declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
2613
3310
 
2614
- interface ReviewsHeaderProps {
2615
- title?: string;
2616
- rating: number;
2617
- reviews: number;
2618
- reviewsText: string;
2619
- reviewsSummary: string[];
2620
- onClickReview: (reveiw: string) => void;
2621
- }
2622
- declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
3311
+ declare type SpinnerProps = {
3312
+ fill: string;
3313
+ background: string;
3314
+ animationDuration?: number;
3315
+ complete?: boolean;
3316
+ completeIconStroke?: number;
3317
+ size?: string;
3318
+ borderSize?: ComponentSize;
3319
+ };
3320
+ declare const Spinner: React.FC<SpinnerProps>;
2623
3321
 
2624
- interface ReviewProps {
2625
- reviewId: string;
2626
- reviewerName: string;
2627
- date: Date;
2628
- rating: number;
2629
- stars: {
2630
- color: string;
2631
- size: ComponentSize.Medium | ComponentSize.Small;
2632
- };
2633
- title: string;
2634
- description: string;
2635
- image?: {
2636
- src: string;
2637
- alt: string;
2638
- };
2639
- modalId: string;
2640
- maxFullScreen?: boolean;
2641
- verified?: boolean;
2642
- productImage?: string;
2643
- productTitle?: string;
2644
- productLink?: string;
2645
- helpfulCount?: number;
2646
- helpfulAction?: (id: string) => void;
2647
- notHelpfulCount?: number;
2648
- notHelpfulAction?: (id: string) => void;
2649
- }
2650
- declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps) => JSX.Element;
3322
+ declare const useOnClickOutside: <T extends HTMLElement = HTMLElement>(ref: RefObject<T>, handler: (event: Event) => void) => void;
2651
3323
 
2652
- interface ProductGalleryMobileProps {
2653
- images: ImageType[];
2654
- selectedValue?: ImageType;
2655
- topTag?: JSX.Element;
2656
- bottomTag?: JSX.Element;
2657
- productImageDataTestId?: string;
2658
- slideDotsDataTestId?: string;
2659
- borderRadiusVariant?: boolean;
2660
- }
2661
- declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
3324
+ declare const useWindowDimensions: (breakpoints: ThemeBreakpoints) => {
3325
+ isMobile: boolean;
3326
+ windowDimensions: {
3327
+ width: number;
3328
+ height: number;
3329
+ };
3330
+ };
2662
3331
 
2663
3332
  declare global {
2664
3333
  interface Events {
@@ -2669,16 +3338,6 @@ declare global {
2669
3338
  }
2670
3339
  }
2671
3340
 
2672
- declare const useOnClickOutside: <T extends HTMLElement = HTMLElement>(ref: RefObject<T>, handler: (event: Event) => void) => void;
2673
-
2674
- declare const useWindowDimensions: (breakpoints: ThemeBreakpoints) => {
2675
- isMobile: boolean;
2676
- windowDimensions: {
2677
- width: number;
2678
- height: number;
2679
- };
2680
- };
2681
-
2682
3341
  /**
2683
3342
  * @returns number formatted with "," and 2 decimals as string
2684
3343
  */
@@ -2699,4 +3358,8 @@ declare const formatPrice: (value: number, { locale, currency }?: {
2699
3358
  currency?: string | undefined;
2700
3359
  }) => string;
2701
3360
 
2702
- 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, 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, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
3361
+ declare const getSrcSet: (imgLink: string, ...breakpoints: number[]) => string;
3362
+
3363
+ declare const mediaQueries: facepaint.DynamicStyleFunction;
3364
+
3365
+ export { AbsorbencyLevel, Accordion, AccordionOptions, AmazonButton, AssetsProvider, Autoship, BeforeAfterCard, BeforeAfterVariant, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, BuyNowPayLater, CTAProps, _default as Card, CardSectionType, CartProductItem, CategorySquareTag, CategoryTag, Checkbox, ClubOfferTag, ClubRadioGroupInput, Collection, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownDialog, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitGuarantee, FitPredictor, HurryUp, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageCardWithDescription, ImageType, Input, InputValidationType, Icon$1 as LibIcon, Props$2 as LibIconProps, Modal, MotivatorProgressBar, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, PackSelectorV2, Pagination, PaginatorBlog, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, PriceLabelV2, ProductGallery, ProductGalleryMobile, ProductGalleryMobileV2, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, RadioPrimary, Rating, Review, Review$1 as ReviewDetail, ReviewsHeader, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, ShortBanner, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeChartTable, 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, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, TrackingProgress, TrackingProgressV2, WithTestId, componentSizeMapper, decimalFormat, formatPrice, getSrcSet, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, mediaQueries, modalEvent, SeasonOfferRoundedTag as seasonOfferRoundedTag, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };