@trafilea/afrodita-components 5.0.0-beta.24 → 5.0.0-beta.240

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,10 +1,14 @@
1
1
  /// <reference types="react" />
2
2
  import { IconProps as IconProps$1 } from 'src/types/types';
3
- import React, { FC, ReactNode, ElementType, CSSProperties, AriaAttributes, AnchorHTMLAttributes, LabelHTMLAttributes, RefObject } from 'react';
3
+ import React, { FC, ReactNode, ElementType, CSSProperties, AriaAttributes, HTMLAttributes, LabelHTMLAttributes, RefObject } from 'react';
4
4
  import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
5
- import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
6
5
  import * as _emotion_styled from '@emotion/styled';
6
+ import { StyledComponent } from '@emotion/styled';
7
+ export { default as styled } from '@emotion/styled';
8
+ import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
7
9
  import * as _emotion_react from '@emotion/react';
10
+ import { ComponentSize as ComponentSize$1 } from 'src/types/enums';
11
+ import facepaint from 'facepaint';
8
12
 
9
13
  declare enum CardSectionType {
10
14
  Header = 0,
@@ -57,11 +61,7 @@ declare type SizeOption = {
57
61
  label: string;
58
62
  description: string;
59
63
  disabled?: boolean;
60
- };
61
- declare type Color = {
62
- primaryColor: string;
63
- secondaryColor?: string;
64
- tertiaryColor?: string;
64
+ noStock?: boolean;
65
65
  };
66
66
  declare type Pattern = {
67
67
  url: string;
@@ -69,8 +69,9 @@ declare type Pattern = {
69
69
  declare type ColorPickerOption = {
70
70
  label: string;
71
71
  description: string;
72
+ noStock?: boolean;
72
73
  meta: {
73
- color?: Color;
74
+ color?: string[];
74
75
  pattern?: Pattern;
75
76
  };
76
77
  };
@@ -101,10 +102,20 @@ declare type Filter = {
101
102
  title: string;
102
103
  columns: number;
103
104
  isOpenByDefault?: boolean;
105
+ isLinkOption?: boolean;
106
+ link?: string;
107
+ color?: string;
108
+ isMultiselect: boolean;
109
+ type?: string;
104
110
  items: Array<{
105
111
  label: string;
106
112
  checked?: boolean;
113
+ isLinkItem?: boolean;
114
+ link?: string;
115
+ blockUncheck?: boolean;
116
+ value?: string;
107
117
  }>;
118
+ showInMobile: boolean;
108
119
  };
109
120
  declare type FilterChange = {
110
121
  sectionIndex: number;
@@ -116,18 +127,84 @@ interface SearchBarOptionItem {
116
127
  price: string;
117
128
  title: string;
118
129
  optionUrl: string;
130
+ }
131
+ interface imageVideoProps {
132
+ imageLink: string;
133
+ isVideo?: {
134
+ videoTitle?: string;
135
+ videoSubtitle?: string;
136
+ textColor?: string;
137
+ videoLink?: string;
138
+ };
139
+ isMobile?: boolean;
119
140
  }
120
141
 
121
142
  declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
122
143
 
123
144
  declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
124
145
 
146
+ declare const Smiling: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
147
+
148
+ declare const BulletOne: ({ height, width, fill, title }: IconProps) => JSX.Element;
149
+
150
+ declare const BulletTwo: ({ height, width, fill, title }: IconProps) => JSX.Element;
151
+
152
+ declare const BulletThree: ({ height, width, fill, title }: IconProps) => JSX.Element;
153
+
154
+ declare const ThumbsUp: ({ height, width, fill, title }: IconProps) => JSX.Element;
155
+
156
+ declare const ThumbsDown: ({ height, width, fill, title }: IconProps) => JSX.Element;
157
+
158
+ declare const Atom: ({ height, width, fill, testId }: IconProps) => JSX.Element;
159
+
160
+ declare const Bubbles: ({ height, width, fill, testId }: IconProps) => JSX.Element;
161
+
162
+ declare const FairAdvantages: ({ height, width, fill, testId }: IconProps) => JSX.Element;
163
+
164
+ declare const MoneyFlow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
165
+
166
+ declare const ClinicallyTested: ({ height, width, fill, testId }: IconProps) => JSX.Element;
167
+
168
+ declare const CrueltyFree: ({ height, width, fill, testId }: IconProps) => JSX.Element;
169
+
170
+ declare const Certified: ({ height, width, fill, testId }: IconProps) => JSX.Element;
171
+
172
+ declare const NewSixtyDaysGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
173
+
125
174
  declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
126
175
  declare const Custom_Frown: typeof Frown;
176
+ declare const Custom_Smiling: typeof Smiling;
177
+ declare const Custom_BulletOne: typeof BulletOne;
178
+ declare const Custom_BulletTwo: typeof BulletTwo;
179
+ declare const Custom_BulletThree: typeof BulletThree;
180
+ declare const Custom_ThumbsUp: typeof ThumbsUp;
181
+ declare const Custom_ThumbsDown: typeof ThumbsDown;
182
+ declare const Custom_Atom: typeof Atom;
183
+ declare const Custom_Bubbles: typeof Bubbles;
184
+ declare const Custom_FairAdvantages: typeof FairAdvantages;
185
+ declare const Custom_MoneyFlow: typeof MoneyFlow;
186
+ declare const Custom_ClinicallyTested: typeof ClinicallyTested;
187
+ declare const Custom_CrueltyFree: typeof CrueltyFree;
188
+ declare const Custom_Certified: typeof Certified;
189
+ declare const Custom_NewSixtyDaysGuarantee: typeof NewSixtyDaysGuarantee;
127
190
  declare namespace Custom {
128
191
  export {
129
192
  Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
130
193
  Custom_Frown as Frown,
194
+ Custom_Smiling as Smiling,
195
+ Custom_BulletOne as BulletOne,
196
+ Custom_BulletTwo as BulletTwo,
197
+ Custom_BulletThree as BulletThree,
198
+ Custom_ThumbsUp as ThumbsUp,
199
+ Custom_ThumbsDown as ThumbsDown,
200
+ Custom_Atom as Atom,
201
+ Custom_Bubbles as Bubbles,
202
+ Custom_FairAdvantages as FairAdvantages,
203
+ Custom_MoneyFlow as MoneyFlow,
204
+ Custom_ClinicallyTested as ClinicallyTested,
205
+ Custom_CrueltyFree as CrueltyFree,
206
+ Custom_Certified as Certified,
207
+ Custom_NewSixtyDaysGuarantee as NewSixtyDaysGuarantee,
131
208
  };
132
209
  }
133
210
 
@@ -148,6 +225,73 @@ declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
148
225
 
149
226
  declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
150
227
 
228
+ declare const Warning: ({ height, width, fill }: IconProps) => JSX.Element;
229
+
230
+ declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
231
+
232
+ declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
233
+
234
+ declare const Add: ({ height, width, fill }: IconProps) => JSX.Element;
235
+
236
+ interface CopyProps extends IconProps {
237
+ stroke?: string;
238
+ }
239
+ declare const Copy: ({ height, width, fill, stroke }: CopyProps) => JSX.Element;
240
+
241
+ declare const CopyOutlined: ({ height, width, fill }: IconProps) => JSX.Element;
242
+
243
+ declare const CheckboxEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
244
+
245
+ declare const CheckboxLight: ({ height, width, fill }: IconProps) => JSX.Element;
246
+
247
+ declare const CheckboxSolid: ({ height, width, fill }: IconProps) => JSX.Element;
248
+
249
+ declare const Like: ({ height, width, fill }: IconProps) => JSX.Element;
250
+
251
+ declare const LikeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
252
+
253
+ declare const NotAllowed: ({ height, width, fill }: IconProps) => JSX.Element;
254
+
255
+ declare const RadioEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
256
+
257
+ declare const RadioFilled: ({ height, width, fill }: IconProps) => JSX.Element;
258
+
259
+ declare const Minus$1: ({ height, width, fill }: IconProps) => JSX.Element;
260
+
261
+ declare const SettingsSolid: ({ height, width, fill }: IconProps) => JSX.Element;
262
+
263
+ declare const Settings: ({ height, width, fill }: IconProps) => JSX.Element;
264
+
265
+ declare const Share: ({ height, width, fill }: IconProps) => JSX.Element;
266
+
267
+ declare const CircleCheck: ({ height, width, fill }: IconProps) => JSX.Element;
268
+
269
+ declare const CircleClear: ({ height, width, fill }: IconProps) => JSX.Element;
270
+
271
+ declare const CircleInfo: ({ height, width, fill }: IconProps) => JSX.Element;
272
+
273
+ declare const CircleMinus: ({ height, width, fill }: IconProps) => JSX.Element;
274
+
275
+ declare const CirclePlus: ({ height, width, fill }: IconProps) => JSX.Element;
276
+
277
+ declare const CircleQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
278
+
279
+ declare const CircleWarning: ({ height, width, fill }: IconProps) => JSX.Element;
280
+
281
+ declare const CircleSolidCheck: ({ height, width, fill }: IconProps) => JSX.Element;
282
+
283
+ declare const CircleSolidClear: ({ height, width, fill }: IconProps) => JSX.Element;
284
+
285
+ declare const CircleSolidMinus: ({ height, width, fill }: IconProps) => JSX.Element;
286
+
287
+ declare const CircleSolidPlus: ({ height, width, fill }: IconProps) => JSX.Element;
288
+
289
+ declare const CircleSolidQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
290
+
291
+ declare const CircleSolidWarning: ({ height, width, fill }: IconProps) => JSX.Element;
292
+
293
+ declare const CircleSolidStyledCheck: ({ height, width, fill }: IconProps) => JSX.Element;
294
+
151
295
  declare const Actions_Check: typeof Check;
152
296
  declare const Actions_ClearLight: typeof ClearLight;
153
297
  declare const Actions_LightExclamation: typeof LightExclamation;
@@ -156,6 +300,38 @@ declare const Actions_LightCheck: typeof LightCheck;
156
300
  declare const Actions_Question: typeof Question;
157
301
  declare const Actions_Close: typeof Close;
158
302
  declare const Actions_Trash: typeof Trash;
303
+ declare const Actions_Warning: typeof Warning;
304
+ declare const Actions_Edit: typeof Edit;
305
+ declare const Actions_SignOut: typeof SignOut;
306
+ declare const Actions_Add: typeof Add;
307
+ type Actions_CopyProps = CopyProps;
308
+ declare const Actions_Copy: typeof Copy;
309
+ declare const Actions_CopyOutlined: typeof CopyOutlined;
310
+ declare const Actions_CheckboxEmpty: typeof CheckboxEmpty;
311
+ declare const Actions_CheckboxLight: typeof CheckboxLight;
312
+ declare const Actions_CheckboxSolid: typeof CheckboxSolid;
313
+ declare const Actions_Like: typeof Like;
314
+ declare const Actions_LikeSolid: typeof LikeSolid;
315
+ declare const Actions_NotAllowed: typeof NotAllowed;
316
+ declare const Actions_RadioEmpty: typeof RadioEmpty;
317
+ declare const Actions_RadioFilled: typeof RadioFilled;
318
+ declare const Actions_SettingsSolid: typeof SettingsSolid;
319
+ declare const Actions_Settings: typeof Settings;
320
+ declare const Actions_Share: typeof Share;
321
+ declare const Actions_CircleCheck: typeof CircleCheck;
322
+ declare const Actions_CircleClear: typeof CircleClear;
323
+ declare const Actions_CircleInfo: typeof CircleInfo;
324
+ declare const Actions_CircleMinus: typeof CircleMinus;
325
+ declare const Actions_CirclePlus: typeof CirclePlus;
326
+ declare const Actions_CircleQuestion: typeof CircleQuestion;
327
+ declare const Actions_CircleWarning: typeof CircleWarning;
328
+ declare const Actions_CircleSolidCheck: typeof CircleSolidCheck;
329
+ declare const Actions_CircleSolidClear: typeof CircleSolidClear;
330
+ declare const Actions_CircleSolidMinus: typeof CircleSolidMinus;
331
+ declare const Actions_CircleSolidPlus: typeof CircleSolidPlus;
332
+ declare const Actions_CircleSolidQuestion: typeof CircleSolidQuestion;
333
+ declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
334
+ declare const Actions_CircleSolidStyledCheck: typeof CircleSolidStyledCheck;
159
335
  declare namespace Actions {
160
336
  export {
161
337
  Actions_Check as Check,
@@ -166,6 +342,39 @@ declare namespace Actions {
166
342
  Actions_Question as Question,
167
343
  Actions_Close as Close,
168
344
  Actions_Trash as Trash,
345
+ Actions_Warning as Warning,
346
+ Actions_Edit as Edit,
347
+ Actions_SignOut as SignOut,
348
+ Actions_Add as Add,
349
+ Actions_CopyProps as CopyProps,
350
+ Actions_Copy as Copy,
351
+ Actions_CopyOutlined as CopyOutlined,
352
+ Actions_CheckboxEmpty as CheckboxEmpty,
353
+ Actions_CheckboxLight as CheckboxLight,
354
+ Actions_CheckboxSolid as CheckboxSolid,
355
+ Actions_Like as Like,
356
+ Actions_LikeSolid as LikeSolid,
357
+ Actions_NotAllowed as NotAllowed,
358
+ Actions_RadioEmpty as RadioEmpty,
359
+ Actions_RadioFilled as RadioFilled,
360
+ Minus$1 as Minus,
361
+ Actions_SettingsSolid as SettingsSolid,
362
+ Actions_Settings as Settings,
363
+ Actions_Share as Share,
364
+ Actions_CircleCheck as CircleCheck,
365
+ Actions_CircleClear as CircleClear,
366
+ Actions_CircleInfo as CircleInfo,
367
+ Actions_CircleMinus as CircleMinus,
368
+ Actions_CirclePlus as CirclePlus,
369
+ Actions_CircleQuestion as CircleQuestion,
370
+ Actions_CircleWarning as CircleWarning,
371
+ Actions_CircleSolidCheck as CircleSolidCheck,
372
+ Actions_CircleSolidClear as CircleSolidClear,
373
+ Actions_CircleSolidMinus as CircleSolidMinus,
374
+ Actions_CircleSolidPlus as CircleSolidPlus,
375
+ Actions_CircleSolidQuestion as CircleSolidQuestion,
376
+ Actions_CircleSolidWarning as CircleSolidWarning,
377
+ Actions_CircleSolidStyledCheck as CircleSolidStyledCheck,
169
378
  };
170
379
  }
171
380
 
@@ -174,23 +383,78 @@ declare const FitPredictor$1: ({ height, width, fill }: IconProps) => JSX.Elemen
174
383
  interface LoadingProps extends IconProps {
175
384
  backgroundColor: string;
176
385
  }
177
- declare const Loading: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
386
+ declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
178
387
 
179
388
  declare const Shapermint: ({ height, width }: IconProps) => JSX.Element;
180
389
 
181
390
  declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
182
391
 
392
+ declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
393
+
394
+ declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
395
+
396
+ declare const Chat: ({ height, width, fill, testId }: IconProps) => JSX.Element;
397
+
398
+ declare const Email: ({ height, width, fill, testId }: IconProps) => JSX.Element;
399
+
400
+ declare const CallUs: ({ height, width, fill, testId }: IconProps) => JSX.Element;
401
+
402
+ declare const SignForm: ({ height, width, fill }: IconProps) => JSX.Element;
403
+
404
+ declare const QrCode: ({ height, width, fill }: IconProps) => JSX.Element;
405
+
406
+ declare const FreeExchange: ({ height, width, fill, testId }: IconProps) => JSX.Element;
407
+
408
+ declare const ShopNow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
409
+
410
+ declare const HasselFreeReturns: ({ height, width, fill, testId }: IconProps) => JSX.Element;
411
+
412
+ declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
413
+
414
+ declare const FitGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
415
+
416
+ declare const QuestionWithCircle: ({ height, width, fill, testId }: IconProps) => JSX.Element;
417
+
418
+ declare const ExpressShipping: ({ height, width, fill, testId }: IconProps) => JSX.Element;
419
+
183
420
  type Other_LoadingProps = LoadingProps;
184
- declare const Other_Loading: typeof Loading;
185
421
  declare const Other_Shapermint: typeof Shapermint;
186
422
  declare const Other_McAfee: typeof McAfee;
423
+ declare const Other_GetDiscount: typeof GetDiscount;
424
+ declare const Other_ShapermintLogo: typeof ShapermintLogo;
425
+ declare const Other_Chat: typeof Chat;
426
+ declare const Other_Email: typeof Email;
427
+ declare const Other_CallUs: typeof CallUs;
428
+ declare const Other_SignForm: typeof SignForm;
429
+ declare const Other_QrCode: typeof QrCode;
430
+ declare const Other_FreeExchange: typeof FreeExchange;
431
+ declare const Other_ShopNow: typeof ShopNow;
432
+ declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
433
+ declare const Other_Play: typeof Play;
434
+ declare const Other_FitGuarantee: typeof FitGuarantee;
435
+ declare const Other_QuestionWithCircle: typeof QuestionWithCircle;
436
+ declare const Other_ExpressShipping: typeof ExpressShipping;
187
437
  declare namespace Other {
188
438
  export {
189
439
  FitPredictor$1 as FitPredictor,
190
440
  Other_LoadingProps as LoadingProps,
191
- Other_Loading as Loading,
441
+ Loading$1 as Loading,
192
442
  Other_Shapermint as Shapermint,
193
443
  Other_McAfee as McAfee,
444
+ Other_GetDiscount as GetDiscount,
445
+ Other_ShapermintLogo as ShapermintLogo,
446
+ Other_Chat as Chat,
447
+ Other_Email as Email,
448
+ Other_CallUs as CallUs,
449
+ Other_SignForm as SignForm,
450
+ Other_QrCode as QrCode,
451
+ Other_FreeExchange as FreeExchange,
452
+ Other_ShopNow as ShopNow,
453
+ Other_HasselFreeReturns as HasselFreeReturns,
454
+ Other_Play as Play,
455
+ Other_FitGuarantee as FitGuarantee,
456
+ Other_QuestionWithCircle as QuestionWithCircle,
457
+ Other_ExpressShipping as ExpressShipping,
194
458
  };
195
459
  }
196
460
 
@@ -208,6 +472,28 @@ declare const ChevronUpSolid: ({ height, width, fill }: IconProps) => JSX.Elemen
208
472
 
209
473
  declare const CircleUp: ({ width, height, fill }: IconProps) => JSX.Element;
210
474
 
475
+ declare const CircleChevronLeft: ({ width, height, fill }: IconProps) => JSX.Element;
476
+
477
+ declare const CircleChevronRight: ({ width, height, fill }: IconProps) => JSX.Element;
478
+
479
+ declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
480
+
481
+ declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
482
+
483
+ declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
484
+
485
+ declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
486
+
487
+ declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
488
+
489
+ declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
490
+
491
+ declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
492
+
493
+ declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
494
+
495
+ declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
496
+
211
497
  declare const Arrows_ChevronDown: typeof ChevronDown;
212
498
  declare const Arrows_ChevronLeft: typeof ChevronLeft;
213
499
  declare const Arrows_ChevronRight: typeof ChevronRight;
@@ -215,6 +501,17 @@ declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
215
501
  declare const Arrows_ChevronUp: typeof ChevronUp;
216
502
  declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
217
503
  declare const Arrows_CircleUp: typeof CircleUp;
504
+ declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
505
+ declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
506
+ declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
507
+ declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
508
+ declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
509
+ declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
510
+ declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
511
+ declare const Arrows_CircleLineUp: typeof CircleLineUp;
512
+ declare const Arrows_CircleLineDown: typeof CircleLineDown;
513
+ declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
514
+ declare const Arrows_CircleLineRight: typeof CircleLineRight;
218
515
  declare namespace Arrows {
219
516
  export {
220
517
  Arrows_ChevronDown as ChevronDown,
@@ -224,6 +521,17 @@ declare namespace Arrows {
224
521
  Arrows_ChevronUp as ChevronUp,
225
522
  Arrows_ChevronUpSolid as ChevronUpSolid,
226
523
  Arrows_CircleUp as CircleUp,
524
+ Arrows_CircleChevronLeft as CircleChevronLeft,
525
+ Arrows_CircleChevronRight as CircleChevronRight,
526
+ Arrows_CircleChevronDown as CircleChevronDown,
527
+ Arrows_CircleChevronUp as CircleChevronUp,
528
+ Arrows_ChevronDownVariant as ChevronDownVariant,
529
+ Arrows_ChevronUpVariant as ChevronUpVariant,
530
+ Arrows_ChevronLeftVariant as ChevronLeftVariant,
531
+ Arrows_CircleLineUp as CircleLineUp,
532
+ Arrows_CircleLineDown as CircleLineDown,
533
+ Arrows_CircleLineLeft as CircleLineLeft,
534
+ Arrows_CircleLineRight as CircleLineRight,
227
535
  };
228
536
  }
229
537
 
@@ -247,6 +555,32 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
247
555
 
248
556
  declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
249
557
 
558
+ declare const LightBulb$1: ({ height, width, fill }: IconProps) => JSX.Element;
559
+
560
+ declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
561
+
562
+ declare const CircleNumber: ({ height, width, fill }: IconProps) => JSX.Element;
563
+
564
+ declare const SizeEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
565
+
566
+ declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
567
+
568
+ declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
569
+
570
+ declare const Drop: ({ height, width, fill }: IconProps) => JSX.Element;
571
+
572
+ declare const DropEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
573
+
574
+ declare const Stars: ({ height, width, fill }: IconProps) => JSX.Element;
575
+
576
+ declare const Moon: ({ height, width, fill }: IconProps) => JSX.Element;
577
+
578
+ declare const Hours: ({ height, width, fill }: IconProps) => JSX.Element;
579
+
580
+ declare const NewClock: ({ height, width, fill }: IconProps) => JSX.Element;
581
+
582
+ declare const KlarnaLogo: ({ height, width }: IconProps) => JSX.Element;
583
+
250
584
  declare const PDP_Clock: typeof Clock;
251
585
  declare const PDP_FlagUSA: typeof FlagUSA;
252
586
  declare const PDP_Minus: typeof Minus;
@@ -257,6 +591,18 @@ declare const PDP_StarEmpty: typeof StarEmpty;
257
591
  declare const PDP_StarHalf: typeof StarHalf;
258
592
  declare const PDP_Stopwatch: typeof Stopwatch;
259
593
  declare const PDP_Shipping: typeof Shipping;
594
+ declare const PDP_ErrorCross: typeof ErrorCross;
595
+ declare const PDP_CircleNumber: typeof CircleNumber;
596
+ declare const PDP_SizeEmpty: typeof SizeEmpty;
597
+ declare const PDP_PlayMini: typeof PlayMini;
598
+ declare const PDP_ShippingEmpty: typeof ShippingEmpty;
599
+ declare const PDP_Drop: typeof Drop;
600
+ declare const PDP_DropEmpty: typeof DropEmpty;
601
+ declare const PDP_Stars: typeof Stars;
602
+ declare const PDP_Moon: typeof Moon;
603
+ declare const PDP_Hours: typeof Hours;
604
+ declare const PDP_NewClock: typeof NewClock;
605
+ declare const PDP_KlarnaLogo: typeof KlarnaLogo;
260
606
  declare namespace PDP {
261
607
  export {
262
608
  PDP_Clock as Clock,
@@ -269,6 +615,19 @@ declare namespace PDP {
269
615
  PDP_StarHalf as StarHalf,
270
616
  PDP_Stopwatch as Stopwatch,
271
617
  PDP_Shipping as Shipping,
618
+ LightBulb$1 as LightBulb,
619
+ PDP_ErrorCross as ErrorCross,
620
+ PDP_CircleNumber as CircleNumber,
621
+ PDP_SizeEmpty as SizeEmpty,
622
+ PDP_PlayMini as PlayMini,
623
+ PDP_ShippingEmpty as ShippingEmpty,
624
+ PDP_Drop as Drop,
625
+ PDP_DropEmpty as DropEmpty,
626
+ PDP_Stars as Stars,
627
+ PDP_Moon as Moon,
628
+ PDP_Hours as Hours,
629
+ PDP_NewClock as NewClock,
630
+ PDP_KlarnaLogo as KlarnaLogo,
272
631
  };
273
632
  }
274
633
 
@@ -286,6 +645,8 @@ declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
286
645
 
287
646
  declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
288
647
 
648
+ declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
649
+
289
650
  declare const SocialMedia_Facebook: typeof Facebook;
290
651
  declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
291
652
  declare const SocialMedia_Instagram: typeof Instagram;
@@ -293,6 +654,7 @@ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
293
654
  declare const SocialMedia_Pinterest: typeof Pinterest;
294
655
  declare const SocialMedia_Twitter: typeof Twitter;
295
656
  declare const SocialMedia_Youtube: typeof Youtube;
657
+ declare const SocialMedia_Interaction: typeof Interaction;
296
658
  declare namespace SocialMedia {
297
659
  export {
298
660
  SocialMedia_Facebook as Facebook,
@@ -302,14 +664,15 @@ declare namespace SocialMedia {
302
664
  SocialMedia_Pinterest as Pinterest,
303
665
  SocialMedia_Twitter as Twitter,
304
666
  SocialMedia_Youtube as Youtube,
667
+ SocialMedia_Interaction as Interaction,
305
668
  };
306
669
  }
307
670
 
308
- declare const Search: ({ height, width, fill }: IconProps) => JSX.Element;
671
+ declare const Search: ({ height, width, fill, testId }: IconProps) => JSX.Element;
309
672
 
310
673
  declare const User: ({ height, width, fill }: IconProps) => JSX.Element;
311
674
 
312
- declare const ShoppingBag: ({ height, width, fill }: IconProps) => JSX.Element;
675
+ declare const ShoppingBag: ({ height, width, fill, testId }: IconProps) => JSX.Element;
313
676
 
314
677
  declare const ShoppingCart: FC<IconProps>;
315
678
 
@@ -317,12 +680,64 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
317
680
 
318
681
  declare const Hamburger: FC<IconProps>;
319
682
 
683
+ declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
684
+
685
+ declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
686
+
687
+ declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
688
+
689
+ declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
690
+
691
+ declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
692
+
693
+ declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
694
+
695
+ declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
696
+
697
+ declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
698
+
699
+ declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
700
+
701
+ declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
702
+
703
+ declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
704
+
705
+ declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
706
+
707
+ declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
708
+
709
+ declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
710
+
711
+ declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
712
+
713
+ declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
714
+
715
+ declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
716
+
717
+ declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
718
+
320
719
  declare const Navigation_Search: typeof Search;
321
720
  declare const Navigation_User: typeof User;
322
721
  declare const Navigation_ShoppingBag: typeof ShoppingBag;
323
722
  declare const Navigation_ShoppingCart: typeof ShoppingCart;
324
723
  declare const Navigation_MapMarker: typeof MapMarker;
325
724
  declare const Navigation_Hamburger: typeof Hamburger;
725
+ declare const Navigation_AddressInformation: typeof AddressInformation;
726
+ declare const Navigation_ClubMembership: typeof ClubMembership;
727
+ declare const Navigation_Benefits: typeof Benefits;
728
+ declare const Navigation_Home: typeof Home;
729
+ declare const Navigation_HomeSolid: typeof HomeSolid;
730
+ declare const Navigation_ShoppingBagV2: typeof ShoppingBagV2;
731
+ declare const Navigation_UserSolid: typeof UserSolid;
732
+ declare const Navigation_SlideDotSolid: typeof SlideDotSolid;
733
+ declare const Navigation_Ellipsis: typeof Ellipsis;
734
+ declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
735
+ declare const Navigation_Lock: typeof Lock;
736
+ declare const Navigation_LockSolid: typeof LockSolid;
737
+ declare const Navigation_Loading: typeof Loading;
738
+ declare const Navigation_MapSolid: typeof MapSolid;
739
+ declare const Navigation_UserV2: typeof UserV2;
740
+ declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
326
741
  declare namespace Navigation {
327
742
  export {
328
743
  Navigation_Search as Search,
@@ -331,6 +746,24 @@ declare namespace Navigation {
331
746
  Navigation_ShoppingCart as ShoppingCart,
332
747
  Navigation_MapMarker as MapMarker,
333
748
  Navigation_Hamburger as Hamburger,
749
+ Navigation_AddressInformation as AddressInformation,
750
+ Navigation_ClubMembership as ClubMembership,
751
+ Navigation_Benefits as Benefits,
752
+ Navigation_Home as Home,
753
+ Navigation_HomeSolid as HomeSolid,
754
+ Navigation_ShoppingBagV2 as ShoppingBagV2,
755
+ Navigation_UserSolid as UserSolid,
756
+ SlideDot$1 as SlideDot,
757
+ Navigation_SlideDotSolid as SlideDotSolid,
758
+ Navigation_Ellipsis as Ellipsis,
759
+ Navigation_EllipsisHorizontal as EllipsisHorizontal,
760
+ Filters$1 as Filters,
761
+ Navigation_Lock as Lock,
762
+ Navigation_LockSolid as LockSolid,
763
+ Navigation_Loading as Loading,
764
+ Navigation_MapSolid as MapSolid,
765
+ Navigation_UserV2 as UserV2,
766
+ Navigation_ShoppingCartV2 as ShoppingCartV2,
334
767
  };
335
768
  }
336
769
 
@@ -351,18 +784,61 @@ interface IconWrapperProps {
351
784
  fill?: string;
352
785
  }
353
786
 
354
- declare const Mail: ({ height, width }: IconWrapperProps) => JSX.Element;
787
+ declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
788
+
789
+ declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
790
+
791
+ declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
792
+
793
+ declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
794
+
795
+ declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
796
+
797
+ declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
798
+
799
+ declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
800
+
801
+ declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
802
+
803
+ declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
804
+
805
+ declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
806
+
807
+ declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
808
+
809
+ declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
355
810
 
356
811
  declare const Messaging_QuestionCircle: typeof QuestionCircle;
357
812
  declare const Messaging_Messenger: typeof Messenger;
358
813
  declare const Messaging_Comment: typeof Comment;
359
814
  declare const Messaging_Mail: typeof Mail;
815
+ declare const Messaging_QuoteLeft: typeof QuoteLeft;
816
+ declare const Messaging_QuoteRight: typeof QuoteRight;
817
+ declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
818
+ declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
819
+ declare const Messaging_Light: typeof Light;
820
+ declare const Messaging_LightBulb: typeof LightBulb;
821
+ declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
822
+ declare const Messaging_CommentDots: typeof CommentDots;
823
+ declare const Messaging_CommentLight: typeof CommentLight;
824
+ declare const Messaging_CommentMoney: typeof CommentMoney;
360
825
  declare namespace Messaging {
361
826
  export {
362
827
  Messaging_QuestionCircle as QuestionCircle,
363
828
  Messaging_Messenger as Messenger,
364
829
  Messaging_Comment as Comment,
365
830
  Messaging_Mail as Mail,
831
+ Community$1 as Community,
832
+ Messaging_QuoteLeft as QuoteLeft,
833
+ Messaging_QuoteRight as QuoteRight,
834
+ Messaging_QuoteSolidLeft as QuoteSolidLeft,
835
+ Messaging_QuoteSolidRight as QuoteSolidRight,
836
+ Messaging_Light as Light,
837
+ Messaging_LightBulb as LightBulb,
838
+ Messaging_LightBulbSolid as LightBulbSolid,
839
+ Messaging_CommentDots as CommentDots,
840
+ Messaging_CommentLight as CommentLight,
841
+ Messaging_CommentMoney as CommentMoney,
366
842
  };
367
843
  }
368
844
 
@@ -423,10 +899,79 @@ declare namespace SlideDots {
423
899
 
424
900
  declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
425
901
 
902
+ declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
903
+
904
+ declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
905
+
906
+ declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
907
+
908
+ declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
909
+
910
+ declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
911
+
912
+ declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
913
+
426
914
  declare const Emoji_Thinking: typeof Thinking;
915
+ declare const Emoji_SmilingV2: typeof SmilingV2;
916
+ declare const Emoji_Grinning: typeof Grinning;
917
+ declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
918
+ declare const Emoji_BlowingKiss: typeof BlowingKiss;
919
+ declare const Emoji_Frowning: typeof Frowning;
920
+ declare const Emoji_Relieved: typeof Relieved;
427
921
  declare namespace Emoji {
428
922
  export {
429
923
  Emoji_Thinking as Thinking,
924
+ Emoji_SmilingV2 as SmilingV2,
925
+ Emoji_Grinning as Grinning,
926
+ Emoji_GrinningWithSweat as GrinningWithSweat,
927
+ Emoji_BlowingKiss as BlowingKiss,
928
+ Emoji_Frowning as Frowning,
929
+ Emoji_Relieved as Relieved,
930
+ };
931
+ }
932
+
933
+ declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
934
+
935
+ declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
936
+
937
+ declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
938
+
939
+ declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
940
+
941
+ declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
942
+
943
+ declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
944
+
945
+ declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
946
+
947
+ declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
948
+
949
+ declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
950
+
951
+ declare const PriorityShipping: ({ height, width, fill }: IconProps) => JSX.Element;
952
+
953
+ declare const MyAccount_FreeShipping: typeof FreeShipping;
954
+ declare const MyAccount_PersonalStylist: typeof PersonalStylist;
955
+ declare const MyAccount_Community: typeof Community;
956
+ declare const MyAccount_VIP: typeof VIP;
957
+ declare const MyAccount_DealsOffers: typeof DealsOffers;
958
+ declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
959
+ declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
960
+ declare const MyAccount_Profile: typeof Profile;
961
+ declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
962
+ declare const MyAccount_PriorityShipping: typeof PriorityShipping;
963
+ declare namespace MyAccount {
964
+ export {
965
+ MyAccount_FreeShipping as FreeShipping,
966
+ MyAccount_PersonalStylist as PersonalStylist,
967
+ MyAccount_Community as Community,
968
+ MyAccount_VIP as VIP,
969
+ MyAccount_DealsOffers as DealsOffers,
970
+ MyAccount_StyleFashionContent as StyleFashionContent,
971
+ MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
972
+ MyAccount_Profile as Profile,
973
+ MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
974
+ MyAccount_PriorityShipping as PriorityShipping,
430
975
  };
431
976
  }
432
977
 
@@ -444,6 +989,7 @@ declare const Icon: {
444
989
  Payment: typeof Payment;
445
990
  SlideDots: typeof SlideDots;
446
991
  Emoji: typeof Emoji;
992
+ MyAccount: typeof MyAccount;
447
993
  };
448
994
 
449
995
  interface CardBodyProps {
@@ -460,7 +1006,7 @@ interface borderProps {
460
1006
  }
461
1007
  interface CardProps {
462
1008
  children: ReactNode;
463
- backgroundColor: string;
1009
+ backgroundColor?: string;
464
1010
  widthAuto?: boolean;
465
1011
  border?: borderProps;
466
1012
  flex?: boolean;
@@ -488,6 +1034,8 @@ declare type CommonProps<T> = {
488
1034
  initialValue?: Value<T>;
489
1035
  placeHolder: string;
490
1036
  testId?: string;
1037
+ required?: string;
1038
+ showRequiredPlaceholder?: boolean;
491
1039
  };
492
1040
  declare type ControlledProps<T> = {
493
1041
  value: Value<T>;
@@ -498,7 +1046,22 @@ declare type UncontrolledProps<T> = {
498
1046
  onChange?: OnChange<T>;
499
1047
  } & CommonProps<T>;
500
1048
  declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
501
- declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, }: SimpleDropdownProps<T>): JSX.Element;
1049
+ declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, required, showRequiredPlaceholder, }: SimpleDropdownProps<T>): JSX.Element;
1050
+
1051
+ interface DialogPositionProps {
1052
+ top: string;
1053
+ right: string;
1054
+ }
1055
+ interface DialogDropdownProps {
1056
+ options: {
1057
+ label: string;
1058
+ value: string;
1059
+ }[];
1060
+ position: DialogPositionProps;
1061
+ style?: React.CSSProperties;
1062
+ className?: string;
1063
+ }
1064
+ declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
502
1065
 
503
1066
  interface SizeSelectorProps {
504
1067
  label: string;
@@ -529,6 +1092,7 @@ interface BaseButtonProps {
529
1092
  inline?: boolean;
530
1093
  uppercase?: boolean;
531
1094
  testId?: string;
1095
+ id?: string;
532
1096
  }
533
1097
 
534
1098
  declare type BaseProps = Pick<BaseButtonProps, 'disabled' | 'type' | 'onClick'>;
@@ -550,8 +1114,21 @@ interface DiscountTagProps {
550
1114
  borderColor?: string;
551
1115
  textColor?: string;
552
1116
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1117
+ style?: React.CSSProperties;
1118
+ }
1119
+ declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
1120
+
1121
+ interface ClubOfferTagProps {
1122
+ clubOfferText?: string;
1123
+ className?: string;
1124
+ disabled?: boolean;
1125
+ backgroundColor?: string;
1126
+ borderColor?: string;
1127
+ textColor?: string;
1128
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1129
+ style?: React.CSSProperties;
553
1130
  }
554
- declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, }: DiscountTagProps) => JSX.Element;
1131
+ declare const ClubOfferTag: ({ clubOfferText, className, disabled, backgroundColor, borderColor, textColor, size, style, }: ClubOfferTagProps) => JSX.Element;
555
1132
 
556
1133
  interface PriceLabelProps {
557
1134
  finalPrice: string | number;
@@ -559,9 +1136,16 @@ interface PriceLabelProps {
559
1136
  color?: string;
560
1137
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
561
1138
  discount?: DiscountTagProps;
1139
+ clubOffer?: ClubOfferTagProps;
1140
+ finalPriceStyled?: boolean;
1141
+ finalPriceStyle?: React.CSSProperties;
1142
+ originalPriceStyled?: boolean;
1143
+ originalPriceUnderlined?: boolean;
562
1144
  testId?: string;
563
1145
  }
564
- declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, size, }: PriceLabelProps) => JSX.Element;
1146
+ declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
1147
+
1148
+ declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, clubOffer, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
565
1149
 
566
1150
  interface ColorPickerProps {
567
1151
  options: ColorPickerOption[];
@@ -583,21 +1167,29 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
583
1167
  interface ProductGalleryProps {
584
1168
  images: ImageType[];
585
1169
  selectedValue?: ImageType;
586
- DiscountTagElement?: JSX.Element;
587
- BestSellerTagElement?: JSX.Element;
1170
+ topTag?: JSX.Element;
1171
+ bottomTag?: JSX.Element;
588
1172
  productImageDataTestId?: string;
589
1173
  previewListDataTestId?: string;
1174
+ thumbnailPosition?: 'vertical' | 'horizontal';
1175
+ borderRadiusVariant?: boolean;
1176
+ previewImgBorderColor?: string;
1177
+ ctaText?: string;
1178
+ ctaAction?: () => void;
1179
+ hideCTA?: boolean;
590
1180
  }
591
- declare const ProductGallery: ({ images, selectedValue, DiscountTagElement, BestSellerTagElement, productImageDataTestId, previewListDataTestId, }: ProductGalleryProps) => JSX.Element;
1181
+ declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, hideCTA, }: ProductGalleryProps) => JSX.Element;
592
1182
 
593
1183
  interface RatingProps {
594
1184
  rating: number;
595
1185
  size?: ComponentSize;
596
- reviews: number;
597
- reviewsText: string;
1186
+ reviews?: number;
1187
+ reviewsText?: string;
598
1188
  wrapWithParenthesis?: boolean;
1189
+ underline?: boolean;
1190
+ reviewsContainerId?: string;
599
1191
  }
600
- declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
1192
+ declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
601
1193
 
602
1194
  interface FitPredictorProps {
603
1195
  onClick: () => void;
@@ -609,8 +1201,23 @@ interface ProgressBarProps {
609
1201
  fillColor: string;
610
1202
  widthAuto?: boolean;
611
1203
  percent?: number;
1204
+ height?: string;
1205
+ backgroundColor?: string;
1206
+ borderRadius?: string;
1207
+ }
1208
+ declare const ProgressBar: ({ description, fillColor, widthAuto, percent, height, backgroundColor, borderRadius, }: ProgressBarProps) => JSX.Element;
1209
+
1210
+ interface MotivatorProgressBarProps {
1211
+ fillColor?: string;
1212
+ currentAmount?: number;
1213
+ backgroundColor?: string;
1214
+ unfilledColor?: string;
1215
+ borderRadius?: string;
1216
+ rewardUnlockedMessage: string;
1217
+ endingValue?: number;
1218
+ currencyCode?: string;
612
1219
  }
613
- declare const ProgressBar: ({ description, fillColor, widthAuto, percent, }: ProgressBarProps) => JSX.Element;
1220
+ declare const MotivatorProgressBar: ({ fillColor, backgroundColor, unfilledColor, currencyCode, endingValue, currentAmount, rewardUnlockedMessage, }: MotivatorProgressBarProps) => JSX.Element;
614
1221
 
615
1222
  interface IconButtonProps {
616
1223
  children: React.ReactNode;
@@ -624,31 +1231,45 @@ interface TooltipProps {
624
1231
  children: React.ReactNode;
625
1232
  position: ComponentPosition;
626
1233
  align?: 'start' | 'center' | 'end';
627
- text: string;
1234
+ content?: {
1235
+ text: string;
1236
+ color?: string;
1237
+ };
1238
+ backgroundColor?: string;
1239
+ maxWidth?: string;
628
1240
  header?: {
629
1241
  title: string;
630
- Icon: IconType;
1242
+ titleColor?: string;
1243
+ Icon?: IconType;
1244
+ iconFill?: string;
631
1245
  };
632
1246
  onClick?: () => void;
633
1247
  }
634
- declare const Tooltip: ({ children, position, text, align, onClick, header, }: TooltipProps) => JSX.Element;
1248
+ declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
635
1249
 
636
1250
  interface AccordionProps {
637
1251
  defaultOpen?: boolean;
1252
+ forceOpenHandler?: boolean;
1253
+ forceOpenValue?: boolean;
1254
+ titleColor?: string;
638
1255
  variant: 'simple' | 'box';
639
1256
  header: ReactNode;
1257
+ headerOnOpen?: ReactNode;
640
1258
  content: ReactNode;
641
1259
  disabled?: boolean;
1260
+ innerHTML?: boolean;
642
1261
  openIcon: IconType;
643
1262
  closeIcon: IconType;
1263
+ onClick?: (index: number) => void;
644
1264
  }
645
- declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
1265
+ declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
646
1266
 
647
1267
  declare const ThemeProvider: FC<{
648
1268
  theme: Theme;
649
1269
  children: ReactNode;
650
1270
  }>;
651
1271
  declare const useTheme: () => Theme;
1272
+
652
1273
  declare const ThemeVariables: FC<{
653
1274
  theme: Theme;
654
1275
  Container?: ElementType;
@@ -678,6 +1299,7 @@ declare type Theme = {
678
1299
  };
679
1300
  declare type ThemeBreakpoints = {
680
1301
  mobile: number;
1302
+ tablet?: number;
681
1303
  desktop: number;
682
1304
  };
683
1305
  declare type ThemeBasicPallete = {
@@ -685,7 +1307,7 @@ declare type ThemeBasicPallete = {
685
1307
  contrast: string;
686
1308
  };
687
1309
  declare type ThemeColorPallete = ThemeBasicPallete & {
688
- soft: ThemeBasicPallete;
1310
+ soft?: ThemeBasicPallete;
689
1311
  };
690
1312
  declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
691
1313
  20: ThemeColorPallete;
@@ -697,6 +1319,7 @@ declare type ThemeColors = {
697
1319
  pallete: {
698
1320
  primary: ThemeColorPrimaryPallete;
699
1321
  secondary: ThemeColorPrimaryPallete;
1322
+ tertiary?: ThemeColorPrimaryPallete;
700
1323
  } & Partial<Record<string, ThemeColorPallete>>;
701
1324
  shades: {
702
1325
  black: ThemeBasicPallete;
@@ -706,6 +1329,7 @@ declare type ThemeColors = {
706
1329
  50: ThemeBasicPallete;
707
1330
  100: ThemeBasicPallete;
708
1331
  150: ThemeBasicPallete;
1332
+ 175: ThemeBasicPallete;
709
1333
  200: ThemeBasicPallete;
710
1334
  250: ThemeBasicPallete;
711
1335
  300: ThemeBasicPallete;
@@ -734,6 +1358,8 @@ declare type ThemeColors = {
734
1358
  color: string;
735
1359
  disabled: string;
736
1360
  highlight: string;
1361
+ shadow?: string;
1362
+ isChecked?: string;
737
1363
  };
738
1364
  background: {
739
1365
  color: string;
@@ -749,6 +1375,10 @@ declare type ThemeComponent = {
749
1375
  border: string;
750
1376
  borderRadius: string;
751
1377
  fontWeight: number;
1378
+ lineHeight: string;
1379
+ letterSpacing: string;
1380
+ minWidth: string;
1381
+ minHeight: string;
752
1382
  size: {
753
1383
  small: {
754
1384
  fontSize: string;
@@ -795,6 +1425,12 @@ declare type ThemeComponent = {
795
1425
  lineHeight: string;
796
1426
  border: string;
797
1427
  boxShadow: string;
1428
+ errorBorder: string;
1429
+ };
1430
+ inputPlaceholder: {
1431
+ fontSize: string;
1432
+ padding: string;
1433
+ focusBorder: string;
798
1434
  };
799
1435
  inputCustom: {
800
1436
  button: {
@@ -827,6 +1463,12 @@ declare type ThemeComponent = {
827
1463
  border: string;
828
1464
  color: string;
829
1465
  };
1466
+ noStock: {
1467
+ fontWeight: number;
1468
+ background: string;
1469
+ border: string;
1470
+ color: string;
1471
+ };
830
1472
  disabled: {
831
1473
  border: string;
832
1474
  };
@@ -880,10 +1522,13 @@ declare type ThemeComponent = {
880
1522
  };
881
1523
  card: {
882
1524
  borderRadius: string;
1525
+ backgroundColor: string;
883
1526
  };
884
1527
  radio: {
885
1528
  borderColor: string;
886
1529
  background: string;
1530
+ textSize: string;
1531
+ lineHeight: string;
887
1532
  size: {
888
1533
  small: {
889
1534
  borderWidth: string;
@@ -912,6 +1557,7 @@ declare type ThemeComponent = {
912
1557
  };
913
1558
  };
914
1559
  label: {
1560
+ color: string;
915
1561
  fontSize: {
916
1562
  small: string;
917
1563
  medium: string;
@@ -1020,11 +1666,13 @@ declare type ThemeComponent = {
1020
1666
  fontWeight: number;
1021
1667
  lineHeight: string;
1022
1668
  padding: string;
1669
+ optionPadding: string;
1023
1670
  color: string;
1024
1671
  fill: string;
1025
1672
  options: {
1026
1673
  borderColor: string;
1027
1674
  color: string;
1675
+ borderRadius: string;
1028
1676
  };
1029
1677
  };
1030
1678
  modal: {
@@ -1038,6 +1686,168 @@ declare type ThemeComponent = {
1038
1686
  selectedContrast: string;
1039
1687
  tagColor: string;
1040
1688
  };
1689
+ slideNavigation: {
1690
+ slideDots: {
1691
+ unselectedDotColor: string;
1692
+ selectedDotColor: string;
1693
+ dotsOpacity: number;
1694
+ };
1695
+ };
1696
+ beforeAfter: {
1697
+ size: {
1698
+ small: {
1699
+ image: {
1700
+ minHeight: string;
1701
+ minWidth: string;
1702
+ mobile: {
1703
+ minHeight: string;
1704
+ minWidth: string;
1705
+ };
1706
+ };
1707
+ imageContainer: {
1708
+ maxWidth: string;
1709
+ padding: string;
1710
+ mobile: {
1711
+ maxWidth: string;
1712
+ };
1713
+ };
1714
+ userInfoText: {
1715
+ fontSize: string;
1716
+ mobile: {
1717
+ fontSize: string;
1718
+ };
1719
+ };
1720
+ };
1721
+ medium: {
1722
+ image: {
1723
+ minHeight: string;
1724
+ minWidth: string;
1725
+ mobile: {
1726
+ minHeight: string;
1727
+ minWidth: string;
1728
+ };
1729
+ };
1730
+ imageContainer: {
1731
+ maxWidth: string;
1732
+ padding: string;
1733
+ mobile: {
1734
+ maxWidth: string;
1735
+ };
1736
+ };
1737
+ userInfoText: {
1738
+ fontSize: string;
1739
+ mobile: {
1740
+ fontSize: string;
1741
+ };
1742
+ };
1743
+ };
1744
+ large: {
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
+ };
1768
+ };
1769
+ total: {
1770
+ basicTotal: {
1771
+ amount: {
1772
+ color: string;
1773
+ fontSize: string;
1774
+ };
1775
+ currency: {
1776
+ color: string;
1777
+ fontSize: string;
1778
+ lineHeight: string;
1779
+ alignSelf?: string;
1780
+ };
1781
+ savings: {
1782
+ textFontSize: string;
1783
+ textLineHeight: string;
1784
+ amountFontSize: string;
1785
+ amountFontWeight: number;
1786
+ amountLineHeight: string;
1787
+ color?: string;
1788
+ };
1789
+ };
1790
+ };
1791
+ subTotal: {
1792
+ basicSubTotal: {
1793
+ family: string;
1794
+ size: string;
1795
+ weight: number;
1796
+ lineHeight: string;
1797
+ color: string;
1798
+ };
1799
+ };
1800
+ pricing: {
1801
+ priceLabel: {
1802
+ price: {
1803
+ size: ComponentSize$1.Small | ComponentSize$1.Medium | ComponentSize$1.Large;
1804
+ originalPriceColor: string;
1805
+ actualPriceColor: string;
1806
+ };
1807
+ };
1808
+ };
1809
+ orderSummary: {
1810
+ headingTextAlign: string;
1811
+ backgroundColor: string;
1812
+ maxWidth?: string;
1813
+ padding?: string;
1814
+ borderRadius?: string;
1815
+ onMobile: {
1816
+ maxWidth?: string;
1817
+ padding?: string;
1818
+ backgroundColor?: string;
1819
+ };
1820
+ };
1821
+ expressCheckout: {
1822
+ fontFamily: string;
1823
+ fontWeight: number;
1824
+ lineHeight: string;
1825
+ };
1826
+ copyrightText: {
1827
+ fontSize: string;
1828
+ fontWeight: number;
1829
+ lineHeight: string;
1830
+ color: string;
1831
+ };
1832
+ textButton: {
1833
+ fontWeight: number;
1834
+ lineHeight: string;
1835
+ };
1836
+ deliveryDetails: {
1837
+ note: {
1838
+ accentColor: string;
1839
+ color: string;
1840
+ backgroundColor: string;
1841
+ };
1842
+ SectionDetails?: {
1843
+ marginLeft: string;
1844
+ };
1845
+ };
1846
+ text: {
1847
+ orderHeader: {
1848
+ color: string;
1849
+ };
1850
+ };
1041
1851
  };
1042
1852
  declare type ThemeTypography = {
1043
1853
  config: {
@@ -1064,6 +1874,11 @@ declare type ThemeAssets = {
1064
1874
  images: {
1065
1875
  favicon: string;
1066
1876
  logo: string;
1877
+ logoSize?: {
1878
+ width: string;
1879
+ height: string;
1880
+ };
1881
+ logoMobile?: string;
1067
1882
  };
1068
1883
  [key: string]: any;
1069
1884
  };
@@ -1074,11 +1889,12 @@ interface CheckboxProps {
1074
1889
  size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1075
1890
  text: string;
1076
1891
  checked?: boolean;
1892
+ blockUncheck?: boolean;
1077
1893
  id: string;
1078
1894
  backgroundColor?: string;
1079
- variant: 'primary' | 'secondary';
1895
+ variant: 'primary' | 'secondary' | 'color';
1080
1896
  }
1081
- declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, }: CheckboxProps) => JSX.Element;
1897
+ declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, blockUncheck, backgroundColor, }: CheckboxProps) => JSX.Element;
1082
1898
 
1083
1899
  interface RadioGroupInputProps {
1084
1900
  name: string;
@@ -1087,8 +1903,20 @@ interface RadioGroupInputProps {
1087
1903
  onChange: (value: RadioGroupOption) => void;
1088
1904
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1089
1905
  disabled?: boolean;
1906
+ style?: React.CSSProperties;
1907
+ }
1908
+ declare const RadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
1909
+
1910
+ interface ClubRadioGroupInputProps {
1911
+ name: string;
1912
+ options?: RadioGroupOption[];
1913
+ value?: RadioGroupOption;
1914
+ onChange: (value: RadioGroupOption) => void;
1915
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1916
+ disabled?: boolean;
1917
+ style?: React.CSSProperties;
1090
1918
  }
1091
- declare const RadioGroupInput: ({ name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
1919
+ declare const ClubRadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: ClubRadioGroupInputProps) => JSX.Element;
1092
1920
 
1093
1921
  interface SimpleProps {
1094
1922
  title: string;
@@ -1123,16 +1951,18 @@ interface CategoryTagProps {
1123
1951
  text: string;
1124
1952
  size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1125
1953
  className?: string;
1954
+ styledBorder?: boolean;
1126
1955
  }
1127
- declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1956
+ declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1128
1957
 
1129
1958
  interface SeasonOfferTagProps {
1130
1959
  text: string;
1131
1960
  backgroundColor?: string;
1132
1961
  size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1133
1962
  className?: string;
1963
+ styledBorder?: boolean;
1134
1964
  }
1135
- declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1965
+ declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1136
1966
 
1137
1967
  interface TimeProps {
1138
1968
  hours: number;
@@ -1145,7 +1975,14 @@ interface TimerProps extends TimeProps {
1145
1975
  }
1146
1976
  declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
1147
1977
 
1148
- interface BaseInputCommmonProps {
1978
+ interface BaseInputCommonProps {
1979
+ id?: string;
1980
+ value?: string;
1981
+ innerRef?: React.Ref<HTMLInputElement>;
1982
+ onBlur?: () => void;
1983
+ onFocus?: () => void;
1984
+ onChange?: (value: string, event: any) => void;
1985
+ hideClear?: boolean;
1149
1986
  defaultValue?: string;
1150
1987
  maxLength?: number;
1151
1988
  placeholder?: string;
@@ -1155,16 +1992,14 @@ interface BaseInputCommmonProps {
1155
1992
  required?: string;
1156
1993
  children?: React.ReactNode;
1157
1994
  size?: 'regular' | 'small';
1995
+ inlinePlaceholder?: boolean;
1996
+ hasError?: boolean;
1997
+ inputType?: 'text' | 'email' | 'password' | 'url';
1998
+ name?: string;
1999
+ autoFocus?: boolean;
2000
+ requiredPlaceholder?: string;
1158
2001
  }
1159
- interface BaseInputControlled extends BaseInputCommmonProps {
1160
- value: string;
1161
- onChange: (value: string) => void;
1162
- }
1163
- interface BaseInputUncontrolled extends BaseInputCommmonProps {
1164
- value?: never;
1165
- onChange?: (value: string) => void;
1166
- }
1167
- declare type BaseInputProps = BaseInputControlled | BaseInputUncontrolled;
2002
+ declare type BaseInputProps = BaseInputCommonProps;
1168
2003
 
1169
2004
  declare type BasePlusIconProps = BaseInputProps & {
1170
2005
  Icon: IconType;
@@ -1203,7 +2038,7 @@ declare type CustomProps = BaseInputProps & {
1203
2038
  };
1204
2039
 
1205
2040
  declare const Input: {
1206
- Simple: ({ value, onChange, defaultValue, label, children, required, onValidation, size, ...rest }: BaseInputProps) => JSX.Element;
2041
+ Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, requiredPlaceholder, ...rest }: BaseInputCommonProps) => JSX.Element;
1207
2042
  Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
1208
2043
  SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
1209
2044
  SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
@@ -1263,7 +2098,7 @@ declare type detail = {
1263
2098
  details: string;
1264
2099
  };
1265
2100
  interface orderUpdate extends detail {
1266
- keepMeUpdated: {
2101
+ keepMeUpdated?: {
1267
2102
  title: string;
1268
2103
  onClick: () => void;
1269
2104
  };
@@ -1276,9 +2111,9 @@ interface DeliveryDetailsProps {
1276
2111
  note?: {
1277
2112
  importantNoteText: string;
1278
2113
  text: string;
1279
- accentColor: string;
1280
- backgroundColor: string;
1281
- color: string;
2114
+ accentColor?: string;
2115
+ backgroundColor?: string;
2116
+ color?: string;
1282
2117
  };
1283
2118
  }
1284
2119
  declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
@@ -1286,26 +2121,37 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
1286
2121
  interface ScrollToTopProps {
1287
2122
  scrollToTopText: string;
1288
2123
  onClick: () => void;
2124
+ fill?: string;
1289
2125
  }
1290
- declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
2126
+ declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
1291
2127
 
1292
2128
  interface OrderBarProps {
1293
2129
  message: string;
2130
+ color?: string;
2131
+ }
2132
+ declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
2133
+
2134
+ interface TableProps$1 {
2135
+ headers: string[];
2136
+ data: string[][];
2137
+ className?: string;
1294
2138
  }
1295
- declare const OrderBar: ({ message }: OrderBarProps) => JSX.Element;
2139
+ declare const SizeTable: ({ headers, data, className }: TableProps$1) => JSX.Element;
1296
2140
 
1297
2141
  interface TableProps {
1298
2142
  headers: string[];
1299
2143
  data: string[][];
2144
+ newSizeTableCss?: boolean;
1300
2145
  }
1301
- declare const SizeTable: ({ headers, data }: TableProps) => JSX.Element;
2146
+ declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
1302
2147
 
1303
2148
  interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
1304
2149
  color?: string;
1305
2150
  }
1306
2151
  interface ProductOrderItemProps {
1307
- title: string;
2152
+ title: React.ReactNode | string;
1308
2153
  subtitle: string;
2154
+ className?: string;
1309
2155
  image: {
1310
2156
  src: string;
1311
2157
  alt: string;
@@ -1316,10 +2162,12 @@ interface ProductOrderItemProps {
1316
2162
  text: string;
1317
2163
  backgroundColor: string;
1318
2164
  };
2165
+ finalPriceStyle?: React.CSSProperties;
1319
2166
  }
1320
- declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
2167
+ declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
1321
2168
 
1322
- interface ReviewProps {
2169
+ interface ReviewProps$1 {
2170
+ reviewId: string;
1323
2171
  reviewerName: string;
1324
2172
  date: Date;
1325
2173
  rating: number;
@@ -1329,27 +2177,35 @@ interface ReviewProps {
1329
2177
  };
1330
2178
  title: string;
1331
2179
  description: string;
1332
- image: {
2180
+ images?: {
1333
2181
  src: string;
1334
2182
  alt: string;
1335
- };
2183
+ }[];
2184
+ reviewVariant?: string;
2185
+ onClickImage?: (image: string) => void;
2186
+ helpfulActionText?: string;
2187
+ helpfulAction?: (id: string) => void;
2188
+ helpfulCount?: number;
1336
2189
  }
1337
- declare const Review: ({ reviewerName, date, rating, stars, title, description, image }: ReviewProps) => JSX.Element;
2190
+ declare const Review$1: ({ reviewId, reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, helpfulActionText, helpfulAction, helpfulCount, }: ReviewProps$1) => JSX.Element;
1338
2191
 
1339
2192
  interface SliderNavigationProps {
1340
- children: JSX.Element[];
2193
+ children: JSX.Element | JSX.Element[] | StyledComponent<any>;
1341
2194
  infinite: boolean;
1342
2195
  adaptiveHeight: boolean;
1343
- dotsSize: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1344
- dotListMarginTop: number;
2196
+ dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
2197
+ dotListMarginTop?: number;
1345
2198
  initialSlide?: number;
1346
2199
  arrows?: {
1347
2200
  arrowWidth: number;
1348
2201
  arrowHeight: number;
1349
2202
  arrowPadding: number;
1350
2203
  };
2204
+ dots?: boolean;
2205
+ slidesToShow?: number;
2206
+ speed?: number;
1351
2207
  }
1352
- declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
2208
+ declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
1353
2209
 
1354
2210
  interface DropdownListIconsProps {
1355
2211
  items: DropdownListIconsItem[];
@@ -1367,8 +2223,11 @@ interface ImageStyleProps {
1367
2223
  interface ImageProps extends ImageStyleProps {
1368
2224
  src: string;
1369
2225
  alt: string;
2226
+ srcSet?: string;
2227
+ sizes?: string;
2228
+ loading?: 'lazy' | 'eager';
1370
2229
  }
1371
- declare const Image: ({ src, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
2230
+ declare const Image: ({ src, srcSet, sizes, loading, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
1372
2231
 
1373
2232
  interface AmazonPaypalBtnProps {
1374
2233
  onClick: () => void;
@@ -1403,8 +2262,8 @@ interface ProductItemProps {
1403
2262
  price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
1404
2263
  rating: Pick<RatingProps, 'rating' | 'reviews'>;
1405
2264
  tags?: {
1406
- categoryTagText: string;
1407
- seasonOfferTagText: string;
2265
+ categoryTagText?: string;
2266
+ seasonOfferTagText?: string;
1408
2267
  };
1409
2268
  alignName?: 'left' | 'center';
1410
2269
  url?: string;
@@ -1413,6 +2272,32 @@ interface ProductItemProps {
1413
2272
 
1414
2273
  interface ProductItemSmallMobileProps extends ProductItemProps {
1415
2274
  size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
2275
+ imageHover?: ImageProps;
2276
+ topTag?: JSX.Element;
2277
+ bottomTag?: JSX.Element;
2278
+ onClick?: () => void;
2279
+ priceDisplayType?: 'default' | 'styled';
2280
+ priceAtBottom?: boolean;
2281
+ priceLoading?: boolean;
2282
+ colorPicker?: {
2283
+ display: boolean;
2284
+ position: string;
2285
+ component: JSX.Element | JSX.Element[] | undefined;
2286
+ };
2287
+ isBNPL?: {
2288
+ displayBNPL: boolean;
2289
+ installments: number;
2290
+ installmentPrice: string;
2291
+ iconFolder?: string;
2292
+ iconName: string;
2293
+ showLogo?: boolean;
2294
+ iconColor: string;
2295
+ fontSize: string;
2296
+ };
2297
+ hasStrength?: {
2298
+ strength: number;
2299
+ description: string;
2300
+ };
1416
2301
  }
1417
2302
 
1418
2303
  declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
@@ -1421,7 +2306,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
1421
2306
  };
1422
2307
 
1423
2308
  declare const Collection: {
1424
- ProductItemMobile: ({ title, image, price, rating, size, tags, alignName, url, className, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
2309
+ ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, colorPicker, isBNPL, hasStrength, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1425
2310
  withProductGrid: typeof withProductGrid;
1426
2311
  };
1427
2312
 
@@ -1482,10 +2367,13 @@ interface PaginationProps {
1482
2367
  underlineActive?: boolean;
1483
2368
  boldActive?: boolean;
1484
2369
  disabled?: boolean;
2370
+ showReducedPages?: boolean;
1485
2371
  }
1486
- declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
2372
+ declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
1487
2373
 
1488
- declare const Text: FC<TextProps>;
2374
+ declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
2375
+
2376
+ declare const Text: ({ variant, children, testId, asSpan, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
1489
2377
  declare type TextHeroProps = {
1490
2378
  variant: 'hero1' | 'hero2' | 'hero3';
1491
2379
  weight?: 'heavy' | 'bold' | 'demi';
@@ -1495,6 +2383,7 @@ declare type TextHeroProps = {
1495
2383
  wide?: never;
1496
2384
  original?: never;
1497
2385
  allCaps?: never;
2386
+ href: never;
1498
2387
  };
1499
2388
  declare type TextDisplayProps = {
1500
2389
  variant: 'display1' | 'display2';
@@ -1505,6 +2394,7 @@ declare type TextDisplayProps = {
1505
2394
  wide?: never;
1506
2395
  original?: never;
1507
2396
  allCaps?: never;
2397
+ href: never;
1508
2398
  };
1509
2399
  declare type TextHeadingProps = {
1510
2400
  variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
@@ -1515,6 +2405,7 @@ declare type TextHeadingProps = {
1515
2405
  wide?: never;
1516
2406
  original?: never;
1517
2407
  allCaps?: never;
2408
+ href?: never;
1518
2409
  };
1519
2410
  declare type TextBodyProps = {
1520
2411
  variant: 'body';
@@ -1525,6 +2416,7 @@ declare type TextBodyProps = {
1525
2416
  wide?: never;
1526
2417
  original?: never;
1527
2418
  allCaps?: never;
2419
+ href?: never;
1528
2420
  };
1529
2421
  declare type TextButtonProps = {
1530
2422
  variant: 'button';
@@ -1535,6 +2427,7 @@ declare type TextButtonProps = {
1535
2427
  wide?: boolean;
1536
2428
  original?: never;
1537
2429
  allCaps?: never;
2430
+ href?: never;
1538
2431
  };
1539
2432
  declare type TextPricingProps = {
1540
2433
  variant: 'pricing';
@@ -1545,6 +2438,7 @@ declare type TextPricingProps = {
1545
2438
  wide?: never;
1546
2439
  original?: boolean;
1547
2440
  allCaps?: never;
2441
+ href?: never;
1548
2442
  };
1549
2443
  declare type TextLinkProps = {
1550
2444
  variant: 'link';
@@ -1555,9 +2449,11 @@ declare type TextLinkProps = {
1555
2449
  wide?: never;
1556
2450
  original?: never;
1557
2451
  allCaps?: never;
1558
- } & AnchorHTMLAttributes<'a'>;
2452
+ href?: string;
2453
+ };
1559
2454
  declare type TextLabelProps = {
1560
2455
  variant: 'label';
2456
+ color?: string;
1561
2457
  weight?: 'regular' | 'demi';
1562
2458
  size?: 'regular' | 'small';
1563
2459
  underline?: never;
@@ -1565,6 +2461,7 @@ declare type TextLabelProps = {
1565
2461
  wide?: never;
1566
2462
  original?: never;
1567
2463
  allCaps?: never;
2464
+ href?: never;
1568
2465
  } & LabelHTMLAttributes<'label'>;
1569
2466
  declare type TextTagProps = {
1570
2467
  variant: 'tag';
@@ -1575,11 +2472,15 @@ declare type TextTagProps = {
1575
2472
  wide?: never;
1576
2473
  original?: never;
1577
2474
  allCaps?: boolean;
2475
+ href?: never;
1578
2476
  };
1579
- declare type TextProps = AriaAttributes & {
2477
+ declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
2478
+ children: ReactNode;
1580
2479
  style?: CSSProperties;
1581
2480
  className?: string;
1582
2481
  testId?: string;
2482
+ asSpan?: boolean;
2483
+ color?: string;
1583
2484
  } & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
1584
2485
 
1585
2486
  interface SearchBarProps {
@@ -1591,18 +2492,25 @@ interface SearchBarProps {
1591
2492
  resultsPanelDataTestId?: string;
1592
2493
  allResults?: number;
1593
2494
  initialTerm?: string;
2495
+ shouldClear?: boolean;
2496
+ isBlogSearchBar?: boolean;
2497
+ ariaLabel?: string;
2498
+ placeholder?: string;
2499
+ id?: string;
2500
+ autoComplete?: string;
1594
2501
  }
1595
- declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, }: SearchBarProps) => JSX.Element;
2502
+ declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
1596
2503
 
1597
- interface ProductGalleryMobileProps {
2504
+ interface ProductGalleryMobileProps$1 {
1598
2505
  images: ImageType[];
1599
- selectedValue?: ImageType;
1600
- DiscountTagElement?: JSX.Element;
1601
- BestSellerTagElement?: JSX.Element;
2506
+ customClick?: boolean;
2507
+ topTag?: JSX.Element;
2508
+ bottomTag?: JSX.Element;
1602
2509
  productImageDataTestId?: string;
1603
- slideDotsDataTestId?: string;
2510
+ borderRadiusVariant?: boolean;
2511
+ selectedValue?: ImageType;
1604
2512
  }
1605
- declare const ProductGalleryMobile: ({ images, selectedValue, DiscountTagElement, BestSellerTagElement, productImageDataTestId, slideDotsDataTestId, }: ProductGalleryMobileProps) => JSX.Element;
2513
+ declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps$1) => JSX.Element;
1606
2514
 
1607
2515
  interface RadioProps {
1608
2516
  name: string;
@@ -1613,12 +2521,15 @@ interface RadioProps {
1613
2521
  checked?: boolean;
1614
2522
  disabled?: boolean;
1615
2523
  onChange: (option: RadioGroupOption) => void;
2524
+ style?: React.CSSProperties;
1616
2525
  }
1617
- declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
2526
+ declare const RadioInput: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
1618
2527
 
1619
2528
  declare type PortalProps = {
1620
2529
  id: string;
1621
2530
  className?: string;
2531
+ overflow?: boolean;
2532
+ style?: CSSProperties;
1622
2533
  };
1623
2534
  declare const Portal: FC<PortalProps>;
1624
2535
 
@@ -1626,10 +2537,12 @@ declare type ModalProps = {
1626
2537
  id: string;
1627
2538
  dismissable?: boolean;
1628
2539
  maxFullScreen?: boolean;
2540
+ padding?: string;
1629
2541
  };
1630
2542
  interface ContainerProps {
1631
2543
  maxFullScreen: boolean;
1632
2544
  opened?: boolean;
2545
+ padding?: string;
1633
2546
  }
1634
2547
  declare const Overlay: _emotion_styled.StyledComponent<{
1635
2548
  theme?: _emotion_react.Theme | undefined;
@@ -1692,6 +2605,26 @@ declare type SpacingProps = {
1692
2605
  };
1693
2606
  declare const Spacing: FC<SpacingProps>;
1694
2607
 
2608
+ interface PackOption$1 {
2609
+ label: string;
2610
+ description: string;
2611
+ meta: {
2612
+ discountPercentage: number;
2613
+ originalPrice: number;
2614
+ price: number;
2615
+ quantity: number;
2616
+ icon: string;
2617
+ tag?: string;
2618
+ };
2619
+ }
2620
+ interface PackSelectorProps$1 {
2621
+ packs: PackOption$1[];
2622
+ selectedValue: PackOption$1;
2623
+ onChange: (size: PackOption$1) => void;
2624
+ currencyCode?: string;
2625
+ }
2626
+ declare const PackSelector: FC<PackSelectorProps$1>;
2627
+
1695
2628
  interface PackOption {
1696
2629
  label: string;
1697
2630
  description: string;
@@ -1708,8 +2641,9 @@ interface PackSelectorProps {
1708
2641
  packs: PackOption[];
1709
2642
  selectedValue: PackOption;
1710
2643
  onChange: (size: PackOption) => void;
2644
+ currencyCode?: string;
1711
2645
  }
1712
- declare const PackSelector: FC<PackSelectorProps>;
2646
+ declare const PackSelectorV2: FC<PackSelectorProps>;
1713
2647
 
1714
2648
  interface FiltersProps {
1715
2649
  values: Filter[];
@@ -1734,6 +2668,218 @@ interface SearchNavigationProps {
1734
2668
  }
1735
2669
  declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
1736
2670
 
2671
+ interface TabProps$1 {
2672
+ title: string;
2673
+ content: ReactNode;
2674
+ }
2675
+ interface TabsProps {
2676
+ backgroundColor?: string;
2677
+ initialSelected?: string;
2678
+ tabsMaxWidth?: string;
2679
+ tabs: TabProps$1[];
2680
+ }
2681
+ declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
2682
+
2683
+ interface TabProps {
2684
+ title: string;
2685
+ titleSize?: string;
2686
+ selectedTitleWeight?: number;
2687
+ height?: string;
2688
+ selected?: boolean;
2689
+ color?: string;
2690
+ tabsMaxWidth?: string;
2691
+ onClick: (clickedTab: string) => void;
2692
+ }
2693
+ declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
2694
+
2695
+ interface IconsWithTitleProps {
2696
+ backgroundColor: string;
2697
+ iconColor: string;
2698
+ iconName: string;
2699
+ iconFolder?: string;
2700
+ withWrapper?: boolean;
2701
+ iconTitle: string;
2702
+ iconSizeDesktop?: number;
2703
+ iconSizeMobile?: number;
2704
+ iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
2705
+ iconTitleStyle?: string;
2706
+ iconStyle?: string;
2707
+ isTitleInnerHtml?: boolean;
2708
+ }
2709
+ declare const IconsWithTitle: ({ iconName, iconTitle, iconFolder, withWrapper, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconsWithTitleProps) => JSX.Element | null;
2710
+
2711
+ interface NoteProps {
2712
+ accentColor?: string;
2713
+ color?: string;
2714
+ backgroundColor?: string;
2715
+ importantNoteText: string;
2716
+ text: string;
2717
+ }
2718
+ declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
2719
+
2720
+ interface TextWithImageProps {
2721
+ title: string;
2722
+ text?: string;
2723
+ children?: ReactNode;
2724
+ buttomText: string;
2725
+ backgroundColor: string;
2726
+ imageLeftSide?: boolean;
2727
+ URLLink?: string;
2728
+ onButtonClick?: () => void;
2729
+ isRedirectionURL: boolean;
2730
+ btnBGColor?: string;
2731
+ btnHoverBGColor?: string;
2732
+ imgVideo: imageVideoProps;
2733
+ contentAfterButton?: React.ReactNode;
2734
+ titleStyle?: React.CSSProperties;
2735
+ textStyle?: React.CSSProperties;
2736
+ buttonWideOnMobile?: boolean;
2737
+ }
2738
+ declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
2739
+
2740
+ interface AccordionOptionsProps {
2741
+ titleColor: string;
2742
+ accordions: AccordionProps[];
2743
+ }
2744
+ declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
2745
+
2746
+ interface ShortBannerProps {
2747
+ title: string;
2748
+ bannerText: string;
2749
+ backgroundColor: string;
2750
+ alignCenter?: boolean;
2751
+ widthAuto?: boolean;
2752
+ textColor: string;
2753
+ }
2754
+ declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
2755
+
2756
+ interface BeforeAfterCardProps {
2757
+ name: string;
2758
+ age?: string;
2759
+ months?: string;
2760
+ beforeImage: string;
2761
+ afterImage: string;
2762
+ alignCenter?: boolean;
2763
+ imageBorderRadius?: string;
2764
+ size?: ComponentSize;
2765
+ }
2766
+ declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
2767
+
2768
+ interface ImageCardWithDescriptionProps {
2769
+ image: string;
2770
+ title?: string;
2771
+ description?: string;
2772
+ titlePosition?: 'center' | 'left';
2773
+ }
2774
+ declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
2775
+
2776
+ interface Checkpoint$1 {
2777
+ day: string;
2778
+ date: string;
2779
+ statusMessage: string;
2780
+ }
2781
+ interface TrackingProgressProps {
2782
+ checkPoints: Checkpoint$1[];
2783
+ amountOfCheckPoints: number;
2784
+ }
2785
+ declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
2786
+
2787
+ interface Checkpoint {
2788
+ day: string;
2789
+ date: string;
2790
+ statusMessage: string;
2791
+ }
2792
+ interface TrackingProgressV2Props {
2793
+ checkPoints: Checkpoint[];
2794
+ amountOfCheckPoints: number;
2795
+ warning?: boolean;
2796
+ }
2797
+ declare const TrackingProgressV2: ({ checkPoints, amountOfCheckPoints, warning, }: TrackingProgressV2Props) => JSX.Element;
2798
+
2799
+ interface ReviewsHeaderProps {
2800
+ title?: string;
2801
+ rating: number;
2802
+ reviews: number;
2803
+ reviewsText: string;
2804
+ reviewsSummary: string[];
2805
+ onClickReview: (reveiw: string) => void;
2806
+ }
2807
+ declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
2808
+
2809
+ interface ReviewProps {
2810
+ reviewId: string;
2811
+ reviewerName: string;
2812
+ date: Date;
2813
+ rating: number;
2814
+ stars: {
2815
+ color: string;
2816
+ size: ComponentSize.Medium | ComponentSize.Small;
2817
+ };
2818
+ title: string;
2819
+ description: string;
2820
+ image?: {
2821
+ src: string;
2822
+ alt: string;
2823
+ };
2824
+ modalId: string;
2825
+ maxFullScreen?: boolean;
2826
+ verified?: boolean;
2827
+ productImage?: string;
2828
+ productTitle?: string;
2829
+ productLink?: string;
2830
+ helpfulCount?: number;
2831
+ helpfulAction?: (id: string) => void;
2832
+ notHelpfulCount?: number;
2833
+ notHelpfulAction?: (id: string) => void;
2834
+ }
2835
+ declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps) => JSX.Element;
2836
+
2837
+ interface ProductGalleryMobileProps {
2838
+ images: ImageType[];
2839
+ selectedValue?: ImageType;
2840
+ topTag?: JSX.Element;
2841
+ bottomTag?: JSX.Element;
2842
+ productImageDataTestId?: string;
2843
+ slideDotsDataTestId?: string;
2844
+ borderRadiusVariant?: boolean;
2845
+ }
2846
+ declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
2847
+
2848
+ interface AbsorbencyLevelProps {
2849
+ dropTotal: number;
2850
+ drops: number;
2851
+ absorbencyTitle: string;
2852
+ absorbencyDescription: string;
2853
+ }
2854
+ declare const AbsorbencyLevel: ({ dropTotal, drops, absorbencyTitle, absorbencyDescription, }: AbsorbencyLevelProps) => JSX.Element;
2855
+
2856
+ interface HurryUpProps {
2857
+ hurryUpText: string;
2858
+ backgroundColor?: string;
2859
+ showTimer?: boolean;
2860
+ iconSize?: number;
2861
+ textPosition?: 'left' | 'right' | 'center';
2862
+ }
2863
+ declare const HurryUp: ({ hurryUpText, backgroundColor, iconSize, textPosition, showTimer, }: HurryUpProps) => JSX.Element;
2864
+
2865
+ interface BuyNowPayLaterProps {
2866
+ displayBNPL: boolean;
2867
+ installments: number;
2868
+ installmentPrice: string;
2869
+ iconFolder?: string;
2870
+ iconName: string;
2871
+ showLogo?: boolean;
2872
+ iconColor?: string;
2873
+ fontSize?: string;
2874
+ }
2875
+ declare const BuyNowPayLater: ({ displayBNPL, installments, installmentPrice, iconFolder, iconName, showLogo, iconColor, fontSize, }: BuyNowPayLaterProps) => JSX.Element | null;
2876
+
2877
+ interface StrengthBarProps {
2878
+ barsFilled?: number;
2879
+ supportText?: string;
2880
+ }
2881
+ declare const StrengthBars: ({ barsFilled, supportText }: StrengthBarProps) => JSX.Element;
2882
+
1737
2883
  declare global {
1738
2884
  interface Events {
1739
2885
  modal: {
@@ -1773,4 +2919,8 @@ declare const formatPrice: (value: number, { locale, currency }?: {
1773
2919
  currency?: string | undefined;
1774
2920
  }) => string;
1775
2921
 
1776
- 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 };
2922
+ declare const getSrcSet: (imgLink: string, ...breakpoints: number[]) => string;
2923
+
2924
+ declare const mediaQueries: facepaint.DynamicStyleFunction;
2925
+
2926
+ export { AbsorbencyLevel, Accordion, AccordionOptions, AmazonButton, AssetsProvider, 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, 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, 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 };