@trafilea/afrodita-components 5.0.0-beta.15 → 5.0.0-beta.151

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,13 @@
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';
8
11
 
9
12
  declare enum CardSectionType {
10
13
  Header = 0,
@@ -33,6 +36,7 @@ interface IconProps {
33
36
  height?: number;
34
37
  fill?: string;
35
38
  title?: string;
39
+ testId?: string;
36
40
  }
37
41
  declare type ButtonType = 'button' | 'submit' | 'reset';
38
42
  interface CTAProps {
@@ -56,11 +60,7 @@ declare type SizeOption = {
56
60
  label: string;
57
61
  description: string;
58
62
  disabled?: boolean;
59
- };
60
- declare type Color = {
61
- primaryColor: string;
62
- secondaryColor?: string;
63
- tertiaryColor?: string;
63
+ noStock?: boolean;
64
64
  };
65
65
  declare type Pattern = {
66
66
  url: string;
@@ -68,8 +68,9 @@ declare type Pattern = {
68
68
  declare type ColorPickerOption = {
69
69
  label: string;
70
70
  description: string;
71
+ noStock?: boolean;
71
72
  meta: {
72
- color?: Color;
73
+ color?: string[];
73
74
  pattern?: Pattern;
74
75
  };
75
76
  };
@@ -100,7 +101,18 @@ declare type Filter = {
100
101
  title: string;
101
102
  columns: number;
102
103
  isOpenByDefault?: boolean;
103
- items: string[];
104
+ isLinkOption?: boolean;
105
+ link?: string;
106
+ color?: string;
107
+ isMultiselect: boolean;
108
+ items: Array<{
109
+ label: string;
110
+ checked?: boolean;
111
+ isLinkItem?: boolean;
112
+ link?: string;
113
+ blockUncheck?: boolean;
114
+ }>;
115
+ showInMobile: boolean;
104
116
  };
105
117
  declare type FilterChange = {
106
118
  sectionIndex: number;
@@ -111,18 +123,45 @@ interface SearchBarOptionItem {
111
123
  src: string;
112
124
  price: string;
113
125
  title: string;
126
+ optionUrl: string;
127
+ }
128
+ interface imageVideoProps {
129
+ imageLink: string;
130
+ isVideo?: {
131
+ videoTitle?: string;
132
+ videoSubtitle?: string;
133
+ textColor?: string;
134
+ videoLink?: string;
135
+ };
136
+ isMobile?: boolean;
114
137
  }
115
138
 
116
139
  declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
117
140
 
118
141
  declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
119
142
 
143
+ declare const Smiling: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
144
+
145
+ declare const BulletOne: ({ height, width, fill, title }: IconProps) => JSX.Element;
146
+
147
+ declare const BulletTwo: ({ height, width, fill, title }: IconProps) => JSX.Element;
148
+
149
+ declare const BulletThree: ({ height, width, fill, title }: IconProps) => JSX.Element;
150
+
120
151
  declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
121
152
  declare const Custom_Frown: typeof Frown;
153
+ declare const Custom_Smiling: typeof Smiling;
154
+ declare const Custom_BulletOne: typeof BulletOne;
155
+ declare const Custom_BulletTwo: typeof BulletTwo;
156
+ declare const Custom_BulletThree: typeof BulletThree;
122
157
  declare namespace Custom {
123
158
  export {
124
159
  Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
125
160
  Custom_Frown as Frown,
161
+ Custom_Smiling as Smiling,
162
+ Custom_BulletOne as BulletOne,
163
+ Custom_BulletTwo as BulletTwo,
164
+ Custom_BulletThree as BulletThree,
126
165
  };
127
166
  }
128
167
 
@@ -143,6 +182,71 @@ declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
143
182
 
144
183
  declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
145
184
 
185
+ declare const Warning: ({ height, width, fill }: IconProps) => JSX.Element;
186
+
187
+ declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
188
+
189
+ declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
190
+
191
+ declare const Add: ({ height, width, fill }: IconProps) => JSX.Element;
192
+
193
+ interface CopyProps extends IconProps {
194
+ stroke?: string;
195
+ }
196
+ declare const Copy: ({ height, width, fill, stroke }: CopyProps) => JSX.Element;
197
+
198
+ declare const CheckboxEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
199
+
200
+ declare const CheckboxLight: ({ height, width, fill }: IconProps) => JSX.Element;
201
+
202
+ declare const CheckboxSolid: ({ height, width, fill }: IconProps) => JSX.Element;
203
+
204
+ declare const Like: ({ height, width, fill }: IconProps) => JSX.Element;
205
+
206
+ declare const LikeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
207
+
208
+ declare const NotAllowed: ({ height, width, fill }: IconProps) => JSX.Element;
209
+
210
+ declare const RadioEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
211
+
212
+ declare const RadioFilled: ({ height, width, fill }: IconProps) => JSX.Element;
213
+
214
+ declare const Minus$1: ({ height, width, fill }: IconProps) => JSX.Element;
215
+
216
+ declare const SettingsSolid: ({ height, width, fill }: IconProps) => JSX.Element;
217
+
218
+ declare const Settings: ({ height, width, fill }: IconProps) => JSX.Element;
219
+
220
+ declare const Share: ({ height, width, fill }: IconProps) => JSX.Element;
221
+
222
+ declare const CircleCheck: ({ height, width, fill }: IconProps) => JSX.Element;
223
+
224
+ declare const CircleClear: ({ height, width, fill }: IconProps) => JSX.Element;
225
+
226
+ declare const CircleInfo: ({ height, width, fill }: IconProps) => JSX.Element;
227
+
228
+ declare const CircleMinus: ({ height, width, fill }: IconProps) => JSX.Element;
229
+
230
+ declare const CirclePlus: ({ height, width, fill }: IconProps) => JSX.Element;
231
+
232
+ declare const CircleQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
233
+
234
+ declare const CircleWarning: ({ height, width, fill }: IconProps) => JSX.Element;
235
+
236
+ declare const CircleSolidCheck: ({ height, width, fill }: IconProps) => JSX.Element;
237
+
238
+ declare const CircleSolidClear: ({ height, width, fill }: IconProps) => JSX.Element;
239
+
240
+ declare const CircleSolidMinus: ({ height, width, fill }: IconProps) => JSX.Element;
241
+
242
+ declare const CircleSolidPlus: ({ height, width, fill }: IconProps) => JSX.Element;
243
+
244
+ declare const CircleSolidQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
245
+
246
+ declare const CircleSolidWarning: ({ height, width, fill }: IconProps) => JSX.Element;
247
+
248
+ declare const CircleSolidStyledCheck: ({ height, width, fill }: IconProps) => JSX.Element;
249
+
146
250
  declare const Actions_Check: typeof Check;
147
251
  declare const Actions_ClearLight: typeof ClearLight;
148
252
  declare const Actions_LightExclamation: typeof LightExclamation;
@@ -151,6 +255,37 @@ declare const Actions_LightCheck: typeof LightCheck;
151
255
  declare const Actions_Question: typeof Question;
152
256
  declare const Actions_Close: typeof Close;
153
257
  declare const Actions_Trash: typeof Trash;
258
+ declare const Actions_Warning: typeof Warning;
259
+ declare const Actions_Edit: typeof Edit;
260
+ declare const Actions_SignOut: typeof SignOut;
261
+ declare const Actions_Add: typeof Add;
262
+ type Actions_CopyProps = CopyProps;
263
+ declare const Actions_Copy: typeof Copy;
264
+ declare const Actions_CheckboxEmpty: typeof CheckboxEmpty;
265
+ declare const Actions_CheckboxLight: typeof CheckboxLight;
266
+ declare const Actions_CheckboxSolid: typeof CheckboxSolid;
267
+ declare const Actions_Like: typeof Like;
268
+ declare const Actions_LikeSolid: typeof LikeSolid;
269
+ declare const Actions_NotAllowed: typeof NotAllowed;
270
+ declare const Actions_RadioEmpty: typeof RadioEmpty;
271
+ declare const Actions_RadioFilled: typeof RadioFilled;
272
+ declare const Actions_SettingsSolid: typeof SettingsSolid;
273
+ declare const Actions_Settings: typeof Settings;
274
+ declare const Actions_Share: typeof Share;
275
+ declare const Actions_CircleCheck: typeof CircleCheck;
276
+ declare const Actions_CircleClear: typeof CircleClear;
277
+ declare const Actions_CircleInfo: typeof CircleInfo;
278
+ declare const Actions_CircleMinus: typeof CircleMinus;
279
+ declare const Actions_CirclePlus: typeof CirclePlus;
280
+ declare const Actions_CircleQuestion: typeof CircleQuestion;
281
+ declare const Actions_CircleWarning: typeof CircleWarning;
282
+ declare const Actions_CircleSolidCheck: typeof CircleSolidCheck;
283
+ declare const Actions_CircleSolidClear: typeof CircleSolidClear;
284
+ declare const Actions_CircleSolidMinus: typeof CircleSolidMinus;
285
+ declare const Actions_CircleSolidPlus: typeof CircleSolidPlus;
286
+ declare const Actions_CircleSolidQuestion: typeof CircleSolidQuestion;
287
+ declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
288
+ declare const Actions_CircleSolidStyledCheck: typeof CircleSolidStyledCheck;
154
289
  declare namespace Actions {
155
290
  export {
156
291
  Actions_Check as Check,
@@ -161,6 +296,38 @@ declare namespace Actions {
161
296
  Actions_Question as Question,
162
297
  Actions_Close as Close,
163
298
  Actions_Trash as Trash,
299
+ Actions_Warning as Warning,
300
+ Actions_Edit as Edit,
301
+ Actions_SignOut as SignOut,
302
+ Actions_Add as Add,
303
+ Actions_CopyProps as CopyProps,
304
+ Actions_Copy as Copy,
305
+ Actions_CheckboxEmpty as CheckboxEmpty,
306
+ Actions_CheckboxLight as CheckboxLight,
307
+ Actions_CheckboxSolid as CheckboxSolid,
308
+ Actions_Like as Like,
309
+ Actions_LikeSolid as LikeSolid,
310
+ Actions_NotAllowed as NotAllowed,
311
+ Actions_RadioEmpty as RadioEmpty,
312
+ Actions_RadioFilled as RadioFilled,
313
+ Minus$1 as Minus,
314
+ Actions_SettingsSolid as SettingsSolid,
315
+ Actions_Settings as Settings,
316
+ Actions_Share as Share,
317
+ Actions_CircleCheck as CircleCheck,
318
+ Actions_CircleClear as CircleClear,
319
+ Actions_CircleInfo as CircleInfo,
320
+ Actions_CircleMinus as CircleMinus,
321
+ Actions_CirclePlus as CirclePlus,
322
+ Actions_CircleQuestion as CircleQuestion,
323
+ Actions_CircleWarning as CircleWarning,
324
+ Actions_CircleSolidCheck as CircleSolidCheck,
325
+ Actions_CircleSolidClear as CircleSolidClear,
326
+ Actions_CircleSolidMinus as CircleSolidMinus,
327
+ Actions_CircleSolidPlus as CircleSolidPlus,
328
+ Actions_CircleSolidQuestion as CircleSolidQuestion,
329
+ Actions_CircleSolidWarning as CircleSolidWarning,
330
+ Actions_CircleSolidStyledCheck as CircleSolidStyledCheck,
164
331
  };
165
332
  }
166
333
 
@@ -169,31 +336,78 @@ declare const FitPredictor$1: ({ height, width, fill }: IconProps) => JSX.Elemen
169
336
  interface LoadingProps extends IconProps {
170
337
  backgroundColor: string;
171
338
  }
172
- declare const Loading: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
339
+ declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
173
340
 
174
341
  declare const Shapermint: ({ height, width }: IconProps) => JSX.Element;
175
342
 
176
343
  declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
177
344
 
345
+ declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
346
+
347
+ declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
348
+
349
+ declare const Chat: ({ height, width, fill, testId }: IconProps) => JSX.Element;
350
+
351
+ declare const Email: ({ height, width, fill, testId }: IconProps) => JSX.Element;
352
+
353
+ declare const CallUs: ({ height, width, fill, testId }: IconProps) => JSX.Element;
354
+
355
+ declare const SignForm: ({ height, width, fill }: IconProps) => JSX.Element;
356
+
357
+ declare const QrCode: ({ height, width, fill }: IconProps) => JSX.Element;
358
+
359
+ declare const FreeExchange: ({ height, width, fill, testId }: IconProps) => JSX.Element;
360
+
361
+ declare const ShopNow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
362
+
363
+ declare const HasselFreeReturns: ({ height, width, fill, testId }: IconProps) => JSX.Element;
364
+
365
+ declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
366
+
367
+ declare const FitGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
368
+
178
369
  type Other_LoadingProps = LoadingProps;
179
- declare const Other_Loading: typeof Loading;
180
370
  declare const Other_Shapermint: typeof Shapermint;
181
371
  declare const Other_McAfee: typeof McAfee;
372
+ declare const Other_GetDiscount: typeof GetDiscount;
373
+ declare const Other_ShapermintLogo: typeof ShapermintLogo;
374
+ declare const Other_Chat: typeof Chat;
375
+ declare const Other_Email: typeof Email;
376
+ declare const Other_CallUs: typeof CallUs;
377
+ declare const Other_SignForm: typeof SignForm;
378
+ declare const Other_QrCode: typeof QrCode;
379
+ declare const Other_FreeExchange: typeof FreeExchange;
380
+ declare const Other_ShopNow: typeof ShopNow;
381
+ declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
382
+ declare const Other_Play: typeof Play;
383
+ declare const Other_FitGuarantee: typeof FitGuarantee;
182
384
  declare namespace Other {
183
385
  export {
184
386
  FitPredictor$1 as FitPredictor,
185
387
  Other_LoadingProps as LoadingProps,
186
- Other_Loading as Loading,
388
+ Loading$1 as Loading,
187
389
  Other_Shapermint as Shapermint,
188
390
  Other_McAfee as McAfee,
391
+ Other_GetDiscount as GetDiscount,
392
+ Other_ShapermintLogo as ShapermintLogo,
393
+ Other_Chat as Chat,
394
+ Other_Email as Email,
395
+ Other_CallUs as CallUs,
396
+ Other_SignForm as SignForm,
397
+ Other_QrCode as QrCode,
398
+ Other_FreeExchange as FreeExchange,
399
+ Other_ShopNow as ShopNow,
400
+ Other_HasselFreeReturns as HasselFreeReturns,
401
+ Other_Play as Play,
402
+ Other_FitGuarantee as FitGuarantee,
189
403
  };
190
404
  }
191
405
 
192
406
  declare const ChevronDown: ({ height, width, fill }: IconProps) => JSX.Element;
193
407
 
194
- declare const ChevronLeft: ({ height, width, fill, opacity }: IconWithOpacityProps) => JSX.Element;
408
+ declare const ChevronLeft: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
195
409
 
196
- declare const ChevronRight: ({ height, width, fill, opacity }: IconWithOpacityProps) => JSX.Element;
410
+ declare const ChevronRight: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
197
411
 
198
412
  declare const ChevronRightVariant: ({ height, width, fill }: IconProps) => JSX.Element;
199
413
 
@@ -203,6 +417,28 @@ declare const ChevronUpSolid: ({ height, width, fill }: IconProps) => JSX.Elemen
203
417
 
204
418
  declare const CircleUp: ({ width, height, fill }: IconProps) => JSX.Element;
205
419
 
420
+ declare const CircleChevronLeft: ({ width, height, fill }: IconProps) => JSX.Element;
421
+
422
+ declare const CircleChevronRight: ({ width, height, fill }: IconProps) => JSX.Element;
423
+
424
+ declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
425
+
426
+ declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
427
+
428
+ declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
429
+
430
+ declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
431
+
432
+ declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
433
+
434
+ declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
435
+
436
+ declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
437
+
438
+ declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
439
+
440
+ declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
441
+
206
442
  declare const Arrows_ChevronDown: typeof ChevronDown;
207
443
  declare const Arrows_ChevronLeft: typeof ChevronLeft;
208
444
  declare const Arrows_ChevronRight: typeof ChevronRight;
@@ -210,6 +446,17 @@ declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
210
446
  declare const Arrows_ChevronUp: typeof ChevronUp;
211
447
  declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
212
448
  declare const Arrows_CircleUp: typeof CircleUp;
449
+ declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
450
+ declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
451
+ declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
452
+ declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
453
+ declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
454
+ declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
455
+ declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
456
+ declare const Arrows_CircleLineUp: typeof CircleLineUp;
457
+ declare const Arrows_CircleLineDown: typeof CircleLineDown;
458
+ declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
459
+ declare const Arrows_CircleLineRight: typeof CircleLineRight;
213
460
  declare namespace Arrows {
214
461
  export {
215
462
  Arrows_ChevronDown as ChevronDown,
@@ -219,6 +466,17 @@ declare namespace Arrows {
219
466
  Arrows_ChevronUp as ChevronUp,
220
467
  Arrows_ChevronUpSolid as ChevronUpSolid,
221
468
  Arrows_CircleUp as CircleUp,
469
+ Arrows_CircleChevronLeft as CircleChevronLeft,
470
+ Arrows_CircleChevronRight as CircleChevronRight,
471
+ Arrows_CircleChevronDown as CircleChevronDown,
472
+ Arrows_CircleChevronUp as CircleChevronUp,
473
+ Arrows_ChevronDownVariant as ChevronDownVariant,
474
+ Arrows_ChevronUpVariant as ChevronUpVariant,
475
+ Arrows_ChevronLeftVariant as ChevronLeftVariant,
476
+ Arrows_CircleLineUp as CircleLineUp,
477
+ Arrows_CircleLineDown as CircleLineDown,
478
+ Arrows_CircleLineLeft as CircleLineLeft,
479
+ Arrows_CircleLineRight as CircleLineRight,
222
480
  };
223
481
  }
224
482
 
@@ -242,6 +500,18 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
242
500
 
243
501
  declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
244
502
 
503
+ declare const LightBulb$1: ({ height, width, fill }: IconProps) => JSX.Element;
504
+
505
+ declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
506
+
507
+ declare const CircleNumber: ({ height, width, fill }: IconProps) => JSX.Element;
508
+
509
+ declare const SizeEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
510
+
511
+ declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
512
+
513
+ declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
514
+
245
515
  declare const PDP_Clock: typeof Clock;
246
516
  declare const PDP_FlagUSA: typeof FlagUSA;
247
517
  declare const PDP_Minus: typeof Minus;
@@ -252,6 +522,11 @@ declare const PDP_StarEmpty: typeof StarEmpty;
252
522
  declare const PDP_StarHalf: typeof StarHalf;
253
523
  declare const PDP_Stopwatch: typeof Stopwatch;
254
524
  declare const PDP_Shipping: typeof Shipping;
525
+ declare const PDP_ErrorCross: typeof ErrorCross;
526
+ declare const PDP_CircleNumber: typeof CircleNumber;
527
+ declare const PDP_SizeEmpty: typeof SizeEmpty;
528
+ declare const PDP_PlayMini: typeof PlayMini;
529
+ declare const PDP_ShippingEmpty: typeof ShippingEmpty;
255
530
  declare namespace PDP {
256
531
  export {
257
532
  PDP_Clock as Clock,
@@ -264,6 +539,12 @@ declare namespace PDP {
264
539
  PDP_StarHalf as StarHalf,
265
540
  PDP_Stopwatch as Stopwatch,
266
541
  PDP_Shipping as Shipping,
542
+ LightBulb$1 as LightBulb,
543
+ PDP_ErrorCross as ErrorCross,
544
+ PDP_CircleNumber as CircleNumber,
545
+ PDP_SizeEmpty as SizeEmpty,
546
+ PDP_PlayMini as PlayMini,
547
+ PDP_ShippingEmpty as ShippingEmpty,
267
548
  };
268
549
  }
269
550
 
@@ -281,6 +562,8 @@ declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
281
562
 
282
563
  declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
283
564
 
565
+ declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
566
+
284
567
  declare const SocialMedia_Facebook: typeof Facebook;
285
568
  declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
286
569
  declare const SocialMedia_Instagram: typeof Instagram;
@@ -288,6 +571,7 @@ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
288
571
  declare const SocialMedia_Pinterest: typeof Pinterest;
289
572
  declare const SocialMedia_Twitter: typeof Twitter;
290
573
  declare const SocialMedia_Youtube: typeof Youtube;
574
+ declare const SocialMedia_Interaction: typeof Interaction;
291
575
  declare namespace SocialMedia {
292
576
  export {
293
577
  SocialMedia_Facebook as Facebook,
@@ -297,14 +581,15 @@ declare namespace SocialMedia {
297
581
  SocialMedia_Pinterest as Pinterest,
298
582
  SocialMedia_Twitter as Twitter,
299
583
  SocialMedia_Youtube as Youtube,
584
+ SocialMedia_Interaction as Interaction,
300
585
  };
301
586
  }
302
587
 
303
- declare const Search: ({ height, width, fill }: IconProps) => JSX.Element;
588
+ declare const Search: ({ height, width, fill, testId }: IconProps) => JSX.Element;
304
589
 
305
590
  declare const User: ({ height, width, fill }: IconProps) => JSX.Element;
306
591
 
307
- declare const ShoppingBag: ({ height, width, fill }: IconProps) => JSX.Element;
592
+ declare const ShoppingBag: ({ height, width, fill, testId }: IconProps) => JSX.Element;
308
593
 
309
594
  declare const ShoppingCart: FC<IconProps>;
310
595
 
@@ -312,12 +597,64 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
312
597
 
313
598
  declare const Hamburger: FC<IconProps>;
314
599
 
600
+ declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
601
+
602
+ declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
603
+
604
+ declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
605
+
606
+ declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
607
+
608
+ declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
609
+
610
+ declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
611
+
612
+ declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
613
+
614
+ declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
615
+
616
+ declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
617
+
618
+ declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
619
+
620
+ declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
621
+
622
+ declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
623
+
624
+ declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
625
+
626
+ declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
627
+
628
+ declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
629
+
630
+ declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
631
+
632
+ declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
633
+
634
+ declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
635
+
315
636
  declare const Navigation_Search: typeof Search;
316
637
  declare const Navigation_User: typeof User;
317
638
  declare const Navigation_ShoppingBag: typeof ShoppingBag;
318
639
  declare const Navigation_ShoppingCart: typeof ShoppingCart;
319
640
  declare const Navigation_MapMarker: typeof MapMarker;
320
641
  declare const Navigation_Hamburger: typeof Hamburger;
642
+ declare const Navigation_AddressInformation: typeof AddressInformation;
643
+ declare const Navigation_ClubMembership: typeof ClubMembership;
644
+ declare const Navigation_Benefits: typeof Benefits;
645
+ declare const Navigation_Home: typeof Home;
646
+ declare const Navigation_HomeSolid: typeof HomeSolid;
647
+ declare const Navigation_ShoppingBagV2: typeof ShoppingBagV2;
648
+ declare const Navigation_UserSolid: typeof UserSolid;
649
+ declare const Navigation_SlideDotSolid: typeof SlideDotSolid;
650
+ declare const Navigation_Ellipsis: typeof Ellipsis;
651
+ declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
652
+ declare const Navigation_Lock: typeof Lock;
653
+ declare const Navigation_LockSolid: typeof LockSolid;
654
+ declare const Navigation_Loading: typeof Loading;
655
+ declare const Navigation_MapSolid: typeof MapSolid;
656
+ declare const Navigation_UserV2: typeof UserV2;
657
+ declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
321
658
  declare namespace Navigation {
322
659
  export {
323
660
  Navigation_Search as Search,
@@ -326,6 +663,24 @@ declare namespace Navigation {
326
663
  Navigation_ShoppingCart as ShoppingCart,
327
664
  Navigation_MapMarker as MapMarker,
328
665
  Navigation_Hamburger as Hamburger,
666
+ Navigation_AddressInformation as AddressInformation,
667
+ Navigation_ClubMembership as ClubMembership,
668
+ Navigation_Benefits as Benefits,
669
+ Navigation_Home as Home,
670
+ Navigation_HomeSolid as HomeSolid,
671
+ Navigation_ShoppingBagV2 as ShoppingBagV2,
672
+ Navigation_UserSolid as UserSolid,
673
+ SlideDot$1 as SlideDot,
674
+ Navigation_SlideDotSolid as SlideDotSolid,
675
+ Navigation_Ellipsis as Ellipsis,
676
+ Navigation_EllipsisHorizontal as EllipsisHorizontal,
677
+ Filters$1 as Filters,
678
+ Navigation_Lock as Lock,
679
+ Navigation_LockSolid as LockSolid,
680
+ Navigation_Loading as Loading,
681
+ Navigation_MapSolid as MapSolid,
682
+ Navigation_UserV2 as UserV2,
683
+ Navigation_ShoppingCartV2 as ShoppingCartV2,
329
684
  };
330
685
  }
331
686
 
@@ -342,22 +697,65 @@ interface IconWrapperProps {
342
697
  viewBoxX: number;
343
698
  viewBoxY: number;
344
699
  children: React.ReactNode;
345
- testid?: string;
700
+ testId?: string;
346
701
  fill?: string;
347
702
  }
348
703
 
349
- declare const Mail: ({ height, width }: IconWrapperProps) => JSX.Element;
704
+ declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
705
+
706
+ declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
707
+
708
+ declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
709
+
710
+ declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
711
+
712
+ declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
713
+
714
+ declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
715
+
716
+ declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
717
+
718
+ declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
719
+
720
+ declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
721
+
722
+ declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
723
+
724
+ declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
725
+
726
+ declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
350
727
 
351
728
  declare const Messaging_QuestionCircle: typeof QuestionCircle;
352
729
  declare const Messaging_Messenger: typeof Messenger;
353
730
  declare const Messaging_Comment: typeof Comment;
354
731
  declare const Messaging_Mail: typeof Mail;
732
+ declare const Messaging_QuoteLeft: typeof QuoteLeft;
733
+ declare const Messaging_QuoteRight: typeof QuoteRight;
734
+ declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
735
+ declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
736
+ declare const Messaging_Light: typeof Light;
737
+ declare const Messaging_LightBulb: typeof LightBulb;
738
+ declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
739
+ declare const Messaging_CommentDots: typeof CommentDots;
740
+ declare const Messaging_CommentLight: typeof CommentLight;
741
+ declare const Messaging_CommentMoney: typeof CommentMoney;
355
742
  declare namespace Messaging {
356
743
  export {
357
744
  Messaging_QuestionCircle as QuestionCircle,
358
745
  Messaging_Messenger as Messenger,
359
746
  Messaging_Comment as Comment,
360
747
  Messaging_Mail as Mail,
748
+ Community$1 as Community,
749
+ Messaging_QuoteLeft as QuoteLeft,
750
+ Messaging_QuoteRight as QuoteRight,
751
+ Messaging_QuoteSolidLeft as QuoteSolidLeft,
752
+ Messaging_QuoteSolidRight as QuoteSolidRight,
753
+ Messaging_Light as Light,
754
+ Messaging_LightBulb as LightBulb,
755
+ Messaging_LightBulbSolid as LightBulbSolid,
756
+ Messaging_CommentDots as CommentDots,
757
+ Messaging_CommentLight as CommentLight,
758
+ Messaging_CommentMoney as CommentMoney,
361
759
  };
362
760
  }
363
761
 
@@ -418,14 +816,79 @@ declare namespace SlideDots {
418
816
 
419
817
  declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
420
818
 
819
+ declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
820
+
821
+ declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
822
+
823
+ declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
824
+
825
+ declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
826
+
827
+ declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
828
+
829
+ declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
830
+
421
831
  declare const Emoji_Thinking: typeof Thinking;
832
+ declare const Emoji_SmilingV2: typeof SmilingV2;
833
+ declare const Emoji_Grinning: typeof Grinning;
834
+ declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
835
+ declare const Emoji_BlowingKiss: typeof BlowingKiss;
836
+ declare const Emoji_Frowning: typeof Frowning;
837
+ declare const Emoji_Relieved: typeof Relieved;
422
838
  declare namespace Emoji {
423
839
  export {
424
840
  Emoji_Thinking as Thinking,
841
+ Emoji_SmilingV2 as SmilingV2,
842
+ Emoji_Grinning as Grinning,
843
+ Emoji_GrinningWithSweat as GrinningWithSweat,
844
+ Emoji_BlowingKiss as BlowingKiss,
845
+ Emoji_Frowning as Frowning,
846
+ Emoji_Relieved as Relieved,
847
+ };
848
+ }
849
+
850
+ declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
851
+
852
+ declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
853
+
854
+ declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
855
+
856
+ declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
857
+
858
+ declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
859
+
860
+ declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
861
+
862
+ declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
863
+
864
+ declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
865
+
866
+ declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
867
+
868
+ declare const MyAccount_FreeShipping: typeof FreeShipping;
869
+ declare const MyAccount_PersonalStylist: typeof PersonalStylist;
870
+ declare const MyAccount_Community: typeof Community;
871
+ declare const MyAccount_VIP: typeof VIP;
872
+ declare const MyAccount_DealsOffers: typeof DealsOffers;
873
+ declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
874
+ declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
875
+ declare const MyAccount_Profile: typeof Profile;
876
+ declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
877
+ declare namespace MyAccount {
878
+ export {
879
+ MyAccount_FreeShipping as FreeShipping,
880
+ MyAccount_PersonalStylist as PersonalStylist,
881
+ MyAccount_Community as Community,
882
+ MyAccount_VIP as VIP,
883
+ MyAccount_DealsOffers as DealsOffers,
884
+ MyAccount_StyleFashionContent as StyleFashionContent,
885
+ MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
886
+ MyAccount_Profile as Profile,
887
+ MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
425
888
  };
426
889
  }
427
890
 
428
- declare type IconType = ({ height, width, fill }: IconProps) => JSX.Element;
891
+ declare type IconType = ({ height, width, fill, testId }: IconProps) => JSX.Element;
429
892
  declare const Icon: {
430
893
  Custom: typeof Custom;
431
894
  Arrows: typeof Arrows;
@@ -439,6 +902,7 @@ declare const Icon: {
439
902
  Payment: typeof Payment;
440
903
  SlideDots: typeof SlideDots;
441
904
  Emoji: typeof Emoji;
905
+ MyAccount: typeof MyAccount;
442
906
  };
443
907
 
444
908
  interface CardBodyProps {
@@ -455,7 +919,7 @@ interface borderProps {
455
919
  }
456
920
  interface CardProps {
457
921
  children: ReactNode;
458
- backgroundColor: string;
922
+ backgroundColor?: string;
459
923
  widthAuto?: boolean;
460
924
  border?: borderProps;
461
925
  flex?: boolean;
@@ -495,6 +959,21 @@ declare type UncontrolledProps<T> = {
495
959
  declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
496
960
  declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, }: SimpleDropdownProps<T>): JSX.Element;
497
961
 
962
+ interface DialogPositionProps {
963
+ top: string;
964
+ right: string;
965
+ }
966
+ interface DialogDropdownProps {
967
+ options: {
968
+ label: string;
969
+ value: string;
970
+ }[];
971
+ position: DialogPositionProps;
972
+ style?: React.CSSProperties;
973
+ className?: string;
974
+ }
975
+ declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
976
+
498
977
  interface SizeSelectorProps {
499
978
  label: string;
500
979
  sizes: SizeOption[];
@@ -522,6 +1001,7 @@ interface BaseButtonProps {
522
1001
  onClick: () => void;
523
1002
  className?: string;
524
1003
  inline?: boolean;
1004
+ uppercase?: boolean;
525
1005
  testId?: string;
526
1006
  }
527
1007
 
@@ -532,8 +1012,9 @@ interface TextButtonProps$1 extends BaseProps {
532
1012
  TrailingIcon?: IconType;
533
1013
  iconColor?: string;
534
1014
  size?: ComponentSize;
1015
+ uppercase?: boolean;
535
1016
  }
536
- declare const TextButton: ({ text, LeadingIcon, TrailingIcon, iconColor, disabled, type, size, onClick, }: TextButtonProps$1) => _emotion_react_jsx_runtime.JSX.Element;
1017
+ declare const TextButton: ({ text, LeadingIcon, TrailingIcon, iconColor, disabled, type, size, uppercase, onClick, }: TextButtonProps$1) => _emotion_react_jsx_runtime.JSX.Element;
537
1018
 
538
1019
  interface DiscountTagProps {
539
1020
  discount: number;
@@ -543,8 +1024,9 @@ interface DiscountTagProps {
543
1024
  borderColor?: string;
544
1025
  textColor?: string;
545
1026
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1027
+ style?: React.CSSProperties;
546
1028
  }
547
- declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, }: DiscountTagProps) => JSX.Element;
1029
+ declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
548
1030
 
549
1031
  interface PriceLabelProps {
550
1032
  finalPrice: string | number;
@@ -552,8 +1034,15 @@ interface PriceLabelProps {
552
1034
  color?: string;
553
1035
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
554
1036
  discount?: DiscountTagProps;
1037
+ finalPriceStyled?: boolean;
1038
+ finalPriceStyle?: React.CSSProperties;
1039
+ originalPriceStyled?: boolean;
1040
+ originalPriceUnderlined?: boolean;
1041
+ testId?: string;
555
1042
  }
556
- declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, size, }: PriceLabelProps) => JSX.Element;
1043
+ declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
1044
+
1045
+ declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
557
1046
 
558
1047
  interface ColorPickerProps {
559
1048
  options: ColorPickerOption[];
@@ -575,12 +1064,15 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
575
1064
  interface ProductGalleryProps {
576
1065
  images: ImageType[];
577
1066
  selectedValue?: ImageType;
578
- DiscountTagElement?: JSX.Element;
579
- BestSellerTagElement?: JSX.Element;
1067
+ topTag?: JSX.Element;
1068
+ bottomTag?: JSX.Element;
580
1069
  productImageDataTestId?: string;
581
1070
  previewListDataTestId?: string;
1071
+ thumbnailPosition?: 'vertical' | 'horizontal';
1072
+ borderRadiusVariant?: boolean;
1073
+ previewImgBorderColor?: string;
582
1074
  }
583
- declare const ProductGallery: ({ images, selectedValue, DiscountTagElement, BestSellerTagElement, productImageDataTestId, previewListDataTestId, }: ProductGalleryProps) => JSX.Element;
1075
+ declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, }: ProductGalleryProps) => JSX.Element;
584
1076
 
585
1077
  interface RatingProps {
586
1078
  rating: number;
@@ -588,8 +1080,10 @@ interface RatingProps {
588
1080
  reviews: number;
589
1081
  reviewsText: string;
590
1082
  wrapWithParenthesis?: boolean;
1083
+ underline?: boolean;
1084
+ reviewsContainerId?: string;
591
1085
  }
592
- declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
1086
+ declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
593
1087
 
594
1088
  interface FitPredictorProps {
595
1089
  onClick: () => void;
@@ -627,20 +1121,27 @@ declare const Tooltip: ({ children, position, text, align, onClick, header, }: T
627
1121
 
628
1122
  interface AccordionProps {
629
1123
  defaultOpen?: boolean;
1124
+ forceOpenHandler?: boolean;
1125
+ forceOpenValue?: boolean;
1126
+ titleColor?: string;
630
1127
  variant: 'simple' | 'box';
631
1128
  header: ReactNode;
1129
+ headerOnOpen?: ReactNode;
632
1130
  content: ReactNode;
633
1131
  disabled?: boolean;
1132
+ innerHTML?: boolean;
634
1133
  openIcon: IconType;
635
1134
  closeIcon: IconType;
1135
+ onClick?: (index: number) => void;
636
1136
  }
637
- declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
1137
+ declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
638
1138
 
639
1139
  declare const ThemeProvider: FC<{
640
1140
  theme: Theme;
641
1141
  children: ReactNode;
642
1142
  }>;
643
1143
  declare const useTheme: () => Theme;
1144
+
644
1145
  declare const ThemeVariables: FC<{
645
1146
  theme: Theme;
646
1147
  Container?: ElementType;
@@ -787,6 +1288,12 @@ declare type ThemeComponent = {
787
1288
  lineHeight: string;
788
1289
  border: string;
789
1290
  boxShadow: string;
1291
+ errorBorder: string;
1292
+ };
1293
+ inputPlaceholder: {
1294
+ fontSize: string;
1295
+ padding: string;
1296
+ focusBorder: string;
790
1297
  };
791
1298
  inputCustom: {
792
1299
  button: {
@@ -819,6 +1326,12 @@ declare type ThemeComponent = {
819
1326
  border: string;
820
1327
  color: string;
821
1328
  };
1329
+ noStock: {
1330
+ fontWeight: number;
1331
+ background: string;
1332
+ border: string;
1333
+ color: string;
1334
+ };
822
1335
  disabled: {
823
1336
  border: string;
824
1337
  };
@@ -872,10 +1385,13 @@ declare type ThemeComponent = {
872
1385
  };
873
1386
  card: {
874
1387
  borderRadius: string;
1388
+ backgroundColor: string;
875
1389
  };
876
1390
  radio: {
877
1391
  borderColor: string;
878
1392
  background: string;
1393
+ textSize: string;
1394
+ lineHeight: string;
879
1395
  size: {
880
1396
  small: {
881
1397
  borderWidth: string;
@@ -904,6 +1420,7 @@ declare type ThemeComponent = {
904
1420
  };
905
1421
  };
906
1422
  label: {
1423
+ color: string;
907
1424
  fontSize: {
908
1425
  small: string;
909
1426
  medium: string;
@@ -1017,6 +1534,7 @@ declare type ThemeComponent = {
1017
1534
  options: {
1018
1535
  borderColor: string;
1019
1536
  color: string;
1537
+ borderRadius: string;
1020
1538
  };
1021
1539
  };
1022
1540
  modal: {
@@ -1030,6 +1548,164 @@ declare type ThemeComponent = {
1030
1548
  selectedContrast: string;
1031
1549
  tagColor: string;
1032
1550
  };
1551
+ slideNavigation: {
1552
+ slideDots: {
1553
+ unselectedDotColor: string;
1554
+ selectedDotColor: string;
1555
+ dotsOpacity: number;
1556
+ };
1557
+ };
1558
+ beforeAfter: {
1559
+ size: {
1560
+ small: {
1561
+ image: {
1562
+ minHeight: string;
1563
+ minWidth: string;
1564
+ mobile: {
1565
+ minHeight: string;
1566
+ minWidth: string;
1567
+ };
1568
+ };
1569
+ imageContainer: {
1570
+ maxWidth: string;
1571
+ padding: string;
1572
+ mobile: {
1573
+ maxWidth: string;
1574
+ };
1575
+ };
1576
+ userInfoText: {
1577
+ fontSize: string;
1578
+ mobile: {
1579
+ fontSize: string;
1580
+ };
1581
+ };
1582
+ };
1583
+ medium: {
1584
+ image: {
1585
+ minHeight: string;
1586
+ minWidth: string;
1587
+ mobile: {
1588
+ minHeight: string;
1589
+ minWidth: string;
1590
+ };
1591
+ };
1592
+ imageContainer: {
1593
+ maxWidth: string;
1594
+ padding: string;
1595
+ mobile: {
1596
+ maxWidth: string;
1597
+ };
1598
+ };
1599
+ userInfoText: {
1600
+ fontSize: string;
1601
+ mobile: {
1602
+ fontSize: string;
1603
+ };
1604
+ };
1605
+ };
1606
+ large: {
1607
+ image: {
1608
+ minHeight: string;
1609
+ minWidth: string;
1610
+ mobile: {
1611
+ minHeight: string;
1612
+ minWidth: string;
1613
+ };
1614
+ };
1615
+ imageContainer: {
1616
+ maxWidth: string;
1617
+ padding: string;
1618
+ mobile: {
1619
+ maxWidth: string;
1620
+ };
1621
+ };
1622
+ userInfoText: {
1623
+ fontSize: string;
1624
+ mobile: {
1625
+ fontSize: string;
1626
+ };
1627
+ };
1628
+ };
1629
+ };
1630
+ };
1631
+ total: {
1632
+ basicTotal: {
1633
+ amount: {
1634
+ color: string;
1635
+ fontSize: string;
1636
+ };
1637
+ currency: {
1638
+ color: string;
1639
+ fontSize: string;
1640
+ lineHeight: string;
1641
+ alignSelf?: string;
1642
+ };
1643
+ savings: {
1644
+ textFontSize: string;
1645
+ textLineHeight: string;
1646
+ amountFontSize: string;
1647
+ amountFontWeight: number;
1648
+ amountLineHeight: string;
1649
+ color?: string;
1650
+ };
1651
+ };
1652
+ };
1653
+ subTotal: {
1654
+ basicSubTotal: {
1655
+ family: string;
1656
+ size: string;
1657
+ weight: number;
1658
+ lineHeight: string;
1659
+ color: string;
1660
+ };
1661
+ };
1662
+ pricing: {
1663
+ priceLabel: {
1664
+ price: {
1665
+ size: ComponentSize$1.Small | ComponentSize$1.Medium | ComponentSize$1.Large;
1666
+ originalPriceColor: string;
1667
+ actualPriceColor: string;
1668
+ };
1669
+ };
1670
+ };
1671
+ orderSummary: {
1672
+ backgroundColor: string;
1673
+ maxWidth?: string;
1674
+ padding?: string;
1675
+ borderRadius?: string;
1676
+ onMobile: {
1677
+ maxWidth?: string;
1678
+ padding?: string;
1679
+ backgroundColor?: string;
1680
+ };
1681
+ };
1682
+ expressCheckout: {
1683
+ fontFamily: string;
1684
+ fontWeight: number;
1685
+ lineHeight: string;
1686
+ };
1687
+ copyrightText: {
1688
+ fontSize: string;
1689
+ fontWeight: number;
1690
+ lineHeight: string;
1691
+ color: string;
1692
+ };
1693
+ textButton: {
1694
+ fontWeight: number;
1695
+ lineHeight: string;
1696
+ };
1697
+ deliveryDetails: {
1698
+ note: {
1699
+ accentColor: string;
1700
+ color: string;
1701
+ backgroundColor: string;
1702
+ };
1703
+ };
1704
+ text: {
1705
+ orderHeader: {
1706
+ color: string;
1707
+ };
1708
+ };
1033
1709
  };
1034
1710
  declare type ThemeTypography = {
1035
1711
  config: {
@@ -1056,6 +1732,11 @@ declare type ThemeAssets = {
1056
1732
  images: {
1057
1733
  favicon: string;
1058
1734
  logo: string;
1735
+ logoSize?: {
1736
+ width: string;
1737
+ height: string;
1738
+ };
1739
+ logoMobile?: string;
1059
1740
  };
1060
1741
  [key: string]: any;
1061
1742
  };
@@ -1066,11 +1747,12 @@ interface CheckboxProps {
1066
1747
  size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1067
1748
  text: string;
1068
1749
  checked?: boolean;
1750
+ blockUncheck?: boolean;
1069
1751
  id: string;
1070
1752
  backgroundColor?: string;
1071
1753
  variant: 'primary' | 'secondary';
1072
1754
  }
1073
- declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, }: CheckboxProps) => JSX.Element;
1755
+ declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, blockUncheck, }: CheckboxProps) => JSX.Element;
1074
1756
 
1075
1757
  interface RadioGroupInputProps {
1076
1758
  name: string;
@@ -1103,10 +1785,11 @@ interface MinimalisticProps {
1103
1785
  discount: number;
1104
1786
  offText: string;
1105
1787
  widthAuto?: boolean;
1788
+ testId?: string;
1106
1789
  }
1107
1790
 
1108
1791
  declare const Bundle: {
1109
- Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, }: MinimalisticProps) => JSX.Element;
1792
+ Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, testId, }: MinimalisticProps) => JSX.Element;
1110
1793
  Simple: ({ title, freeShippingText, price, anyQtyForText, backgroundColor, widthAuto, }: SimpleProps) => JSX.Element;
1111
1794
  };
1112
1795
 
@@ -1114,16 +1797,18 @@ interface CategoryTagProps {
1114
1797
  text: string;
1115
1798
  size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1116
1799
  className?: string;
1800
+ styledBorder?: boolean;
1117
1801
  }
1118
- declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1802
+ declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1119
1803
 
1120
1804
  interface SeasonOfferTagProps {
1121
1805
  text: string;
1122
1806
  backgroundColor?: string;
1123
1807
  size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1124
1808
  className?: string;
1809
+ styledBorder?: boolean;
1125
1810
  }
1126
- declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1811
+ declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1127
1812
 
1128
1813
  interface TimeProps {
1129
1814
  hours: number;
@@ -1136,7 +1821,14 @@ interface TimerProps extends TimeProps {
1136
1821
  }
1137
1822
  declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
1138
1823
 
1139
- interface BaseInputCommmonProps {
1824
+ interface BaseInputCommonProps {
1825
+ id?: string;
1826
+ value?: string;
1827
+ innerRef?: React.Ref<HTMLInputElement>;
1828
+ onBlur?: () => void;
1829
+ onFocus?: () => void;
1830
+ onChange?: (value: string, event: any) => void;
1831
+ hideClear?: boolean;
1140
1832
  defaultValue?: string;
1141
1833
  maxLength?: number;
1142
1834
  placeholder?: string;
@@ -1146,16 +1838,13 @@ interface BaseInputCommmonProps {
1146
1838
  required?: string;
1147
1839
  children?: React.ReactNode;
1148
1840
  size?: 'regular' | 'small';
1841
+ inlinePlaceholder?: boolean;
1842
+ hasError?: boolean;
1843
+ inputType?: 'text' | 'email' | 'password' | 'url';
1844
+ name?: string;
1845
+ autoFocus?: boolean;
1149
1846
  }
1150
- interface BaseInputControlled extends BaseInputCommmonProps {
1151
- value: string;
1152
- onChange: (value: string) => void;
1153
- }
1154
- interface BaseInputUncontrolled extends BaseInputCommmonProps {
1155
- value?: never;
1156
- onChange?: (value: string) => void;
1157
- }
1158
- declare type BaseInputProps = BaseInputControlled | BaseInputUncontrolled;
1847
+ declare type BaseInputProps = BaseInputCommonProps;
1159
1848
 
1160
1849
  declare type BasePlusIconProps = BaseInputProps & {
1161
1850
  Icon: IconType;
@@ -1179,6 +1868,7 @@ interface BaseCTAProps {
1179
1868
  size?: ComponentSize;
1180
1869
  text: string;
1181
1870
  type?: ButtonType;
1871
+ inline?: boolean;
1182
1872
  testId?: string;
1183
1873
  }
1184
1874
 
@@ -1193,7 +1883,7 @@ declare type CustomProps = BaseInputProps & {
1193
1883
  };
1194
1884
 
1195
1885
  declare const Input: {
1196
- Simple: ({ value, onChange, defaultValue, label, children, required, onValidation, size, ...rest }: BaseInputProps) => JSX.Element;
1886
+ Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, ...rest }: BaseInputCommonProps) => JSX.Element;
1197
1887
  Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
1198
1888
  SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
1199
1889
  SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
@@ -1253,7 +1943,7 @@ declare type detail = {
1253
1943
  details: string;
1254
1944
  };
1255
1945
  interface orderUpdate extends detail {
1256
- keepMeUpdated: {
1946
+ keepMeUpdated?: {
1257
1947
  title: string;
1258
1948
  onClick: () => void;
1259
1949
  };
@@ -1266,9 +1956,9 @@ interface DeliveryDetailsProps {
1266
1956
  note?: {
1267
1957
  importantNoteText: string;
1268
1958
  text: string;
1269
- accentColor: string;
1270
- backgroundColor: string;
1271
- color: string;
1959
+ accentColor?: string;
1960
+ backgroundColor?: string;
1961
+ color?: string;
1272
1962
  };
1273
1963
  }
1274
1964
  declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
@@ -1276,19 +1966,28 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
1276
1966
  interface ScrollToTopProps {
1277
1967
  scrollToTopText: string;
1278
1968
  onClick: () => void;
1969
+ fill?: string;
1279
1970
  }
1280
- declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
1971
+ declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
1281
1972
 
1282
1973
  interface OrderBarProps {
1283
1974
  message: string;
1975
+ color?: string;
1976
+ }
1977
+ declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
1978
+
1979
+ interface TableProps$1 {
1980
+ headers: string[];
1981
+ data: string[][];
1284
1982
  }
1285
- declare const OrderBar: ({ message }: OrderBarProps) => JSX.Element;
1983
+ declare const SizeTable: ({ headers, data }: TableProps$1) => JSX.Element;
1286
1984
 
1287
1985
  interface TableProps {
1288
1986
  headers: string[];
1289
1987
  data: string[][];
1988
+ newSizeTableCss?: boolean;
1290
1989
  }
1291
- declare const SizeTable: ({ headers, data }: TableProps) => JSX.Element;
1990
+ declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
1292
1991
 
1293
1992
  interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
1294
1993
  color?: string;
@@ -1306,8 +2005,9 @@ interface ProductOrderItemProps {
1306
2005
  text: string;
1307
2006
  backgroundColor: string;
1308
2007
  };
2008
+ finalPriceStyle?: React.CSSProperties;
1309
2009
  }
1310
- declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
2010
+ declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
1311
2011
 
1312
2012
  interface ReviewProps {
1313
2013
  reviewerName: string;
@@ -1319,27 +2019,31 @@ interface ReviewProps {
1319
2019
  };
1320
2020
  title: string;
1321
2021
  description: string;
1322
- image: {
2022
+ image?: {
1323
2023
  src: string;
1324
2024
  alt: string;
1325
2025
  };
2026
+ reviewVariant?: string;
1326
2027
  }
1327
- declare const Review: ({ reviewerName, date, rating, stars, title, description, image }: ReviewProps) => JSX.Element;
2028
+ declare const Review: ({ reviewerName, date, rating, stars, title, description, image, reviewVariant, }: ReviewProps) => JSX.Element;
1328
2029
 
1329
2030
  interface SliderNavigationProps {
1330
- children: JSX.Element[];
2031
+ children: JSX.Element | JSX.Element[] | StyledComponent<any>;
1331
2032
  infinite: boolean;
1332
2033
  adaptiveHeight: boolean;
1333
- dotsSize: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1334
- dotListMarginTop: number;
2034
+ dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
2035
+ dotListMarginTop?: number;
1335
2036
  initialSlide?: number;
1336
2037
  arrows?: {
1337
2038
  arrowWidth: number;
1338
2039
  arrowHeight: number;
1339
2040
  arrowPadding: number;
1340
2041
  };
2042
+ dots?: boolean;
2043
+ slidesToShow?: number;
2044
+ speed?: number;
1341
2045
  }
1342
- declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
2046
+ declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
1343
2047
 
1344
2048
  interface DropdownListIconsProps {
1345
2049
  items: DropdownListIconsItem[];
@@ -1393,8 +2097,8 @@ interface ProductItemProps {
1393
2097
  price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
1394
2098
  rating: Pick<RatingProps, 'rating' | 'reviews'>;
1395
2099
  tags?: {
1396
- categoryTagText: string;
1397
- seasonOfferTagText: string;
2100
+ categoryTagText?: string;
2101
+ seasonOfferTagText?: string;
1398
2102
  };
1399
2103
  alignName?: 'left' | 'center';
1400
2104
  url?: string;
@@ -1403,6 +2107,13 @@ interface ProductItemProps {
1403
2107
 
1404
2108
  interface ProductItemSmallMobileProps extends ProductItemProps {
1405
2109
  size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
2110
+ imageHover?: ImageProps;
2111
+ topTag?: JSX.Element;
2112
+ bottomTag?: JSX.Element;
2113
+ onClick?: () => void;
2114
+ priceDisplayType?: 'default' | 'styled';
2115
+ priceAtBottom?: boolean;
2116
+ priceLoading?: boolean;
1406
2117
  }
1407
2118
 
1408
2119
  declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
@@ -1411,7 +2122,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
1411
2122
  };
1412
2123
 
1413
2124
  declare const Collection: {
1414
- ProductItemMobile: ({ title, image, price, rating, size, tags, alignName, url, className, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
2125
+ ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1415
2126
  withProductGrid: typeof withProductGrid;
1416
2127
  };
1417
2128
 
@@ -1472,10 +2183,13 @@ interface PaginationProps {
1472
2183
  underlineActive?: boolean;
1473
2184
  boldActive?: boolean;
1474
2185
  disabled?: boolean;
2186
+ showReducedPages?: boolean;
1475
2187
  }
1476
- declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
2188
+ declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
2189
+
2190
+ declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
1477
2191
 
1478
- declare const Text: FC<TextProps>;
2192
+ declare const Text: ({ variant, children, testId, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
1479
2193
  declare type TextHeroProps = {
1480
2194
  variant: 'hero1' | 'hero2' | 'hero3';
1481
2195
  weight?: 'heavy' | 'bold' | 'demi';
@@ -1485,6 +2199,7 @@ declare type TextHeroProps = {
1485
2199
  wide?: never;
1486
2200
  original?: never;
1487
2201
  allCaps?: never;
2202
+ href: never;
1488
2203
  };
1489
2204
  declare type TextDisplayProps = {
1490
2205
  variant: 'display1' | 'display2';
@@ -1495,6 +2210,7 @@ declare type TextDisplayProps = {
1495
2210
  wide?: never;
1496
2211
  original?: never;
1497
2212
  allCaps?: never;
2213
+ href: never;
1498
2214
  };
1499
2215
  declare type TextHeadingProps = {
1500
2216
  variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
@@ -1505,6 +2221,7 @@ declare type TextHeadingProps = {
1505
2221
  wide?: never;
1506
2222
  original?: never;
1507
2223
  allCaps?: never;
2224
+ href?: never;
1508
2225
  };
1509
2226
  declare type TextBodyProps = {
1510
2227
  variant: 'body';
@@ -1515,6 +2232,7 @@ declare type TextBodyProps = {
1515
2232
  wide?: never;
1516
2233
  original?: never;
1517
2234
  allCaps?: never;
2235
+ href?: never;
1518
2236
  };
1519
2237
  declare type TextButtonProps = {
1520
2238
  variant: 'button';
@@ -1525,6 +2243,7 @@ declare type TextButtonProps = {
1525
2243
  wide?: boolean;
1526
2244
  original?: never;
1527
2245
  allCaps?: never;
2246
+ href?: never;
1528
2247
  };
1529
2248
  declare type TextPricingProps = {
1530
2249
  variant: 'pricing';
@@ -1535,6 +2254,7 @@ declare type TextPricingProps = {
1535
2254
  wide?: never;
1536
2255
  original?: boolean;
1537
2256
  allCaps?: never;
2257
+ href?: never;
1538
2258
  };
1539
2259
  declare type TextLinkProps = {
1540
2260
  variant: 'link';
@@ -1545,9 +2265,11 @@ declare type TextLinkProps = {
1545
2265
  wide?: never;
1546
2266
  original?: never;
1547
2267
  allCaps?: never;
1548
- } & AnchorHTMLAttributes<'a'>;
2268
+ href?: string;
2269
+ };
1549
2270
  declare type TextLabelProps = {
1550
2271
  variant: 'label';
2272
+ color?: string;
1551
2273
  weight?: 'regular' | 'demi';
1552
2274
  size?: 'regular' | 'small';
1553
2275
  underline?: never;
@@ -1555,6 +2277,7 @@ declare type TextLabelProps = {
1555
2277
  wide?: never;
1556
2278
  original?: never;
1557
2279
  allCaps?: never;
2280
+ href?: never;
1558
2281
  } & LabelHTMLAttributes<'label'>;
1559
2282
  declare type TextTagProps = {
1560
2283
  variant: 'tag';
@@ -1565,10 +2288,13 @@ declare type TextTagProps = {
1565
2288
  wide?: never;
1566
2289
  original?: never;
1567
2290
  allCaps?: boolean;
2291
+ href?: never;
1568
2292
  };
1569
- declare type TextProps = AriaAttributes & {
2293
+ declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
2294
+ children: ReactNode;
1570
2295
  style?: CSSProperties;
1571
2296
  className?: string;
2297
+ testId?: string;
1572
2298
  } & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
1573
2299
 
1574
2300
  interface SearchBarProps {
@@ -1576,20 +2302,28 @@ interface SearchBarProps {
1576
2302
  resultOptions: SearchBarOptionItem[];
1577
2303
  onChange: (text: string) => void;
1578
2304
  onSearch: (term: string) => void;
2305
+ onClose: () => void;
1579
2306
  resultsPanelDataTestId?: string;
1580
2307
  allResults?: number;
2308
+ initialTerm?: string;
2309
+ shouldClear?: boolean;
2310
+ isBlogSearchBar?: boolean;
2311
+ ariaLabel?: string;
2312
+ placeholder?: string;
2313
+ id?: string;
2314
+ autoComplete?: string;
1581
2315
  }
1582
- declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, resultsPanelDataTestId, allResults, }: SearchBarProps) => JSX.Element;
2316
+ declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
1583
2317
 
1584
2318
  interface ProductGalleryMobileProps {
1585
2319
  images: ImageType[];
1586
- selectedValue?: ImageType;
1587
- DiscountTagElement?: JSX.Element;
1588
- BestSellerTagElement?: JSX.Element;
2320
+ customClick?: boolean;
2321
+ topTag?: JSX.Element;
2322
+ bottomTag?: JSX.Element;
1589
2323
  productImageDataTestId?: string;
1590
- slideDotsDataTestId?: string;
2324
+ borderRadiusVariant?: boolean;
1591
2325
  }
1592
- declare const ProductGalleryMobile: ({ images, selectedValue, DiscountTagElement, BestSellerTagElement, productImageDataTestId, slideDotsDataTestId, }: ProductGalleryMobileProps) => JSX.Element;
2326
+ declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
1593
2327
 
1594
2328
  interface RadioProps {
1595
2329
  name: string;
@@ -1606,6 +2340,8 @@ declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange
1606
2340
  declare type PortalProps = {
1607
2341
  id: string;
1608
2342
  className?: string;
2343
+ overflow?: boolean;
2344
+ style?: CSSProperties;
1609
2345
  };
1610
2346
  declare const Portal: FC<PortalProps>;
1611
2347
 
@@ -1614,12 +2350,14 @@ declare type ModalProps = {
1614
2350
  dismissable?: boolean;
1615
2351
  maxFullScreen?: boolean;
1616
2352
  };
2353
+ interface ContainerProps {
2354
+ maxFullScreen: boolean;
2355
+ opened?: boolean;
2356
+ }
1617
2357
  declare const Overlay: _emotion_styled.StyledComponent<{
1618
2358
  theme?: _emotion_react.Theme | undefined;
1619
2359
  as?: React.ElementType<any> | undefined;
1620
- } & {
1621
- opened?: boolean | undefined;
1622
- }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2360
+ } & Pick<ContainerProps, "opened">, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
1623
2361
  declare const Modal: FC<ModalProps>;
1624
2362
  declare const modalEvent: (id: string, detail: Omit<Events['modal'], 'id'>) => void;
1625
2363
  declare const useModalEvent: (id: string, cb: (event: CustomEvent<Events['modal']>) => void) => void;
@@ -1666,8 +2404,9 @@ declare type QuantityPickerPropsUncontrolled = {
1666
2404
  declare type QuantityPickerProps = {
1667
2405
  initialValue?: number;
1668
2406
  maxValue?: number;
2407
+ testId?: string;
1669
2408
  } & (QuantityPickerPropsControlled | QuantityPickerPropsUncontrolled);
1670
- declare const QuantityPicker: ({ initialValue, maxValue, value, onChange, }: QuantityPickerProps) => JSX.Element;
2409
+ declare const QuantityPicker: ({ initialValue, maxValue, value, testId, onChange, }: QuantityPickerProps) => JSX.Element;
1671
2410
 
1672
2411
  declare type SpacingProps = {
1673
2412
  size: number;
@@ -1692,12 +2431,13 @@ interface PackSelectorProps {
1692
2431
  packs: PackOption[];
1693
2432
  selectedValue: PackOption;
1694
2433
  onChange: (size: PackOption) => void;
2434
+ currencyCode?: string;
1695
2435
  }
1696
2436
  declare const PackSelector: FC<PackSelectorProps>;
1697
2437
 
1698
2438
  interface FiltersProps {
1699
- filters: Filter[];
1700
- onChange: (update: FilterChange) => void;
2439
+ values: Filter[];
2440
+ onChange: (newValues: Filter[], filtersState?: FilterChange) => void;
1701
2441
  tagsColor?: string;
1702
2442
  filterByText: string;
1703
2443
  clearAllText: string;
@@ -1706,8 +2446,9 @@ interface FiltersProps {
1706
2446
  applyText: string;
1707
2447
  mobileBackArrowClick: () => void;
1708
2448
  mobileApplyButtonClick: () => void;
2449
+ onResetValues: () => void;
1709
2450
  }
1710
- declare const Filters: ({ filters, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, }: FiltersProps) => JSX.Element;
2451
+ declare const Filters: ({ values, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, onResetValues, }: FiltersProps) => JSX.Element;
1711
2452
 
1712
2453
  interface SearchNavigationProps {
1713
2454
  returnText?: string;
@@ -1717,6 +2458,130 @@ interface SearchNavigationProps {
1717
2458
  }
1718
2459
  declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
1719
2460
 
2461
+ interface TabProps$1 {
2462
+ title: string;
2463
+ content: ReactNode;
2464
+ }
2465
+ interface TabsProps {
2466
+ backgroundColor?: string;
2467
+ initialSelected?: string;
2468
+ tabsMaxWidth?: string;
2469
+ tabs: TabProps$1[];
2470
+ }
2471
+ declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
2472
+
2473
+ interface TabProps {
2474
+ title: string;
2475
+ titleSize?: string;
2476
+ selectedTitleWeight?: number;
2477
+ height?: string;
2478
+ selected?: boolean;
2479
+ color?: string;
2480
+ tabsMaxWidth?: string;
2481
+ onClick: (clickedTab: string) => void;
2482
+ }
2483
+ declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
2484
+
2485
+ interface IconList {
2486
+ backgroundColor: string;
2487
+ iconColor: string;
2488
+ iconName: string;
2489
+ iconTitle: string;
2490
+ iconSizeDesktop?: number;
2491
+ iconSizeMobile?: number;
2492
+ iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
2493
+ iconTitleStyle?: string;
2494
+ iconStyle?: string;
2495
+ isTitleInnerHtml?: boolean;
2496
+ }
2497
+ declare const IconsWithTitle: ({ iconName, iconTitle, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconList) => JSX.Element | null;
2498
+
2499
+ interface NoteProps {
2500
+ accentColor?: string;
2501
+ color?: string;
2502
+ backgroundColor?: string;
2503
+ importantNoteText: string;
2504
+ text: string;
2505
+ }
2506
+ declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
2507
+
2508
+ interface TextWithImageProps {
2509
+ title: string;
2510
+ text?: string;
2511
+ children?: ReactNode;
2512
+ buttomText: string;
2513
+ backgroundColor: string;
2514
+ imageLeftSide?: boolean;
2515
+ URLLink?: string;
2516
+ onButtonClick?: () => void;
2517
+ isRedirectionURL: boolean;
2518
+ btnBGColor?: string;
2519
+ btnHoverBGColor?: string;
2520
+ imgVideo: imageVideoProps;
2521
+ contentAfterButton?: React.ReactNode;
2522
+ titleStyle?: React.CSSProperties;
2523
+ textStyle?: React.CSSProperties;
2524
+ buttonWideOnMobile?: boolean;
2525
+ }
2526
+ declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
2527
+
2528
+ interface AccordionOptionsProps {
2529
+ titleColor: string;
2530
+ accordions: AccordionProps[];
2531
+ }
2532
+ declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
2533
+
2534
+ interface ShortBannerProps {
2535
+ title: string;
2536
+ bannerText: string;
2537
+ backgroundColor: string;
2538
+ alignCenter?: boolean;
2539
+ widthAuto?: boolean;
2540
+ textColor: string;
2541
+ }
2542
+ declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
2543
+
2544
+ interface BeforeAfterCardProps {
2545
+ name: string;
2546
+ age: string;
2547
+ months: string;
2548
+ beforeImage: string;
2549
+ afterImage: string;
2550
+ alignCenter?: boolean;
2551
+ imageBorderRadius?: string;
2552
+ size?: ComponentSize;
2553
+ }
2554
+ declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
2555
+
2556
+ interface ImageCardWithDescriptionProps {
2557
+ image: string;
2558
+ title?: string;
2559
+ description?: string;
2560
+ titlePosition?: 'center' | 'left';
2561
+ }
2562
+ declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
2563
+
2564
+ interface Checkpoint {
2565
+ day: string;
2566
+ date: string;
2567
+ statusMessage: string;
2568
+ }
2569
+ interface TrackingProgressProps {
2570
+ checkPoints: Checkpoint[];
2571
+ amountOfCheckPoints: number;
2572
+ }
2573
+ declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
2574
+
2575
+ interface ReviewsHeaderProps {
2576
+ title?: string;
2577
+ rating: number;
2578
+ reviews: number;
2579
+ reviewsText: string;
2580
+ reviewsSummary: string[];
2581
+ onClickReview: (reveiw: string) => void;
2582
+ }
2583
+ declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
2584
+
1720
2585
  declare global {
1721
2586
  interface Events {
1722
2587
  modal: {
@@ -1756,4 +2621,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
1756
2621
  currency?: string | undefined;
1757
2622
  }) => string;
1758
2623
 
1759
- 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 };
2624
+ export { Accordion, AccordionOptions, AmazonButton, AssetsProvider, BeforeAfterCard, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownDialog, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitPredictor, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageCardWithDescription, ImageType, Input, InputValidationType, Modal, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, Pagination, PaginatorBlog, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, PriceLabelV2, ProductGallery, ProductGalleryMobile, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review, ReviewsHeader, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, ShortBanner, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeChartTable, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Tab, Tabs, Text, TextButton, TextWithImage, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, TrackingProgress, WithTestId, decimalFormat, formatPrice, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };