@trafilea/afrodita-components 5.0.0-beta.10 → 5.0.0-beta.101

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,9 +1,11 @@
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';
8
10
 
9
11
  declare enum CardSectionType {
@@ -33,6 +35,7 @@ interface IconProps {
33
35
  height?: number;
34
36
  fill?: string;
35
37
  title?: string;
38
+ testId?: string;
36
39
  }
37
40
  declare type ButtonType = 'button' | 'submit' | 'reset';
38
41
  interface CTAProps {
@@ -57,11 +60,6 @@ declare type SizeOption = {
57
60
  description: string;
58
61
  disabled?: boolean;
59
62
  };
60
- declare type Color = {
61
- primaryColor: string;
62
- secondaryColor?: string;
63
- tertiaryColor?: string;
64
- };
65
63
  declare type Pattern = {
66
64
  url: string;
67
65
  };
@@ -69,7 +67,7 @@ declare type ColorPickerOption = {
69
67
  label: string;
70
68
  description: string;
71
69
  meta: {
72
- color?: Color;
70
+ color?: string[];
73
71
  pattern?: Pattern;
74
72
  };
75
73
  };
@@ -100,7 +98,17 @@ declare type Filter = {
100
98
  title: string;
101
99
  columns: number;
102
100
  isOpenByDefault?: boolean;
103
- items: string[];
101
+ isLinkOption?: boolean;
102
+ link?: string;
103
+ color?: string;
104
+ isMultiselect: boolean;
105
+ items: Array<{
106
+ label: string;
107
+ checked?: boolean;
108
+ isLinkItem?: boolean;
109
+ link?: string;
110
+ blockUncheck?: boolean;
111
+ }>;
104
112
  };
105
113
  declare type FilterChange = {
106
114
  sectionIndex: number;
@@ -111,18 +119,45 @@ interface SearchBarOptionItem {
111
119
  src: string;
112
120
  price: string;
113
121
  title: string;
122
+ optionUrl: string;
123
+ }
124
+ interface imageVideoProps {
125
+ imageLink: string;
126
+ isVideo?: {
127
+ videoTitle?: string;
128
+ videoSubtitle?: string;
129
+ textColor?: string;
130
+ videoLink?: string;
131
+ };
132
+ isMobile?: boolean;
114
133
  }
115
134
 
116
135
  declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
117
136
 
118
137
  declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
119
138
 
139
+ declare const Smiling: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
140
+
141
+ declare const BulletOne: ({ height, width, fill, title }: IconProps) => JSX.Element;
142
+
143
+ declare const BulletTwo: ({ height, width, fill, title }: IconProps) => JSX.Element;
144
+
145
+ declare const BulletThree: ({ height, width, fill, title }: IconProps) => JSX.Element;
146
+
120
147
  declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
121
148
  declare const Custom_Frown: typeof Frown;
149
+ declare const Custom_Smiling: typeof Smiling;
150
+ declare const Custom_BulletOne: typeof BulletOne;
151
+ declare const Custom_BulletTwo: typeof BulletTwo;
152
+ declare const Custom_BulletThree: typeof BulletThree;
122
153
  declare namespace Custom {
123
154
  export {
124
155
  Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
125
156
  Custom_Frown as Frown,
157
+ Custom_Smiling as Smiling,
158
+ Custom_BulletOne as BulletOne,
159
+ Custom_BulletTwo as BulletTwo,
160
+ Custom_BulletThree as BulletThree,
126
161
  };
127
162
  }
128
163
 
@@ -143,6 +178,69 @@ declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
143
178
 
144
179
  declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
145
180
 
181
+ declare const Warning: ({ height, width, fill }: IconProps) => JSX.Element;
182
+
183
+ declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
184
+
185
+ declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
186
+
187
+ declare const Add: ({ height, width, fill }: IconProps) => JSX.Element;
188
+
189
+ interface CopyProps extends IconProps {
190
+ stroke?: string;
191
+ }
192
+ declare const Copy: ({ height, width, fill, stroke }: CopyProps) => JSX.Element;
193
+
194
+ declare const CheckboxEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
195
+
196
+ declare const CheckboxLight: ({ height, width, fill }: IconProps) => JSX.Element;
197
+
198
+ declare const CheckboxSolid: ({ height, width, fill }: IconProps) => JSX.Element;
199
+
200
+ declare const Like: ({ height, width, fill }: IconProps) => JSX.Element;
201
+
202
+ declare const LikeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
203
+
204
+ declare const NotAllowed: ({ height, width, fill }: IconProps) => JSX.Element;
205
+
206
+ declare const RadioEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
207
+
208
+ declare const RadioFilled: ({ height, width, fill }: IconProps) => JSX.Element;
209
+
210
+ declare const Minus$1: ({ height, width, fill }: IconProps) => JSX.Element;
211
+
212
+ declare const SettingsSolid: ({ height, width, fill }: IconProps) => JSX.Element;
213
+
214
+ declare const Settings: ({ height, width, fill }: IconProps) => JSX.Element;
215
+
216
+ declare const Share: ({ height, width, fill }: IconProps) => JSX.Element;
217
+
218
+ declare const CircleCheck: ({ height, width, fill }: IconProps) => JSX.Element;
219
+
220
+ declare const CircleClear: ({ height, width, fill }: IconProps) => JSX.Element;
221
+
222
+ declare const CircleInfo: ({ height, width, fill }: IconProps) => JSX.Element;
223
+
224
+ declare const CircleMinus: ({ height, width, fill }: IconProps) => JSX.Element;
225
+
226
+ declare const CirclePlus: ({ height, width, fill }: IconProps) => JSX.Element;
227
+
228
+ declare const CircleQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
229
+
230
+ declare const CircleWarning: ({ height, width, fill }: IconProps) => JSX.Element;
231
+
232
+ declare const CircleSolidCheck: ({ height, width, fill }: IconProps) => JSX.Element;
233
+
234
+ declare const CircleSolidClear: ({ height, width, fill }: IconProps) => JSX.Element;
235
+
236
+ declare const CircleSolidMinus: ({ height, width, fill }: IconProps) => JSX.Element;
237
+
238
+ declare const CircleSolidPlus: ({ height, width, fill }: IconProps) => JSX.Element;
239
+
240
+ declare const CircleSolidQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
241
+
242
+ declare const CircleSolidWarning: ({ height, width, fill }: IconProps) => JSX.Element;
243
+
146
244
  declare const Actions_Check: typeof Check;
147
245
  declare const Actions_ClearLight: typeof ClearLight;
148
246
  declare const Actions_LightExclamation: typeof LightExclamation;
@@ -151,6 +249,36 @@ declare const Actions_LightCheck: typeof LightCheck;
151
249
  declare const Actions_Question: typeof Question;
152
250
  declare const Actions_Close: typeof Close;
153
251
  declare const Actions_Trash: typeof Trash;
252
+ declare const Actions_Warning: typeof Warning;
253
+ declare const Actions_Edit: typeof Edit;
254
+ declare const Actions_SignOut: typeof SignOut;
255
+ declare const Actions_Add: typeof Add;
256
+ type Actions_CopyProps = CopyProps;
257
+ declare const Actions_Copy: typeof Copy;
258
+ declare const Actions_CheckboxEmpty: typeof CheckboxEmpty;
259
+ declare const Actions_CheckboxLight: typeof CheckboxLight;
260
+ declare const Actions_CheckboxSolid: typeof CheckboxSolid;
261
+ declare const Actions_Like: typeof Like;
262
+ declare const Actions_LikeSolid: typeof LikeSolid;
263
+ declare const Actions_NotAllowed: typeof NotAllowed;
264
+ declare const Actions_RadioEmpty: typeof RadioEmpty;
265
+ declare const Actions_RadioFilled: typeof RadioFilled;
266
+ declare const Actions_SettingsSolid: typeof SettingsSolid;
267
+ declare const Actions_Settings: typeof Settings;
268
+ declare const Actions_Share: typeof Share;
269
+ declare const Actions_CircleCheck: typeof CircleCheck;
270
+ declare const Actions_CircleClear: typeof CircleClear;
271
+ declare const Actions_CircleInfo: typeof CircleInfo;
272
+ declare const Actions_CircleMinus: typeof CircleMinus;
273
+ declare const Actions_CirclePlus: typeof CirclePlus;
274
+ declare const Actions_CircleQuestion: typeof CircleQuestion;
275
+ declare const Actions_CircleWarning: typeof CircleWarning;
276
+ declare const Actions_CircleSolidCheck: typeof CircleSolidCheck;
277
+ declare const Actions_CircleSolidClear: typeof CircleSolidClear;
278
+ declare const Actions_CircleSolidMinus: typeof CircleSolidMinus;
279
+ declare const Actions_CircleSolidPlus: typeof CircleSolidPlus;
280
+ declare const Actions_CircleSolidQuestion: typeof CircleSolidQuestion;
281
+ declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
154
282
  declare namespace Actions {
155
283
  export {
156
284
  Actions_Check as Check,
@@ -161,6 +289,37 @@ declare namespace Actions {
161
289
  Actions_Question as Question,
162
290
  Actions_Close as Close,
163
291
  Actions_Trash as Trash,
292
+ Actions_Warning as Warning,
293
+ Actions_Edit as Edit,
294
+ Actions_SignOut as SignOut,
295
+ Actions_Add as Add,
296
+ Actions_CopyProps as CopyProps,
297
+ Actions_Copy as Copy,
298
+ Actions_CheckboxEmpty as CheckboxEmpty,
299
+ Actions_CheckboxLight as CheckboxLight,
300
+ Actions_CheckboxSolid as CheckboxSolid,
301
+ Actions_Like as Like,
302
+ Actions_LikeSolid as LikeSolid,
303
+ Actions_NotAllowed as NotAllowed,
304
+ Actions_RadioEmpty as RadioEmpty,
305
+ Actions_RadioFilled as RadioFilled,
306
+ Minus$1 as Minus,
307
+ Actions_SettingsSolid as SettingsSolid,
308
+ Actions_Settings as Settings,
309
+ Actions_Share as Share,
310
+ Actions_CircleCheck as CircleCheck,
311
+ Actions_CircleClear as CircleClear,
312
+ Actions_CircleInfo as CircleInfo,
313
+ Actions_CircleMinus as CircleMinus,
314
+ Actions_CirclePlus as CirclePlus,
315
+ Actions_CircleQuestion as CircleQuestion,
316
+ Actions_CircleWarning as CircleWarning,
317
+ Actions_CircleSolidCheck as CircleSolidCheck,
318
+ Actions_CircleSolidClear as CircleSolidClear,
319
+ Actions_CircleSolidMinus as CircleSolidMinus,
320
+ Actions_CircleSolidPlus as CircleSolidPlus,
321
+ Actions_CircleSolidQuestion as CircleSolidQuestion,
322
+ Actions_CircleSolidWarning as CircleSolidWarning,
164
323
  };
165
324
  }
166
325
 
@@ -169,31 +328,78 @@ declare const FitPredictor$1: ({ height, width, fill }: IconProps) => JSX.Elemen
169
328
  interface LoadingProps extends IconProps {
170
329
  backgroundColor: string;
171
330
  }
172
- declare const Loading: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
331
+ declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
173
332
 
174
333
  declare const Shapermint: ({ height, width }: IconProps) => JSX.Element;
175
334
 
176
335
  declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
177
336
 
337
+ declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
338
+
339
+ declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
340
+
341
+ declare const Chat: ({ height, width, fill, testId }: IconProps) => JSX.Element;
342
+
343
+ declare const Email: ({ height, width, fill, testId }: IconProps) => JSX.Element;
344
+
345
+ declare const CallUs: ({ height, width, fill, testId }: IconProps) => JSX.Element;
346
+
347
+ declare const SignForm: ({ height, width, fill }: IconProps) => JSX.Element;
348
+
349
+ declare const QrCode: ({ height, width, fill }: IconProps) => JSX.Element;
350
+
351
+ declare const FreeExchange: ({ height, width, fill, testId }: IconProps) => JSX.Element;
352
+
353
+ declare const ShopNow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
354
+
355
+ declare const HasselFreeReturns: ({ height, width, fill, testId }: IconProps) => JSX.Element;
356
+
357
+ declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
358
+
359
+ declare const FitGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
360
+
178
361
  type Other_LoadingProps = LoadingProps;
179
- declare const Other_Loading: typeof Loading;
180
362
  declare const Other_Shapermint: typeof Shapermint;
181
363
  declare const Other_McAfee: typeof McAfee;
364
+ declare const Other_GetDiscount: typeof GetDiscount;
365
+ declare const Other_ShapermintLogo: typeof ShapermintLogo;
366
+ declare const Other_Chat: typeof Chat;
367
+ declare const Other_Email: typeof Email;
368
+ declare const Other_CallUs: typeof CallUs;
369
+ declare const Other_SignForm: typeof SignForm;
370
+ declare const Other_QrCode: typeof QrCode;
371
+ declare const Other_FreeExchange: typeof FreeExchange;
372
+ declare const Other_ShopNow: typeof ShopNow;
373
+ declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
374
+ declare const Other_Play: typeof Play;
375
+ declare const Other_FitGuarantee: typeof FitGuarantee;
182
376
  declare namespace Other {
183
377
  export {
184
378
  FitPredictor$1 as FitPredictor,
185
379
  Other_LoadingProps as LoadingProps,
186
- Other_Loading as Loading,
380
+ Loading$1 as Loading,
187
381
  Other_Shapermint as Shapermint,
188
382
  Other_McAfee as McAfee,
383
+ Other_GetDiscount as GetDiscount,
384
+ Other_ShapermintLogo as ShapermintLogo,
385
+ Other_Chat as Chat,
386
+ Other_Email as Email,
387
+ Other_CallUs as CallUs,
388
+ Other_SignForm as SignForm,
389
+ Other_QrCode as QrCode,
390
+ Other_FreeExchange as FreeExchange,
391
+ Other_ShopNow as ShopNow,
392
+ Other_HasselFreeReturns as HasselFreeReturns,
393
+ Other_Play as Play,
394
+ Other_FitGuarantee as FitGuarantee,
189
395
  };
190
396
  }
191
397
 
192
398
  declare const ChevronDown: ({ height, width, fill }: IconProps) => JSX.Element;
193
399
 
194
- declare const ChevronLeft: ({ height, width, fill, opacity }: IconWithOpacityProps) => JSX.Element;
400
+ declare const ChevronLeft: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
195
401
 
196
- declare const ChevronRight: ({ height, width, fill, opacity }: IconWithOpacityProps) => JSX.Element;
402
+ declare const ChevronRight: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
197
403
 
198
404
  declare const ChevronRightVariant: ({ height, width, fill }: IconProps) => JSX.Element;
199
405
 
@@ -203,6 +409,28 @@ declare const ChevronUpSolid: ({ height, width, fill }: IconProps) => JSX.Elemen
203
409
 
204
410
  declare const CircleUp: ({ width, height, fill }: IconProps) => JSX.Element;
205
411
 
412
+ declare const CircleChevronLeft: ({ width, height, fill }: IconProps) => JSX.Element;
413
+
414
+ declare const CircleChevronRight: ({ width, height, fill }: IconProps) => JSX.Element;
415
+
416
+ declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
417
+
418
+ declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
419
+
420
+ declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
421
+
422
+ declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
423
+
424
+ declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
425
+
426
+ declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
427
+
428
+ declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
429
+
430
+ declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
431
+
432
+ declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
433
+
206
434
  declare const Arrows_ChevronDown: typeof ChevronDown;
207
435
  declare const Arrows_ChevronLeft: typeof ChevronLeft;
208
436
  declare const Arrows_ChevronRight: typeof ChevronRight;
@@ -210,6 +438,17 @@ declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
210
438
  declare const Arrows_ChevronUp: typeof ChevronUp;
211
439
  declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
212
440
  declare const Arrows_CircleUp: typeof CircleUp;
441
+ declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
442
+ declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
443
+ declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
444
+ declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
445
+ declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
446
+ declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
447
+ declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
448
+ declare const Arrows_CircleLineUp: typeof CircleLineUp;
449
+ declare const Arrows_CircleLineDown: typeof CircleLineDown;
450
+ declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
451
+ declare const Arrows_CircleLineRight: typeof CircleLineRight;
213
452
  declare namespace Arrows {
214
453
  export {
215
454
  Arrows_ChevronDown as ChevronDown,
@@ -219,6 +458,17 @@ declare namespace Arrows {
219
458
  Arrows_ChevronUp as ChevronUp,
220
459
  Arrows_ChevronUpSolid as ChevronUpSolid,
221
460
  Arrows_CircleUp as CircleUp,
461
+ Arrows_CircleChevronLeft as CircleChevronLeft,
462
+ Arrows_CircleChevronRight as CircleChevronRight,
463
+ Arrows_CircleChevronDown as CircleChevronDown,
464
+ Arrows_CircleChevronUp as CircleChevronUp,
465
+ Arrows_ChevronDownVariant as ChevronDownVariant,
466
+ Arrows_ChevronUpVariant as ChevronUpVariant,
467
+ Arrows_ChevronLeftVariant as ChevronLeftVariant,
468
+ Arrows_CircleLineUp as CircleLineUp,
469
+ Arrows_CircleLineDown as CircleLineDown,
470
+ Arrows_CircleLineLeft as CircleLineLeft,
471
+ Arrows_CircleLineRight as CircleLineRight,
222
472
  };
223
473
  }
224
474
 
@@ -242,6 +492,18 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
242
492
 
243
493
  declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
244
494
 
495
+ declare const LightBulb$1: ({ height, width, fill }: IconProps) => JSX.Element;
496
+
497
+ declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
498
+
499
+ declare const CircleNumber: ({ height, width, fill }: IconProps) => JSX.Element;
500
+
501
+ declare const SizeEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
502
+
503
+ declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
504
+
505
+ declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
506
+
245
507
  declare const PDP_Clock: typeof Clock;
246
508
  declare const PDP_FlagUSA: typeof FlagUSA;
247
509
  declare const PDP_Minus: typeof Minus;
@@ -252,6 +514,11 @@ declare const PDP_StarEmpty: typeof StarEmpty;
252
514
  declare const PDP_StarHalf: typeof StarHalf;
253
515
  declare const PDP_Stopwatch: typeof Stopwatch;
254
516
  declare const PDP_Shipping: typeof Shipping;
517
+ declare const PDP_ErrorCross: typeof ErrorCross;
518
+ declare const PDP_CircleNumber: typeof CircleNumber;
519
+ declare const PDP_SizeEmpty: typeof SizeEmpty;
520
+ declare const PDP_PlayMini: typeof PlayMini;
521
+ declare const PDP_ShippingEmpty: typeof ShippingEmpty;
255
522
  declare namespace PDP {
256
523
  export {
257
524
  PDP_Clock as Clock,
@@ -264,6 +531,12 @@ declare namespace PDP {
264
531
  PDP_StarHalf as StarHalf,
265
532
  PDP_Stopwatch as Stopwatch,
266
533
  PDP_Shipping as Shipping,
534
+ LightBulb$1 as LightBulb,
535
+ PDP_ErrorCross as ErrorCross,
536
+ PDP_CircleNumber as CircleNumber,
537
+ PDP_SizeEmpty as SizeEmpty,
538
+ PDP_PlayMini as PlayMini,
539
+ PDP_ShippingEmpty as ShippingEmpty,
267
540
  };
268
541
  }
269
542
 
@@ -281,6 +554,8 @@ declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
281
554
 
282
555
  declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
283
556
 
557
+ declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
558
+
284
559
  declare const SocialMedia_Facebook: typeof Facebook;
285
560
  declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
286
561
  declare const SocialMedia_Instagram: typeof Instagram;
@@ -288,6 +563,7 @@ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
288
563
  declare const SocialMedia_Pinterest: typeof Pinterest;
289
564
  declare const SocialMedia_Twitter: typeof Twitter;
290
565
  declare const SocialMedia_Youtube: typeof Youtube;
566
+ declare const SocialMedia_Interaction: typeof Interaction;
291
567
  declare namespace SocialMedia {
292
568
  export {
293
569
  SocialMedia_Facebook as Facebook,
@@ -297,14 +573,15 @@ declare namespace SocialMedia {
297
573
  SocialMedia_Pinterest as Pinterest,
298
574
  SocialMedia_Twitter as Twitter,
299
575
  SocialMedia_Youtube as Youtube,
576
+ SocialMedia_Interaction as Interaction,
300
577
  };
301
578
  }
302
579
 
303
- declare const Search: ({ height, width, fill }: IconProps) => JSX.Element;
580
+ declare const Search: ({ height, width, fill, testId }: IconProps) => JSX.Element;
304
581
 
305
582
  declare const User: ({ height, width, fill }: IconProps) => JSX.Element;
306
583
 
307
- declare const ShoppingBag: ({ height, width, fill }: IconProps) => JSX.Element;
584
+ declare const ShoppingBag: ({ height, width, fill, testId }: IconProps) => JSX.Element;
308
585
 
309
586
  declare const ShoppingCart: FC<IconProps>;
310
587
 
@@ -312,12 +589,64 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
312
589
 
313
590
  declare const Hamburger: FC<IconProps>;
314
591
 
592
+ declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
593
+
594
+ declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
595
+
596
+ declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
597
+
598
+ declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
599
+
600
+ declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
601
+
602
+ declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
603
+
604
+ declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
605
+
606
+ declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
607
+
608
+ declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
609
+
610
+ declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
611
+
612
+ declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
613
+
614
+ declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
615
+
616
+ declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
617
+
618
+ declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
619
+
620
+ declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
621
+
622
+ declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
623
+
624
+ declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
625
+
626
+ declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
627
+
315
628
  declare const Navigation_Search: typeof Search;
316
629
  declare const Navigation_User: typeof User;
317
630
  declare const Navigation_ShoppingBag: typeof ShoppingBag;
318
631
  declare const Navigation_ShoppingCart: typeof ShoppingCart;
319
632
  declare const Navigation_MapMarker: typeof MapMarker;
320
633
  declare const Navigation_Hamburger: typeof Hamburger;
634
+ declare const Navigation_AddressInformation: typeof AddressInformation;
635
+ declare const Navigation_ClubMembership: typeof ClubMembership;
636
+ declare const Navigation_Benefits: typeof Benefits;
637
+ declare const Navigation_Home: typeof Home;
638
+ declare const Navigation_HomeSolid: typeof HomeSolid;
639
+ declare const Navigation_ShoppingBagV2: typeof ShoppingBagV2;
640
+ declare const Navigation_UserSolid: typeof UserSolid;
641
+ declare const Navigation_SlideDotSolid: typeof SlideDotSolid;
642
+ declare const Navigation_Ellipsis: typeof Ellipsis;
643
+ declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
644
+ declare const Navigation_Lock: typeof Lock;
645
+ declare const Navigation_LockSolid: typeof LockSolid;
646
+ declare const Navigation_Loading: typeof Loading;
647
+ declare const Navigation_MapSolid: typeof MapSolid;
648
+ declare const Navigation_UserV2: typeof UserV2;
649
+ declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
321
650
  declare namespace Navigation {
322
651
  export {
323
652
  Navigation_Search as Search,
@@ -326,6 +655,24 @@ declare namespace Navigation {
326
655
  Navigation_ShoppingCart as ShoppingCart,
327
656
  Navigation_MapMarker as MapMarker,
328
657
  Navigation_Hamburger as Hamburger,
658
+ Navigation_AddressInformation as AddressInformation,
659
+ Navigation_ClubMembership as ClubMembership,
660
+ Navigation_Benefits as Benefits,
661
+ Navigation_Home as Home,
662
+ Navigation_HomeSolid as HomeSolid,
663
+ Navigation_ShoppingBagV2 as ShoppingBagV2,
664
+ Navigation_UserSolid as UserSolid,
665
+ SlideDot$1 as SlideDot,
666
+ Navigation_SlideDotSolid as SlideDotSolid,
667
+ Navigation_Ellipsis as Ellipsis,
668
+ Navigation_EllipsisHorizontal as EllipsisHorizontal,
669
+ Filters$1 as Filters,
670
+ Navigation_Lock as Lock,
671
+ Navigation_LockSolid as LockSolid,
672
+ Navigation_Loading as Loading,
673
+ Navigation_MapSolid as MapSolid,
674
+ Navigation_UserV2 as UserV2,
675
+ Navigation_ShoppingCartV2 as ShoppingCartV2,
329
676
  };
330
677
  }
331
678
 
@@ -342,22 +689,65 @@ interface IconWrapperProps {
342
689
  viewBoxX: number;
343
690
  viewBoxY: number;
344
691
  children: React.ReactNode;
345
- testid?: string;
692
+ testId?: string;
346
693
  fill?: string;
347
694
  }
348
695
 
349
- declare const Mail: ({ height, width }: IconWrapperProps) => JSX.Element;
696
+ declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
697
+
698
+ declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
699
+
700
+ declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
701
+
702
+ declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
703
+
704
+ declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
705
+
706
+ declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
707
+
708
+ declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
709
+
710
+ declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
711
+
712
+ declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
713
+
714
+ declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
715
+
716
+ declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
717
+
718
+ declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
350
719
 
351
720
  declare const Messaging_QuestionCircle: typeof QuestionCircle;
352
721
  declare const Messaging_Messenger: typeof Messenger;
353
722
  declare const Messaging_Comment: typeof Comment;
354
723
  declare const Messaging_Mail: typeof Mail;
724
+ declare const Messaging_QuoteLeft: typeof QuoteLeft;
725
+ declare const Messaging_QuoteRight: typeof QuoteRight;
726
+ declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
727
+ declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
728
+ declare const Messaging_Light: typeof Light;
729
+ declare const Messaging_LightBulb: typeof LightBulb;
730
+ declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
731
+ declare const Messaging_CommentDots: typeof CommentDots;
732
+ declare const Messaging_CommentLight: typeof CommentLight;
733
+ declare const Messaging_CommentMoney: typeof CommentMoney;
355
734
  declare namespace Messaging {
356
735
  export {
357
736
  Messaging_QuestionCircle as QuestionCircle,
358
737
  Messaging_Messenger as Messenger,
359
738
  Messaging_Comment as Comment,
360
739
  Messaging_Mail as Mail,
740
+ Community$1 as Community,
741
+ Messaging_QuoteLeft as QuoteLeft,
742
+ Messaging_QuoteRight as QuoteRight,
743
+ Messaging_QuoteSolidLeft as QuoteSolidLeft,
744
+ Messaging_QuoteSolidRight as QuoteSolidRight,
745
+ Messaging_Light as Light,
746
+ Messaging_LightBulb as LightBulb,
747
+ Messaging_LightBulbSolid as LightBulbSolid,
748
+ Messaging_CommentDots as CommentDots,
749
+ Messaging_CommentLight as CommentLight,
750
+ Messaging_CommentMoney as CommentMoney,
361
751
  };
362
752
  }
363
753
 
@@ -418,14 +808,79 @@ declare namespace SlideDots {
418
808
 
419
809
  declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
420
810
 
811
+ declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
812
+
813
+ declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
814
+
815
+ declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
816
+
817
+ declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
818
+
819
+ declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
820
+
821
+ declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
822
+
421
823
  declare const Emoji_Thinking: typeof Thinking;
824
+ declare const Emoji_SmilingV2: typeof SmilingV2;
825
+ declare const Emoji_Grinning: typeof Grinning;
826
+ declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
827
+ declare const Emoji_BlowingKiss: typeof BlowingKiss;
828
+ declare const Emoji_Frowning: typeof Frowning;
829
+ declare const Emoji_Relieved: typeof Relieved;
422
830
  declare namespace Emoji {
423
831
  export {
424
832
  Emoji_Thinking as Thinking,
833
+ Emoji_SmilingV2 as SmilingV2,
834
+ Emoji_Grinning as Grinning,
835
+ Emoji_GrinningWithSweat as GrinningWithSweat,
836
+ Emoji_BlowingKiss as BlowingKiss,
837
+ Emoji_Frowning as Frowning,
838
+ Emoji_Relieved as Relieved,
839
+ };
840
+ }
841
+
842
+ declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
843
+
844
+ declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
845
+
846
+ declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
847
+
848
+ declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
849
+
850
+ declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
851
+
852
+ declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
853
+
854
+ declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
855
+
856
+ declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
857
+
858
+ declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
859
+
860
+ declare const MyAccount_FreeShipping: typeof FreeShipping;
861
+ declare const MyAccount_PersonalStylist: typeof PersonalStylist;
862
+ declare const MyAccount_Community: typeof Community;
863
+ declare const MyAccount_VIP: typeof VIP;
864
+ declare const MyAccount_DealsOffers: typeof DealsOffers;
865
+ declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
866
+ declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
867
+ declare const MyAccount_Profile: typeof Profile;
868
+ declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
869
+ declare namespace MyAccount {
870
+ export {
871
+ MyAccount_FreeShipping as FreeShipping,
872
+ MyAccount_PersonalStylist as PersonalStylist,
873
+ MyAccount_Community as Community,
874
+ MyAccount_VIP as VIP,
875
+ MyAccount_DealsOffers as DealsOffers,
876
+ MyAccount_StyleFashionContent as StyleFashionContent,
877
+ MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
878
+ MyAccount_Profile as Profile,
879
+ MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
425
880
  };
426
881
  }
427
882
 
428
- declare type IconType = ({ height, width, fill }: IconProps) => JSX.Element;
883
+ declare type IconType = ({ height, width, fill, testId }: IconProps) => JSX.Element;
429
884
  declare const Icon: {
430
885
  Custom: typeof Custom;
431
886
  Arrows: typeof Arrows;
@@ -439,6 +894,7 @@ declare const Icon: {
439
894
  Payment: typeof Payment;
440
895
  SlideDots: typeof SlideDots;
441
896
  Emoji: typeof Emoji;
897
+ MyAccount: typeof MyAccount;
442
898
  };
443
899
 
444
900
  interface CardBodyProps {
@@ -509,8 +965,9 @@ interface SizeFitGuideProps {
509
965
  title: string;
510
966
  fitPercentage?: number;
511
967
  onClick: () => void;
968
+ onClickFitPercentage?: () => void;
512
969
  }
513
- declare const SizeFitGuide: ({ title, fitPercentage, onClick }: SizeFitGuideProps) => JSX.Element;
970
+ declare const SizeFitGuide: ({ title, fitPercentage, onClick, onClickFitPercentage, }: SizeFitGuideProps) => JSX.Element;
514
971
 
515
972
  interface BaseButtonProps {
516
973
  children: React.ReactNode;
@@ -521,6 +978,7 @@ interface BaseButtonProps {
521
978
  onClick: () => void;
522
979
  className?: string;
523
980
  inline?: boolean;
981
+ uppercase?: boolean;
524
982
  testId?: string;
525
983
  }
526
984
 
@@ -531,8 +989,9 @@ interface TextButtonProps$1 extends BaseProps {
531
989
  TrailingIcon?: IconType;
532
990
  iconColor?: string;
533
991
  size?: ComponentSize;
992
+ uppercase?: boolean;
534
993
  }
535
- declare const TextButton: ({ text, LeadingIcon, TrailingIcon, iconColor, disabled, type, size, onClick, }: TextButtonProps$1) => _emotion_react_jsx_runtime.JSX.Element;
994
+ declare const TextButton: ({ text, LeadingIcon, TrailingIcon, iconColor, disabled, type, size, uppercase, onClick, }: TextButtonProps$1) => _emotion_react_jsx_runtime.JSX.Element;
536
995
 
537
996
  interface DiscountTagProps {
538
997
  discount: number;
@@ -542,8 +1001,9 @@ interface DiscountTagProps {
542
1001
  borderColor?: string;
543
1002
  textColor?: string;
544
1003
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1004
+ style?: React.CSSProperties;
545
1005
  }
546
- declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, }: DiscountTagProps) => JSX.Element;
1006
+ declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
547
1007
 
548
1008
  interface PriceLabelProps {
549
1009
  finalPrice: string | number;
@@ -551,8 +1011,15 @@ interface PriceLabelProps {
551
1011
  color?: string;
552
1012
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
553
1013
  discount?: DiscountTagProps;
1014
+ finalPriceStyled?: boolean;
1015
+ finalPriceStyle?: React.CSSProperties;
1016
+ originalPriceStyled?: boolean;
1017
+ originalPriceUnderlined?: boolean;
1018
+ testId?: string;
554
1019
  }
555
- declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, size, }: PriceLabelProps) => JSX.Element;
1020
+ declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
1021
+
1022
+ declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
556
1023
 
557
1024
  interface ColorPickerProps {
558
1025
  options: ColorPickerOption[];
@@ -574,12 +1041,14 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
574
1041
  interface ProductGalleryProps {
575
1042
  images: ImageType[];
576
1043
  selectedValue?: ImageType;
577
- DiscountTagElement?: JSX.Element;
578
- BestSellerTagElement?: JSX.Element;
1044
+ topTag?: JSX.Element;
1045
+ bottomTag?: JSX.Element;
579
1046
  productImageDataTestId?: string;
580
1047
  previewListDataTestId?: string;
1048
+ thumbnailPosition?: 'vertical' | 'horizontal';
1049
+ borderRadiusVariant?: boolean;
581
1050
  }
582
- declare const ProductGallery: ({ images, selectedValue, DiscountTagElement, BestSellerTagElement, productImageDataTestId, previewListDataTestId, }: ProductGalleryProps) => JSX.Element;
1051
+ declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, }: ProductGalleryProps) => JSX.Element;
583
1052
 
584
1053
  interface RatingProps {
585
1054
  rating: number;
@@ -587,8 +1056,10 @@ interface RatingProps {
587
1056
  reviews: number;
588
1057
  reviewsText: string;
589
1058
  wrapWithParenthesis?: boolean;
1059
+ underline?: boolean;
1060
+ reviewsContainerId?: string;
590
1061
  }
591
- declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
1062
+ declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
592
1063
 
593
1064
  interface FitPredictorProps {
594
1065
  onClick: () => void;
@@ -626,20 +1097,26 @@ declare const Tooltip: ({ children, position, text, align, onClick, header, }: T
626
1097
 
627
1098
  interface AccordionProps {
628
1099
  defaultOpen?: boolean;
1100
+ forceOpenHandler?: boolean;
1101
+ forceOpenValue?: boolean;
1102
+ titleColor?: string;
629
1103
  variant: 'simple' | 'box';
630
1104
  header: ReactNode;
1105
+ headerOnOpen?: ReactNode;
631
1106
  content: ReactNode;
632
1107
  disabled?: boolean;
633
1108
  openIcon: IconType;
634
1109
  closeIcon: IconType;
1110
+ onClick?: (index: number) => void;
635
1111
  }
636
- declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
1112
+ declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
637
1113
 
638
1114
  declare const ThemeProvider: FC<{
639
1115
  theme: Theme;
640
1116
  children: ReactNode;
641
1117
  }>;
642
1118
  declare const useTheme: () => Theme;
1119
+
643
1120
  declare const ThemeVariables: FC<{
644
1121
  theme: Theme;
645
1122
  Container?: ElementType;
@@ -786,6 +1263,12 @@ declare type ThemeComponent = {
786
1263
  lineHeight: string;
787
1264
  border: string;
788
1265
  boxShadow: string;
1266
+ errorBorder: string;
1267
+ };
1268
+ inputPlaceholder: {
1269
+ fontSize: string;
1270
+ padding: string;
1271
+ focusBorder: string;
789
1272
  };
790
1273
  inputCustom: {
791
1274
  button: {
@@ -1065,11 +1548,12 @@ interface CheckboxProps {
1065
1548
  size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1066
1549
  text: string;
1067
1550
  checked?: boolean;
1551
+ blockUncheck?: boolean;
1068
1552
  id: string;
1069
1553
  backgroundColor?: string;
1070
1554
  variant: 'primary' | 'secondary';
1071
1555
  }
1072
- declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, }: CheckboxProps) => JSX.Element;
1556
+ declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, blockUncheck, }: CheckboxProps) => JSX.Element;
1073
1557
 
1074
1558
  interface RadioGroupInputProps {
1075
1559
  name: string;
@@ -1102,10 +1586,11 @@ interface MinimalisticProps {
1102
1586
  discount: number;
1103
1587
  offText: string;
1104
1588
  widthAuto?: boolean;
1589
+ testId?: string;
1105
1590
  }
1106
1591
 
1107
1592
  declare const Bundle: {
1108
- Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, }: MinimalisticProps) => JSX.Element;
1593
+ Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, testId, }: MinimalisticProps) => JSX.Element;
1109
1594
  Simple: ({ title, freeShippingText, price, anyQtyForText, backgroundColor, widthAuto, }: SimpleProps) => JSX.Element;
1110
1595
  };
1111
1596
 
@@ -1113,16 +1598,18 @@ interface CategoryTagProps {
1113
1598
  text: string;
1114
1599
  size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1115
1600
  className?: string;
1601
+ styledBorder?: boolean;
1116
1602
  }
1117
- declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1603
+ declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1118
1604
 
1119
1605
  interface SeasonOfferTagProps {
1120
1606
  text: string;
1121
1607
  backgroundColor?: string;
1122
1608
  size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1123
1609
  className?: string;
1610
+ styledBorder?: boolean;
1124
1611
  }
1125
- declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1612
+ declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1126
1613
 
1127
1614
  interface TimeProps {
1128
1615
  hours: number;
@@ -1135,7 +1622,14 @@ interface TimerProps extends TimeProps {
1135
1622
  }
1136
1623
  declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
1137
1624
 
1138
- interface BaseInputCommmonProps {
1625
+ interface BaseInputCommonProps {
1626
+ id?: string;
1627
+ value?: string;
1628
+ innerRef?: React.Ref<HTMLInputElement>;
1629
+ onBlur?: () => void;
1630
+ onFocus?: () => void;
1631
+ onChange?: (value: string, event: any) => void;
1632
+ hideClear?: boolean;
1139
1633
  defaultValue?: string;
1140
1634
  maxLength?: number;
1141
1635
  placeholder?: string;
@@ -1145,16 +1639,13 @@ interface BaseInputCommmonProps {
1145
1639
  required?: string;
1146
1640
  children?: React.ReactNode;
1147
1641
  size?: 'regular' | 'small';
1642
+ inlinePlaceholder?: boolean;
1643
+ hasError?: boolean;
1644
+ inputType?: 'text' | 'email' | 'password' | 'url';
1645
+ name?: string;
1646
+ autoFocus?: boolean;
1148
1647
  }
1149
- interface BaseInputControlled extends BaseInputCommmonProps {
1150
- value: string;
1151
- onChange: (value: string) => void;
1152
- }
1153
- interface BaseInputUncontrolled extends BaseInputCommmonProps {
1154
- value?: never;
1155
- onChange?: (value: string) => void;
1156
- }
1157
- declare type BaseInputProps = BaseInputControlled | BaseInputUncontrolled;
1648
+ declare type BaseInputProps = BaseInputCommonProps;
1158
1649
 
1159
1650
  declare type BasePlusIconProps = BaseInputProps & {
1160
1651
  Icon: IconType;
@@ -1178,6 +1669,7 @@ interface BaseCTAProps {
1178
1669
  size?: ComponentSize;
1179
1670
  text: string;
1180
1671
  type?: ButtonType;
1672
+ inline?: boolean;
1181
1673
  testId?: string;
1182
1674
  }
1183
1675
 
@@ -1192,7 +1684,7 @@ declare type CustomProps = BaseInputProps & {
1192
1684
  };
1193
1685
 
1194
1686
  declare const Input: {
1195
- Simple: ({ value, onChange, defaultValue, label, children, required, onValidation, size, ...rest }: BaseInputProps) => JSX.Element;
1687
+ Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, ...rest }: BaseInputCommonProps) => JSX.Element;
1196
1688
  Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
1197
1689
  SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
1198
1690
  SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
@@ -1305,8 +1797,9 @@ interface ProductOrderItemProps {
1305
1797
  text: string;
1306
1798
  backgroundColor: string;
1307
1799
  };
1800
+ finalPriceStyle?: React.CSSProperties;
1308
1801
  }
1309
- declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
1802
+ declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
1310
1803
 
1311
1804
  interface ReviewProps {
1312
1805
  reviewerName: string;
@@ -1326,19 +1819,22 @@ interface ReviewProps {
1326
1819
  declare const Review: ({ reviewerName, date, rating, stars, title, description, image }: ReviewProps) => JSX.Element;
1327
1820
 
1328
1821
  interface SliderNavigationProps {
1329
- children: JSX.Element[];
1822
+ children: JSX.Element | JSX.Element[] | StyledComponent<any>;
1330
1823
  infinite: boolean;
1331
1824
  adaptiveHeight: boolean;
1332
- dotsSize: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1333
- dotListMarginTop: number;
1825
+ dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1826
+ dotListMarginTop?: number;
1334
1827
  initialSlide?: number;
1335
1828
  arrows?: {
1336
1829
  arrowWidth: number;
1337
1830
  arrowHeight: number;
1338
1831
  arrowPadding: number;
1339
1832
  };
1833
+ dots?: boolean;
1834
+ slidesToShow?: number;
1835
+ speed?: number;
1340
1836
  }
1341
- declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
1837
+ declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
1342
1838
 
1343
1839
  interface DropdownListIconsProps {
1344
1840
  items: DropdownListIconsItem[];
@@ -1392,8 +1888,8 @@ interface ProductItemProps {
1392
1888
  price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
1393
1889
  rating: Pick<RatingProps, 'rating' | 'reviews'>;
1394
1890
  tags?: {
1395
- categoryTagText: string;
1396
- seasonOfferTagText: string;
1891
+ categoryTagText?: string;
1892
+ seasonOfferTagText?: string;
1397
1893
  };
1398
1894
  alignName?: 'left' | 'center';
1399
1895
  url?: string;
@@ -1402,6 +1898,11 @@ interface ProductItemProps {
1402
1898
 
1403
1899
  interface ProductItemSmallMobileProps extends ProductItemProps {
1404
1900
  size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
1901
+ imageHover?: ImageProps;
1902
+ topTag?: JSX.Element;
1903
+ bottomTag?: JSX.Element;
1904
+ onClick?: () => void;
1905
+ priceDisplayType?: 'default' | 'styled';
1405
1906
  }
1406
1907
 
1407
1908
  declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
@@ -1410,7 +1911,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
1410
1911
  };
1411
1912
 
1412
1913
  declare const Collection: {
1413
- ProductItemMobile: ({ title, image, price, rating, size, tags, alignName, url, className, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1914
+ ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1414
1915
  withProductGrid: typeof withProductGrid;
1415
1916
  };
1416
1917
 
@@ -1474,7 +1975,9 @@ interface PaginationProps {
1474
1975
  }
1475
1976
  declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
1476
1977
 
1477
- declare const Text: FC<TextProps>;
1978
+ declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
1979
+
1980
+ declare const Text: ({ variant, children, testId, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
1478
1981
  declare type TextHeroProps = {
1479
1982
  variant: 'hero1' | 'hero2' | 'hero3';
1480
1983
  weight?: 'heavy' | 'bold' | 'demi';
@@ -1484,6 +1987,7 @@ declare type TextHeroProps = {
1484
1987
  wide?: never;
1485
1988
  original?: never;
1486
1989
  allCaps?: never;
1990
+ href: never;
1487
1991
  };
1488
1992
  declare type TextDisplayProps = {
1489
1993
  variant: 'display1' | 'display2';
@@ -1494,6 +1998,7 @@ declare type TextDisplayProps = {
1494
1998
  wide?: never;
1495
1999
  original?: never;
1496
2000
  allCaps?: never;
2001
+ href: never;
1497
2002
  };
1498
2003
  declare type TextHeadingProps = {
1499
2004
  variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
@@ -1504,6 +2009,7 @@ declare type TextHeadingProps = {
1504
2009
  wide?: never;
1505
2010
  original?: never;
1506
2011
  allCaps?: never;
2012
+ href?: never;
1507
2013
  };
1508
2014
  declare type TextBodyProps = {
1509
2015
  variant: 'body';
@@ -1514,6 +2020,7 @@ declare type TextBodyProps = {
1514
2020
  wide?: never;
1515
2021
  original?: never;
1516
2022
  allCaps?: never;
2023
+ href?: never;
1517
2024
  };
1518
2025
  declare type TextButtonProps = {
1519
2026
  variant: 'button';
@@ -1524,6 +2031,7 @@ declare type TextButtonProps = {
1524
2031
  wide?: boolean;
1525
2032
  original?: never;
1526
2033
  allCaps?: never;
2034
+ href?: never;
1527
2035
  };
1528
2036
  declare type TextPricingProps = {
1529
2037
  variant: 'pricing';
@@ -1534,6 +2042,7 @@ declare type TextPricingProps = {
1534
2042
  wide?: never;
1535
2043
  original?: boolean;
1536
2044
  allCaps?: never;
2045
+ href?: never;
1537
2046
  };
1538
2047
  declare type TextLinkProps = {
1539
2048
  variant: 'link';
@@ -1544,7 +2053,8 @@ declare type TextLinkProps = {
1544
2053
  wide?: never;
1545
2054
  original?: never;
1546
2055
  allCaps?: never;
1547
- } & AnchorHTMLAttributes<'a'>;
2056
+ href?: string;
2057
+ };
1548
2058
  declare type TextLabelProps = {
1549
2059
  variant: 'label';
1550
2060
  weight?: 'regular' | 'demi';
@@ -1554,6 +2064,7 @@ declare type TextLabelProps = {
1554
2064
  wide?: never;
1555
2065
  original?: never;
1556
2066
  allCaps?: never;
2067
+ href?: never;
1557
2068
  } & LabelHTMLAttributes<'label'>;
1558
2069
  declare type TextTagProps = {
1559
2070
  variant: 'tag';
@@ -1564,10 +2075,13 @@ declare type TextTagProps = {
1564
2075
  wide?: never;
1565
2076
  original?: never;
1566
2077
  allCaps?: boolean;
2078
+ href?: never;
1567
2079
  };
1568
- declare type TextProps = AriaAttributes & {
2080
+ declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
2081
+ children: ReactNode;
1569
2082
  style?: CSSProperties;
1570
2083
  className?: string;
2084
+ testId?: string;
1571
2085
  } & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
1572
2086
 
1573
2087
  interface SearchBarProps {
@@ -1575,20 +2089,29 @@ interface SearchBarProps {
1575
2089
  resultOptions: SearchBarOptionItem[];
1576
2090
  onChange: (text: string) => void;
1577
2091
  onSearch: (term: string) => void;
2092
+ onClose: () => void;
1578
2093
  resultsPanelDataTestId?: string;
1579
2094
  allResults?: number;
2095
+ initialTerm?: string;
2096
+ shouldClear?: boolean;
2097
+ isBlogSearchBar?: boolean;
2098
+ ariaLabel?: string;
2099
+ placeholder?: string;
2100
+ id?: string;
2101
+ autoComplete?: string;
1580
2102
  }
1581
- declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, resultsPanelDataTestId, allResults, }: SearchBarProps) => JSX.Element;
2103
+ declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
1582
2104
 
1583
2105
  interface ProductGalleryMobileProps {
1584
2106
  images: ImageType[];
1585
2107
  selectedValue?: ImageType;
1586
- DiscountTagElement?: JSX.Element;
1587
- BestSellerTagElement?: JSX.Element;
2108
+ topTag?: JSX.Element;
2109
+ bottomTag?: JSX.Element;
1588
2110
  productImageDataTestId?: string;
1589
2111
  slideDotsDataTestId?: string;
2112
+ borderRadiusVariant?: boolean;
1590
2113
  }
1591
- declare const ProductGalleryMobile: ({ images, selectedValue, DiscountTagElement, BestSellerTagElement, productImageDataTestId, slideDotsDataTestId, }: ProductGalleryMobileProps) => JSX.Element;
2114
+ declare const ProductGalleryMobile: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
1592
2115
 
1593
2116
  interface RadioProps {
1594
2117
  name: string;
@@ -1605,22 +2128,32 @@ declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange
1605
2128
  declare type PortalProps = {
1606
2129
  id: string;
1607
2130
  className?: string;
2131
+ overflow?: boolean;
2132
+ style?: CSSProperties;
1608
2133
  };
1609
2134
  declare const Portal: FC<PortalProps>;
1610
2135
 
1611
2136
  declare type ModalProps = {
1612
2137
  id: string;
1613
2138
  dismissable?: boolean;
2139
+ maxFullScreen?: boolean;
1614
2140
  };
2141
+ interface ContainerProps {
2142
+ maxFullScreen: boolean;
2143
+ opened?: boolean;
2144
+ }
1615
2145
  declare const Overlay: _emotion_styled.StyledComponent<{
1616
2146
  theme?: _emotion_react.Theme | undefined;
1617
2147
  as?: React.ElementType<any> | undefined;
1618
- } & {
1619
- opened?: boolean | undefined;
1620
- }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2148
+ } & Pick<ContainerProps, "opened">, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
1621
2149
  declare const Modal: FC<ModalProps>;
1622
2150
  declare const modalEvent: (id: string, detail: Omit<Events['modal'], 'id'>) => void;
1623
- declare const useModalEvent: (id: string, cb: (event: CustomEvent<Events['modal']>) => void) => void;
2151
+ declare const useModalEvent: (id: string, cb: (event: CustomEvent<Events['modal']>) => void) => void;
2152
+ declare const useModal: (id: string) => {
2153
+ opened: boolean;
2154
+ open: () => void;
2155
+ close: () => void;
2156
+ };
1624
2157
 
1625
2158
  interface CloseButtonProps {
1626
2159
  onClick: () => void;
@@ -1659,8 +2192,9 @@ declare type QuantityPickerPropsUncontrolled = {
1659
2192
  declare type QuantityPickerProps = {
1660
2193
  initialValue?: number;
1661
2194
  maxValue?: number;
2195
+ testId?: string;
1662
2196
  } & (QuantityPickerPropsControlled | QuantityPickerPropsUncontrolled);
1663
- declare const QuantityPicker: ({ initialValue, maxValue, value, onChange, }: QuantityPickerProps) => JSX.Element;
2197
+ declare const QuantityPicker: ({ initialValue, maxValue, value, testId, onChange, }: QuantityPickerProps) => JSX.Element;
1664
2198
 
1665
2199
  declare type SpacingProps = {
1666
2200
  size: number;
@@ -1689,8 +2223,8 @@ interface PackSelectorProps {
1689
2223
  declare const PackSelector: FC<PackSelectorProps>;
1690
2224
 
1691
2225
  interface FiltersProps {
1692
- filters: Filter[];
1693
- onChange: (update: FilterChange) => void;
2226
+ values: Filter[];
2227
+ onChange: (newValues: Filter[], filtersState?: FilterChange) => void;
1694
2228
  tagsColor?: string;
1695
2229
  filterByText: string;
1696
2230
  clearAllText: string;
@@ -1699,8 +2233,117 @@ interface FiltersProps {
1699
2233
  applyText: string;
1700
2234
  mobileBackArrowClick: () => void;
1701
2235
  mobileApplyButtonClick: () => void;
2236
+ onResetValues: () => void;
2237
+ }
2238
+ declare const Filters: ({ values, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, onResetValues, }: FiltersProps) => JSX.Element;
2239
+
2240
+ interface SearchNavigationProps {
2241
+ returnText?: string;
2242
+ returnUrl?: string;
2243
+ steps?: string[];
2244
+ returnAction?: () => void;
2245
+ }
2246
+ declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
2247
+
2248
+ interface TabProps$1 {
2249
+ title: string;
2250
+ content: ReactNode;
2251
+ }
2252
+ interface TabsProps {
2253
+ backgroundColor?: string;
2254
+ initialSelected?: string;
2255
+ tabsMaxWidth?: string;
2256
+ tabs: TabProps$1[];
2257
+ }
2258
+ declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
2259
+
2260
+ interface TabProps {
2261
+ title: string;
2262
+ titleSize?: string;
2263
+ selectedTitleWeight?: number;
2264
+ height?: string;
2265
+ selected?: boolean;
2266
+ color?: string;
2267
+ tabsMaxWidth?: string;
2268
+ onClick: (clickedTab: string) => void;
2269
+ }
2270
+ declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
2271
+
2272
+ interface IconList {
2273
+ backgroundColor: string;
2274
+ iconColor: string;
2275
+ iconName: string;
2276
+ iconTitle: string;
2277
+ iconSizeDesktop?: number;
2278
+ iconSizeMobile?: number;
2279
+ iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
2280
+ iconTitleStyle?: string;
2281
+ iconStyle?: string;
2282
+ isTitleInnerHtml?: boolean;
2283
+ }
2284
+ declare const IconsWithTitle: ({ iconName, iconTitle, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconList) => JSX.Element | null;
2285
+
2286
+ interface NoteProps {
2287
+ accentColor: string;
2288
+ color: string;
2289
+ backgroundColor: string;
2290
+ importantNoteText: string;
2291
+ text: string;
2292
+ }
2293
+ declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
2294
+
2295
+ interface TextWithImageProps {
2296
+ title: string;
2297
+ text: string;
2298
+ buttomText: string;
2299
+ backgroundColor: string;
2300
+ imageLeftSide?: boolean;
2301
+ URLLink?: string;
2302
+ onButtonClick?: () => void;
2303
+ isRedirectionURL: boolean;
2304
+ btnBGColor?: string;
2305
+ btnHoverBGColor?: string;
2306
+ imgVideo: imageVideoProps;
2307
+ contentAfterButton?: React.ReactNode;
2308
+ titleStyle?: React.CSSProperties;
2309
+ textStyle?: React.CSSProperties;
2310
+ buttonWideOnMobile?: boolean;
2311
+ }
2312
+ declare const TextWithImage: ({ title, text, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
2313
+
2314
+ interface AccordionOptionsProps {
2315
+ titleColor: string;
2316
+ accordions: AccordionProps[];
2317
+ }
2318
+ declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
2319
+
2320
+ interface ShortBannerProps {
2321
+ title: string;
2322
+ bannerText: string;
2323
+ backgroundColor: string;
2324
+ alignCenter?: boolean;
2325
+ widthAuto?: boolean;
2326
+ textColor: string;
2327
+ }
2328
+ declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
2329
+
2330
+ interface BeforeAfterCardProps {
2331
+ name: string;
2332
+ age: string;
2333
+ months: string;
2334
+ beforeImage: string;
2335
+ afterImage: string;
2336
+ alignCenter?: boolean;
2337
+ }
2338
+ declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, }: BeforeAfterCardProps) => JSX.Element;
2339
+
2340
+ interface ImageCardWithDescriptionProps {
2341
+ image: string;
2342
+ title?: string;
2343
+ description?: string;
2344
+ titlePosition?: 'center' | 'left';
1702
2345
  }
1703
- declare const Filters: ({ filters, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, }: FiltersProps) => JSX.Element;
2346
+ declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
1704
2347
 
1705
2348
  declare global {
1706
2349
  interface Events {
@@ -1741,4 +2384,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
1741
2384
  currency?: string | undefined;
1742
2385
  }) => string;
1743
2386
 
1744
- 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, 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, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
2387
+ export { Accordion, AccordionOptions, AmazonButton, AssetsProvider, BeforeAfterCard, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitPredictor, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageCardWithDescription, ImageType, Input, InputValidationType, Modal, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, Pagination, PaginatorBlog, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, PriceLabelV2, ProductGallery, ProductGalleryMobile, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, ShortBanner, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Tab, Tabs, Text, TextButton, TextWithImage, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, WithTestId, decimalFormat, formatPrice, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };