@trafilea/afrodita-components 5.0.0-beta.12 → 5.0.0-beta.121

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,71 @@ 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
+
244
+ declare const CircleSolidStyledCheck: ({ height, width, fill }: IconProps) => JSX.Element;
245
+
146
246
  declare const Actions_Check: typeof Check;
147
247
  declare const Actions_ClearLight: typeof ClearLight;
148
248
  declare const Actions_LightExclamation: typeof LightExclamation;
@@ -151,6 +251,37 @@ declare const Actions_LightCheck: typeof LightCheck;
151
251
  declare const Actions_Question: typeof Question;
152
252
  declare const Actions_Close: typeof Close;
153
253
  declare const Actions_Trash: typeof Trash;
254
+ declare const Actions_Warning: typeof Warning;
255
+ declare const Actions_Edit: typeof Edit;
256
+ declare const Actions_SignOut: typeof SignOut;
257
+ declare const Actions_Add: typeof Add;
258
+ type Actions_CopyProps = CopyProps;
259
+ declare const Actions_Copy: typeof Copy;
260
+ declare const Actions_CheckboxEmpty: typeof CheckboxEmpty;
261
+ declare const Actions_CheckboxLight: typeof CheckboxLight;
262
+ declare const Actions_CheckboxSolid: typeof CheckboxSolid;
263
+ declare const Actions_Like: typeof Like;
264
+ declare const Actions_LikeSolid: typeof LikeSolid;
265
+ declare const Actions_NotAllowed: typeof NotAllowed;
266
+ declare const Actions_RadioEmpty: typeof RadioEmpty;
267
+ declare const Actions_RadioFilled: typeof RadioFilled;
268
+ declare const Actions_SettingsSolid: typeof SettingsSolid;
269
+ declare const Actions_Settings: typeof Settings;
270
+ declare const Actions_Share: typeof Share;
271
+ declare const Actions_CircleCheck: typeof CircleCheck;
272
+ declare const Actions_CircleClear: typeof CircleClear;
273
+ declare const Actions_CircleInfo: typeof CircleInfo;
274
+ declare const Actions_CircleMinus: typeof CircleMinus;
275
+ declare const Actions_CirclePlus: typeof CirclePlus;
276
+ declare const Actions_CircleQuestion: typeof CircleQuestion;
277
+ declare const Actions_CircleWarning: typeof CircleWarning;
278
+ declare const Actions_CircleSolidCheck: typeof CircleSolidCheck;
279
+ declare const Actions_CircleSolidClear: typeof CircleSolidClear;
280
+ declare const Actions_CircleSolidMinus: typeof CircleSolidMinus;
281
+ declare const Actions_CircleSolidPlus: typeof CircleSolidPlus;
282
+ declare const Actions_CircleSolidQuestion: typeof CircleSolidQuestion;
283
+ declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
284
+ declare const Actions_CircleSolidStyledCheck: typeof CircleSolidStyledCheck;
154
285
  declare namespace Actions {
155
286
  export {
156
287
  Actions_Check as Check,
@@ -161,6 +292,38 @@ declare namespace Actions {
161
292
  Actions_Question as Question,
162
293
  Actions_Close as Close,
163
294
  Actions_Trash as Trash,
295
+ Actions_Warning as Warning,
296
+ Actions_Edit as Edit,
297
+ Actions_SignOut as SignOut,
298
+ Actions_Add as Add,
299
+ Actions_CopyProps as CopyProps,
300
+ Actions_Copy as Copy,
301
+ Actions_CheckboxEmpty as CheckboxEmpty,
302
+ Actions_CheckboxLight as CheckboxLight,
303
+ Actions_CheckboxSolid as CheckboxSolid,
304
+ Actions_Like as Like,
305
+ Actions_LikeSolid as LikeSolid,
306
+ Actions_NotAllowed as NotAllowed,
307
+ Actions_RadioEmpty as RadioEmpty,
308
+ Actions_RadioFilled as RadioFilled,
309
+ Minus$1 as Minus,
310
+ Actions_SettingsSolid as SettingsSolid,
311
+ Actions_Settings as Settings,
312
+ Actions_Share as Share,
313
+ Actions_CircleCheck as CircleCheck,
314
+ Actions_CircleClear as CircleClear,
315
+ Actions_CircleInfo as CircleInfo,
316
+ Actions_CircleMinus as CircleMinus,
317
+ Actions_CirclePlus as CirclePlus,
318
+ Actions_CircleQuestion as CircleQuestion,
319
+ Actions_CircleWarning as CircleWarning,
320
+ Actions_CircleSolidCheck as CircleSolidCheck,
321
+ Actions_CircleSolidClear as CircleSolidClear,
322
+ Actions_CircleSolidMinus as CircleSolidMinus,
323
+ Actions_CircleSolidPlus as CircleSolidPlus,
324
+ Actions_CircleSolidQuestion as CircleSolidQuestion,
325
+ Actions_CircleSolidWarning as CircleSolidWarning,
326
+ Actions_CircleSolidStyledCheck as CircleSolidStyledCheck,
164
327
  };
165
328
  }
166
329
 
@@ -169,31 +332,78 @@ declare const FitPredictor$1: ({ height, width, fill }: IconProps) => JSX.Elemen
169
332
  interface LoadingProps extends IconProps {
170
333
  backgroundColor: string;
171
334
  }
172
- declare const Loading: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
335
+ declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
173
336
 
174
337
  declare const Shapermint: ({ height, width }: IconProps) => JSX.Element;
175
338
 
176
339
  declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
177
340
 
341
+ declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
342
+
343
+ declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
344
+
345
+ declare const Chat: ({ height, width, fill, testId }: IconProps) => JSX.Element;
346
+
347
+ declare const Email: ({ height, width, fill, testId }: IconProps) => JSX.Element;
348
+
349
+ declare const CallUs: ({ height, width, fill, testId }: IconProps) => JSX.Element;
350
+
351
+ declare const SignForm: ({ height, width, fill }: IconProps) => JSX.Element;
352
+
353
+ declare const QrCode: ({ height, width, fill }: IconProps) => JSX.Element;
354
+
355
+ declare const FreeExchange: ({ height, width, fill, testId }: IconProps) => JSX.Element;
356
+
357
+ declare const ShopNow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
358
+
359
+ declare const HasselFreeReturns: ({ height, width, fill, testId }: IconProps) => JSX.Element;
360
+
361
+ declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
362
+
363
+ declare const FitGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
364
+
178
365
  type Other_LoadingProps = LoadingProps;
179
- declare const Other_Loading: typeof Loading;
180
366
  declare const Other_Shapermint: typeof Shapermint;
181
367
  declare const Other_McAfee: typeof McAfee;
368
+ declare const Other_GetDiscount: typeof GetDiscount;
369
+ declare const Other_ShapermintLogo: typeof ShapermintLogo;
370
+ declare const Other_Chat: typeof Chat;
371
+ declare const Other_Email: typeof Email;
372
+ declare const Other_CallUs: typeof CallUs;
373
+ declare const Other_SignForm: typeof SignForm;
374
+ declare const Other_QrCode: typeof QrCode;
375
+ declare const Other_FreeExchange: typeof FreeExchange;
376
+ declare const Other_ShopNow: typeof ShopNow;
377
+ declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
378
+ declare const Other_Play: typeof Play;
379
+ declare const Other_FitGuarantee: typeof FitGuarantee;
182
380
  declare namespace Other {
183
381
  export {
184
382
  FitPredictor$1 as FitPredictor,
185
383
  Other_LoadingProps as LoadingProps,
186
- Other_Loading as Loading,
384
+ Loading$1 as Loading,
187
385
  Other_Shapermint as Shapermint,
188
386
  Other_McAfee as McAfee,
387
+ Other_GetDiscount as GetDiscount,
388
+ Other_ShapermintLogo as ShapermintLogo,
389
+ Other_Chat as Chat,
390
+ Other_Email as Email,
391
+ Other_CallUs as CallUs,
392
+ Other_SignForm as SignForm,
393
+ Other_QrCode as QrCode,
394
+ Other_FreeExchange as FreeExchange,
395
+ Other_ShopNow as ShopNow,
396
+ Other_HasselFreeReturns as HasselFreeReturns,
397
+ Other_Play as Play,
398
+ Other_FitGuarantee as FitGuarantee,
189
399
  };
190
400
  }
191
401
 
192
402
  declare const ChevronDown: ({ height, width, fill }: IconProps) => JSX.Element;
193
403
 
194
- declare const ChevronLeft: ({ height, width, fill, opacity }: IconWithOpacityProps) => JSX.Element;
404
+ declare const ChevronLeft: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
195
405
 
196
- declare const ChevronRight: ({ height, width, fill, opacity }: IconWithOpacityProps) => JSX.Element;
406
+ declare const ChevronRight: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
197
407
 
198
408
  declare const ChevronRightVariant: ({ height, width, fill }: IconProps) => JSX.Element;
199
409
 
@@ -203,6 +413,28 @@ declare const ChevronUpSolid: ({ height, width, fill }: IconProps) => JSX.Elemen
203
413
 
204
414
  declare const CircleUp: ({ width, height, fill }: IconProps) => JSX.Element;
205
415
 
416
+ declare const CircleChevronLeft: ({ width, height, fill }: IconProps) => JSX.Element;
417
+
418
+ declare const CircleChevronRight: ({ width, height, fill }: IconProps) => JSX.Element;
419
+
420
+ declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
421
+
422
+ declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
423
+
424
+ declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
425
+
426
+ declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
427
+
428
+ declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
429
+
430
+ declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
431
+
432
+ declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
433
+
434
+ declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
435
+
436
+ declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
437
+
206
438
  declare const Arrows_ChevronDown: typeof ChevronDown;
207
439
  declare const Arrows_ChevronLeft: typeof ChevronLeft;
208
440
  declare const Arrows_ChevronRight: typeof ChevronRight;
@@ -210,6 +442,17 @@ declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
210
442
  declare const Arrows_ChevronUp: typeof ChevronUp;
211
443
  declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
212
444
  declare const Arrows_CircleUp: typeof CircleUp;
445
+ declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
446
+ declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
447
+ declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
448
+ declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
449
+ declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
450
+ declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
451
+ declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
452
+ declare const Arrows_CircleLineUp: typeof CircleLineUp;
453
+ declare const Arrows_CircleLineDown: typeof CircleLineDown;
454
+ declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
455
+ declare const Arrows_CircleLineRight: typeof CircleLineRight;
213
456
  declare namespace Arrows {
214
457
  export {
215
458
  Arrows_ChevronDown as ChevronDown,
@@ -219,6 +462,17 @@ declare namespace Arrows {
219
462
  Arrows_ChevronUp as ChevronUp,
220
463
  Arrows_ChevronUpSolid as ChevronUpSolid,
221
464
  Arrows_CircleUp as CircleUp,
465
+ Arrows_CircleChevronLeft as CircleChevronLeft,
466
+ Arrows_CircleChevronRight as CircleChevronRight,
467
+ Arrows_CircleChevronDown as CircleChevronDown,
468
+ Arrows_CircleChevronUp as CircleChevronUp,
469
+ Arrows_ChevronDownVariant as ChevronDownVariant,
470
+ Arrows_ChevronUpVariant as ChevronUpVariant,
471
+ Arrows_ChevronLeftVariant as ChevronLeftVariant,
472
+ Arrows_CircleLineUp as CircleLineUp,
473
+ Arrows_CircleLineDown as CircleLineDown,
474
+ Arrows_CircleLineLeft as CircleLineLeft,
475
+ Arrows_CircleLineRight as CircleLineRight,
222
476
  };
223
477
  }
224
478
 
@@ -242,6 +496,18 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
242
496
 
243
497
  declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
244
498
 
499
+ declare const LightBulb$1: ({ height, width, fill }: IconProps) => JSX.Element;
500
+
501
+ declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
502
+
503
+ declare const CircleNumber: ({ height, width, fill }: IconProps) => JSX.Element;
504
+
505
+ declare const SizeEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
506
+
507
+ declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
508
+
509
+ declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
510
+
245
511
  declare const PDP_Clock: typeof Clock;
246
512
  declare const PDP_FlagUSA: typeof FlagUSA;
247
513
  declare const PDP_Minus: typeof Minus;
@@ -252,6 +518,11 @@ declare const PDP_StarEmpty: typeof StarEmpty;
252
518
  declare const PDP_StarHalf: typeof StarHalf;
253
519
  declare const PDP_Stopwatch: typeof Stopwatch;
254
520
  declare const PDP_Shipping: typeof Shipping;
521
+ declare const PDP_ErrorCross: typeof ErrorCross;
522
+ declare const PDP_CircleNumber: typeof CircleNumber;
523
+ declare const PDP_SizeEmpty: typeof SizeEmpty;
524
+ declare const PDP_PlayMini: typeof PlayMini;
525
+ declare const PDP_ShippingEmpty: typeof ShippingEmpty;
255
526
  declare namespace PDP {
256
527
  export {
257
528
  PDP_Clock as Clock,
@@ -264,6 +535,12 @@ declare namespace PDP {
264
535
  PDP_StarHalf as StarHalf,
265
536
  PDP_Stopwatch as Stopwatch,
266
537
  PDP_Shipping as Shipping,
538
+ LightBulb$1 as LightBulb,
539
+ PDP_ErrorCross as ErrorCross,
540
+ PDP_CircleNumber as CircleNumber,
541
+ PDP_SizeEmpty as SizeEmpty,
542
+ PDP_PlayMini as PlayMini,
543
+ PDP_ShippingEmpty as ShippingEmpty,
267
544
  };
268
545
  }
269
546
 
@@ -281,6 +558,8 @@ declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
281
558
 
282
559
  declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
283
560
 
561
+ declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
562
+
284
563
  declare const SocialMedia_Facebook: typeof Facebook;
285
564
  declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
286
565
  declare const SocialMedia_Instagram: typeof Instagram;
@@ -288,6 +567,7 @@ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
288
567
  declare const SocialMedia_Pinterest: typeof Pinterest;
289
568
  declare const SocialMedia_Twitter: typeof Twitter;
290
569
  declare const SocialMedia_Youtube: typeof Youtube;
570
+ declare const SocialMedia_Interaction: typeof Interaction;
291
571
  declare namespace SocialMedia {
292
572
  export {
293
573
  SocialMedia_Facebook as Facebook,
@@ -297,14 +577,15 @@ declare namespace SocialMedia {
297
577
  SocialMedia_Pinterest as Pinterest,
298
578
  SocialMedia_Twitter as Twitter,
299
579
  SocialMedia_Youtube as Youtube,
580
+ SocialMedia_Interaction as Interaction,
300
581
  };
301
582
  }
302
583
 
303
- declare const Search: ({ height, width, fill }: IconProps) => JSX.Element;
584
+ declare const Search: ({ height, width, fill, testId }: IconProps) => JSX.Element;
304
585
 
305
586
  declare const User: ({ height, width, fill }: IconProps) => JSX.Element;
306
587
 
307
- declare const ShoppingBag: ({ height, width, fill }: IconProps) => JSX.Element;
588
+ declare const ShoppingBag: ({ height, width, fill, testId }: IconProps) => JSX.Element;
308
589
 
309
590
  declare const ShoppingCart: FC<IconProps>;
310
591
 
@@ -312,12 +593,64 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
312
593
 
313
594
  declare const Hamburger: FC<IconProps>;
314
595
 
596
+ declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
597
+
598
+ declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
599
+
600
+ declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
601
+
602
+ declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
603
+
604
+ declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
605
+
606
+ declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
607
+
608
+ declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
609
+
610
+ declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
611
+
612
+ declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
613
+
614
+ declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
615
+
616
+ declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
617
+
618
+ declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
619
+
620
+ declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
621
+
622
+ declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
623
+
624
+ declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
625
+
626
+ declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
627
+
628
+ declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
629
+
630
+ declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
631
+
315
632
  declare const Navigation_Search: typeof Search;
316
633
  declare const Navigation_User: typeof User;
317
634
  declare const Navigation_ShoppingBag: typeof ShoppingBag;
318
635
  declare const Navigation_ShoppingCart: typeof ShoppingCart;
319
636
  declare const Navigation_MapMarker: typeof MapMarker;
320
637
  declare const Navigation_Hamburger: typeof Hamburger;
638
+ declare const Navigation_AddressInformation: typeof AddressInformation;
639
+ declare const Navigation_ClubMembership: typeof ClubMembership;
640
+ declare const Navigation_Benefits: typeof Benefits;
641
+ declare const Navigation_Home: typeof Home;
642
+ declare const Navigation_HomeSolid: typeof HomeSolid;
643
+ declare const Navigation_ShoppingBagV2: typeof ShoppingBagV2;
644
+ declare const Navigation_UserSolid: typeof UserSolid;
645
+ declare const Navigation_SlideDotSolid: typeof SlideDotSolid;
646
+ declare const Navigation_Ellipsis: typeof Ellipsis;
647
+ declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
648
+ declare const Navigation_Lock: typeof Lock;
649
+ declare const Navigation_LockSolid: typeof LockSolid;
650
+ declare const Navigation_Loading: typeof Loading;
651
+ declare const Navigation_MapSolid: typeof MapSolid;
652
+ declare const Navigation_UserV2: typeof UserV2;
653
+ declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
321
654
  declare namespace Navigation {
322
655
  export {
323
656
  Navigation_Search as Search,
@@ -326,6 +659,24 @@ declare namespace Navigation {
326
659
  Navigation_ShoppingCart as ShoppingCart,
327
660
  Navigation_MapMarker as MapMarker,
328
661
  Navigation_Hamburger as Hamburger,
662
+ Navigation_AddressInformation as AddressInformation,
663
+ Navigation_ClubMembership as ClubMembership,
664
+ Navigation_Benefits as Benefits,
665
+ Navigation_Home as Home,
666
+ Navigation_HomeSolid as HomeSolid,
667
+ Navigation_ShoppingBagV2 as ShoppingBagV2,
668
+ Navigation_UserSolid as UserSolid,
669
+ SlideDot$1 as SlideDot,
670
+ Navigation_SlideDotSolid as SlideDotSolid,
671
+ Navigation_Ellipsis as Ellipsis,
672
+ Navigation_EllipsisHorizontal as EllipsisHorizontal,
673
+ Filters$1 as Filters,
674
+ Navigation_Lock as Lock,
675
+ Navigation_LockSolid as LockSolid,
676
+ Navigation_Loading as Loading,
677
+ Navigation_MapSolid as MapSolid,
678
+ Navigation_UserV2 as UserV2,
679
+ Navigation_ShoppingCartV2 as ShoppingCartV2,
329
680
  };
330
681
  }
331
682
 
@@ -342,22 +693,65 @@ interface IconWrapperProps {
342
693
  viewBoxX: number;
343
694
  viewBoxY: number;
344
695
  children: React.ReactNode;
345
- testid?: string;
696
+ testId?: string;
346
697
  fill?: string;
347
698
  }
348
699
 
349
- declare const Mail: ({ height, width }: IconWrapperProps) => JSX.Element;
700
+ declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
701
+
702
+ declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
703
+
704
+ declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
705
+
706
+ declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
707
+
708
+ declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
709
+
710
+ declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
711
+
712
+ declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
713
+
714
+ declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
715
+
716
+ declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
717
+
718
+ declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
719
+
720
+ declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
721
+
722
+ declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
350
723
 
351
724
  declare const Messaging_QuestionCircle: typeof QuestionCircle;
352
725
  declare const Messaging_Messenger: typeof Messenger;
353
726
  declare const Messaging_Comment: typeof Comment;
354
727
  declare const Messaging_Mail: typeof Mail;
728
+ declare const Messaging_QuoteLeft: typeof QuoteLeft;
729
+ declare const Messaging_QuoteRight: typeof QuoteRight;
730
+ declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
731
+ declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
732
+ declare const Messaging_Light: typeof Light;
733
+ declare const Messaging_LightBulb: typeof LightBulb;
734
+ declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
735
+ declare const Messaging_CommentDots: typeof CommentDots;
736
+ declare const Messaging_CommentLight: typeof CommentLight;
737
+ declare const Messaging_CommentMoney: typeof CommentMoney;
355
738
  declare namespace Messaging {
356
739
  export {
357
740
  Messaging_QuestionCircle as QuestionCircle,
358
741
  Messaging_Messenger as Messenger,
359
742
  Messaging_Comment as Comment,
360
743
  Messaging_Mail as Mail,
744
+ Community$1 as Community,
745
+ Messaging_QuoteLeft as QuoteLeft,
746
+ Messaging_QuoteRight as QuoteRight,
747
+ Messaging_QuoteSolidLeft as QuoteSolidLeft,
748
+ Messaging_QuoteSolidRight as QuoteSolidRight,
749
+ Messaging_Light as Light,
750
+ Messaging_LightBulb as LightBulb,
751
+ Messaging_LightBulbSolid as LightBulbSolid,
752
+ Messaging_CommentDots as CommentDots,
753
+ Messaging_CommentLight as CommentLight,
754
+ Messaging_CommentMoney as CommentMoney,
361
755
  };
362
756
  }
363
757
 
@@ -418,14 +812,79 @@ declare namespace SlideDots {
418
812
 
419
813
  declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
420
814
 
815
+ declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
816
+
817
+ declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
818
+
819
+ declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
820
+
821
+ declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
822
+
823
+ declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
824
+
825
+ declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
826
+
421
827
  declare const Emoji_Thinking: typeof Thinking;
828
+ declare const Emoji_SmilingV2: typeof SmilingV2;
829
+ declare const Emoji_Grinning: typeof Grinning;
830
+ declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
831
+ declare const Emoji_BlowingKiss: typeof BlowingKiss;
832
+ declare const Emoji_Frowning: typeof Frowning;
833
+ declare const Emoji_Relieved: typeof Relieved;
422
834
  declare namespace Emoji {
423
835
  export {
424
836
  Emoji_Thinking as Thinking,
837
+ Emoji_SmilingV2 as SmilingV2,
838
+ Emoji_Grinning as Grinning,
839
+ Emoji_GrinningWithSweat as GrinningWithSweat,
840
+ Emoji_BlowingKiss as BlowingKiss,
841
+ Emoji_Frowning as Frowning,
842
+ Emoji_Relieved as Relieved,
425
843
  };
426
844
  }
427
845
 
428
- declare type IconType = ({ height, width, fill }: IconProps) => JSX.Element;
846
+ declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
847
+
848
+ declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
849
+
850
+ declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
851
+
852
+ declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
853
+
854
+ declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
855
+
856
+ declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
857
+
858
+ declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
859
+
860
+ declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
861
+
862
+ declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
863
+
864
+ declare const MyAccount_FreeShipping: typeof FreeShipping;
865
+ declare const MyAccount_PersonalStylist: typeof PersonalStylist;
866
+ declare const MyAccount_Community: typeof Community;
867
+ declare const MyAccount_VIP: typeof VIP;
868
+ declare const MyAccount_DealsOffers: typeof DealsOffers;
869
+ declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
870
+ declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
871
+ declare const MyAccount_Profile: typeof Profile;
872
+ declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
873
+ declare namespace MyAccount {
874
+ export {
875
+ MyAccount_FreeShipping as FreeShipping,
876
+ MyAccount_PersonalStylist as PersonalStylist,
877
+ MyAccount_Community as Community,
878
+ MyAccount_VIP as VIP,
879
+ MyAccount_DealsOffers as DealsOffers,
880
+ MyAccount_StyleFashionContent as StyleFashionContent,
881
+ MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
882
+ MyAccount_Profile as Profile,
883
+ MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
884
+ };
885
+ }
886
+
887
+ declare type IconType = ({ height, width, fill, testId }: IconProps) => JSX.Element;
429
888
  declare const Icon: {
430
889
  Custom: typeof Custom;
431
890
  Arrows: typeof Arrows;
@@ -439,6 +898,7 @@ declare const Icon: {
439
898
  Payment: typeof Payment;
440
899
  SlideDots: typeof SlideDots;
441
900
  Emoji: typeof Emoji;
901
+ MyAccount: typeof MyAccount;
442
902
  };
443
903
 
444
904
  interface CardBodyProps {
@@ -495,6 +955,21 @@ declare type UncontrolledProps<T> = {
495
955
  declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
496
956
  declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, }: SimpleDropdownProps<T>): JSX.Element;
497
957
 
958
+ interface DialogPositionProps {
959
+ top: string;
960
+ right: string;
961
+ }
962
+ interface DialogDropdownProps {
963
+ options: {
964
+ label: string;
965
+ value: string;
966
+ }[];
967
+ position: DialogPositionProps;
968
+ style?: React.CSSProperties;
969
+ className?: string;
970
+ }
971
+ declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
972
+
498
973
  interface SizeSelectorProps {
499
974
  label: string;
500
975
  sizes: SizeOption[];
@@ -522,6 +997,7 @@ interface BaseButtonProps {
522
997
  onClick: () => void;
523
998
  className?: string;
524
999
  inline?: boolean;
1000
+ uppercase?: boolean;
525
1001
  testId?: string;
526
1002
  }
527
1003
 
@@ -532,8 +1008,9 @@ interface TextButtonProps$1 extends BaseProps {
532
1008
  TrailingIcon?: IconType;
533
1009
  iconColor?: string;
534
1010
  size?: ComponentSize;
1011
+ uppercase?: boolean;
535
1012
  }
536
- declare const TextButton: ({ text, LeadingIcon, TrailingIcon, iconColor, disabled, type, size, onClick, }: TextButtonProps$1) => _emotion_react_jsx_runtime.JSX.Element;
1013
+ declare const TextButton: ({ text, LeadingIcon, TrailingIcon, iconColor, disabled, type, size, uppercase, onClick, }: TextButtonProps$1) => _emotion_react_jsx_runtime.JSX.Element;
537
1014
 
538
1015
  interface DiscountTagProps {
539
1016
  discount: number;
@@ -543,8 +1020,9 @@ interface DiscountTagProps {
543
1020
  borderColor?: string;
544
1021
  textColor?: string;
545
1022
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
1023
+ style?: React.CSSProperties;
546
1024
  }
547
- declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, }: DiscountTagProps) => JSX.Element;
1025
+ declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
548
1026
 
549
1027
  interface PriceLabelProps {
550
1028
  finalPrice: string | number;
@@ -552,8 +1030,15 @@ interface PriceLabelProps {
552
1030
  color?: string;
553
1031
  size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
554
1032
  discount?: DiscountTagProps;
1033
+ finalPriceStyled?: boolean;
1034
+ finalPriceStyle?: React.CSSProperties;
1035
+ originalPriceStyled?: boolean;
1036
+ originalPriceUnderlined?: boolean;
1037
+ testId?: string;
555
1038
  }
556
- declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, size, }: PriceLabelProps) => JSX.Element;
1039
+ declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
1040
+
1041
+ declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
557
1042
 
558
1043
  interface ColorPickerProps {
559
1044
  options: ColorPickerOption[];
@@ -575,12 +1060,15 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
575
1060
  interface ProductGalleryProps {
576
1061
  images: ImageType[];
577
1062
  selectedValue?: ImageType;
578
- DiscountTagElement?: JSX.Element;
579
- BestSellerTagElement?: JSX.Element;
1063
+ topTag?: JSX.Element;
1064
+ bottomTag?: JSX.Element;
580
1065
  productImageDataTestId?: string;
581
1066
  previewListDataTestId?: string;
1067
+ thumbnailPosition?: 'vertical' | 'horizontal';
1068
+ borderRadiusVariant?: boolean;
1069
+ previewImgBorderColor?: string;
582
1070
  }
583
- declare const ProductGallery: ({ images, selectedValue, DiscountTagElement, BestSellerTagElement, productImageDataTestId, previewListDataTestId, }: ProductGalleryProps) => JSX.Element;
1071
+ declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, }: ProductGalleryProps) => JSX.Element;
584
1072
 
585
1073
  interface RatingProps {
586
1074
  rating: number;
@@ -588,8 +1076,10 @@ interface RatingProps {
588
1076
  reviews: number;
589
1077
  reviewsText: string;
590
1078
  wrapWithParenthesis?: boolean;
1079
+ underline?: boolean;
1080
+ reviewsContainerId?: string;
591
1081
  }
592
- declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
1082
+ declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
593
1083
 
594
1084
  interface FitPredictorProps {
595
1085
  onClick: () => void;
@@ -627,20 +1117,26 @@ declare const Tooltip: ({ children, position, text, align, onClick, header, }: T
627
1117
 
628
1118
  interface AccordionProps {
629
1119
  defaultOpen?: boolean;
1120
+ forceOpenHandler?: boolean;
1121
+ forceOpenValue?: boolean;
1122
+ titleColor?: string;
630
1123
  variant: 'simple' | 'box';
631
1124
  header: ReactNode;
1125
+ headerOnOpen?: ReactNode;
632
1126
  content: ReactNode;
633
1127
  disabled?: boolean;
634
1128
  openIcon: IconType;
635
1129
  closeIcon: IconType;
1130
+ onClick?: (index: number) => void;
636
1131
  }
637
- declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
1132
+ declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
638
1133
 
639
1134
  declare const ThemeProvider: FC<{
640
1135
  theme: Theme;
641
1136
  children: ReactNode;
642
1137
  }>;
643
1138
  declare const useTheme: () => Theme;
1139
+
644
1140
  declare const ThemeVariables: FC<{
645
1141
  theme: Theme;
646
1142
  Container?: ElementType;
@@ -787,6 +1283,12 @@ declare type ThemeComponent = {
787
1283
  lineHeight: string;
788
1284
  border: string;
789
1285
  boxShadow: string;
1286
+ errorBorder: string;
1287
+ };
1288
+ inputPlaceholder: {
1289
+ fontSize: string;
1290
+ padding: string;
1291
+ focusBorder: string;
790
1292
  };
791
1293
  inputCustom: {
792
1294
  button: {
@@ -1030,6 +1532,13 @@ declare type ThemeComponent = {
1030
1532
  selectedContrast: string;
1031
1533
  tagColor: string;
1032
1534
  };
1535
+ slideNavigation: {
1536
+ slideDots: {
1537
+ unselectedDotColor: string;
1538
+ selectedDotColor: string;
1539
+ dotsOpacity: number;
1540
+ };
1541
+ };
1033
1542
  };
1034
1543
  declare type ThemeTypography = {
1035
1544
  config: {
@@ -1056,6 +1565,7 @@ declare type ThemeAssets = {
1056
1565
  images: {
1057
1566
  favicon: string;
1058
1567
  logo: string;
1568
+ logoMobile?: string;
1059
1569
  };
1060
1570
  [key: string]: any;
1061
1571
  };
@@ -1066,11 +1576,12 @@ interface CheckboxProps {
1066
1576
  size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1067
1577
  text: string;
1068
1578
  checked?: boolean;
1579
+ blockUncheck?: boolean;
1069
1580
  id: string;
1070
1581
  backgroundColor?: string;
1071
1582
  variant: 'primary' | 'secondary';
1072
1583
  }
1073
- declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, }: CheckboxProps) => JSX.Element;
1584
+ declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, blockUncheck, }: CheckboxProps) => JSX.Element;
1074
1585
 
1075
1586
  interface RadioGroupInputProps {
1076
1587
  name: string;
@@ -1103,10 +1614,11 @@ interface MinimalisticProps {
1103
1614
  discount: number;
1104
1615
  offText: string;
1105
1616
  widthAuto?: boolean;
1617
+ testId?: string;
1106
1618
  }
1107
1619
 
1108
1620
  declare const Bundle: {
1109
- Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, }: MinimalisticProps) => JSX.Element;
1621
+ Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, testId, }: MinimalisticProps) => JSX.Element;
1110
1622
  Simple: ({ title, freeShippingText, price, anyQtyForText, backgroundColor, widthAuto, }: SimpleProps) => JSX.Element;
1111
1623
  };
1112
1624
 
@@ -1114,16 +1626,18 @@ interface CategoryTagProps {
1114
1626
  text: string;
1115
1627
  size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1116
1628
  className?: string;
1629
+ styledBorder?: boolean;
1117
1630
  }
1118
- declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1631
+ declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1119
1632
 
1120
1633
  interface SeasonOfferTagProps {
1121
1634
  text: string;
1122
1635
  backgroundColor?: string;
1123
1636
  size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1124
1637
  className?: string;
1638
+ styledBorder?: boolean;
1125
1639
  }
1126
- declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1640
+ declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
1127
1641
 
1128
1642
  interface TimeProps {
1129
1643
  hours: number;
@@ -1136,7 +1650,14 @@ interface TimerProps extends TimeProps {
1136
1650
  }
1137
1651
  declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
1138
1652
 
1139
- interface BaseInputCommmonProps {
1653
+ interface BaseInputCommonProps {
1654
+ id?: string;
1655
+ value?: string;
1656
+ innerRef?: React.Ref<HTMLInputElement>;
1657
+ onBlur?: () => void;
1658
+ onFocus?: () => void;
1659
+ onChange?: (value: string, event: any) => void;
1660
+ hideClear?: boolean;
1140
1661
  defaultValue?: string;
1141
1662
  maxLength?: number;
1142
1663
  placeholder?: string;
@@ -1146,16 +1667,13 @@ interface BaseInputCommmonProps {
1146
1667
  required?: string;
1147
1668
  children?: React.ReactNode;
1148
1669
  size?: 'regular' | 'small';
1670
+ inlinePlaceholder?: boolean;
1671
+ hasError?: boolean;
1672
+ inputType?: 'text' | 'email' | 'password' | 'url';
1673
+ name?: string;
1674
+ autoFocus?: boolean;
1149
1675
  }
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;
1676
+ declare type BaseInputProps = BaseInputCommonProps;
1159
1677
 
1160
1678
  declare type BasePlusIconProps = BaseInputProps & {
1161
1679
  Icon: IconType;
@@ -1179,6 +1697,7 @@ interface BaseCTAProps {
1179
1697
  size?: ComponentSize;
1180
1698
  text: string;
1181
1699
  type?: ButtonType;
1700
+ inline?: boolean;
1182
1701
  testId?: string;
1183
1702
  }
1184
1703
 
@@ -1193,7 +1712,7 @@ declare type CustomProps = BaseInputProps & {
1193
1712
  };
1194
1713
 
1195
1714
  declare const Input: {
1196
- Simple: ({ value, onChange, defaultValue, label, children, required, onValidation, size, ...rest }: BaseInputProps) => JSX.Element;
1715
+ Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, ...rest }: BaseInputCommonProps) => JSX.Element;
1197
1716
  Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
1198
1717
  SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
1199
1718
  SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
@@ -1276,13 +1795,15 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
1276
1795
  interface ScrollToTopProps {
1277
1796
  scrollToTopText: string;
1278
1797
  onClick: () => void;
1798
+ fill?: string;
1279
1799
  }
1280
- declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
1800
+ declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
1281
1801
 
1282
1802
  interface OrderBarProps {
1283
1803
  message: string;
1804
+ color?: string;
1284
1805
  }
1285
- declare const OrderBar: ({ message }: OrderBarProps) => JSX.Element;
1806
+ declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
1286
1807
 
1287
1808
  interface TableProps {
1288
1809
  headers: string[];
@@ -1306,8 +1827,9 @@ interface ProductOrderItemProps {
1306
1827
  text: string;
1307
1828
  backgroundColor: string;
1308
1829
  };
1830
+ finalPriceStyle?: React.CSSProperties;
1309
1831
  }
1310
- declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
1832
+ declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
1311
1833
 
1312
1834
  interface ReviewProps {
1313
1835
  reviewerName: string;
@@ -1327,19 +1849,22 @@ interface ReviewProps {
1327
1849
  declare const Review: ({ reviewerName, date, rating, stars, title, description, image }: ReviewProps) => JSX.Element;
1328
1850
 
1329
1851
  interface SliderNavigationProps {
1330
- children: JSX.Element[];
1852
+ children: JSX.Element | JSX.Element[] | StyledComponent<any>;
1331
1853
  infinite: boolean;
1332
1854
  adaptiveHeight: boolean;
1333
- dotsSize: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1334
- dotListMarginTop: number;
1855
+ dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
1856
+ dotListMarginTop?: number;
1335
1857
  initialSlide?: number;
1336
1858
  arrows?: {
1337
1859
  arrowWidth: number;
1338
1860
  arrowHeight: number;
1339
1861
  arrowPadding: number;
1340
1862
  };
1863
+ dots?: boolean;
1864
+ slidesToShow?: number;
1865
+ speed?: number;
1341
1866
  }
1342
- declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
1867
+ declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
1343
1868
 
1344
1869
  interface DropdownListIconsProps {
1345
1870
  items: DropdownListIconsItem[];
@@ -1393,8 +1918,8 @@ interface ProductItemProps {
1393
1918
  price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
1394
1919
  rating: Pick<RatingProps, 'rating' | 'reviews'>;
1395
1920
  tags?: {
1396
- categoryTagText: string;
1397
- seasonOfferTagText: string;
1921
+ categoryTagText?: string;
1922
+ seasonOfferTagText?: string;
1398
1923
  };
1399
1924
  alignName?: 'left' | 'center';
1400
1925
  url?: string;
@@ -1403,6 +1928,13 @@ interface ProductItemProps {
1403
1928
 
1404
1929
  interface ProductItemSmallMobileProps extends ProductItemProps {
1405
1930
  size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
1931
+ imageHover?: ImageProps;
1932
+ topTag?: JSX.Element;
1933
+ bottomTag?: JSX.Element;
1934
+ onClick?: () => void;
1935
+ priceDisplayType?: 'default' | 'styled';
1936
+ priceAtBottom?: boolean;
1937
+ priceLoading?: boolean;
1406
1938
  }
1407
1939
 
1408
1940
  declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
@@ -1411,7 +1943,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
1411
1943
  };
1412
1944
 
1413
1945
  declare const Collection: {
1414
- ProductItemMobile: ({ title, image, price, rating, size, tags, alignName, url, className, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
1946
+ 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
1947
  withProductGrid: typeof withProductGrid;
1416
1948
  };
1417
1949
 
@@ -1475,7 +2007,9 @@ interface PaginationProps {
1475
2007
  }
1476
2008
  declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
1477
2009
 
1478
- declare const Text: FC<TextProps>;
2010
+ declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
2011
+
2012
+ declare const Text: ({ variant, children, testId, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
1479
2013
  declare type TextHeroProps = {
1480
2014
  variant: 'hero1' | 'hero2' | 'hero3';
1481
2015
  weight?: 'heavy' | 'bold' | 'demi';
@@ -1485,6 +2019,7 @@ declare type TextHeroProps = {
1485
2019
  wide?: never;
1486
2020
  original?: never;
1487
2021
  allCaps?: never;
2022
+ href: never;
1488
2023
  };
1489
2024
  declare type TextDisplayProps = {
1490
2025
  variant: 'display1' | 'display2';
@@ -1495,6 +2030,7 @@ declare type TextDisplayProps = {
1495
2030
  wide?: never;
1496
2031
  original?: never;
1497
2032
  allCaps?: never;
2033
+ href: never;
1498
2034
  };
1499
2035
  declare type TextHeadingProps = {
1500
2036
  variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
@@ -1505,6 +2041,7 @@ declare type TextHeadingProps = {
1505
2041
  wide?: never;
1506
2042
  original?: never;
1507
2043
  allCaps?: never;
2044
+ href?: never;
1508
2045
  };
1509
2046
  declare type TextBodyProps = {
1510
2047
  variant: 'body';
@@ -1515,6 +2052,7 @@ declare type TextBodyProps = {
1515
2052
  wide?: never;
1516
2053
  original?: never;
1517
2054
  allCaps?: never;
2055
+ href?: never;
1518
2056
  };
1519
2057
  declare type TextButtonProps = {
1520
2058
  variant: 'button';
@@ -1525,6 +2063,7 @@ declare type TextButtonProps = {
1525
2063
  wide?: boolean;
1526
2064
  original?: never;
1527
2065
  allCaps?: never;
2066
+ href?: never;
1528
2067
  };
1529
2068
  declare type TextPricingProps = {
1530
2069
  variant: 'pricing';
@@ -1535,6 +2074,7 @@ declare type TextPricingProps = {
1535
2074
  wide?: never;
1536
2075
  original?: boolean;
1537
2076
  allCaps?: never;
2077
+ href?: never;
1538
2078
  };
1539
2079
  declare type TextLinkProps = {
1540
2080
  variant: 'link';
@@ -1545,7 +2085,8 @@ declare type TextLinkProps = {
1545
2085
  wide?: never;
1546
2086
  original?: never;
1547
2087
  allCaps?: never;
1548
- } & AnchorHTMLAttributes<'a'>;
2088
+ href?: string;
2089
+ };
1549
2090
  declare type TextLabelProps = {
1550
2091
  variant: 'label';
1551
2092
  weight?: 'regular' | 'demi';
@@ -1555,6 +2096,7 @@ declare type TextLabelProps = {
1555
2096
  wide?: never;
1556
2097
  original?: never;
1557
2098
  allCaps?: never;
2099
+ href?: never;
1558
2100
  } & LabelHTMLAttributes<'label'>;
1559
2101
  declare type TextTagProps = {
1560
2102
  variant: 'tag';
@@ -1565,10 +2107,13 @@ declare type TextTagProps = {
1565
2107
  wide?: never;
1566
2108
  original?: never;
1567
2109
  allCaps?: boolean;
2110
+ href?: never;
1568
2111
  };
1569
- declare type TextProps = AriaAttributes & {
2112
+ declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
2113
+ children: ReactNode;
1570
2114
  style?: CSSProperties;
1571
2115
  className?: string;
2116
+ testId?: string;
1572
2117
  } & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
1573
2118
 
1574
2119
  interface SearchBarProps {
@@ -1576,20 +2121,29 @@ interface SearchBarProps {
1576
2121
  resultOptions: SearchBarOptionItem[];
1577
2122
  onChange: (text: string) => void;
1578
2123
  onSearch: (term: string) => void;
2124
+ onClose: () => void;
1579
2125
  resultsPanelDataTestId?: string;
1580
2126
  allResults?: number;
2127
+ initialTerm?: string;
2128
+ shouldClear?: boolean;
2129
+ isBlogSearchBar?: boolean;
2130
+ ariaLabel?: string;
2131
+ placeholder?: string;
2132
+ id?: string;
2133
+ autoComplete?: string;
1581
2134
  }
1582
- declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, resultsPanelDataTestId, allResults, }: SearchBarProps) => JSX.Element;
2135
+ declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
1583
2136
 
1584
2137
  interface ProductGalleryMobileProps {
1585
2138
  images: ImageType[];
1586
2139
  selectedValue?: ImageType;
1587
- DiscountTagElement?: JSX.Element;
1588
- BestSellerTagElement?: JSX.Element;
2140
+ topTag?: JSX.Element;
2141
+ bottomTag?: JSX.Element;
1589
2142
  productImageDataTestId?: string;
1590
2143
  slideDotsDataTestId?: string;
2144
+ borderRadiusVariant?: boolean;
1591
2145
  }
1592
- declare const ProductGalleryMobile: ({ images, selectedValue, DiscountTagElement, BestSellerTagElement, productImageDataTestId, slideDotsDataTestId, }: ProductGalleryMobileProps) => JSX.Element;
2146
+ declare const ProductGalleryMobile: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
1593
2147
 
1594
2148
  interface RadioProps {
1595
2149
  name: string;
@@ -1606,19 +2160,24 @@ declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange
1606
2160
  declare type PortalProps = {
1607
2161
  id: string;
1608
2162
  className?: string;
2163
+ overflow?: boolean;
2164
+ style?: CSSProperties;
1609
2165
  };
1610
2166
  declare const Portal: FC<PortalProps>;
1611
2167
 
1612
2168
  declare type ModalProps = {
1613
2169
  id: string;
1614
2170
  dismissable?: boolean;
2171
+ maxFullScreen?: boolean;
1615
2172
  };
2173
+ interface ContainerProps {
2174
+ maxFullScreen: boolean;
2175
+ opened?: boolean;
2176
+ }
1616
2177
  declare const Overlay: _emotion_styled.StyledComponent<{
1617
2178
  theme?: _emotion_react.Theme | undefined;
1618
2179
  as?: React.ElementType<any> | undefined;
1619
- } & {
1620
- opened?: boolean | undefined;
1621
- }, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
2180
+ } & Pick<ContainerProps, "opened">, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
1622
2181
  declare const Modal: FC<ModalProps>;
1623
2182
  declare const modalEvent: (id: string, detail: Omit<Events['modal'], 'id'>) => void;
1624
2183
  declare const useModalEvent: (id: string, cb: (event: CustomEvent<Events['modal']>) => void) => void;
@@ -1665,8 +2224,9 @@ declare type QuantityPickerPropsUncontrolled = {
1665
2224
  declare type QuantityPickerProps = {
1666
2225
  initialValue?: number;
1667
2226
  maxValue?: number;
2227
+ testId?: string;
1668
2228
  } & (QuantityPickerPropsControlled | QuantityPickerPropsUncontrolled);
1669
- declare const QuantityPicker: ({ initialValue, maxValue, value, onChange, }: QuantityPickerProps) => JSX.Element;
2229
+ declare const QuantityPicker: ({ initialValue, maxValue, value, testId, onChange, }: QuantityPickerProps) => JSX.Element;
1670
2230
 
1671
2231
  declare type SpacingProps = {
1672
2232
  size: number;
@@ -1691,12 +2251,13 @@ interface PackSelectorProps {
1691
2251
  packs: PackOption[];
1692
2252
  selectedValue: PackOption;
1693
2253
  onChange: (size: PackOption) => void;
2254
+ currencyCode?: string;
1694
2255
  }
1695
2256
  declare const PackSelector: FC<PackSelectorProps>;
1696
2257
 
1697
2258
  interface FiltersProps {
1698
- filters: Filter[];
1699
- onChange: (update: FilterChange) => void;
2259
+ values: Filter[];
2260
+ onChange: (newValues: Filter[], filtersState?: FilterChange) => void;
1700
2261
  tagsColor?: string;
1701
2262
  filterByText: string;
1702
2263
  clearAllText: string;
@@ -1705,8 +2266,129 @@ interface FiltersProps {
1705
2266
  applyText: string;
1706
2267
  mobileBackArrowClick: () => void;
1707
2268
  mobileApplyButtonClick: () => void;
2269
+ onResetValues: () => void;
2270
+ }
2271
+ declare const Filters: ({ values, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, onResetValues, }: FiltersProps) => JSX.Element;
2272
+
2273
+ interface SearchNavigationProps {
2274
+ returnText?: string;
2275
+ returnUrl?: string;
2276
+ steps?: string[];
2277
+ returnAction?: () => void;
2278
+ }
2279
+ declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
2280
+
2281
+ interface TabProps$1 {
2282
+ title: string;
2283
+ content: ReactNode;
2284
+ }
2285
+ interface TabsProps {
2286
+ backgroundColor?: string;
2287
+ initialSelected?: string;
2288
+ tabsMaxWidth?: string;
2289
+ tabs: TabProps$1[];
2290
+ }
2291
+ declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
2292
+
2293
+ interface TabProps {
2294
+ title: string;
2295
+ titleSize?: string;
2296
+ selectedTitleWeight?: number;
2297
+ height?: string;
2298
+ selected?: boolean;
2299
+ color?: string;
2300
+ tabsMaxWidth?: string;
2301
+ onClick: (clickedTab: string) => void;
2302
+ }
2303
+ declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
2304
+
2305
+ interface IconList {
2306
+ backgroundColor: string;
2307
+ iconColor: string;
2308
+ iconName: string;
2309
+ iconTitle: string;
2310
+ iconSizeDesktop?: number;
2311
+ iconSizeMobile?: number;
2312
+ iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
2313
+ iconTitleStyle?: string;
2314
+ iconStyle?: string;
2315
+ isTitleInnerHtml?: boolean;
2316
+ }
2317
+ declare const IconsWithTitle: ({ iconName, iconTitle, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconList) => JSX.Element | null;
2318
+
2319
+ interface NoteProps {
2320
+ accentColor: string;
2321
+ color: string;
2322
+ backgroundColor: string;
2323
+ importantNoteText: string;
2324
+ text: string;
2325
+ }
2326
+ declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
2327
+
2328
+ interface TextWithImageProps {
2329
+ title: string;
2330
+ text?: string;
2331
+ children?: ReactNode;
2332
+ buttomText: string;
2333
+ backgroundColor: string;
2334
+ imageLeftSide?: boolean;
2335
+ URLLink?: string;
2336
+ onButtonClick?: () => void;
2337
+ isRedirectionURL: boolean;
2338
+ btnBGColor?: string;
2339
+ btnHoverBGColor?: string;
2340
+ imgVideo: imageVideoProps;
2341
+ contentAfterButton?: React.ReactNode;
2342
+ titleStyle?: React.CSSProperties;
2343
+ textStyle?: React.CSSProperties;
2344
+ buttonWideOnMobile?: boolean;
2345
+ }
2346
+ declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
2347
+
2348
+ interface AccordionOptionsProps {
2349
+ titleColor: string;
2350
+ accordions: AccordionProps[];
2351
+ }
2352
+ declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
2353
+
2354
+ interface ShortBannerProps {
2355
+ title: string;
2356
+ bannerText: string;
2357
+ backgroundColor: string;
2358
+ alignCenter?: boolean;
2359
+ widthAuto?: boolean;
2360
+ textColor: string;
2361
+ }
2362
+ declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
2363
+
2364
+ interface BeforeAfterCardProps {
2365
+ name: string;
2366
+ age: string;
2367
+ months: string;
2368
+ beforeImage: string;
2369
+ afterImage: string;
2370
+ alignCenter?: boolean;
2371
+ }
2372
+ declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, }: BeforeAfterCardProps) => JSX.Element;
2373
+
2374
+ interface ImageCardWithDescriptionProps {
2375
+ image: string;
2376
+ title?: string;
2377
+ description?: string;
2378
+ titlePosition?: 'center' | 'left';
2379
+ }
2380
+ declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
2381
+
2382
+ interface Checkpoint {
2383
+ day: string;
2384
+ date: string;
2385
+ statusMessage: string;
2386
+ }
2387
+ interface TrackingProgressProps {
2388
+ checkPoints: Checkpoint[];
2389
+ amountOfCheckPoints: number;
1708
2390
  }
1709
- declare const Filters: ({ filters, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, }: FiltersProps) => JSX.Element;
2391
+ declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
1710
2392
 
1711
2393
  declare global {
1712
2394
  interface Events {
@@ -1747,4 +2429,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
1747
2429
  currency?: string | undefined;
1748
2430
  }) => string;
1749
2431
 
1750
- 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, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
2432
+ 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, 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, TrackingProgress, WithTestId, decimalFormat, formatPrice, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };