@trafilea/afrodita-components 5.0.0-beta.13 → 5.0.0-beta.131

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