@trafilea/afrodita-components 5.0.0-beta.30 → 5.0.0-beta.301

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,11 +1,14 @@
1
1
  /// <reference types="react" />
2
+ import React, { ReactFragment, FC, ReactNode, ElementType, CSSProperties, AriaAttributes, HTMLAttributes, LabelHTMLAttributes, RefObject } from 'react';
2
3
  import { IconProps as IconProps$1 } from 'src/types/types';
3
- import React, { FC, ReactNode, ElementType, CSSProperties, AriaAttributes, AnchorHTMLAttributes, LabelHTMLAttributes, RefObject } from 'react';
4
4
  import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
5
5
  import * as _emotion_styled from '@emotion/styled';
6
6
  import { StyledComponent } from '@emotion/styled';
7
+ export { default as styled } from '@emotion/styled';
7
8
  import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
8
9
  import * as _emotion_react from '@emotion/react';
10
+ import { ComponentSize as ComponentSize$1 } from 'src/types/enums';
11
+ import facepaint from 'facepaint';
9
12
 
10
13
  declare enum CardSectionType {
11
14
  Header = 0,
@@ -58,11 +61,7 @@ declare type SizeOption = {
58
61
  label: string;
59
62
  description: string;
60
63
  disabled?: boolean;
61
- };
62
- declare type Color = {
63
- primaryColor: string;
64
- secondaryColor?: string;
65
- tertiaryColor?: string;
64
+ noStock?: boolean;
66
65
  };
67
66
  declare type Pattern = {
68
67
  url: string;
@@ -70,19 +69,21 @@ declare type Pattern = {
70
69
  declare type ColorPickerOption = {
71
70
  label: string;
72
71
  description: string;
72
+ noStock?: boolean;
73
73
  meta: {
74
- color?: Color;
74
+ color?: string[];
75
75
  pattern?: Pattern;
76
76
  };
77
77
  };
78
78
  declare type RadioGroupOption = {
79
79
  value: string;
80
- label: string;
80
+ label: string | ReactFragment;
81
81
  };
82
82
  declare type ImageType = {
83
83
  key: string;
84
84
  imageUrl: string;
85
85
  alt: string;
86
+ thumbnailUrl?: string;
86
87
  };
87
88
  interface IconWithOpacityProps extends IconProps {
88
89
  opacity?: number;
@@ -102,10 +103,20 @@ declare type Filter = {
102
103
  title: string;
103
104
  columns: number;
104
105
  isOpenByDefault?: boolean;
106
+ isLinkOption?: boolean;
107
+ link?: string;
108
+ color?: string;
109
+ isMultiselect: boolean;
110
+ type?: string;
105
111
  items: Array<{
106
112
  label: string;
107
113
  checked?: boolean;
114
+ isLinkItem?: boolean;
115
+ link?: string;
116
+ blockUncheck?: boolean;
117
+ value?: string;
108
118
  }>;
119
+ showInMobile: boolean;
109
120
  };
110
121
  declare type FilterChange = {
111
122
  sectionIndex: number;
@@ -117,18 +128,84 @@ interface SearchBarOptionItem {
117
128
  price: string;
118
129
  title: string;
119
130
  optionUrl: string;
131
+ }
132
+ interface imageVideoProps {
133
+ imageLink: string;
134
+ isVideo?: {
135
+ videoTitle?: string;
136
+ videoSubtitle?: string;
137
+ textColor?: string;
138
+ videoLink?: string;
139
+ };
140
+ isMobile?: boolean;
120
141
  }
121
142
 
122
143
  declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
123
144
 
124
145
  declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
125
146
 
147
+ declare const Smiling: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
148
+
149
+ declare const BulletOne: ({ height, width, fill, title }: IconProps) => JSX.Element;
150
+
151
+ declare const BulletTwo: ({ height, width, fill, title }: IconProps) => JSX.Element;
152
+
153
+ declare const BulletThree: ({ height, width, fill, title }: IconProps) => JSX.Element;
154
+
155
+ declare const ThumbsUp: ({ height, width, fill, title }: IconProps) => JSX.Element;
156
+
157
+ declare const ThumbsDown: ({ height, width, fill, title }: IconProps) => JSX.Element;
158
+
159
+ declare const Atom: ({ height, width, fill, testId }: IconProps) => JSX.Element;
160
+
161
+ declare const Bubbles: ({ height, width, fill, testId }: IconProps) => JSX.Element;
162
+
163
+ declare const FairAdvantages: ({ height, width, fill, testId }: IconProps) => JSX.Element;
164
+
165
+ declare const MoneyFlow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
166
+
167
+ declare const ClinicallyTested: ({ height, width, fill, testId }: IconProps) => JSX.Element;
168
+
169
+ declare const CrueltyFree: ({ height, width, fill, testId }: IconProps) => JSX.Element;
170
+
171
+ declare const Certified: ({ height, width, fill, testId }: IconProps) => JSX.Element;
172
+
173
+ declare const NewSixtyDaysGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
174
+
126
175
  declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
127
176
  declare const Custom_Frown: typeof Frown;
177
+ declare const Custom_Smiling: typeof Smiling;
178
+ declare const Custom_BulletOne: typeof BulletOne;
179
+ declare const Custom_BulletTwo: typeof BulletTwo;
180
+ declare const Custom_BulletThree: typeof BulletThree;
181
+ declare const Custom_ThumbsUp: typeof ThumbsUp;
182
+ declare const Custom_ThumbsDown: typeof ThumbsDown;
183
+ declare const Custom_Atom: typeof Atom;
184
+ declare const Custom_Bubbles: typeof Bubbles;
185
+ declare const Custom_FairAdvantages: typeof FairAdvantages;
186
+ declare const Custom_MoneyFlow: typeof MoneyFlow;
187
+ declare const Custom_ClinicallyTested: typeof ClinicallyTested;
188
+ declare const Custom_CrueltyFree: typeof CrueltyFree;
189
+ declare const Custom_Certified: typeof Certified;
190
+ declare const Custom_NewSixtyDaysGuarantee: typeof NewSixtyDaysGuarantee;
128
191
  declare namespace Custom {
129
192
  export {
130
193
  Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
131
194
  Custom_Frown as Frown,
195
+ Custom_Smiling as Smiling,
196
+ Custom_BulletOne as BulletOne,
197
+ Custom_BulletTwo as BulletTwo,
198
+ Custom_BulletThree as BulletThree,
199
+ Custom_ThumbsUp as ThumbsUp,
200
+ Custom_ThumbsDown as ThumbsDown,
201
+ Custom_Atom as Atom,
202
+ Custom_Bubbles as Bubbles,
203
+ Custom_FairAdvantages as FairAdvantages,
204
+ Custom_MoneyFlow as MoneyFlow,
205
+ Custom_ClinicallyTested as ClinicallyTested,
206
+ Custom_CrueltyFree as CrueltyFree,
207
+ Custom_Certified as Certified,
208
+ Custom_NewSixtyDaysGuarantee as NewSixtyDaysGuarantee,
132
209
  };
133
210
  }
134
211
 
@@ -149,6 +226,73 @@ declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
149
226
 
150
227
  declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
151
228
 
229
+ declare const Warning: ({ height, width, fill }: IconProps) => JSX.Element;
230
+
231
+ declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
232
+
233
+ declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
234
+
235
+ declare const Add: ({ height, width, fill }: IconProps) => JSX.Element;
236
+
237
+ interface CopyProps extends IconProps {
238
+ stroke?: string;
239
+ }
240
+ declare const Copy: ({ height, width, fill, stroke }: CopyProps) => JSX.Element;
241
+
242
+ declare const CopyOutlined: ({ height, width, fill }: IconProps) => JSX.Element;
243
+
244
+ declare const CheckboxEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
245
+
246
+ declare const CheckboxLight: ({ height, width, fill }: IconProps) => JSX.Element;
247
+
248
+ declare const CheckboxSolid: ({ height, width, fill }: IconProps) => JSX.Element;
249
+
250
+ declare const Like: ({ height, width, fill }: IconProps) => JSX.Element;
251
+
252
+ declare const LikeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
253
+
254
+ declare const NotAllowed: ({ height, width, fill }: IconProps) => JSX.Element;
255
+
256
+ declare const RadioEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
257
+
258
+ declare const RadioFilled: ({ height, width, fill }: IconProps) => JSX.Element;
259
+
260
+ declare const Minus$1: ({ height, width, fill }: IconProps) => JSX.Element;
261
+
262
+ declare const SettingsSolid: ({ height, width, fill }: IconProps) => JSX.Element;
263
+
264
+ declare const Settings: ({ height, width, fill }: IconProps) => JSX.Element;
265
+
266
+ declare const Share: ({ height, width, fill }: IconProps) => JSX.Element;
267
+
268
+ declare const CircleCheck: ({ height, width, fill }: IconProps) => JSX.Element;
269
+
270
+ declare const CircleClear: ({ height, width, fill }: IconProps) => JSX.Element;
271
+
272
+ declare const CircleInfo: ({ height, width, fill }: IconProps) => JSX.Element;
273
+
274
+ declare const CircleMinus: ({ height, width, fill }: IconProps) => JSX.Element;
275
+
276
+ declare const CirclePlus: ({ height, width, fill }: IconProps) => JSX.Element;
277
+
278
+ declare const CircleQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
279
+
280
+ declare const CircleWarning: ({ height, width, fill }: IconProps) => JSX.Element;
281
+
282
+ declare const CircleSolidCheck: ({ height, width, fill }: IconProps) => JSX.Element;
283
+
284
+ declare const CircleSolidClear: ({ height, width, fill }: IconProps) => JSX.Element;
285
+
286
+ declare const CircleSolidMinus: ({ height, width, fill }: IconProps) => JSX.Element;
287
+
288
+ declare const CircleSolidPlus: ({ height, width, fill }: IconProps) => JSX.Element;
289
+
290
+ declare const CircleSolidQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
291
+
292
+ declare const CircleSolidWarning: ({ height, width, fill }: IconProps) => JSX.Element;
293
+
294
+ declare const CircleSolidStyledCheck: ({ height, width, fill }: IconProps) => JSX.Element;
295
+
152
296
  declare const Actions_Check: typeof Check;
153
297
  declare const Actions_ClearLight: typeof ClearLight;
154
298
  declare const Actions_LightExclamation: typeof LightExclamation;
@@ -157,6 +301,38 @@ declare const Actions_LightCheck: typeof LightCheck;
157
301
  declare const Actions_Question: typeof Question;
158
302
  declare const Actions_Close: typeof Close;
159
303
  declare const Actions_Trash: typeof Trash;
304
+ declare const Actions_Warning: typeof Warning;
305
+ declare const Actions_Edit: typeof Edit;
306
+ declare const Actions_SignOut: typeof SignOut;
307
+ declare const Actions_Add: typeof Add;
308
+ type Actions_CopyProps = CopyProps;
309
+ declare const Actions_Copy: typeof Copy;
310
+ declare const Actions_CopyOutlined: typeof CopyOutlined;
311
+ declare const Actions_CheckboxEmpty: typeof CheckboxEmpty;
312
+ declare const Actions_CheckboxLight: typeof CheckboxLight;
313
+ declare const Actions_CheckboxSolid: typeof CheckboxSolid;
314
+ declare const Actions_Like: typeof Like;
315
+ declare const Actions_LikeSolid: typeof LikeSolid;
316
+ declare const Actions_NotAllowed: typeof NotAllowed;
317
+ declare const Actions_RadioEmpty: typeof RadioEmpty;
318
+ declare const Actions_RadioFilled: typeof RadioFilled;
319
+ declare const Actions_SettingsSolid: typeof SettingsSolid;
320
+ declare const Actions_Settings: typeof Settings;
321
+ declare const Actions_Share: typeof Share;
322
+ declare const Actions_CircleCheck: typeof CircleCheck;
323
+ declare const Actions_CircleClear: typeof CircleClear;
324
+ declare const Actions_CircleInfo: typeof CircleInfo;
325
+ declare const Actions_CircleMinus: typeof CircleMinus;
326
+ declare const Actions_CirclePlus: typeof CirclePlus;
327
+ declare const Actions_CircleQuestion: typeof CircleQuestion;
328
+ declare const Actions_CircleWarning: typeof CircleWarning;
329
+ declare const Actions_CircleSolidCheck: typeof CircleSolidCheck;
330
+ declare const Actions_CircleSolidClear: typeof CircleSolidClear;
331
+ declare const Actions_CircleSolidMinus: typeof CircleSolidMinus;
332
+ declare const Actions_CircleSolidPlus: typeof CircleSolidPlus;
333
+ declare const Actions_CircleSolidQuestion: typeof CircleSolidQuestion;
334
+ declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
335
+ declare const Actions_CircleSolidStyledCheck: typeof CircleSolidStyledCheck;
160
336
  declare namespace Actions {
161
337
  export {
162
338
  Actions_Check as Check,
@@ -167,6 +343,39 @@ declare namespace Actions {
167
343
  Actions_Question as Question,
168
344
  Actions_Close as Close,
169
345
  Actions_Trash as Trash,
346
+ Actions_Warning as Warning,
347
+ Actions_Edit as Edit,
348
+ Actions_SignOut as SignOut,
349
+ Actions_Add as Add,
350
+ Actions_CopyProps as CopyProps,
351
+ Actions_Copy as Copy,
352
+ Actions_CopyOutlined as CopyOutlined,
353
+ Actions_CheckboxEmpty as CheckboxEmpty,
354
+ Actions_CheckboxLight as CheckboxLight,
355
+ Actions_CheckboxSolid as CheckboxSolid,
356
+ Actions_Like as Like,
357
+ Actions_LikeSolid as LikeSolid,
358
+ Actions_NotAllowed as NotAllowed,
359
+ Actions_RadioEmpty as RadioEmpty,
360
+ Actions_RadioFilled as RadioFilled,
361
+ Minus$1 as Minus,
362
+ Actions_SettingsSolid as SettingsSolid,
363
+ Actions_Settings as Settings,
364
+ Actions_Share as Share,
365
+ Actions_CircleCheck as CircleCheck,
366
+ Actions_CircleClear as CircleClear,
367
+ Actions_CircleInfo as CircleInfo,
368
+ Actions_CircleMinus as CircleMinus,
369
+ Actions_CirclePlus as CirclePlus,
370
+ Actions_CircleQuestion as CircleQuestion,
371
+ Actions_CircleWarning as CircleWarning,
372
+ Actions_CircleSolidCheck as CircleSolidCheck,
373
+ Actions_CircleSolidClear as CircleSolidClear,
374
+ Actions_CircleSolidMinus as CircleSolidMinus,
375
+ Actions_CircleSolidPlus as CircleSolidPlus,
376
+ Actions_CircleSolidQuestion as CircleSolidQuestion,
377
+ Actions_CircleSolidWarning as CircleSolidWarning,
378
+ Actions_CircleSolidStyledCheck as CircleSolidStyledCheck,
170
379
  };
171
380
  }
172
381
 
@@ -175,23 +384,102 @@ declare const FitPredictor$1: ({ height, width, fill }: IconProps) => JSX.Elemen
175
384
  interface LoadingProps extends IconProps {
176
385
  backgroundColor: string;
177
386
  }
178
- declare const Loading: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
387
+ declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
179
388
 
180
389
  declare const Shapermint: ({ height, width }: IconProps) => JSX.Element;
181
390
 
182
391
  declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
183
392
 
393
+ declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
394
+
395
+ declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
396
+
397
+ declare const Chat: ({ height, width, fill, testId }: IconProps) => JSX.Element;
398
+
399
+ declare const Email: ({ height, width, fill, testId }: IconProps) => JSX.Element;
400
+
401
+ declare const CallUs: ({ height, width, fill, testId }: IconProps) => JSX.Element;
402
+
403
+ declare const SignForm: ({ height, width, fill }: IconProps) => JSX.Element;
404
+
405
+ declare const QrCode: ({ height, width, fill }: IconProps) => JSX.Element;
406
+
407
+ declare const FreeExchange: ({ height, width, fill, testId }: IconProps) => JSX.Element;
408
+
409
+ declare const ShopNow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
410
+
411
+ declare const HasselFreeReturns: ({ height, width, fill, testId }: IconProps) => JSX.Element;
412
+
413
+ declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
414
+
415
+ declare const FitGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
416
+
417
+ declare const QuestionWithCircle: ({ height, width, fill, testId }: IconProps) => JSX.Element;
418
+
419
+ declare const ExpressShipping: ({ height, width, fill, testId }: IconProps) => JSX.Element;
420
+
421
+ declare const ShapermintClubLabel: ({ height, width }: IconProps) => JSX.Element;
422
+
423
+ declare const ShapermintClubMobileLabel: ({ height, width }: IconProps) => JSX.Element;
424
+
425
+ declare const ShapermintClubIcon: ({ height, width }: IconProps) => JSX.Element;
426
+
427
+ declare const ShapermintClubIcon2: ({ height, width }: IconProps) => JSX.Element;
428
+
429
+ declare const BodConLabel: ({ height, width }: IconProps) => JSX.Element;
430
+
431
+ declare const BodConMobileLabel: ({ height, width }: IconProps) => JSX.Element;
432
+
184
433
  type Other_LoadingProps = LoadingProps;
185
- declare const Other_Loading: typeof Loading;
186
434
  declare const Other_Shapermint: typeof Shapermint;
187
435
  declare const Other_McAfee: typeof McAfee;
436
+ declare const Other_GetDiscount: typeof GetDiscount;
437
+ declare const Other_ShapermintLogo: typeof ShapermintLogo;
438
+ declare const Other_Chat: typeof Chat;
439
+ declare const Other_Email: typeof Email;
440
+ declare const Other_CallUs: typeof CallUs;
441
+ declare const Other_SignForm: typeof SignForm;
442
+ declare const Other_QrCode: typeof QrCode;
443
+ declare const Other_FreeExchange: typeof FreeExchange;
444
+ declare const Other_ShopNow: typeof ShopNow;
445
+ declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
446
+ declare const Other_Play: typeof Play;
447
+ declare const Other_FitGuarantee: typeof FitGuarantee;
448
+ declare const Other_QuestionWithCircle: typeof QuestionWithCircle;
449
+ declare const Other_ExpressShipping: typeof ExpressShipping;
450
+ declare const Other_ShapermintClubLabel: typeof ShapermintClubLabel;
451
+ declare const Other_ShapermintClubMobileLabel: typeof ShapermintClubMobileLabel;
452
+ declare const Other_ShapermintClubIcon: typeof ShapermintClubIcon;
453
+ declare const Other_ShapermintClubIcon2: typeof ShapermintClubIcon2;
454
+ declare const Other_BodConLabel: typeof BodConLabel;
455
+ declare const Other_BodConMobileLabel: typeof BodConMobileLabel;
188
456
  declare namespace Other {
189
457
  export {
190
458
  FitPredictor$1 as FitPredictor,
191
459
  Other_LoadingProps as LoadingProps,
192
- Other_Loading as Loading,
460
+ Loading$1 as Loading,
193
461
  Other_Shapermint as Shapermint,
194
462
  Other_McAfee as McAfee,
463
+ Other_GetDiscount as GetDiscount,
464
+ Other_ShapermintLogo as ShapermintLogo,
465
+ Other_Chat as Chat,
466
+ Other_Email as Email,
467
+ Other_CallUs as CallUs,
468
+ Other_SignForm as SignForm,
469
+ Other_QrCode as QrCode,
470
+ Other_FreeExchange as FreeExchange,
471
+ Other_ShopNow as ShopNow,
472
+ Other_HasselFreeReturns as HasselFreeReturns,
473
+ Other_Play as Play,
474
+ Other_FitGuarantee as FitGuarantee,
475
+ Other_QuestionWithCircle as QuestionWithCircle,
476
+ Other_ExpressShipping as ExpressShipping,
477
+ Other_ShapermintClubLabel as ShapermintClubLabel,
478
+ Other_ShapermintClubMobileLabel as ShapermintClubMobileLabel,
479
+ Other_ShapermintClubIcon as ShapermintClubIcon,
480
+ Other_ShapermintClubIcon2 as ShapermintClubIcon2,
481
+ Other_BodConLabel as BodConLabel,
482
+ Other_BodConMobileLabel as BodConMobileLabel,
195
483
  };
196
484
  }
197
485
 
@@ -209,6 +497,28 @@ declare const ChevronUpSolid: ({ height, width, fill }: IconProps) => JSX.Elemen
209
497
 
210
498
  declare const CircleUp: ({ width, height, fill }: IconProps) => JSX.Element;
211
499
 
500
+ declare const CircleChevronLeft: ({ width, height, fill }: IconProps) => JSX.Element;
501
+
502
+ declare const CircleChevronRight: ({ width, height, fill }: IconProps) => JSX.Element;
503
+
504
+ declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
505
+
506
+ declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
507
+
508
+ declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
509
+
510
+ declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
511
+
512
+ declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
513
+
514
+ declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
515
+
516
+ declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
517
+
518
+ declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
519
+
520
+ declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
521
+
212
522
  declare const Arrows_ChevronDown: typeof ChevronDown;
213
523
  declare const Arrows_ChevronLeft: typeof ChevronLeft;
214
524
  declare const Arrows_ChevronRight: typeof ChevronRight;
@@ -216,6 +526,17 @@ declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
216
526
  declare const Arrows_ChevronUp: typeof ChevronUp;
217
527
  declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
218
528
  declare const Arrows_CircleUp: typeof CircleUp;
529
+ declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
530
+ declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
531
+ declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
532
+ declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
533
+ declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
534
+ declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
535
+ declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
536
+ declare const Arrows_CircleLineUp: typeof CircleLineUp;
537
+ declare const Arrows_CircleLineDown: typeof CircleLineDown;
538
+ declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
539
+ declare const Arrows_CircleLineRight: typeof CircleLineRight;
219
540
  declare namespace Arrows {
220
541
  export {
221
542
  Arrows_ChevronDown as ChevronDown,
@@ -225,6 +546,17 @@ declare namespace Arrows {
225
546
  Arrows_ChevronUp as ChevronUp,
226
547
  Arrows_ChevronUpSolid as ChevronUpSolid,
227
548
  Arrows_CircleUp as CircleUp,
549
+ Arrows_CircleChevronLeft as CircleChevronLeft,
550
+ Arrows_CircleChevronRight as CircleChevronRight,
551
+ Arrows_CircleChevronDown as CircleChevronDown,
552
+ Arrows_CircleChevronUp as CircleChevronUp,
553
+ Arrows_ChevronDownVariant as ChevronDownVariant,
554
+ Arrows_ChevronUpVariant as ChevronUpVariant,
555
+ Arrows_ChevronLeftVariant as ChevronLeftVariant,
556
+ Arrows_CircleLineUp as CircleLineUp,
557
+ Arrows_CircleLineDown as CircleLineDown,
558
+ Arrows_CircleLineLeft as CircleLineLeft,
559
+ Arrows_CircleLineRight as CircleLineRight,
228
560
  };
229
561
  }
230
562
 
@@ -248,6 +580,34 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
248
580
 
249
581
  declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
250
582
 
583
+ declare const LightBulb$1: ({ height, width, fill }: IconProps) => JSX.Element;
584
+
585
+ declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
586
+
587
+ declare const CircleNumber: ({ height, width, fill }: IconProps) => JSX.Element;
588
+
589
+ declare const SizeEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
590
+
591
+ declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
592
+
593
+ declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
594
+
595
+ declare const Drop: ({ height, width, fill }: IconProps) => JSX.Element;
596
+
597
+ declare const DropEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
598
+
599
+ declare const Stars: ({ height, width, fill }: IconProps) => JSX.Element;
600
+
601
+ declare const Moon: ({ height, width, fill }: IconProps) => JSX.Element;
602
+
603
+ declare const Hours: ({ height, width, fill }: IconProps) => JSX.Element;
604
+
605
+ declare const NewClock: ({ height, width, fill }: IconProps) => JSX.Element;
606
+
607
+ declare const KlarnaLogo: ({ height, width }: IconProps) => JSX.Element;
608
+
609
+ declare const TrustBadge: ({ height, width, fill }: IconProps) => JSX.Element;
610
+
251
611
  declare const PDP_Clock: typeof Clock;
252
612
  declare const PDP_FlagUSA: typeof FlagUSA;
253
613
  declare const PDP_Minus: typeof Minus;
@@ -258,6 +618,19 @@ declare const PDP_StarEmpty: typeof StarEmpty;
258
618
  declare const PDP_StarHalf: typeof StarHalf;
259
619
  declare const PDP_Stopwatch: typeof Stopwatch;
260
620
  declare const PDP_Shipping: typeof Shipping;
621
+ declare const PDP_ErrorCross: typeof ErrorCross;
622
+ declare const PDP_CircleNumber: typeof CircleNumber;
623
+ declare const PDP_SizeEmpty: typeof SizeEmpty;
624
+ declare const PDP_PlayMini: typeof PlayMini;
625
+ declare const PDP_ShippingEmpty: typeof ShippingEmpty;
626
+ declare const PDP_Drop: typeof Drop;
627
+ declare const PDP_DropEmpty: typeof DropEmpty;
628
+ declare const PDP_Stars: typeof Stars;
629
+ declare const PDP_Moon: typeof Moon;
630
+ declare const PDP_Hours: typeof Hours;
631
+ declare const PDP_NewClock: typeof NewClock;
632
+ declare const PDP_KlarnaLogo: typeof KlarnaLogo;
633
+ declare const PDP_TrustBadge: typeof TrustBadge;
261
634
  declare namespace PDP {
262
635
  export {
263
636
  PDP_Clock as Clock,
@@ -270,6 +643,20 @@ declare namespace PDP {
270
643
  PDP_StarHalf as StarHalf,
271
644
  PDP_Stopwatch as Stopwatch,
272
645
  PDP_Shipping as Shipping,
646
+ LightBulb$1 as LightBulb,
647
+ PDP_ErrorCross as ErrorCross,
648
+ PDP_CircleNumber as CircleNumber,
649
+ PDP_SizeEmpty as SizeEmpty,
650
+ PDP_PlayMini as PlayMini,
651
+ PDP_ShippingEmpty as ShippingEmpty,
652
+ PDP_Drop as Drop,
653
+ PDP_DropEmpty as DropEmpty,
654
+ PDP_Stars as Stars,
655
+ PDP_Moon as Moon,
656
+ PDP_Hours as Hours,
657
+ PDP_NewClock as NewClock,
658
+ PDP_KlarnaLogo as KlarnaLogo,
659
+ PDP_TrustBadge as TrustBadge,
273
660
  };
274
661
  }
275
662
 
@@ -287,6 +674,8 @@ declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
287
674
 
288
675
  declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
289
676
 
677
+ declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
678
+
290
679
  declare const SocialMedia_Facebook: typeof Facebook;
291
680
  declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
292
681
  declare const SocialMedia_Instagram: typeof Instagram;
@@ -294,6 +683,7 @@ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
294
683
  declare const SocialMedia_Pinterest: typeof Pinterest;
295
684
  declare const SocialMedia_Twitter: typeof Twitter;
296
685
  declare const SocialMedia_Youtube: typeof Youtube;
686
+ declare const SocialMedia_Interaction: typeof Interaction;
297
687
  declare namespace SocialMedia {
298
688
  export {
299
689
  SocialMedia_Facebook as Facebook,
@@ -303,6 +693,7 @@ declare namespace SocialMedia {
303
693
  SocialMedia_Pinterest as Pinterest,
304
694
  SocialMedia_Twitter as Twitter,
305
695
  SocialMedia_Youtube as Youtube,
696
+ SocialMedia_Interaction as Interaction,
306
697
  };
307
698
  }
308
699
 
@@ -318,12 +709,64 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
318
709
 
319
710
  declare const Hamburger: FC<IconProps>;
320
711
 
712
+ declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
713
+
714
+ declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
715
+
716
+ declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
717
+
718
+ declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
719
+
720
+ declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
721
+
722
+ declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
723
+
724
+ declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
725
+
726
+ declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
727
+
728
+ declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
729
+
730
+ declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
731
+
732
+ declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
733
+
734
+ declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
735
+
736
+ declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
737
+
738
+ declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
739
+
740
+ declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
741
+
742
+ declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
743
+
744
+ declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
745
+
746
+ declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
747
+
321
748
  declare const Navigation_Search: typeof Search;
322
749
  declare const Navigation_User: typeof User;
323
750
  declare const Navigation_ShoppingBag: typeof ShoppingBag;
324
751
  declare const Navigation_ShoppingCart: typeof ShoppingCart;
325
752
  declare const Navigation_MapMarker: typeof MapMarker;
326
753
  declare const Navigation_Hamburger: typeof Hamburger;
754
+ declare const Navigation_AddressInformation: typeof AddressInformation;
755
+ declare const Navigation_ClubMembership: typeof ClubMembership;
756
+ declare const Navigation_Benefits: typeof Benefits;
757
+ declare const Navigation_Home: typeof Home;
758
+ declare const Navigation_HomeSolid: typeof HomeSolid;
759
+ declare const Navigation_ShoppingBagV2: typeof ShoppingBagV2;
760
+ declare const Navigation_UserSolid: typeof UserSolid;
761
+ declare const Navigation_SlideDotSolid: typeof SlideDotSolid;
762
+ declare const Navigation_Ellipsis: typeof Ellipsis;
763
+ declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
764
+ declare const Navigation_Lock: typeof Lock;
765
+ declare const Navigation_LockSolid: typeof LockSolid;
766
+ declare const Navigation_Loading: typeof Loading;
767
+ declare const Navigation_MapSolid: typeof MapSolid;
768
+ declare const Navigation_UserV2: typeof UserV2;
769
+ declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
327
770
  declare namespace Navigation {
328
771
  export {
329
772
  Navigation_Search as Search,
@@ -332,6 +775,24 @@ declare namespace Navigation {
332
775
  Navigation_ShoppingCart as ShoppingCart,
333
776
  Navigation_MapMarker as MapMarker,
334
777
  Navigation_Hamburger as Hamburger,
778
+ Navigation_AddressInformation as AddressInformation,
779
+ Navigation_ClubMembership as ClubMembership,
780
+ Navigation_Benefits as Benefits,
781
+ Navigation_Home as Home,
782
+ Navigation_HomeSolid as HomeSolid,
783
+ Navigation_ShoppingBagV2 as ShoppingBagV2,
784
+ Navigation_UserSolid as UserSolid,
785
+ SlideDot$1 as SlideDot,
786
+ Navigation_SlideDotSolid as SlideDotSolid,
787
+ Navigation_Ellipsis as Ellipsis,
788
+ Navigation_EllipsisHorizontal as EllipsisHorizontal,
789
+ Filters$1 as Filters,
790
+ Navigation_Lock as Lock,
791
+ Navigation_LockSolid as LockSolid,
792
+ Navigation_Loading as Loading,
793
+ Navigation_MapSolid as MapSolid,
794
+ Navigation_UserV2 as UserV2,
795
+ Navigation_ShoppingCartV2 as ShoppingCartV2,
335
796
  };
336
797
  }
337
798
 
@@ -352,18 +813,61 @@ interface IconWrapperProps {
352
813
  fill?: string;
353
814
  }
354
815
 
355
- declare const Mail: ({ height, width }: IconWrapperProps) => JSX.Element;
816
+ declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
817
+
818
+ declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
819
+
820
+ declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
821
+
822
+ declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
823
+
824
+ declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
825
+
826
+ declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
827
+
828
+ declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
829
+
830
+ declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
831
+
832
+ declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
833
+
834
+ declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
835
+
836
+ declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
837
+
838
+ declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
356
839
 
357
840
  declare const Messaging_QuestionCircle: typeof QuestionCircle;
358
841
  declare const Messaging_Messenger: typeof Messenger;
359
842
  declare const Messaging_Comment: typeof Comment;
360
843
  declare const Messaging_Mail: typeof Mail;
844
+ declare const Messaging_QuoteLeft: typeof QuoteLeft;
845
+ declare const Messaging_QuoteRight: typeof QuoteRight;
846
+ declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
847
+ declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
848
+ declare const Messaging_Light: typeof Light;
849
+ declare const Messaging_LightBulb: typeof LightBulb;
850
+ declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
851
+ declare const Messaging_CommentDots: typeof CommentDots;
852
+ declare const Messaging_CommentLight: typeof CommentLight;
853
+ declare const Messaging_CommentMoney: typeof CommentMoney;
361
854
  declare namespace Messaging {
362
855
  export {
363
856
  Messaging_QuestionCircle as QuestionCircle,
364
857
  Messaging_Messenger as Messenger,
365
858
  Messaging_Comment as Comment,
366
859
  Messaging_Mail as Mail,
860
+ Community$1 as Community,
861
+ Messaging_QuoteLeft as QuoteLeft,
862
+ Messaging_QuoteRight as QuoteRight,
863
+ Messaging_QuoteSolidLeft as QuoteSolidLeft,
864
+ Messaging_QuoteSolidRight as QuoteSolidRight,
865
+ Messaging_Light as Light,
866
+ Messaging_LightBulb as LightBulb,
867
+ Messaging_LightBulbSolid as LightBulbSolid,
868
+ Messaging_CommentDots as CommentDots,
869
+ Messaging_CommentLight as CommentLight,
870
+ Messaging_CommentMoney as CommentMoney,
367
871
  };
368
872
  }
369
873
 
@@ -424,10 +928,95 @@ declare namespace SlideDots {
424
928
 
425
929
  declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
426
930
 
931
+ declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
932
+
933
+ declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
934
+
935
+ declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
936
+
937
+ declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
938
+
939
+ declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
940
+
941
+ declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
942
+
427
943
  declare const Emoji_Thinking: typeof Thinking;
944
+ declare const Emoji_SmilingV2: typeof SmilingV2;
945
+ declare const Emoji_Grinning: typeof Grinning;
946
+ declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
947
+ declare const Emoji_BlowingKiss: typeof BlowingKiss;
948
+ declare const Emoji_Frowning: typeof Frowning;
949
+ declare const Emoji_Relieved: typeof Relieved;
428
950
  declare namespace Emoji {
429
951
  export {
430
952
  Emoji_Thinking as Thinking,
953
+ Emoji_SmilingV2 as SmilingV2,
954
+ Emoji_Grinning as Grinning,
955
+ Emoji_GrinningWithSweat as GrinningWithSweat,
956
+ Emoji_BlowingKiss as BlowingKiss,
957
+ Emoji_Frowning as Frowning,
958
+ Emoji_Relieved as Relieved,
959
+ };
960
+ }
961
+
962
+ declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
963
+
964
+ declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
965
+
966
+ declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
967
+
968
+ declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
969
+
970
+ declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
971
+
972
+ declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
973
+
974
+ declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
975
+
976
+ declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
977
+
978
+ declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
979
+
980
+ declare const PriorityShipping: ({ height, width, fill }: IconProps) => JSX.Element;
981
+
982
+ declare const Guard: ({ height, width, fill }: IconProps) => JSX.Element;
983
+
984
+ declare const BirthdayGifts: ({ height, width, fill }: IconProps) => JSX.Element;
985
+
986
+ declare const SaleTag: ({ height, width, fill }: IconProps) => JSX.Element;
987
+
988
+ declare const FreeReturns: ({ height, width, fill }: IconProps) => JSX.Element;
989
+
990
+ declare const MyAccount_FreeShipping: typeof FreeShipping;
991
+ declare const MyAccount_PersonalStylist: typeof PersonalStylist;
992
+ declare const MyAccount_Community: typeof Community;
993
+ declare const MyAccount_VIP: typeof VIP;
994
+ declare const MyAccount_DealsOffers: typeof DealsOffers;
995
+ declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
996
+ declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
997
+ declare const MyAccount_Profile: typeof Profile;
998
+ declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
999
+ declare const MyAccount_PriorityShipping: typeof PriorityShipping;
1000
+ declare const MyAccount_Guard: typeof Guard;
1001
+ declare const MyAccount_BirthdayGifts: typeof BirthdayGifts;
1002
+ declare const MyAccount_SaleTag: typeof SaleTag;
1003
+ declare const MyAccount_FreeReturns: typeof FreeReturns;
1004
+ declare namespace MyAccount {
1005
+ export {
1006
+ MyAccount_FreeShipping as FreeShipping,
1007
+ MyAccount_PersonalStylist as PersonalStylist,
1008
+ MyAccount_Community as Community,
1009
+ MyAccount_VIP as VIP,
1010
+ MyAccount_DealsOffers as DealsOffers,
1011
+ MyAccount_StyleFashionContent as StyleFashionContent,
1012
+ MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
1013
+ MyAccount_Profile as Profile,
1014
+ MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
1015
+ MyAccount_PriorityShipping as PriorityShipping,
1016
+ MyAccount_Guard as Guard,
1017
+ MyAccount_BirthdayGifts as BirthdayGifts,
1018
+ MyAccount_SaleTag as SaleTag,
1019
+ MyAccount_FreeReturns as FreeReturns,
431
1020
  };
432
1021
  }
433
1022
 
@@ -445,6 +1034,7 @@ declare const Icon: {
445
1034
  Payment: typeof Payment;
446
1035
  SlideDots: typeof SlideDots;
447
1036
  Emoji: typeof Emoji;
1037
+ MyAccount: typeof MyAccount;
448
1038
  };
449
1039
 
450
1040
  interface CardBodyProps {
@@ -461,7 +1051,7 @@ interface borderProps {
461
1051
  }
462
1052
  interface CardProps {
463
1053
  children: ReactNode;
464
- backgroundColor: string;
1054
+ backgroundColor?: string;
465
1055
  widthAuto?: boolean;
466
1056
  border?: borderProps;
467
1057
  flex?: boolean;
@@ -489,6 +1079,8 @@ declare type CommonProps<T> = {
489
1079
  initialValue?: Value<T>;
490
1080
  placeHolder: string;
491
1081
  testId?: string;
1082
+ required?: string;
1083
+ showRequiredPlaceholder?: boolean;
492
1084
  };
493
1085
  declare type ControlledProps<T> = {
494
1086
  value: Value<T>;
@@ -499,7 +1091,22 @@ declare type UncontrolledProps<T> = {
499
1091
  onChange?: OnChange<T>;
500
1092
  } & CommonProps<T>;
501
1093
  declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
502
- declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, }: SimpleDropdownProps<T>): JSX.Element;
1094
+ declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, required, showRequiredPlaceholder, }: SimpleDropdownProps<T>): JSX.Element;
1095
+
1096
+ interface DialogPositionProps {
1097
+ top: string;
1098
+ right: string;
1099
+ }
1100
+ interface DialogDropdownProps {
1101
+ options: {
1102
+ label: string;
1103
+ value: string;
1104
+ }[];
1105
+ position: DialogPositionProps;
1106
+ style?: React.CSSProperties;
1107
+ className?: string;
1108
+ }
1109
+ declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
503
1110
 
504
1111
  interface SizeSelectorProps {
505
1112
  label: string;
@@ -530,6 +1137,7 @@ interface BaseButtonProps {
530
1137
  inline?: boolean;
531
1138
  uppercase?: boolean;
532
1139
  testId?: string;
1140
+ id?: string;
533
1141
  }
534
1142
 
535
1143
  declare type BaseProps = Pick<BaseButtonProps, 'disabled' | 'type' | 'onClick'>;
@@ -551,8 +1159,21 @@ interface DiscountTagProps {
551
1159
  borderColor?: string;
552
1160
  textColor?: string;
553
1161
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1162
+ style?: React.CSSProperties;
1163
+ }
1164
+ declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
1165
+
1166
+ interface ClubOfferTagProps {
1167
+ clubOfferText?: string;
1168
+ className?: string;
1169
+ disabled?: boolean;
1170
+ backgroundColor?: string;
1171
+ borderColor?: string;
1172
+ textColor?: string;
1173
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1174
+ style?: React.CSSProperties;
554
1175
  }
555
- declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, }: DiscountTagProps) => JSX.Element;
1176
+ declare const ClubOfferTag: ({ clubOfferText, className, disabled, backgroundColor, borderColor, textColor, size, style, }: ClubOfferTagProps) => JSX.Element;
556
1177
 
557
1178
  interface PriceLabelProps {
558
1179
  finalPrice: string | number;
@@ -560,9 +1181,17 @@ interface PriceLabelProps {
560
1181
  color?: string;
561
1182
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
562
1183
  discount?: DiscountTagProps;
1184
+ clubOffer?: ClubOfferTagProps;
1185
+ finalPriceStyled?: boolean;
1186
+ finalPriceStyle?: React.CSSProperties;
1187
+ originalPriceStyled?: boolean;
1188
+ originalPriceUnderlined?: boolean;
563
1189
  testId?: string;
1190
+ clubStyle?: boolean;
564
1191
  }
565
- declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, size, }: PriceLabelProps) => JSX.Element;
1192
+ declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, clubStyle, }: PriceLabelProps) => JSX.Element;
1193
+
1194
+ declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, clubOffer, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
566
1195
 
567
1196
  interface ColorPickerProps {
568
1197
  options: ColorPickerOption[];
@@ -584,22 +1213,29 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
584
1213
  interface ProductGalleryProps {
585
1214
  images: ImageType[];
586
1215
  selectedValue?: ImageType;
587
- DiscountTagElement?: JSX.Element;
588
- BestSellerTagElement?: JSX.Element;
1216
+ topTag?: JSX.Element;
1217
+ bottomTag?: JSX.Element;
589
1218
  productImageDataTestId?: string;
590
1219
  previewListDataTestId?: string;
591
1220
  thumbnailPosition?: 'vertical' | 'horizontal';
1221
+ borderRadiusVariant?: boolean;
1222
+ previewImgBorderColor?: string;
1223
+ ctaText?: string;
1224
+ ctaAction?: () => void;
1225
+ hideCTA?: boolean;
592
1226
  }
593
- declare const ProductGallery: ({ images, selectedValue, DiscountTagElement, BestSellerTagElement, productImageDataTestId, previewListDataTestId, thumbnailPosition, }: ProductGalleryProps) => JSX.Element;
1227
+ declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, hideCTA, }: ProductGalleryProps) => JSX.Element;
594
1228
 
595
1229
  interface RatingProps {
596
1230
  rating: number;
597
1231
  size?: ComponentSize;
598
- reviews: number;
599
- reviewsText: string;
1232
+ reviews?: number;
1233
+ reviewsText?: string;
600
1234
  wrapWithParenthesis?: boolean;
1235
+ underline?: boolean;
1236
+ reviewsContainerId?: string;
601
1237
  }
602
- declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
1238
+ declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
603
1239
 
604
1240
  interface FitPredictorProps {
605
1241
  onClick: () => void;
@@ -611,8 +1247,23 @@ interface ProgressBarProps {
611
1247
  fillColor: string;
612
1248
  widthAuto?: boolean;
613
1249
  percent?: number;
1250
+ height?: string;
1251
+ backgroundColor?: string;
1252
+ borderRadius?: string;
1253
+ }
1254
+ declare const ProgressBar: ({ description, fillColor, widthAuto, percent, height, backgroundColor, borderRadius, }: ProgressBarProps) => JSX.Element;
1255
+
1256
+ interface MotivatorProgressBarProps {
1257
+ fillColor?: string;
1258
+ currentAmount?: number;
1259
+ backgroundColor?: string;
1260
+ unfilledColor?: string;
1261
+ borderRadius?: string;
1262
+ rewardUnlockedMessage: string;
1263
+ endingValue?: number;
1264
+ currencyCode?: string;
614
1265
  }
615
- declare const ProgressBar: ({ description, fillColor, widthAuto, percent, }: ProgressBarProps) => JSX.Element;
1266
+ declare const MotivatorProgressBar: ({ fillColor, backgroundColor, unfilledColor, currencyCode, endingValue, currentAmount, rewardUnlockedMessage, }: MotivatorProgressBarProps) => JSX.Element;
616
1267
 
617
1268
  interface IconButtonProps {
618
1269
  children: React.ReactNode;
@@ -626,31 +1277,45 @@ interface TooltipProps {
626
1277
  children: React.ReactNode;
627
1278
  position: ComponentPosition;
628
1279
  align?: 'start' | 'center' | 'end';
629
- text: string;
1280
+ content?: {
1281
+ text: string;
1282
+ color?: string;
1283
+ };
1284
+ backgroundColor?: string;
1285
+ maxWidth?: string;
630
1286
  header?: {
631
1287
  title: string;
632
- Icon: IconType;
1288
+ titleColor?: string;
1289
+ Icon?: IconType;
1290
+ iconFill?: string;
633
1291
  };
634
1292
  onClick?: () => void;
635
1293
  }
636
- declare const Tooltip: ({ children, position, text, align, onClick, header, }: TooltipProps) => JSX.Element;
1294
+ declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
637
1295
 
638
1296
  interface AccordionProps {
639
1297
  defaultOpen?: boolean;
1298
+ forceOpenHandler?: boolean;
1299
+ forceOpenValue?: boolean;
1300
+ titleColor?: string;
640
1301
  variant: 'simple' | 'box';
641
1302
  header: ReactNode;
1303
+ headerOnOpen?: ReactNode;
642
1304
  content: ReactNode;
643
1305
  disabled?: boolean;
1306
+ innerHTML?: boolean;
644
1307
  openIcon: IconType;
645
1308
  closeIcon: IconType;
1309
+ onClick?: (index: number) => void;
646
1310
  }
647
- declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
1311
+ declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
648
1312
 
649
1313
  declare const ThemeProvider: FC<{
650
1314
  theme: Theme;
651
1315
  children: ReactNode;
652
1316
  }>;
653
1317
  declare const useTheme: () => Theme;
1318
+
654
1319
  declare const ThemeVariables: FC<{
655
1320
  theme: Theme;
656
1321
  Container?: ElementType;
@@ -680,6 +1345,7 @@ declare type Theme = {
680
1345
  };
681
1346
  declare type ThemeBreakpoints = {
682
1347
  mobile: number;
1348
+ tablet?: number;
683
1349
  desktop: number;
684
1350
  };
685
1351
  declare type ThemeBasicPallete = {
@@ -687,7 +1353,7 @@ declare type ThemeBasicPallete = {
687
1353
  contrast: string;
688
1354
  };
689
1355
  declare type ThemeColorPallete = ThemeBasicPallete & {
690
- soft: ThemeBasicPallete;
1356
+ soft?: ThemeBasicPallete;
691
1357
  };
692
1358
  declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
693
1359
  20: ThemeColorPallete;
@@ -699,6 +1365,7 @@ declare type ThemeColors = {
699
1365
  pallete: {
700
1366
  primary: ThemeColorPrimaryPallete;
701
1367
  secondary: ThemeColorPrimaryPallete;
1368
+ tertiary?: ThemeColorPrimaryPallete;
702
1369
  } & Partial<Record<string, ThemeColorPallete>>;
703
1370
  shades: {
704
1371
  black: ThemeBasicPallete;
@@ -708,6 +1375,7 @@ declare type ThemeColors = {
708
1375
  50: ThemeBasicPallete;
709
1376
  100: ThemeBasicPallete;
710
1377
  150: ThemeBasicPallete;
1378
+ 175: ThemeBasicPallete;
711
1379
  200: ThemeBasicPallete;
712
1380
  250: ThemeBasicPallete;
713
1381
  300: ThemeBasicPallete;
@@ -736,6 +1404,8 @@ declare type ThemeColors = {
736
1404
  color: string;
737
1405
  disabled: string;
738
1406
  highlight: string;
1407
+ shadow?: string;
1408
+ isChecked?: string;
739
1409
  };
740
1410
  background: {
741
1411
  color: string;
@@ -751,6 +1421,10 @@ declare type ThemeComponent = {
751
1421
  border: string;
752
1422
  borderRadius: string;
753
1423
  fontWeight: number;
1424
+ lineHeight: string;
1425
+ letterSpacing: string;
1426
+ minWidth: string;
1427
+ minHeight: string;
754
1428
  size: {
755
1429
  small: {
756
1430
  fontSize: string;
@@ -797,6 +1471,12 @@ declare type ThemeComponent = {
797
1471
  lineHeight: string;
798
1472
  border: string;
799
1473
  boxShadow: string;
1474
+ errorBorder: string;
1475
+ };
1476
+ inputPlaceholder: {
1477
+ fontSize: string;
1478
+ padding: string;
1479
+ focusBorder: string;
800
1480
  };
801
1481
  inputCustom: {
802
1482
  button: {
@@ -829,6 +1509,12 @@ declare type ThemeComponent = {
829
1509
  border: string;
830
1510
  color: string;
831
1511
  };
1512
+ noStock: {
1513
+ fontWeight: number;
1514
+ background: string;
1515
+ border: string;
1516
+ color: string;
1517
+ };
832
1518
  disabled: {
833
1519
  border: string;
834
1520
  };
@@ -882,10 +1568,13 @@ declare type ThemeComponent = {
882
1568
  };
883
1569
  card: {
884
1570
  borderRadius: string;
1571
+ backgroundColor: string;
885
1572
  };
886
1573
  radio: {
887
1574
  borderColor: string;
888
1575
  background: string;
1576
+ textSize: string;
1577
+ lineHeight: string;
889
1578
  size: {
890
1579
  small: {
891
1580
  borderWidth: string;
@@ -914,6 +1603,7 @@ declare type ThemeComponent = {
914
1603
  };
915
1604
  };
916
1605
  label: {
1606
+ color: string;
917
1607
  fontSize: {
918
1608
  small: string;
919
1609
  medium: string;
@@ -1022,11 +1712,13 @@ declare type ThemeComponent = {
1022
1712
  fontWeight: number;
1023
1713
  lineHeight: string;
1024
1714
  padding: string;
1715
+ optionPadding: string;
1025
1716
  color: string;
1026
1717
  fill: string;
1027
1718
  options: {
1028
1719
  borderColor: string;
1029
1720
  color: string;
1721
+ borderRadius: string;
1030
1722
  };
1031
1723
  };
1032
1724
  modal: {
@@ -1040,6 +1732,252 @@ declare type ThemeComponent = {
1040
1732
  selectedContrast: string;
1041
1733
  tagColor: string;
1042
1734
  };
1735
+ slideNavigation: {
1736
+ slideDots: {
1737
+ unselectedDotColor: string;
1738
+ selectedDotColor: string;
1739
+ dotsOpacity: number;
1740
+ };
1741
+ };
1742
+ beforeAfter: {
1743
+ size: {
1744
+ small: {
1745
+ image: {
1746
+ minHeight: string;
1747
+ minWidth: string;
1748
+ mobile: {
1749
+ minHeight: string;
1750
+ minWidth: string;
1751
+ };
1752
+ };
1753
+ imageContainer: {
1754
+ maxWidth: string;
1755
+ padding: string;
1756
+ mobile: {
1757
+ maxWidth: string;
1758
+ };
1759
+ };
1760
+ userInfoText: {
1761
+ fontSize: string;
1762
+ mobile: {
1763
+ fontSize: string;
1764
+ };
1765
+ };
1766
+ };
1767
+ medium: {
1768
+ image: {
1769
+ minHeight: string;
1770
+ minWidth: string;
1771
+ mobile: {
1772
+ minHeight: string;
1773
+ minWidth: string;
1774
+ };
1775
+ };
1776
+ imageContainer: {
1777
+ maxWidth: string;
1778
+ padding: string;
1779
+ mobile: {
1780
+ maxWidth: string;
1781
+ };
1782
+ };
1783
+ userInfoText: {
1784
+ fontSize: string;
1785
+ mobile: {
1786
+ fontSize: string;
1787
+ };
1788
+ };
1789
+ };
1790
+ large: {
1791
+ image: {
1792
+ minHeight: string;
1793
+ minWidth: string;
1794
+ mobile: {
1795
+ minHeight: string;
1796
+ minWidth: string;
1797
+ };
1798
+ };
1799
+ imageContainer: {
1800
+ maxWidth: string;
1801
+ padding: string;
1802
+ mobile: {
1803
+ maxWidth: string;
1804
+ };
1805
+ };
1806
+ userInfoText: {
1807
+ fontSize: string;
1808
+ mobile: {
1809
+ fontSize: string;
1810
+ };
1811
+ };
1812
+ };
1813
+ };
1814
+ };
1815
+ total: {
1816
+ basicTotal: {
1817
+ amount: {
1818
+ color: string;
1819
+ fontSize: string;
1820
+ };
1821
+ currency: {
1822
+ color: string;
1823
+ fontSize: string;
1824
+ lineHeight: string;
1825
+ alignSelf?: string;
1826
+ };
1827
+ savings: {
1828
+ amountFontWeight: number;
1829
+ color?: string;
1830
+ };
1831
+ };
1832
+ };
1833
+ subTotal: {
1834
+ basicSubTotal: {
1835
+ family: string;
1836
+ size: string;
1837
+ weight: number;
1838
+ lineHeight: string;
1839
+ color: string;
1840
+ };
1841
+ };
1842
+ pricing: {
1843
+ priceLabel: {
1844
+ price: {
1845
+ size: ComponentSize$1.Small | ComponentSize$1.Medium | ComponentSize$1.Large;
1846
+ originalPriceColor: string;
1847
+ actualPriceColor: string;
1848
+ };
1849
+ };
1850
+ };
1851
+ orderSummary: {
1852
+ headingTextAlign: string;
1853
+ backgroundColor?: string;
1854
+ padding?: string;
1855
+ borderRadius?: string;
1856
+ maxWidth?: string;
1857
+ onMobile: {
1858
+ maxWidth?: string;
1859
+ padding?: string;
1860
+ backgroundColor?: string;
1861
+ };
1862
+ };
1863
+ expressCheckout: {
1864
+ button: {
1865
+ borderRadius: string;
1866
+ };
1867
+ };
1868
+ copyrightText: {
1869
+ fontSize: string;
1870
+ fontWeight: number;
1871
+ lineHeight: string;
1872
+ color: string;
1873
+ };
1874
+ thankyouFooterText: {
1875
+ fontSize: string;
1876
+ fontWeight: string;
1877
+ lineHeight: string;
1878
+ };
1879
+ textButton: {
1880
+ fontWeight: number;
1881
+ lineHeight: string;
1882
+ };
1883
+ deliveryDetails: {
1884
+ title: {
1885
+ fontSize: string;
1886
+ lineHeight: string;
1887
+ fontWeight: number;
1888
+ };
1889
+ note: {
1890
+ accentColor: string;
1891
+ color: string;
1892
+ backgroundColor: string;
1893
+ };
1894
+ sectionTitle: {
1895
+ fontSize: string;
1896
+ lineHeight: string;
1897
+ fontWeight: number;
1898
+ };
1899
+ sectionDetails: {
1900
+ fontSize: string;
1901
+ lineHeight: string;
1902
+ fontWeight: number;
1903
+ marginLeft?: string;
1904
+ };
1905
+ };
1906
+ text: {
1907
+ orderHeader: {
1908
+ color: string;
1909
+ };
1910
+ };
1911
+ orderBar: {
1912
+ backgroundColor: string;
1913
+ fontColor: string;
1914
+ };
1915
+ banner: {
1916
+ outlineColor: string;
1917
+ filledColor: string;
1918
+ fontColor: string;
1919
+ };
1920
+ offerTitleText: {
1921
+ size: string;
1922
+ weight: number;
1923
+ lineHeight: string;
1924
+ };
1925
+ linePrice: {
1926
+ color: string;
1927
+ badge: {
1928
+ color: string;
1929
+ borderRadius: string;
1930
+ };
1931
+ };
1932
+ divider: {
1933
+ color: string;
1934
+ };
1935
+ checkout: {
1936
+ paymentInformation: {
1937
+ borderRadius?: string;
1938
+ };
1939
+ creditCardSection: {
1940
+ borderRadius?: string;
1941
+ };
1942
+ };
1943
+ upsell: {
1944
+ banner: {
1945
+ outlined: {
1946
+ color?: string;
1947
+ };
1948
+ };
1949
+ price: {
1950
+ colors: {
1951
+ regular: string;
1952
+ deal: string;
1953
+ each: string;
1954
+ badgeBG: string;
1955
+ badgeColor: string;
1956
+ };
1957
+ };
1958
+ hurryTimeCard: {
1959
+ backgroundColor: string;
1960
+ };
1961
+ guaranteedFit?: {
1962
+ backgroundColor: string;
1963
+ };
1964
+ };
1965
+ thankyou: {
1966
+ orderBanner?: {
1967
+ text: {
1968
+ left: string;
1969
+ };
1970
+ };
1971
+ emailSection: {
1972
+ backgroundColor?: string;
1973
+ };
1974
+ socialIcon: {
1975
+ color?: string;
1976
+ };
1977
+ orderId: {
1978
+ color: string;
1979
+ };
1980
+ };
1043
1981
  };
1044
1982
  declare type ThemeTypography = {
1045
1983
  config: {
@@ -1066,6 +2004,26 @@ declare type ThemeAssets = {
1066
2004
  images: {
1067
2005
  favicon: string;
1068
2006
  logo: string;
2007
+ logoSize?: {
2008
+ width: string;
2009
+ height: string;
2010
+ };
2011
+ logoMobile?: string;
2012
+ checkoutLogo?: {
2013
+ url: string;
2014
+ width: string;
2015
+ height: string;
2016
+ };
2017
+ upsellLogo?: {
2018
+ url: string;
2019
+ width: string;
2020
+ height: string;
2021
+ };
2022
+ tyLogo?: {
2023
+ url: string;
2024
+ width: string;
2025
+ height: string;
2026
+ };
1069
2027
  };
1070
2028
  [key: string]: any;
1071
2029
  };
@@ -1076,11 +2034,25 @@ interface CheckboxProps {
1076
2034
  size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1077
2035
  text: string;
1078
2036
  checked?: boolean;
2037
+ blockUncheck?: boolean;
1079
2038
  id: string;
1080
2039
  backgroundColor?: string;
1081
- variant: 'primary' | 'secondary';
2040
+ variant: 'primary' | 'secondary' | 'color';
1082
2041
  }
1083
- declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, }: CheckboxProps) => JSX.Element;
2042
+ declare const Checkbox: React.FC<CheckboxProps>;
2043
+
2044
+ interface RadioProps$1 {
2045
+ name: string;
2046
+ value: string;
2047
+ id: string;
2048
+ label: string | ReactFragment;
2049
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
2050
+ checked?: boolean;
2051
+ disabled?: boolean;
2052
+ onChange: (option: RadioGroupOption) => void;
2053
+ style?: React.CSSProperties;
2054
+ }
2055
+ declare const RadioPrimary: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps$1) => JSX.Element;
1084
2056
 
1085
2057
  interface RadioGroupInputProps {
1086
2058
  name: string;
@@ -1089,8 +2061,20 @@ interface RadioGroupInputProps {
1089
2061
  onChange: (value: RadioGroupOption) => void;
1090
2062
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1091
2063
  disabled?: boolean;
2064
+ style?: React.CSSProperties;
1092
2065
  }
1093
- declare const RadioGroupInput: ({ name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
2066
+ declare const RadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
2067
+
2068
+ interface ClubRadioGroupInputProps {
2069
+ name: string;
2070
+ options?: RadioGroupOption[];
2071
+ value?: RadioGroupOption;
2072
+ onChange: (value: RadioGroupOption) => void;
2073
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
2074
+ disabled?: boolean;
2075
+ style?: React.CSSProperties;
2076
+ }
2077
+ declare const ClubRadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: ClubRadioGroupInputProps) => JSX.Element;
1094
2078
 
1095
2079
  interface SimpleProps {
1096
2080
  title: string;
@@ -1125,16 +2109,18 @@ interface CategoryTagProps {
1125
2109
  text: string;
1126
2110
  size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1127
2111
  className?: string;
2112
+ styledBorder?: boolean;
1128
2113
  }
1129
- declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
2114
+ declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1130
2115
 
1131
2116
  interface SeasonOfferTagProps {
1132
2117
  text: string;
1133
2118
  backgroundColor?: string;
1134
2119
  size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1135
2120
  className?: string;
2121
+ styledBorder?: boolean;
1136
2122
  }
1137
- declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
2123
+ declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1138
2124
 
1139
2125
  interface TimeProps {
1140
2126
  hours: number;
@@ -1147,7 +2133,14 @@ interface TimerProps extends TimeProps {
1147
2133
  }
1148
2134
  declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
1149
2135
 
1150
- interface BaseInputCommmonProps {
2136
+ interface BaseInputCommonProps {
2137
+ id?: string;
2138
+ value?: string;
2139
+ innerRef?: React.Ref<HTMLInputElement>;
2140
+ onBlur?: () => void;
2141
+ onFocus?: () => void;
2142
+ onChange?: (value: string, event: any) => void;
2143
+ hideClear?: boolean;
1151
2144
  defaultValue?: string;
1152
2145
  maxLength?: number;
1153
2146
  placeholder?: string;
@@ -1157,16 +2150,14 @@ interface BaseInputCommmonProps {
1157
2150
  required?: string;
1158
2151
  children?: React.ReactNode;
1159
2152
  size?: 'regular' | 'small';
2153
+ inlinePlaceholder?: boolean;
2154
+ hasError?: boolean;
2155
+ inputType?: 'text' | 'email' | 'password' | 'url';
2156
+ name?: string;
2157
+ autoFocus?: boolean;
2158
+ requiredPlaceholder?: string;
1160
2159
  }
1161
- interface BaseInputControlled extends BaseInputCommmonProps {
1162
- value: string;
1163
- onChange: (value: string) => void;
1164
- }
1165
- interface BaseInputUncontrolled extends BaseInputCommmonProps {
1166
- value?: never;
1167
- onChange?: (value: string) => void;
1168
- }
1169
- declare type BaseInputProps = BaseInputControlled | BaseInputUncontrolled;
2160
+ declare type BaseInputProps = BaseInputCommonProps;
1170
2161
 
1171
2162
  declare type BasePlusIconProps = BaseInputProps & {
1172
2163
  Icon: IconType;
@@ -1205,7 +2196,7 @@ declare type CustomProps = BaseInputProps & {
1205
2196
  };
1206
2197
 
1207
2198
  declare const Input: {
1208
- Simple: ({ value, onChange, defaultValue, label, children, required, onValidation, size, ...rest }: BaseInputProps) => JSX.Element;
2199
+ Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, requiredPlaceholder, ...rest }: BaseInputCommonProps) => JSX.Element;
1209
2200
  Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
1210
2201
  SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
1211
2202
  SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
@@ -1265,7 +2256,7 @@ declare type detail = {
1265
2256
  details: string;
1266
2257
  };
1267
2258
  interface orderUpdate extends detail {
1268
- keepMeUpdated: {
2259
+ keepMeUpdated?: {
1269
2260
  title: string;
1270
2261
  onClick: () => void;
1271
2262
  };
@@ -1278,9 +2269,9 @@ interface DeliveryDetailsProps {
1278
2269
  note?: {
1279
2270
  importantNoteText: string;
1280
2271
  text: string;
1281
- accentColor: string;
1282
- backgroundColor: string;
1283
- color: string;
2272
+ accentColor?: string;
2273
+ backgroundColor?: string;
2274
+ color?: string;
1284
2275
  };
1285
2276
  }
1286
2277
  declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
@@ -1288,26 +2279,37 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
1288
2279
  interface ScrollToTopProps {
1289
2280
  scrollToTopText: string;
1290
2281
  onClick: () => void;
2282
+ fill?: string;
1291
2283
  }
1292
- declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
2284
+ declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
1293
2285
 
1294
2286
  interface OrderBarProps {
1295
2287
  message: string;
2288
+ color?: string;
2289
+ }
2290
+ declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
2291
+
2292
+ interface TableProps$1 {
2293
+ headers: string[];
2294
+ data: string[][];
2295
+ className?: string;
1296
2296
  }
1297
- declare const OrderBar: ({ message }: OrderBarProps) => JSX.Element;
2297
+ declare const SizeTable: ({ headers, data, className }: TableProps$1) => JSX.Element;
1298
2298
 
1299
2299
  interface TableProps {
1300
2300
  headers: string[];
1301
2301
  data: string[][];
2302
+ newSizeTableCss?: boolean;
1302
2303
  }
1303
- declare const SizeTable: ({ headers, data }: TableProps) => JSX.Element;
2304
+ declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
1304
2305
 
1305
2306
  interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
1306
2307
  color?: string;
1307
2308
  }
1308
2309
  interface ProductOrderItemProps {
1309
- title: string;
2310
+ title: React.ReactNode | string;
1310
2311
  subtitle: string;
2312
+ className?: string;
1311
2313
  image: {
1312
2314
  src: string;
1313
2315
  alt: string;
@@ -1318,10 +2320,12 @@ interface ProductOrderItemProps {
1318
2320
  text: string;
1319
2321
  backgroundColor: string;
1320
2322
  };
2323
+ finalPriceStyle?: React.CSSProperties;
1321
2324
  }
1322
- declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
2325
+ declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
1323
2326
 
1324
- interface ReviewProps {
2327
+ interface ReviewProps$1 {
2328
+ reviewId: string;
1325
2329
  reviewerName: string;
1326
2330
  date: Date;
1327
2331
  rating: number;
@@ -1331,12 +2335,17 @@ interface ReviewProps {
1331
2335
  };
1332
2336
  title: string;
1333
2337
  description: string;
1334
- image: {
2338
+ images?: {
1335
2339
  src: string;
1336
2340
  alt: string;
1337
- };
2341
+ }[];
2342
+ reviewVariant?: string;
2343
+ onClickImage?: (image: string) => void;
2344
+ helpfulActionText?: string;
2345
+ helpfulAction?: (id: string) => void;
2346
+ helpfulCount?: number;
1338
2347
  }
1339
- declare const Review: ({ reviewerName, date, rating, stars, title, description, image }: ReviewProps) => JSX.Element;
2348
+ declare const Review$1: ({ reviewId, reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, helpfulActionText, helpfulAction, helpfulCount, }: ReviewProps$1) => JSX.Element;
1340
2349
 
1341
2350
  interface SliderNavigationProps {
1342
2351
  children: JSX.Element | JSX.Element[] | StyledComponent<any>;
@@ -1372,8 +2381,11 @@ interface ImageStyleProps {
1372
2381
  interface ImageProps extends ImageStyleProps {
1373
2382
  src: string;
1374
2383
  alt: string;
2384
+ srcSet?: string;
2385
+ sizes?: string;
2386
+ loading?: 'lazy' | 'eager';
1375
2387
  }
1376
- declare const Image: ({ src, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
2388
+ declare const Image: ({ src, srcSet, sizes, loading, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
1377
2389
 
1378
2390
  interface AmazonPaypalBtnProps {
1379
2391
  onClick: () => void;
@@ -1418,7 +2430,35 @@ interface ProductItemProps {
1418
2430
 
1419
2431
  interface ProductItemSmallMobileProps extends ProductItemProps {
1420
2432
  size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
2433
+ imageHover?: ImageProps;
2434
+ topTag?: JSX.Element;
2435
+ bottomTag?: JSX.Element;
1421
2436
  onClick?: () => void;
2437
+ priceDisplayType?: 'default' | 'styled';
2438
+ priceAtBottom?: boolean;
2439
+ priceLoading?: boolean;
2440
+ noFollow?: boolean;
2441
+ colorPicker?: {
2442
+ display: boolean;
2443
+ position: string;
2444
+ component: JSX.Element | JSX.Element[] | undefined;
2445
+ };
2446
+ isBNPL?: {
2447
+ displayBNPL: boolean;
2448
+ installments: number;
2449
+ installmentPrice: string;
2450
+ iconFolder?: string;
2451
+ iconName: string;
2452
+ showLogo?: boolean;
2453
+ iconColor: string;
2454
+ fontSize: string;
2455
+ };
2456
+ hasStrength?: {
2457
+ strength: number;
2458
+ description: string;
2459
+ };
2460
+ clubPrice?: string;
2461
+ showClubPriceLabel?: boolean;
1422
2462
  }
1423
2463
 
1424
2464
  declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
@@ -1427,7 +2467,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
1427
2467
  };
1428
2468
 
1429
2469
  declare const Collection: {
1430
- ProductItemMobile: ({ title, image, price, rating, size, tags, alignName, url, className, onClick, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
2470
+ ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, noFollow, colorPicker, isBNPL, hasStrength, clubPrice, showClubPriceLabel, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1431
2471
  withProductGrid: typeof withProductGrid;
1432
2472
  };
1433
2473
 
@@ -1488,49 +2528,56 @@ interface PaginationProps {
1488
2528
  underlineActive?: boolean;
1489
2529
  boldActive?: boolean;
1490
2530
  disabled?: boolean;
2531
+ showReducedPages?: boolean;
1491
2532
  }
1492
- declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
2533
+ declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
1493
2534
 
1494
- declare const Text: FC<TextProps>;
2535
+ declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
2536
+
2537
+ declare const Text: ({ variant, children, testId, asSpan, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
1495
2538
  declare type TextHeroProps = {
1496
2539
  variant: 'hero1' | 'hero2' | 'hero3';
1497
2540
  weight?: 'heavy' | 'bold' | 'demi';
1498
- size?: 'regular';
2541
+ size?: 'regular' | 'xsmall';
1499
2542
  underline?: never;
1500
2543
  disabled?: never;
1501
2544
  wide?: never;
1502
2545
  original?: never;
1503
2546
  allCaps?: never;
2547
+ href: never;
1504
2548
  };
1505
2549
  declare type TextDisplayProps = {
1506
2550
  variant: 'display1' | 'display2';
1507
2551
  weight?: 'bold' | 'demi';
1508
- size?: 'regular';
2552
+ size?: 'regular' | 'xsmall';
1509
2553
  underline?: never;
1510
2554
  disabled?: never;
1511
2555
  wide?: never;
1512
2556
  original?: never;
1513
2557
  allCaps?: never;
2558
+ href: never;
1514
2559
  };
1515
2560
  declare type TextHeadingProps = {
1516
- variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
2561
+ variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6' | 'heading7' | 'heading8';
1517
2562
  weight?: 'bold' | 'demi' | 'regular';
1518
- size?: 'regular';
2563
+ size?: 'regular' | 'xsmall';
1519
2564
  underline?: never;
1520
2565
  disabled?: never;
1521
2566
  wide?: never;
1522
2567
  original?: never;
1523
2568
  allCaps?: never;
2569
+ href?: never;
1524
2570
  };
1525
2571
  declare type TextBodyProps = {
1526
2572
  variant: 'body';
1527
- size?: 'regular' | 'small';
2573
+ size?: 'regular' | 'small' | 'xsmall';
1528
2574
  weight?: 'bold' | 'demi' | 'regular';
1529
2575
  underline?: never;
1530
2576
  disabled?: never;
1531
2577
  wide?: never;
1532
2578
  original?: never;
1533
2579
  allCaps?: never;
2580
+ href?: never;
1534
2581
  };
1535
2582
  declare type TextButtonProps = {
1536
2583
  variant: 'button';
@@ -1541,6 +2588,7 @@ declare type TextButtonProps = {
1541
2588
  wide?: boolean;
1542
2589
  original?: never;
1543
2590
  allCaps?: never;
2591
+ href?: never;
1544
2592
  };
1545
2593
  declare type TextPricingProps = {
1546
2594
  variant: 'pricing';
@@ -1551,6 +2599,7 @@ declare type TextPricingProps = {
1551
2599
  wide?: never;
1552
2600
  original?: boolean;
1553
2601
  allCaps?: never;
2602
+ href?: never;
1554
2603
  };
1555
2604
  declare type TextLinkProps = {
1556
2605
  variant: 'link';
@@ -1561,9 +2610,11 @@ declare type TextLinkProps = {
1561
2610
  wide?: never;
1562
2611
  original?: never;
1563
2612
  allCaps?: never;
1564
- } & AnchorHTMLAttributes<'a'>;
2613
+ href?: string;
2614
+ };
1565
2615
  declare type TextLabelProps = {
1566
2616
  variant: 'label';
2617
+ color?: string;
1567
2618
  weight?: 'regular' | 'demi';
1568
2619
  size?: 'regular' | 'small';
1569
2620
  underline?: never;
@@ -1571,6 +2622,7 @@ declare type TextLabelProps = {
1571
2622
  wide?: never;
1572
2623
  original?: never;
1573
2624
  allCaps?: never;
2625
+ href?: never;
1574
2626
  } & LabelHTMLAttributes<'label'>;
1575
2627
  declare type TextTagProps = {
1576
2628
  variant: 'tag';
@@ -1581,11 +2633,15 @@ declare type TextTagProps = {
1581
2633
  wide?: never;
1582
2634
  original?: never;
1583
2635
  allCaps?: boolean;
2636
+ href?: never;
1584
2637
  };
1585
- declare type TextProps = AriaAttributes & {
2638
+ declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
2639
+ children: ReactNode;
1586
2640
  style?: CSSProperties;
1587
2641
  className?: string;
1588
2642
  testId?: string;
2643
+ asSpan?: boolean;
2644
+ color?: string;
1589
2645
  } & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
1590
2646
 
1591
2647
  interface SearchBarProps {
@@ -1598,34 +2654,43 @@ interface SearchBarProps {
1598
2654
  allResults?: number;
1599
2655
  initialTerm?: string;
1600
2656
  shouldClear?: boolean;
2657
+ isBlogSearchBar?: boolean;
2658
+ ariaLabel?: string;
2659
+ placeholder?: string;
2660
+ id?: string;
2661
+ autoComplete?: string;
1601
2662
  }
1602
- declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, }: SearchBarProps) => JSX.Element;
2663
+ declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
1603
2664
 
1604
- interface ProductGalleryMobileProps {
2665
+ interface ProductGalleryMobileProps$1 {
1605
2666
  images: ImageType[];
1606
- selectedValue?: ImageType;
1607
- DiscountTagElement?: JSX.Element;
1608
- BestSellerTagElement?: JSX.Element;
2667
+ customClick?: boolean;
2668
+ topTag?: JSX.Element;
2669
+ bottomTag?: JSX.Element;
1609
2670
  productImageDataTestId?: string;
1610
- slideDotsDataTestId?: string;
2671
+ borderRadiusVariant?: boolean;
2672
+ selectedValue?: ImageType;
1611
2673
  }
1612
- declare const ProductGalleryMobile: ({ images, selectedValue, DiscountTagElement, BestSellerTagElement, productImageDataTestId, slideDotsDataTestId, }: ProductGalleryMobileProps) => JSX.Element;
2674
+ declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps$1) => JSX.Element;
1613
2675
 
1614
2676
  interface RadioProps {
1615
2677
  name: string;
1616
2678
  value: string;
1617
2679
  id: string;
1618
- label: string;
2680
+ label: string | ReactFragment;
1619
2681
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1620
2682
  checked?: boolean;
1621
2683
  disabled?: boolean;
1622
2684
  onChange: (option: RadioGroupOption) => void;
2685
+ style?: React.CSSProperties;
1623
2686
  }
1624
- declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
2687
+ declare const RadioInput: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
1625
2688
 
1626
2689
  declare type PortalProps = {
1627
2690
  id: string;
1628
2691
  className?: string;
2692
+ overflow?: boolean;
2693
+ style?: CSSProperties;
1629
2694
  };
1630
2695
  declare const Portal: FC<PortalProps>;
1631
2696
 
@@ -1633,10 +2698,13 @@ declare type ModalProps = {
1633
2698
  id: string;
1634
2699
  dismissable?: boolean;
1635
2700
  maxFullScreen?: boolean;
2701
+ padding?: string;
2702
+ children: React.ReactNode;
1636
2703
  };
1637
2704
  interface ContainerProps {
1638
2705
  maxFullScreen: boolean;
1639
2706
  opened?: boolean;
2707
+ padding?: string;
1640
2708
  }
1641
2709
  declare const Overlay: _emotion_styled.StyledComponent<{
1642
2710
  theme?: _emotion_react.Theme | undefined;
@@ -1699,6 +2767,26 @@ declare type SpacingProps = {
1699
2767
  };
1700
2768
  declare const Spacing: FC<SpacingProps>;
1701
2769
 
2770
+ interface PackOption$1 {
2771
+ label: string;
2772
+ description: string;
2773
+ meta: {
2774
+ discountPercentage: number;
2775
+ originalPrice: number;
2776
+ price: number;
2777
+ quantity: number;
2778
+ icon: string;
2779
+ tag?: string;
2780
+ };
2781
+ }
2782
+ interface PackSelectorProps$1 {
2783
+ packs: PackOption$1[];
2784
+ selectedValue: PackOption$1;
2785
+ onChange: (size: PackOption$1) => void;
2786
+ currencyCode?: string;
2787
+ }
2788
+ declare const PackSelector: FC<PackSelectorProps$1>;
2789
+
1702
2790
  interface PackOption {
1703
2791
  label: string;
1704
2792
  description: string;
@@ -1715,8 +2803,9 @@ interface PackSelectorProps {
1715
2803
  packs: PackOption[];
1716
2804
  selectedValue: PackOption;
1717
2805
  onChange: (size: PackOption) => void;
2806
+ currencyCode?: string;
1718
2807
  }
1719
- declare const PackSelector: FC<PackSelectorProps>;
2808
+ declare const PackSelectorV2: FC<PackSelectorProps>;
1720
2809
 
1721
2810
  interface FiltersProps {
1722
2811
  values: Filter[];
@@ -1741,6 +2830,256 @@ interface SearchNavigationProps {
1741
2830
  }
1742
2831
  declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
1743
2832
 
2833
+ interface TabProps$1 {
2834
+ title: string;
2835
+ content: ReactNode;
2836
+ }
2837
+ interface TabsProps {
2838
+ backgroundColor?: string;
2839
+ initialSelected?: string;
2840
+ tabsMaxWidth?: string;
2841
+ tabs: TabProps$1[];
2842
+ }
2843
+ declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
2844
+
2845
+ interface TabProps {
2846
+ title: string;
2847
+ titleSize?: string;
2848
+ selectedTitleWeight?: number;
2849
+ height?: string;
2850
+ selected?: boolean;
2851
+ color?: string;
2852
+ tabsMaxWidth?: string;
2853
+ onClick: (clickedTab: string) => void;
2854
+ }
2855
+ declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
2856
+
2857
+ interface IconsWithTitleProps {
2858
+ backgroundColor: string;
2859
+ iconColor: string;
2860
+ iconName: string;
2861
+ iconFolder?: string;
2862
+ withWrapper?: boolean;
2863
+ iconTitle: string;
2864
+ iconSizeDesktop?: number;
2865
+ iconSizeMobile?: number;
2866
+ iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
2867
+ iconTitleStyle?: string;
2868
+ iconStyle?: string;
2869
+ isTitleInnerHtml?: boolean;
2870
+ }
2871
+ declare const IconsWithTitle: ({ iconName, iconTitle, iconFolder, withWrapper, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconsWithTitleProps) => JSX.Element | null;
2872
+
2873
+ interface NoteProps {
2874
+ accentColor?: string;
2875
+ color?: string;
2876
+ backgroundColor?: string;
2877
+ importantNoteText: string;
2878
+ text: string;
2879
+ }
2880
+ declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
2881
+
2882
+ interface TextWithImageProps {
2883
+ title: string;
2884
+ text?: string;
2885
+ children?: ReactNode;
2886
+ buttomText: string;
2887
+ backgroundColor: string;
2888
+ imageLeftSide?: boolean;
2889
+ URLLink?: string;
2890
+ onButtonClick?: () => void;
2891
+ isRedirectionURL: boolean;
2892
+ btnBGColor?: string;
2893
+ btnHoverBGColor?: string;
2894
+ imgVideo: imageVideoProps;
2895
+ contentAfterButton?: React.ReactNode;
2896
+ titleStyle?: React.CSSProperties;
2897
+ textStyle?: React.CSSProperties;
2898
+ buttonWideOnMobile?: boolean;
2899
+ }
2900
+ declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
2901
+
2902
+ interface AccordionOptionsProps {
2903
+ titleColor: string;
2904
+ accordions: AccordionProps[];
2905
+ }
2906
+ declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
2907
+
2908
+ interface ShortBannerProps {
2909
+ title: string;
2910
+ bannerText: string;
2911
+ backgroundColor: string;
2912
+ alignCenter?: boolean;
2913
+ widthAuto?: boolean;
2914
+ textColor: string;
2915
+ }
2916
+ declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
2917
+
2918
+ interface BeforeAfterCardProps {
2919
+ name: string;
2920
+ age?: string;
2921
+ months?: string;
2922
+ beforeImage: string;
2923
+ afterImage: string;
2924
+ alignCenter?: boolean;
2925
+ imageBorderRadius?: string;
2926
+ size?: ComponentSize;
2927
+ }
2928
+ declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
2929
+
2930
+ interface ImageCardWithDescriptionProps {
2931
+ image: string;
2932
+ title?: string;
2933
+ description?: string;
2934
+ titlePosition?: 'center' | 'left';
2935
+ }
2936
+ declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
2937
+
2938
+ interface Checkpoint$1 {
2939
+ day: string;
2940
+ date: string;
2941
+ statusMessage: string;
2942
+ }
2943
+ interface TrackingProgressProps {
2944
+ checkPoints: Checkpoint$1[];
2945
+ amountOfCheckPoints: number;
2946
+ }
2947
+ declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
2948
+
2949
+ interface Checkpoint {
2950
+ day: string;
2951
+ date: string;
2952
+ statusMessage: string;
2953
+ }
2954
+ interface TrackingProgressV2Props {
2955
+ checkPoints: Checkpoint[];
2956
+ amountOfCheckPoints: number;
2957
+ warning?: boolean;
2958
+ }
2959
+ declare const TrackingProgressV2: ({ checkPoints, amountOfCheckPoints, warning, }: TrackingProgressV2Props) => JSX.Element;
2960
+
2961
+ interface ReviewsHeaderProps {
2962
+ title?: string;
2963
+ rating: number;
2964
+ reviews: number;
2965
+ reviewsText: string;
2966
+ reviewsSummary: string[];
2967
+ onClickReview: (reveiw: string) => void;
2968
+ }
2969
+ declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
2970
+
2971
+ interface ReviewProps {
2972
+ reviewId: string;
2973
+ reviewerName: string;
2974
+ date: Date;
2975
+ rating: number;
2976
+ stars: {
2977
+ color: string;
2978
+ size: ComponentSize.Medium | ComponentSize.Small;
2979
+ };
2980
+ title: string;
2981
+ description: string;
2982
+ image?: {
2983
+ src: string;
2984
+ alt: string;
2985
+ };
2986
+ modalId: string;
2987
+ maxFullScreen?: boolean;
2988
+ verified?: boolean;
2989
+ productImage?: string;
2990
+ productTitle?: string;
2991
+ productLink?: string;
2992
+ helpfulCount?: number;
2993
+ helpfulAction?: (id: string) => void;
2994
+ notHelpfulCount?: number;
2995
+ notHelpfulAction?: (id: string) => void;
2996
+ }
2997
+ declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps) => JSX.Element;
2998
+
2999
+ interface ProductGalleryMobileProps {
3000
+ images: ImageType[];
3001
+ selectedValue?: ImageType;
3002
+ topTag?: JSX.Element;
3003
+ bottomTag?: JSX.Element;
3004
+ productImageDataTestId?: string;
3005
+ slideDotsDataTestId?: string;
3006
+ borderRadiusVariant?: boolean;
3007
+ }
3008
+ declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
3009
+
3010
+ interface AbsorbencyLevelProps {
3011
+ dropTotal: number;
3012
+ drops: number;
3013
+ absorbencyTitle: string;
3014
+ absorbencyDescription: string;
3015
+ }
3016
+ declare const AbsorbencyLevel: ({ dropTotal, drops, absorbencyTitle, absorbencyDescription, }: AbsorbencyLevelProps) => JSX.Element;
3017
+
3018
+ interface HurryUpProps {
3019
+ hurryUpText: string;
3020
+ backgroundColor?: string;
3021
+ showTimer?: boolean;
3022
+ iconSize?: number;
3023
+ textPosition?: 'left' | 'right' | 'center';
3024
+ }
3025
+ declare const HurryUp: ({ hurryUpText, backgroundColor, iconSize, textPosition, showTimer, }: HurryUpProps) => JSX.Element;
3026
+
3027
+ interface BuyNowPayLaterProps {
3028
+ displayBNPL: boolean;
3029
+ installments: number;
3030
+ installmentPrice: string;
3031
+ iconFolder?: string;
3032
+ iconName: string;
3033
+ showLogo?: boolean;
3034
+ iconColor?: string;
3035
+ fontSize?: string;
3036
+ }
3037
+ declare const BuyNowPayLater: ({ displayBNPL, installments, installmentPrice, iconFolder, iconName, showLogo, iconColor, fontSize, }: BuyNowPayLaterProps) => JSX.Element | null;
3038
+
3039
+ interface StrengthBarProps {
3040
+ barsFilled?: number;
3041
+ supportText?: string;
3042
+ }
3043
+ declare const StrengthBars: ({ barsFilled, supportText }: StrengthBarProps) => JSX.Element;
3044
+
3045
+ interface DropdownProps {
3046
+ options: SelectedOption[];
3047
+ defaultLabel: string;
3048
+ onOptionSelect: (option: string) => void;
3049
+ }
3050
+ interface SelectedOption {
3051
+ size: string;
3052
+ detail: string;
3053
+ }
3054
+ declare const SizeDropdown: React.FC<DropdownProps>;
3055
+
3056
+ interface IAutoshipProps {
3057
+ singlePurchaseLabel: string;
3058
+ subscriptionLabel: string;
3059
+ tooltipContent?: {
3060
+ text: string;
3061
+ color?: string;
3062
+ };
3063
+ tooltipHeader?: {
3064
+ title: string;
3065
+ };
3066
+ pricing?: {
3067
+ originalPrice: number;
3068
+ discountedPrice: number;
3069
+ discountPercentage: number;
3070
+ };
3071
+ frequencyValues?: Array<number>;
3072
+ frequencyUnit?: string;
3073
+ autoshipBenefits: string[];
3074
+ onChange: (values: {
3075
+ subscriptionPeriod: number;
3076
+ autoship: boolean;
3077
+ originalPrice: number;
3078
+ discountedPrice: number;
3079
+ }) => void;
3080
+ }
3081
+ declare const Autoship: ({ tooltipContent, tooltipHeader, pricing, frequencyValues, frequencyUnit, autoshipBenefits, onChange, singlePurchaseLabel, subscriptionLabel, }: IAutoshipProps) => JSX.Element;
3082
+
1744
3083
  declare global {
1745
3084
  interface Events {
1746
3085
  modal: {
@@ -1780,4 +3119,8 @@ declare const formatPrice: (value: number, { locale, currency }?: {
1780
3119
  currency?: string | undefined;
1781
3120
  }) => string;
1782
3121
 
1783
- export { Accordion, AmazonButton, AssetsProvider, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, Color, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitPredictor, Icon, IconButton, IconProps, IconWithOpacityProps, Image, ImageType, Input, InputValidationType, Modal, MultiColorPicker, OfferBanner, OrderBar, Overlay, PackSelector, Pagination, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, ProductGallery, ProductGalleryMobile, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Text, TextButton, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, WithTestId, decimalFormat, formatPrice, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
3122
+ declare const getSrcSet: (imgLink: string, ...breakpoints: number[]) => string;
3123
+
3124
+ declare const mediaQueries: facepaint.DynamicStyleFunction;
3125
+
3126
+ export { AbsorbencyLevel, Accordion, AccordionOptions, AmazonButton, AssetsProvider, Autoship, BeforeAfterCard, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, BuyNowPayLater, CTAProps, _default as Card, CardSectionType, CartProductItem, 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, FitPredictor, HurryUp, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageCardWithDescription, ImageType, Input, InputValidationType, 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$1 as Review, Review as ReviewDetail, ReviewsHeader, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, ShortBanner, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeChartTable, SizeDropdown, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, StrengthBars, Tab, Tabs, Text, TextButton, TextWithImage, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, TrackingProgress, TrackingProgressV2, WithTestId, decimalFormat, formatPrice, getSrcSet, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, mediaQueries, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };