@trafilea/afrodita-components 5.0.0-beta.23 → 5.0.0-beta.231

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,12 +1167,18 @@ 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;
@@ -596,8 +1186,10 @@ interface RatingProps {
596
1186
  reviews: number;
597
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,11 @@ interface ProgressBarProps {
609
1201
  fillColor: string;
610
1202
  widthAuto?: boolean;
611
1203
  percent?: number;
1204
+ height?: string;
1205
+ backgroundColor?: string;
1206
+ borderRadius?: string;
612
1207
  }
613
- declare const ProgressBar: ({ description, fillColor, widthAuto, percent, }: ProgressBarProps) => JSX.Element;
1208
+ declare const ProgressBar: ({ description, fillColor, widthAuto, percent, height, backgroundColor, borderRadius, }: ProgressBarProps) => JSX.Element;
614
1209
 
615
1210
  interface IconButtonProps {
616
1211
  children: React.ReactNode;
@@ -624,31 +1219,45 @@ interface TooltipProps {
624
1219
  children: React.ReactNode;
625
1220
  position: ComponentPosition;
626
1221
  align?: 'start' | 'center' | 'end';
627
- text: string;
1222
+ content?: {
1223
+ text: string;
1224
+ color?: string;
1225
+ };
1226
+ backgroundColor?: string;
1227
+ maxWidth?: string;
628
1228
  header?: {
629
1229
  title: string;
630
- Icon: IconType;
1230
+ titleColor?: string;
1231
+ Icon?: IconType;
1232
+ iconFill?: string;
631
1233
  };
632
1234
  onClick?: () => void;
633
1235
  }
634
- declare const Tooltip: ({ children, position, text, align, onClick, header, }: TooltipProps) => JSX.Element;
1236
+ declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
635
1237
 
636
1238
  interface AccordionProps {
637
1239
  defaultOpen?: boolean;
1240
+ forceOpenHandler?: boolean;
1241
+ forceOpenValue?: boolean;
1242
+ titleColor?: string;
638
1243
  variant: 'simple' | 'box';
639
1244
  header: ReactNode;
1245
+ headerOnOpen?: ReactNode;
640
1246
  content: ReactNode;
641
1247
  disabled?: boolean;
1248
+ innerHTML?: boolean;
642
1249
  openIcon: IconType;
643
1250
  closeIcon: IconType;
1251
+ onClick?: (index: number) => void;
644
1252
  }
645
- declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
1253
+ declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
646
1254
 
647
1255
  declare const ThemeProvider: FC<{
648
1256
  theme: Theme;
649
1257
  children: ReactNode;
650
1258
  }>;
651
1259
  declare const useTheme: () => Theme;
1260
+
652
1261
  declare const ThemeVariables: FC<{
653
1262
  theme: Theme;
654
1263
  Container?: ElementType;
@@ -678,6 +1287,7 @@ declare type Theme = {
678
1287
  };
679
1288
  declare type ThemeBreakpoints = {
680
1289
  mobile: number;
1290
+ tablet?: number;
681
1291
  desktop: number;
682
1292
  };
683
1293
  declare type ThemeBasicPallete = {
@@ -685,7 +1295,7 @@ declare type ThemeBasicPallete = {
685
1295
  contrast: string;
686
1296
  };
687
1297
  declare type ThemeColorPallete = ThemeBasicPallete & {
688
- soft: ThemeBasicPallete;
1298
+ soft?: ThemeBasicPallete;
689
1299
  };
690
1300
  declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
691
1301
  20: ThemeColorPallete;
@@ -697,6 +1307,7 @@ declare type ThemeColors = {
697
1307
  pallete: {
698
1308
  primary: ThemeColorPrimaryPallete;
699
1309
  secondary: ThemeColorPrimaryPallete;
1310
+ tertiary?: ThemeColorPrimaryPallete;
700
1311
  } & Partial<Record<string, ThemeColorPallete>>;
701
1312
  shades: {
702
1313
  black: ThemeBasicPallete;
@@ -706,6 +1317,7 @@ declare type ThemeColors = {
706
1317
  50: ThemeBasicPallete;
707
1318
  100: ThemeBasicPallete;
708
1319
  150: ThemeBasicPallete;
1320
+ 175: ThemeBasicPallete;
709
1321
  200: ThemeBasicPallete;
710
1322
  250: ThemeBasicPallete;
711
1323
  300: ThemeBasicPallete;
@@ -734,6 +1346,8 @@ declare type ThemeColors = {
734
1346
  color: string;
735
1347
  disabled: string;
736
1348
  highlight: string;
1349
+ shadow?: string;
1350
+ isChecked?: string;
737
1351
  };
738
1352
  background: {
739
1353
  color: string;
@@ -749,6 +1363,10 @@ declare type ThemeComponent = {
749
1363
  border: string;
750
1364
  borderRadius: string;
751
1365
  fontWeight: number;
1366
+ lineHeight: string;
1367
+ letterSpacing: string;
1368
+ minWidth: string;
1369
+ minHeight: string;
752
1370
  size: {
753
1371
  small: {
754
1372
  fontSize: string;
@@ -795,6 +1413,12 @@ declare type ThemeComponent = {
795
1413
  lineHeight: string;
796
1414
  border: string;
797
1415
  boxShadow: string;
1416
+ errorBorder: string;
1417
+ };
1418
+ inputPlaceholder: {
1419
+ fontSize: string;
1420
+ padding: string;
1421
+ focusBorder: string;
798
1422
  };
799
1423
  inputCustom: {
800
1424
  button: {
@@ -827,6 +1451,12 @@ declare type ThemeComponent = {
827
1451
  border: string;
828
1452
  color: string;
829
1453
  };
1454
+ noStock: {
1455
+ fontWeight: number;
1456
+ background: string;
1457
+ border: string;
1458
+ color: string;
1459
+ };
830
1460
  disabled: {
831
1461
  border: string;
832
1462
  };
@@ -880,10 +1510,13 @@ declare type ThemeComponent = {
880
1510
  };
881
1511
  card: {
882
1512
  borderRadius: string;
1513
+ backgroundColor: string;
883
1514
  };
884
1515
  radio: {
885
1516
  borderColor: string;
886
1517
  background: string;
1518
+ textSize: string;
1519
+ lineHeight: string;
887
1520
  size: {
888
1521
  small: {
889
1522
  borderWidth: string;
@@ -912,6 +1545,7 @@ declare type ThemeComponent = {
912
1545
  };
913
1546
  };
914
1547
  label: {
1548
+ color: string;
915
1549
  fontSize: {
916
1550
  small: string;
917
1551
  medium: string;
@@ -1020,11 +1654,13 @@ declare type ThemeComponent = {
1020
1654
  fontWeight: number;
1021
1655
  lineHeight: string;
1022
1656
  padding: string;
1657
+ optionPadding: string;
1023
1658
  color: string;
1024
1659
  fill: string;
1025
1660
  options: {
1026
1661
  borderColor: string;
1027
1662
  color: string;
1663
+ borderRadius: string;
1028
1664
  };
1029
1665
  };
1030
1666
  modal: {
@@ -1038,6 +1674,168 @@ declare type ThemeComponent = {
1038
1674
  selectedContrast: string;
1039
1675
  tagColor: string;
1040
1676
  };
1677
+ slideNavigation: {
1678
+ slideDots: {
1679
+ unselectedDotColor: string;
1680
+ selectedDotColor: string;
1681
+ dotsOpacity: number;
1682
+ };
1683
+ };
1684
+ beforeAfter: {
1685
+ size: {
1686
+ small: {
1687
+ image: {
1688
+ minHeight: string;
1689
+ minWidth: string;
1690
+ mobile: {
1691
+ minHeight: string;
1692
+ minWidth: string;
1693
+ };
1694
+ };
1695
+ imageContainer: {
1696
+ maxWidth: string;
1697
+ padding: string;
1698
+ mobile: {
1699
+ maxWidth: string;
1700
+ };
1701
+ };
1702
+ userInfoText: {
1703
+ fontSize: string;
1704
+ mobile: {
1705
+ fontSize: string;
1706
+ };
1707
+ };
1708
+ };
1709
+ medium: {
1710
+ image: {
1711
+ minHeight: string;
1712
+ minWidth: string;
1713
+ mobile: {
1714
+ minHeight: string;
1715
+ minWidth: string;
1716
+ };
1717
+ };
1718
+ imageContainer: {
1719
+ maxWidth: string;
1720
+ padding: string;
1721
+ mobile: {
1722
+ maxWidth: string;
1723
+ };
1724
+ };
1725
+ userInfoText: {
1726
+ fontSize: string;
1727
+ mobile: {
1728
+ fontSize: string;
1729
+ };
1730
+ };
1731
+ };
1732
+ large: {
1733
+ image: {
1734
+ minHeight: string;
1735
+ minWidth: string;
1736
+ mobile: {
1737
+ minHeight: string;
1738
+ minWidth: string;
1739
+ };
1740
+ };
1741
+ imageContainer: {
1742
+ maxWidth: string;
1743
+ padding: string;
1744
+ mobile: {
1745
+ maxWidth: string;
1746
+ };
1747
+ };
1748
+ userInfoText: {
1749
+ fontSize: string;
1750
+ mobile: {
1751
+ fontSize: string;
1752
+ };
1753
+ };
1754
+ };
1755
+ };
1756
+ };
1757
+ total: {
1758
+ basicTotal: {
1759
+ amount: {
1760
+ color: string;
1761
+ fontSize: string;
1762
+ };
1763
+ currency: {
1764
+ color: string;
1765
+ fontSize: string;
1766
+ lineHeight: string;
1767
+ alignSelf?: string;
1768
+ };
1769
+ savings: {
1770
+ textFontSize: string;
1771
+ textLineHeight: string;
1772
+ amountFontSize: string;
1773
+ amountFontWeight: number;
1774
+ amountLineHeight: string;
1775
+ color?: string;
1776
+ };
1777
+ };
1778
+ };
1779
+ subTotal: {
1780
+ basicSubTotal: {
1781
+ family: string;
1782
+ size: string;
1783
+ weight: number;
1784
+ lineHeight: string;
1785
+ color: string;
1786
+ };
1787
+ };
1788
+ pricing: {
1789
+ priceLabel: {
1790
+ price: {
1791
+ size: ComponentSize$1.Small | ComponentSize$1.Medium | ComponentSize$1.Large;
1792
+ originalPriceColor: string;
1793
+ actualPriceColor: string;
1794
+ };
1795
+ };
1796
+ };
1797
+ orderSummary: {
1798
+ headingTextAlign: string;
1799
+ backgroundColor: string;
1800
+ maxWidth?: string;
1801
+ padding?: string;
1802
+ borderRadius?: string;
1803
+ onMobile: {
1804
+ maxWidth?: string;
1805
+ padding?: string;
1806
+ backgroundColor?: string;
1807
+ };
1808
+ };
1809
+ expressCheckout: {
1810
+ fontFamily: string;
1811
+ fontWeight: number;
1812
+ lineHeight: string;
1813
+ };
1814
+ copyrightText: {
1815
+ fontSize: string;
1816
+ fontWeight: number;
1817
+ lineHeight: string;
1818
+ color: string;
1819
+ };
1820
+ textButton: {
1821
+ fontWeight: number;
1822
+ lineHeight: string;
1823
+ };
1824
+ deliveryDetails: {
1825
+ note: {
1826
+ accentColor: string;
1827
+ color: string;
1828
+ backgroundColor: string;
1829
+ };
1830
+ SectionDetails?: {
1831
+ marginLeft: string;
1832
+ };
1833
+ };
1834
+ text: {
1835
+ orderHeader: {
1836
+ color: string;
1837
+ };
1838
+ };
1041
1839
  };
1042
1840
  declare type ThemeTypography = {
1043
1841
  config: {
@@ -1064,6 +1862,11 @@ declare type ThemeAssets = {
1064
1862
  images: {
1065
1863
  favicon: string;
1066
1864
  logo: string;
1865
+ logoSize?: {
1866
+ width: string;
1867
+ height: string;
1868
+ };
1869
+ logoMobile?: string;
1067
1870
  };
1068
1871
  [key: string]: any;
1069
1872
  };
@@ -1074,11 +1877,12 @@ interface CheckboxProps {
1074
1877
  size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1075
1878
  text: string;
1076
1879
  checked?: boolean;
1880
+ blockUncheck?: boolean;
1077
1881
  id: string;
1078
1882
  backgroundColor?: string;
1079
- variant: 'primary' | 'secondary';
1883
+ variant: 'primary' | 'secondary' | 'color';
1080
1884
  }
1081
- declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, }: CheckboxProps) => JSX.Element;
1885
+ declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, blockUncheck, backgroundColor, }: CheckboxProps) => JSX.Element;
1082
1886
 
1083
1887
  interface RadioGroupInputProps {
1084
1888
  name: string;
@@ -1087,8 +1891,20 @@ interface RadioGroupInputProps {
1087
1891
  onChange: (value: RadioGroupOption) => void;
1088
1892
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1089
1893
  disabled?: boolean;
1894
+ style?: React.CSSProperties;
1895
+ }
1896
+ declare const RadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
1897
+
1898
+ interface ClubRadioGroupInputProps {
1899
+ name: string;
1900
+ options?: RadioGroupOption[];
1901
+ value?: RadioGroupOption;
1902
+ onChange: (value: RadioGroupOption) => void;
1903
+ size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1904
+ disabled?: boolean;
1905
+ style?: React.CSSProperties;
1090
1906
  }
1091
- declare const RadioGroupInput: ({ name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
1907
+ declare const ClubRadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: ClubRadioGroupInputProps) => JSX.Element;
1092
1908
 
1093
1909
  interface SimpleProps {
1094
1910
  title: string;
@@ -1123,16 +1939,18 @@ interface CategoryTagProps {
1123
1939
  text: string;
1124
1940
  size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1125
1941
  className?: string;
1942
+ styledBorder?: boolean;
1126
1943
  }
1127
- declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1944
+ declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1128
1945
 
1129
1946
  interface SeasonOfferTagProps {
1130
1947
  text: string;
1131
1948
  backgroundColor?: string;
1132
1949
  size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1133
1950
  className?: string;
1951
+ styledBorder?: boolean;
1134
1952
  }
1135
- declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1953
+ declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1136
1954
 
1137
1955
  interface TimeProps {
1138
1956
  hours: number;
@@ -1145,7 +1963,14 @@ interface TimerProps extends TimeProps {
1145
1963
  }
1146
1964
  declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
1147
1965
 
1148
- interface BaseInputCommmonProps {
1966
+ interface BaseInputCommonProps {
1967
+ id?: string;
1968
+ value?: string;
1969
+ innerRef?: React.Ref<HTMLInputElement>;
1970
+ onBlur?: () => void;
1971
+ onFocus?: () => void;
1972
+ onChange?: (value: string, event: any) => void;
1973
+ hideClear?: boolean;
1149
1974
  defaultValue?: string;
1150
1975
  maxLength?: number;
1151
1976
  placeholder?: string;
@@ -1155,16 +1980,14 @@ interface BaseInputCommmonProps {
1155
1980
  required?: string;
1156
1981
  children?: React.ReactNode;
1157
1982
  size?: 'regular' | 'small';
1983
+ inlinePlaceholder?: boolean;
1984
+ hasError?: boolean;
1985
+ inputType?: 'text' | 'email' | 'password' | 'url';
1986
+ name?: string;
1987
+ autoFocus?: boolean;
1988
+ requiredPlaceholder?: string;
1158
1989
  }
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;
1990
+ declare type BaseInputProps = BaseInputCommonProps;
1168
1991
 
1169
1992
  declare type BasePlusIconProps = BaseInputProps & {
1170
1993
  Icon: IconType;
@@ -1203,7 +2026,7 @@ declare type CustomProps = BaseInputProps & {
1203
2026
  };
1204
2027
 
1205
2028
  declare const Input: {
1206
- Simple: ({ value, onChange, defaultValue, label, children, required, onValidation, size, ...rest }: BaseInputProps) => JSX.Element;
2029
+ Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, requiredPlaceholder, ...rest }: BaseInputCommonProps) => JSX.Element;
1207
2030
  Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
1208
2031
  SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
1209
2032
  SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
@@ -1263,7 +2086,7 @@ declare type detail = {
1263
2086
  details: string;
1264
2087
  };
1265
2088
  interface orderUpdate extends detail {
1266
- keepMeUpdated: {
2089
+ keepMeUpdated?: {
1267
2090
  title: string;
1268
2091
  onClick: () => void;
1269
2092
  };
@@ -1276,9 +2099,9 @@ interface DeliveryDetailsProps {
1276
2099
  note?: {
1277
2100
  importantNoteText: string;
1278
2101
  text: string;
1279
- accentColor: string;
1280
- backgroundColor: string;
1281
- color: string;
2102
+ accentColor?: string;
2103
+ backgroundColor?: string;
2104
+ color?: string;
1282
2105
  };
1283
2106
  }
1284
2107
  declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
@@ -1286,26 +2109,37 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
1286
2109
  interface ScrollToTopProps {
1287
2110
  scrollToTopText: string;
1288
2111
  onClick: () => void;
2112
+ fill?: string;
1289
2113
  }
1290
- declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
2114
+ declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
1291
2115
 
1292
2116
  interface OrderBarProps {
1293
2117
  message: string;
2118
+ color?: string;
2119
+ }
2120
+ declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
2121
+
2122
+ interface TableProps$1 {
2123
+ headers: string[];
2124
+ data: string[][];
2125
+ className?: string;
1294
2126
  }
1295
- declare const OrderBar: ({ message }: OrderBarProps) => JSX.Element;
2127
+ declare const SizeTable: ({ headers, data, className }: TableProps$1) => JSX.Element;
1296
2128
 
1297
2129
  interface TableProps {
1298
2130
  headers: string[];
1299
2131
  data: string[][];
2132
+ newSizeTableCss?: boolean;
1300
2133
  }
1301
- declare const SizeTable: ({ headers, data }: TableProps) => JSX.Element;
2134
+ declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
1302
2135
 
1303
2136
  interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
1304
2137
  color?: string;
1305
2138
  }
1306
2139
  interface ProductOrderItemProps {
1307
- title: string;
2140
+ title: React.ReactNode | string;
1308
2141
  subtitle: string;
2142
+ className?: string;
1309
2143
  image: {
1310
2144
  src: string;
1311
2145
  alt: string;
@@ -1316,10 +2150,12 @@ interface ProductOrderItemProps {
1316
2150
  text: string;
1317
2151
  backgroundColor: string;
1318
2152
  };
2153
+ finalPriceStyle?: React.CSSProperties;
1319
2154
  }
1320
- declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
2155
+ declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
1321
2156
 
1322
- interface ReviewProps {
2157
+ interface ReviewProps$1 {
2158
+ reviewId: string;
1323
2159
  reviewerName: string;
1324
2160
  date: Date;
1325
2161
  rating: number;
@@ -1329,27 +2165,35 @@ interface ReviewProps {
1329
2165
  };
1330
2166
  title: string;
1331
2167
  description: string;
1332
- image: {
2168
+ images?: {
1333
2169
  src: string;
1334
2170
  alt: string;
1335
- };
2171
+ }[];
2172
+ reviewVariant?: string;
2173
+ onClickImage?: (image: string) => void;
2174
+ helpfulActionText?: string;
2175
+ helpfulAction?: (id: string) => void;
2176
+ helpfulCount?: number;
1336
2177
  }
1337
- declare const Review: ({ reviewerName, date, rating, stars, title, description, image }: ReviewProps) => JSX.Element;
2178
+ declare const Review$1: ({ reviewId, reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, helpfulActionText, helpfulAction, helpfulCount, }: ReviewProps$1) => JSX.Element;
1338
2179
 
1339
2180
  interface SliderNavigationProps {
1340
- children: JSX.Element[];
2181
+ children: JSX.Element | JSX.Element[] | StyledComponent<any>;
1341
2182
  infinite: boolean;
1342
2183
  adaptiveHeight: boolean;
1343
- dotsSize: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1344
- dotListMarginTop: number;
2184
+ dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
2185
+ dotListMarginTop?: number;
1345
2186
  initialSlide?: number;
1346
2187
  arrows?: {
1347
2188
  arrowWidth: number;
1348
2189
  arrowHeight: number;
1349
2190
  arrowPadding: number;
1350
2191
  };
2192
+ dots?: boolean;
2193
+ slidesToShow?: number;
2194
+ speed?: number;
1351
2195
  }
1352
- declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
2196
+ declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
1353
2197
 
1354
2198
  interface DropdownListIconsProps {
1355
2199
  items: DropdownListIconsItem[];
@@ -1367,8 +2211,11 @@ interface ImageStyleProps {
1367
2211
  interface ImageProps extends ImageStyleProps {
1368
2212
  src: string;
1369
2213
  alt: string;
2214
+ srcSet?: string;
2215
+ sizes?: string;
2216
+ loading?: 'lazy' | 'eager';
1370
2217
  }
1371
- declare const Image: ({ src, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
2218
+ declare const Image: ({ src, srcSet, sizes, loading, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
1372
2219
 
1373
2220
  interface AmazonPaypalBtnProps {
1374
2221
  onClick: () => void;
@@ -1403,8 +2250,8 @@ interface ProductItemProps {
1403
2250
  price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
1404
2251
  rating: Pick<RatingProps, 'rating' | 'reviews'>;
1405
2252
  tags?: {
1406
- categoryTagText: string;
1407
- seasonOfferTagText: string;
2253
+ categoryTagText?: string;
2254
+ seasonOfferTagText?: string;
1408
2255
  };
1409
2256
  alignName?: 'left' | 'center';
1410
2257
  url?: string;
@@ -1413,6 +2260,32 @@ interface ProductItemProps {
1413
2260
 
1414
2261
  interface ProductItemSmallMobileProps extends ProductItemProps {
1415
2262
  size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
2263
+ imageHover?: ImageProps;
2264
+ topTag?: JSX.Element;
2265
+ bottomTag?: JSX.Element;
2266
+ onClick?: () => void;
2267
+ priceDisplayType?: 'default' | 'styled';
2268
+ priceAtBottom?: boolean;
2269
+ priceLoading?: boolean;
2270
+ colorPicker?: {
2271
+ display: boolean;
2272
+ position: string;
2273
+ component: JSX.Element | JSX.Element[] | undefined;
2274
+ };
2275
+ showBNPL?: boolean;
2276
+ isBNPL?: {
2277
+ installments: number;
2278
+ installmentPrice: string;
2279
+ iconFolder?: string;
2280
+ iconName: string;
2281
+ showLogo?: boolean;
2282
+ iconColor: string;
2283
+ fontSize: string;
2284
+ };
2285
+ hasStrength?: {
2286
+ strength: number;
2287
+ description: string;
2288
+ };
1416
2289
  }
1417
2290
 
1418
2291
  declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
@@ -1421,7 +2294,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
1421
2294
  };
1422
2295
 
1423
2296
  declare const Collection: {
1424
- ProductItemMobile: ({ title, image, price, rating, size, tags, alignName, url, className, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
2297
+ ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, colorPicker, showBNPL, isBNPL, hasStrength, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1425
2298
  withProductGrid: typeof withProductGrid;
1426
2299
  };
1427
2300
 
@@ -1482,10 +2355,13 @@ interface PaginationProps {
1482
2355
  underlineActive?: boolean;
1483
2356
  boldActive?: boolean;
1484
2357
  disabled?: boolean;
2358
+ showReducedPages?: boolean;
1485
2359
  }
1486
- declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
2360
+ declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
2361
+
2362
+ declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
1487
2363
 
1488
- declare const Text: FC<TextProps>;
2364
+ declare const Text: ({ variant, children, testId, asSpan, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
1489
2365
  declare type TextHeroProps = {
1490
2366
  variant: 'hero1' | 'hero2' | 'hero3';
1491
2367
  weight?: 'heavy' | 'bold' | 'demi';
@@ -1495,6 +2371,7 @@ declare type TextHeroProps = {
1495
2371
  wide?: never;
1496
2372
  original?: never;
1497
2373
  allCaps?: never;
2374
+ href: never;
1498
2375
  };
1499
2376
  declare type TextDisplayProps = {
1500
2377
  variant: 'display1' | 'display2';
@@ -1505,6 +2382,7 @@ declare type TextDisplayProps = {
1505
2382
  wide?: never;
1506
2383
  original?: never;
1507
2384
  allCaps?: never;
2385
+ href: never;
1508
2386
  };
1509
2387
  declare type TextHeadingProps = {
1510
2388
  variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
@@ -1515,6 +2393,7 @@ declare type TextHeadingProps = {
1515
2393
  wide?: never;
1516
2394
  original?: never;
1517
2395
  allCaps?: never;
2396
+ href?: never;
1518
2397
  };
1519
2398
  declare type TextBodyProps = {
1520
2399
  variant: 'body';
@@ -1525,6 +2404,7 @@ declare type TextBodyProps = {
1525
2404
  wide?: never;
1526
2405
  original?: never;
1527
2406
  allCaps?: never;
2407
+ href?: never;
1528
2408
  };
1529
2409
  declare type TextButtonProps = {
1530
2410
  variant: 'button';
@@ -1535,6 +2415,7 @@ declare type TextButtonProps = {
1535
2415
  wide?: boolean;
1536
2416
  original?: never;
1537
2417
  allCaps?: never;
2418
+ href?: never;
1538
2419
  };
1539
2420
  declare type TextPricingProps = {
1540
2421
  variant: 'pricing';
@@ -1545,6 +2426,7 @@ declare type TextPricingProps = {
1545
2426
  wide?: never;
1546
2427
  original?: boolean;
1547
2428
  allCaps?: never;
2429
+ href?: never;
1548
2430
  };
1549
2431
  declare type TextLinkProps = {
1550
2432
  variant: 'link';
@@ -1555,9 +2437,11 @@ declare type TextLinkProps = {
1555
2437
  wide?: never;
1556
2438
  original?: never;
1557
2439
  allCaps?: never;
1558
- } & AnchorHTMLAttributes<'a'>;
2440
+ href?: string;
2441
+ };
1559
2442
  declare type TextLabelProps = {
1560
2443
  variant: 'label';
2444
+ color?: string;
1561
2445
  weight?: 'regular' | 'demi';
1562
2446
  size?: 'regular' | 'small';
1563
2447
  underline?: never;
@@ -1565,6 +2449,7 @@ declare type TextLabelProps = {
1565
2449
  wide?: never;
1566
2450
  original?: never;
1567
2451
  allCaps?: never;
2452
+ href?: never;
1568
2453
  } & LabelHTMLAttributes<'label'>;
1569
2454
  declare type TextTagProps = {
1570
2455
  variant: 'tag';
@@ -1575,11 +2460,15 @@ declare type TextTagProps = {
1575
2460
  wide?: never;
1576
2461
  original?: never;
1577
2462
  allCaps?: boolean;
2463
+ href?: never;
1578
2464
  };
1579
- declare type TextProps = AriaAttributes & {
2465
+ declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
2466
+ children: ReactNode;
1580
2467
  style?: CSSProperties;
1581
2468
  className?: string;
1582
2469
  testId?: string;
2470
+ asSpan?: boolean;
2471
+ color?: string;
1583
2472
  } & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
1584
2473
 
1585
2474
  interface SearchBarProps {
@@ -1587,21 +2476,29 @@ interface SearchBarProps {
1587
2476
  resultOptions: SearchBarOptionItem[];
1588
2477
  onChange: (text: string) => void;
1589
2478
  onSearch: (term: string) => void;
2479
+ onClose: () => void;
1590
2480
  resultsPanelDataTestId?: string;
1591
2481
  allResults?: number;
1592
2482
  initialTerm?: string;
2483
+ shouldClear?: boolean;
2484
+ isBlogSearchBar?: boolean;
2485
+ ariaLabel?: string;
2486
+ placeholder?: string;
2487
+ id?: string;
2488
+ autoComplete?: string;
1593
2489
  }
1594
- declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, resultsPanelDataTestId, allResults, initialTerm, }: SearchBarProps) => JSX.Element;
2490
+ declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
1595
2491
 
1596
- interface ProductGalleryMobileProps {
2492
+ interface ProductGalleryMobileProps$1 {
1597
2493
  images: ImageType[];
1598
- selectedValue?: ImageType;
1599
- DiscountTagElement?: JSX.Element;
1600
- BestSellerTagElement?: JSX.Element;
2494
+ customClick?: boolean;
2495
+ topTag?: JSX.Element;
2496
+ bottomTag?: JSX.Element;
1601
2497
  productImageDataTestId?: string;
1602
- slideDotsDataTestId?: string;
2498
+ borderRadiusVariant?: boolean;
2499
+ selectedValue?: ImageType;
1603
2500
  }
1604
- declare const ProductGalleryMobile: ({ images, selectedValue, DiscountTagElement, BestSellerTagElement, productImageDataTestId, slideDotsDataTestId, }: ProductGalleryMobileProps) => JSX.Element;
2501
+ declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps$1) => JSX.Element;
1605
2502
 
1606
2503
  interface RadioProps {
1607
2504
  name: string;
@@ -1612,12 +2509,15 @@ interface RadioProps {
1612
2509
  checked?: boolean;
1613
2510
  disabled?: boolean;
1614
2511
  onChange: (option: RadioGroupOption) => void;
2512
+ style?: React.CSSProperties;
1615
2513
  }
1616
- declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
2514
+ declare const RadioInput: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
1617
2515
 
1618
2516
  declare type PortalProps = {
1619
2517
  id: string;
1620
2518
  className?: string;
2519
+ overflow?: boolean;
2520
+ style?: CSSProperties;
1621
2521
  };
1622
2522
  declare const Portal: FC<PortalProps>;
1623
2523
 
@@ -1625,10 +2525,12 @@ declare type ModalProps = {
1625
2525
  id: string;
1626
2526
  dismissable?: boolean;
1627
2527
  maxFullScreen?: boolean;
2528
+ padding?: string;
1628
2529
  };
1629
2530
  interface ContainerProps {
1630
2531
  maxFullScreen: boolean;
1631
2532
  opened?: boolean;
2533
+ padding?: string;
1632
2534
  }
1633
2535
  declare const Overlay: _emotion_styled.StyledComponent<{
1634
2536
  theme?: _emotion_react.Theme | undefined;
@@ -1691,6 +2593,26 @@ declare type SpacingProps = {
1691
2593
  };
1692
2594
  declare const Spacing: FC<SpacingProps>;
1693
2595
 
2596
+ interface PackOption$1 {
2597
+ label: string;
2598
+ description: string;
2599
+ meta: {
2600
+ discountPercentage: number;
2601
+ originalPrice: number;
2602
+ price: number;
2603
+ quantity: number;
2604
+ icon: string;
2605
+ tag?: string;
2606
+ };
2607
+ }
2608
+ interface PackSelectorProps$1 {
2609
+ packs: PackOption$1[];
2610
+ selectedValue: PackOption$1;
2611
+ onChange: (size: PackOption$1) => void;
2612
+ currencyCode?: string;
2613
+ }
2614
+ declare const PackSelector: FC<PackSelectorProps$1>;
2615
+
1694
2616
  interface PackOption {
1695
2617
  label: string;
1696
2618
  description: string;
@@ -1707,8 +2629,9 @@ interface PackSelectorProps {
1707
2629
  packs: PackOption[];
1708
2630
  selectedValue: PackOption;
1709
2631
  onChange: (size: PackOption) => void;
2632
+ currencyCode?: string;
1710
2633
  }
1711
- declare const PackSelector: FC<PackSelectorProps>;
2634
+ declare const PackSelectorV2: FC<PackSelectorProps>;
1712
2635
 
1713
2636
  interface FiltersProps {
1714
2637
  values: Filter[];
@@ -1733,6 +2656,217 @@ interface SearchNavigationProps {
1733
2656
  }
1734
2657
  declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
1735
2658
 
2659
+ interface TabProps$1 {
2660
+ title: string;
2661
+ content: ReactNode;
2662
+ }
2663
+ interface TabsProps {
2664
+ backgroundColor?: string;
2665
+ initialSelected?: string;
2666
+ tabsMaxWidth?: string;
2667
+ tabs: TabProps$1[];
2668
+ }
2669
+ declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
2670
+
2671
+ interface TabProps {
2672
+ title: string;
2673
+ titleSize?: string;
2674
+ selectedTitleWeight?: number;
2675
+ height?: string;
2676
+ selected?: boolean;
2677
+ color?: string;
2678
+ tabsMaxWidth?: string;
2679
+ onClick: (clickedTab: string) => void;
2680
+ }
2681
+ declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
2682
+
2683
+ interface IconsWithTitleProps {
2684
+ backgroundColor: string;
2685
+ iconColor: string;
2686
+ iconName: string;
2687
+ iconFolder?: string;
2688
+ withWrapper?: boolean;
2689
+ iconTitle: string;
2690
+ iconSizeDesktop?: number;
2691
+ iconSizeMobile?: number;
2692
+ iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
2693
+ iconTitleStyle?: string;
2694
+ iconStyle?: string;
2695
+ isTitleInnerHtml?: boolean;
2696
+ }
2697
+ declare const IconsWithTitle: ({ iconName, iconTitle, iconFolder, withWrapper, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconsWithTitleProps) => JSX.Element | null;
2698
+
2699
+ interface NoteProps {
2700
+ accentColor?: string;
2701
+ color?: string;
2702
+ backgroundColor?: string;
2703
+ importantNoteText: string;
2704
+ text: string;
2705
+ }
2706
+ declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
2707
+
2708
+ interface TextWithImageProps {
2709
+ title: string;
2710
+ text?: string;
2711
+ children?: ReactNode;
2712
+ buttomText: string;
2713
+ backgroundColor: string;
2714
+ imageLeftSide?: boolean;
2715
+ URLLink?: string;
2716
+ onButtonClick?: () => void;
2717
+ isRedirectionURL: boolean;
2718
+ btnBGColor?: string;
2719
+ btnHoverBGColor?: string;
2720
+ imgVideo: imageVideoProps;
2721
+ contentAfterButton?: React.ReactNode;
2722
+ titleStyle?: React.CSSProperties;
2723
+ textStyle?: React.CSSProperties;
2724
+ buttonWideOnMobile?: boolean;
2725
+ }
2726
+ declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
2727
+
2728
+ interface AccordionOptionsProps {
2729
+ titleColor: string;
2730
+ accordions: AccordionProps[];
2731
+ }
2732
+ declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
2733
+
2734
+ interface ShortBannerProps {
2735
+ title: string;
2736
+ bannerText: string;
2737
+ backgroundColor: string;
2738
+ alignCenter?: boolean;
2739
+ widthAuto?: boolean;
2740
+ textColor: string;
2741
+ }
2742
+ declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
2743
+
2744
+ interface BeforeAfterCardProps {
2745
+ name: string;
2746
+ age?: string;
2747
+ months?: string;
2748
+ beforeImage: string;
2749
+ afterImage: string;
2750
+ alignCenter?: boolean;
2751
+ imageBorderRadius?: string;
2752
+ size?: ComponentSize;
2753
+ }
2754
+ declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
2755
+
2756
+ interface ImageCardWithDescriptionProps {
2757
+ image: string;
2758
+ title?: string;
2759
+ description?: string;
2760
+ titlePosition?: 'center' | 'left';
2761
+ }
2762
+ declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
2763
+
2764
+ interface Checkpoint$1 {
2765
+ day: string;
2766
+ date: string;
2767
+ statusMessage: string;
2768
+ }
2769
+ interface TrackingProgressProps {
2770
+ checkPoints: Checkpoint$1[];
2771
+ amountOfCheckPoints: number;
2772
+ }
2773
+ declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
2774
+
2775
+ interface Checkpoint {
2776
+ day: string;
2777
+ date: string;
2778
+ statusMessage: string;
2779
+ }
2780
+ interface TrackingProgressV2Props {
2781
+ checkPoints: Checkpoint[];
2782
+ amountOfCheckPoints: number;
2783
+ warning?: boolean;
2784
+ }
2785
+ declare const TrackingProgressV2: ({ checkPoints, amountOfCheckPoints, warning, }: TrackingProgressV2Props) => JSX.Element;
2786
+
2787
+ interface ReviewsHeaderProps {
2788
+ title?: string;
2789
+ rating: number;
2790
+ reviews: number;
2791
+ reviewsText: string;
2792
+ reviewsSummary: string[];
2793
+ onClickReview: (reveiw: string) => void;
2794
+ }
2795
+ declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
2796
+
2797
+ interface ReviewProps {
2798
+ reviewId: string;
2799
+ reviewerName: string;
2800
+ date: Date;
2801
+ rating: number;
2802
+ stars: {
2803
+ color: string;
2804
+ size: ComponentSize.Medium | ComponentSize.Small;
2805
+ };
2806
+ title: string;
2807
+ description: string;
2808
+ image?: {
2809
+ src: string;
2810
+ alt: string;
2811
+ };
2812
+ modalId: string;
2813
+ maxFullScreen?: boolean;
2814
+ verified?: boolean;
2815
+ productImage?: string;
2816
+ productTitle?: string;
2817
+ productLink?: string;
2818
+ helpfulCount?: number;
2819
+ helpfulAction?: (id: string) => void;
2820
+ notHelpfulCount?: number;
2821
+ notHelpfulAction?: (id: string) => void;
2822
+ }
2823
+ declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps) => JSX.Element;
2824
+
2825
+ interface ProductGalleryMobileProps {
2826
+ images: ImageType[];
2827
+ selectedValue?: ImageType;
2828
+ topTag?: JSX.Element;
2829
+ bottomTag?: JSX.Element;
2830
+ productImageDataTestId?: string;
2831
+ slideDotsDataTestId?: string;
2832
+ borderRadiusVariant?: boolean;
2833
+ }
2834
+ declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
2835
+
2836
+ interface AbsorbencyLevelProps {
2837
+ dropTotal: number;
2838
+ drops: number;
2839
+ absorbencyTitle: string;
2840
+ absorbencyDescription: string;
2841
+ }
2842
+ declare const AbsorbencyLevel: ({ dropTotal, drops, absorbencyTitle, absorbencyDescription, }: AbsorbencyLevelProps) => JSX.Element;
2843
+
2844
+ interface HurryUpProps {
2845
+ hurryUpText: string;
2846
+ backgroundColor?: string;
2847
+ showTimer?: boolean;
2848
+ iconSize?: number;
2849
+ textPosition?: 'left' | 'right' | 'center';
2850
+ }
2851
+ declare const HurryUp: ({ hurryUpText, backgroundColor, iconSize, textPosition, showTimer, }: HurryUpProps) => JSX.Element;
2852
+
2853
+ interface BuyNowPayLaterProps {
2854
+ installments: number;
2855
+ installmentPrice: string;
2856
+ iconFolder?: string;
2857
+ iconName: string;
2858
+ showLogo?: boolean;
2859
+ iconColor?: string;
2860
+ fontSize?: string;
2861
+ }
2862
+ declare const BuyNowPayLater: ({ installments, installmentPrice, iconFolder, iconName, showLogo, iconColor, fontSize, }: BuyNowPayLaterProps) => JSX.Element | null;
2863
+
2864
+ interface StrengthBarProps {
2865
+ barsFilled?: number;
2866
+ supportText?: string;
2867
+ }
2868
+ declare const StrengthBars: ({ barsFilled, supportText }: StrengthBarProps) => JSX.Element;
2869
+
1736
2870
  declare global {
1737
2871
  interface Events {
1738
2872
  modal: {
@@ -1772,4 +2906,8 @@ declare const formatPrice: (value: number, { locale, currency }?: {
1772
2906
  currency?: string | undefined;
1773
2907
  }) => string;
1774
2908
 
1775
- 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 };
2909
+ declare const getSrcSet: (imgLink: string, ...breakpoints: number[]) => string;
2910
+
2911
+ declare const mediaQueries: facepaint.DynamicStyleFunction;
2912
+
2913
+ 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, 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 };