@trafilea/afrodita-components 5.0.0-beta.3 → 5.0.0-beta.300
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.css +4 -1
- package/build/index.d.ts +1515 -106
- package/build/index.esm.css +4 -1
- package/build/index.esm.js +7666 -3477
- package/build/index.esm.js.map +1 -1
- package/build/index.js +7704 -3480
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.d.ts +710 -0
- package/build/theme/revel.theme.js +1045 -0
- package/build/theme/shapermint.theme.d.ts +299 -3
- package/build/theme/shapermint.theme.js +327 -6
- package/build/theme/thespadr.theme.d.ts +710 -0
- package/build/theme/thespadr.theme.js +1131 -0
- package/build/theme/truekind.theme.d.ts +299 -3
- package/build/theme/truekind.theme.js +335 -13
- package/package.json +5 -2
package/build/index.d.ts
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
+
import React, { ReactFragment, FC, ReactNode, ElementType, CSSProperties, AriaAttributes, HTMLAttributes, LabelHTMLAttributes, RefObject } from 'react';
|
|
2
3
|
import { IconProps as IconProps$1 } from 'src/types/types';
|
|
3
|
-
import React, { FC, ReactNode, ElementType, CSSProperties, AriaAttributes, AnchorHTMLAttributes, LabelHTMLAttributes, RefObject } from 'react';
|
|
4
4
|
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
5
|
-
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
6
5
|
import * as _emotion_styled from '@emotion/styled';
|
|
6
|
+
import { StyledComponent } from '@emotion/styled';
|
|
7
|
+
export { default as styled } from '@emotion/styled';
|
|
8
|
+
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
7
9
|
import * as _emotion_react from '@emotion/react';
|
|
10
|
+
import { ComponentSize as ComponentSize$1 } from 'src/types/enums';
|
|
11
|
+
import facepaint from 'facepaint';
|
|
8
12
|
|
|
9
13
|
declare enum CardSectionType {
|
|
10
14
|
Header = 0,
|
|
@@ -33,6 +37,7 @@ interface IconProps {
|
|
|
33
37
|
height?: number;
|
|
34
38
|
fill?: string;
|
|
35
39
|
title?: string;
|
|
40
|
+
testId?: string;
|
|
36
41
|
}
|
|
37
42
|
declare type ButtonType = 'button' | 'submit' | 'reset';
|
|
38
43
|
interface CTAProps {
|
|
@@ -56,11 +61,7 @@ declare type SizeOption = {
|
|
|
56
61
|
label: string;
|
|
57
62
|
description: string;
|
|
58
63
|
disabled?: boolean;
|
|
59
|
-
|
|
60
|
-
declare type Color = {
|
|
61
|
-
primaryColor: string;
|
|
62
|
-
secondaryColor?: string;
|
|
63
|
-
tertiaryColor?: string;
|
|
64
|
+
noStock?: boolean;
|
|
64
65
|
};
|
|
65
66
|
declare type Pattern = {
|
|
66
67
|
url: string;
|
|
@@ -68,19 +69,21 @@ declare type Pattern = {
|
|
|
68
69
|
declare type ColorPickerOption = {
|
|
69
70
|
label: string;
|
|
70
71
|
description: string;
|
|
72
|
+
noStock?: boolean;
|
|
71
73
|
meta: {
|
|
72
|
-
color?:
|
|
74
|
+
color?: string[];
|
|
73
75
|
pattern?: Pattern;
|
|
74
76
|
};
|
|
75
77
|
};
|
|
76
78
|
declare type RadioGroupOption = {
|
|
77
79
|
value: string;
|
|
78
|
-
label: string;
|
|
80
|
+
label: string | ReactFragment;
|
|
79
81
|
};
|
|
80
82
|
declare type ImageType = {
|
|
81
83
|
key: string;
|
|
82
84
|
imageUrl: string;
|
|
83
85
|
alt: string;
|
|
86
|
+
thumbnailUrl?: string;
|
|
84
87
|
};
|
|
85
88
|
interface IconWithOpacityProps extends IconProps {
|
|
86
89
|
opacity?: number;
|
|
@@ -100,7 +103,20 @@ declare type Filter = {
|
|
|
100
103
|
title: string;
|
|
101
104
|
columns: number;
|
|
102
105
|
isOpenByDefault?: boolean;
|
|
103
|
-
|
|
106
|
+
isLinkOption?: boolean;
|
|
107
|
+
link?: string;
|
|
108
|
+
color?: string;
|
|
109
|
+
isMultiselect: boolean;
|
|
110
|
+
type?: string;
|
|
111
|
+
items: Array<{
|
|
112
|
+
label: string;
|
|
113
|
+
checked?: boolean;
|
|
114
|
+
isLinkItem?: boolean;
|
|
115
|
+
link?: string;
|
|
116
|
+
blockUncheck?: boolean;
|
|
117
|
+
value?: string;
|
|
118
|
+
}>;
|
|
119
|
+
showInMobile: boolean;
|
|
104
120
|
};
|
|
105
121
|
declare type FilterChange = {
|
|
106
122
|
sectionIndex: number;
|
|
@@ -111,18 +127,85 @@ interface SearchBarOptionItem {
|
|
|
111
127
|
src: string;
|
|
112
128
|
price: string;
|
|
113
129
|
title: string;
|
|
130
|
+
optionUrl: string;
|
|
131
|
+
}
|
|
132
|
+
interface imageVideoProps {
|
|
133
|
+
imageLink: string;
|
|
134
|
+
isVideo?: {
|
|
135
|
+
videoTitle?: string;
|
|
136
|
+
videoSubtitle?: string;
|
|
137
|
+
textColor?: string;
|
|
138
|
+
videoLink?: string;
|
|
139
|
+
};
|
|
140
|
+
isMobile?: boolean;
|
|
114
141
|
}
|
|
115
142
|
|
|
116
143
|
declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
117
144
|
|
|
118
145
|
declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
119
146
|
|
|
147
|
+
declare const Smiling: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
148
|
+
|
|
149
|
+
declare const BulletOne: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
150
|
+
|
|
151
|
+
declare const BulletTwo: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
152
|
+
|
|
153
|
+
declare const BulletThree: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
154
|
+
|
|
155
|
+
declare const ThumbsUp: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
156
|
+
|
|
157
|
+
declare const ThumbsDown: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
158
|
+
|
|
159
|
+
declare const Atom: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
160
|
+
|
|
161
|
+
declare const Bubbles: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
162
|
+
|
|
163
|
+
declare const FairAdvantages: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
164
|
+
|
|
165
|
+
declare const MoneyFlow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
166
|
+
|
|
167
|
+
declare const ClinicallyTested: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
168
|
+
|
|
169
|
+
declare const CrueltyFree: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
170
|
+
|
|
171
|
+
declare const Certified: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
172
|
+
|
|
173
|
+
declare const NewSixtyDaysGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
174
|
+
|
|
120
175
|
declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
|
|
121
176
|
declare const Custom_Frown: typeof Frown;
|
|
177
|
+
declare const Custom_Smiling: typeof Smiling;
|
|
178
|
+
declare const Custom_BulletOne: typeof BulletOne;
|
|
179
|
+
declare const Custom_BulletTwo: typeof BulletTwo;
|
|
180
|
+
declare const Custom_BulletThree: typeof BulletThree;
|
|
181
|
+
declare const Custom_ThumbsUp: typeof ThumbsUp;
|
|
182
|
+
declare const Custom_ThumbsDown: typeof ThumbsDown;
|
|
183
|
+
declare const Custom_Atom: typeof Atom;
|
|
184
|
+
declare const Custom_Bubbles: typeof Bubbles;
|
|
185
|
+
declare const Custom_FairAdvantages: typeof FairAdvantages;
|
|
186
|
+
declare const Custom_MoneyFlow: typeof MoneyFlow;
|
|
187
|
+
declare const Custom_ClinicallyTested: typeof ClinicallyTested;
|
|
188
|
+
declare const Custom_CrueltyFree: typeof CrueltyFree;
|
|
189
|
+
declare const Custom_Certified: typeof Certified;
|
|
190
|
+
declare const Custom_NewSixtyDaysGuarantee: typeof NewSixtyDaysGuarantee;
|
|
122
191
|
declare namespace Custom {
|
|
123
192
|
export {
|
|
124
193
|
Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
|
|
125
194
|
Custom_Frown as Frown,
|
|
195
|
+
Custom_Smiling as Smiling,
|
|
196
|
+
Custom_BulletOne as BulletOne,
|
|
197
|
+
Custom_BulletTwo as BulletTwo,
|
|
198
|
+
Custom_BulletThree as BulletThree,
|
|
199
|
+
Custom_ThumbsUp as ThumbsUp,
|
|
200
|
+
Custom_ThumbsDown as ThumbsDown,
|
|
201
|
+
Custom_Atom as Atom,
|
|
202
|
+
Custom_Bubbles as Bubbles,
|
|
203
|
+
Custom_FairAdvantages as FairAdvantages,
|
|
204
|
+
Custom_MoneyFlow as MoneyFlow,
|
|
205
|
+
Custom_ClinicallyTested as ClinicallyTested,
|
|
206
|
+
Custom_CrueltyFree as CrueltyFree,
|
|
207
|
+
Custom_Certified as Certified,
|
|
208
|
+
Custom_NewSixtyDaysGuarantee as NewSixtyDaysGuarantee,
|
|
126
209
|
};
|
|
127
210
|
}
|
|
128
211
|
|
|
@@ -143,6 +226,73 @@ declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
143
226
|
|
|
144
227
|
declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
145
228
|
|
|
229
|
+
declare const Warning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
230
|
+
|
|
231
|
+
declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
232
|
+
|
|
233
|
+
declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
234
|
+
|
|
235
|
+
declare const Add: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
236
|
+
|
|
237
|
+
interface CopyProps extends IconProps {
|
|
238
|
+
stroke?: string;
|
|
239
|
+
}
|
|
240
|
+
declare const Copy: ({ height, width, fill, stroke }: CopyProps) => JSX.Element;
|
|
241
|
+
|
|
242
|
+
declare const CopyOutlined: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
243
|
+
|
|
244
|
+
declare const CheckboxEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
245
|
+
|
|
246
|
+
declare const CheckboxLight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
247
|
+
|
|
248
|
+
declare const CheckboxSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
249
|
+
|
|
250
|
+
declare const Like: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
251
|
+
|
|
252
|
+
declare const LikeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
253
|
+
|
|
254
|
+
declare const NotAllowed: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
255
|
+
|
|
256
|
+
declare const RadioEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
257
|
+
|
|
258
|
+
declare const RadioFilled: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
259
|
+
|
|
260
|
+
declare const Minus$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
261
|
+
|
|
262
|
+
declare const SettingsSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
263
|
+
|
|
264
|
+
declare const Settings: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
265
|
+
|
|
266
|
+
declare const Share: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
267
|
+
|
|
268
|
+
declare const CircleCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
269
|
+
|
|
270
|
+
declare const CircleClear: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
271
|
+
|
|
272
|
+
declare const CircleInfo: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
273
|
+
|
|
274
|
+
declare const CircleMinus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
275
|
+
|
|
276
|
+
declare const CirclePlus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
277
|
+
|
|
278
|
+
declare const CircleQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
279
|
+
|
|
280
|
+
declare const CircleWarning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
281
|
+
|
|
282
|
+
declare const CircleSolidCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
283
|
+
|
|
284
|
+
declare const CircleSolidClear: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
285
|
+
|
|
286
|
+
declare const CircleSolidMinus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
287
|
+
|
|
288
|
+
declare const CircleSolidPlus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
289
|
+
|
|
290
|
+
declare const CircleSolidQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
291
|
+
|
|
292
|
+
declare const CircleSolidWarning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
293
|
+
|
|
294
|
+
declare const CircleSolidStyledCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
295
|
+
|
|
146
296
|
declare const Actions_Check: typeof Check;
|
|
147
297
|
declare const Actions_ClearLight: typeof ClearLight;
|
|
148
298
|
declare const Actions_LightExclamation: typeof LightExclamation;
|
|
@@ -151,6 +301,38 @@ declare const Actions_LightCheck: typeof LightCheck;
|
|
|
151
301
|
declare const Actions_Question: typeof Question;
|
|
152
302
|
declare const Actions_Close: typeof Close;
|
|
153
303
|
declare const Actions_Trash: typeof Trash;
|
|
304
|
+
declare const Actions_Warning: typeof Warning;
|
|
305
|
+
declare const Actions_Edit: typeof Edit;
|
|
306
|
+
declare const Actions_SignOut: typeof SignOut;
|
|
307
|
+
declare const Actions_Add: typeof Add;
|
|
308
|
+
type Actions_CopyProps = CopyProps;
|
|
309
|
+
declare const Actions_Copy: typeof Copy;
|
|
310
|
+
declare const Actions_CopyOutlined: typeof CopyOutlined;
|
|
311
|
+
declare const Actions_CheckboxEmpty: typeof CheckboxEmpty;
|
|
312
|
+
declare const Actions_CheckboxLight: typeof CheckboxLight;
|
|
313
|
+
declare const Actions_CheckboxSolid: typeof CheckboxSolid;
|
|
314
|
+
declare const Actions_Like: typeof Like;
|
|
315
|
+
declare const Actions_LikeSolid: typeof LikeSolid;
|
|
316
|
+
declare const Actions_NotAllowed: typeof NotAllowed;
|
|
317
|
+
declare const Actions_RadioEmpty: typeof RadioEmpty;
|
|
318
|
+
declare const Actions_RadioFilled: typeof RadioFilled;
|
|
319
|
+
declare const Actions_SettingsSolid: typeof SettingsSolid;
|
|
320
|
+
declare const Actions_Settings: typeof Settings;
|
|
321
|
+
declare const Actions_Share: typeof Share;
|
|
322
|
+
declare const Actions_CircleCheck: typeof CircleCheck;
|
|
323
|
+
declare const Actions_CircleClear: typeof CircleClear;
|
|
324
|
+
declare const Actions_CircleInfo: typeof CircleInfo;
|
|
325
|
+
declare const Actions_CircleMinus: typeof CircleMinus;
|
|
326
|
+
declare const Actions_CirclePlus: typeof CirclePlus;
|
|
327
|
+
declare const Actions_CircleQuestion: typeof CircleQuestion;
|
|
328
|
+
declare const Actions_CircleWarning: typeof CircleWarning;
|
|
329
|
+
declare const Actions_CircleSolidCheck: typeof CircleSolidCheck;
|
|
330
|
+
declare const Actions_CircleSolidClear: typeof CircleSolidClear;
|
|
331
|
+
declare const Actions_CircleSolidMinus: typeof CircleSolidMinus;
|
|
332
|
+
declare const Actions_CircleSolidPlus: typeof CircleSolidPlus;
|
|
333
|
+
declare const Actions_CircleSolidQuestion: typeof CircleSolidQuestion;
|
|
334
|
+
declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
|
|
335
|
+
declare const Actions_CircleSolidStyledCheck: typeof CircleSolidStyledCheck;
|
|
154
336
|
declare namespace Actions {
|
|
155
337
|
export {
|
|
156
338
|
Actions_Check as Check,
|
|
@@ -161,6 +343,39 @@ declare namespace Actions {
|
|
|
161
343
|
Actions_Question as Question,
|
|
162
344
|
Actions_Close as Close,
|
|
163
345
|
Actions_Trash as Trash,
|
|
346
|
+
Actions_Warning as Warning,
|
|
347
|
+
Actions_Edit as Edit,
|
|
348
|
+
Actions_SignOut as SignOut,
|
|
349
|
+
Actions_Add as Add,
|
|
350
|
+
Actions_CopyProps as CopyProps,
|
|
351
|
+
Actions_Copy as Copy,
|
|
352
|
+
Actions_CopyOutlined as CopyOutlined,
|
|
353
|
+
Actions_CheckboxEmpty as CheckboxEmpty,
|
|
354
|
+
Actions_CheckboxLight as CheckboxLight,
|
|
355
|
+
Actions_CheckboxSolid as CheckboxSolid,
|
|
356
|
+
Actions_Like as Like,
|
|
357
|
+
Actions_LikeSolid as LikeSolid,
|
|
358
|
+
Actions_NotAllowed as NotAllowed,
|
|
359
|
+
Actions_RadioEmpty as RadioEmpty,
|
|
360
|
+
Actions_RadioFilled as RadioFilled,
|
|
361
|
+
Minus$1 as Minus,
|
|
362
|
+
Actions_SettingsSolid as SettingsSolid,
|
|
363
|
+
Actions_Settings as Settings,
|
|
364
|
+
Actions_Share as Share,
|
|
365
|
+
Actions_CircleCheck as CircleCheck,
|
|
366
|
+
Actions_CircleClear as CircleClear,
|
|
367
|
+
Actions_CircleInfo as CircleInfo,
|
|
368
|
+
Actions_CircleMinus as CircleMinus,
|
|
369
|
+
Actions_CirclePlus as CirclePlus,
|
|
370
|
+
Actions_CircleQuestion as CircleQuestion,
|
|
371
|
+
Actions_CircleWarning as CircleWarning,
|
|
372
|
+
Actions_CircleSolidCheck as CircleSolidCheck,
|
|
373
|
+
Actions_CircleSolidClear as CircleSolidClear,
|
|
374
|
+
Actions_CircleSolidMinus as CircleSolidMinus,
|
|
375
|
+
Actions_CircleSolidPlus as CircleSolidPlus,
|
|
376
|
+
Actions_CircleSolidQuestion as CircleSolidQuestion,
|
|
377
|
+
Actions_CircleSolidWarning as CircleSolidWarning,
|
|
378
|
+
Actions_CircleSolidStyledCheck as CircleSolidStyledCheck,
|
|
164
379
|
};
|
|
165
380
|
}
|
|
166
381
|
|
|
@@ -169,31 +384,110 @@ declare const FitPredictor$1: ({ height, width, fill }: IconProps) => JSX.Elemen
|
|
|
169
384
|
interface LoadingProps extends IconProps {
|
|
170
385
|
backgroundColor: string;
|
|
171
386
|
}
|
|
172
|
-
declare const Loading: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
387
|
+
declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
173
388
|
|
|
174
389
|
declare const Shapermint: ({ height, width }: IconProps) => JSX.Element;
|
|
175
390
|
|
|
176
391
|
declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
|
|
177
392
|
|
|
393
|
+
declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
|
|
394
|
+
|
|
395
|
+
declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
396
|
+
|
|
397
|
+
declare const Chat: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
398
|
+
|
|
399
|
+
declare const Email: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
400
|
+
|
|
401
|
+
declare const CallUs: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
402
|
+
|
|
403
|
+
declare const SignForm: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
404
|
+
|
|
405
|
+
declare const QrCode: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
406
|
+
|
|
407
|
+
declare const FreeExchange: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
408
|
+
|
|
409
|
+
declare const ShopNow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
410
|
+
|
|
411
|
+
declare const HasselFreeReturns: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
412
|
+
|
|
413
|
+
declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
414
|
+
|
|
415
|
+
declare const FitGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
416
|
+
|
|
417
|
+
declare const QuestionWithCircle: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
418
|
+
|
|
419
|
+
declare const ExpressShipping: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
420
|
+
|
|
421
|
+
declare const ShapermintClubLabel: ({ height, width }: IconProps) => JSX.Element;
|
|
422
|
+
|
|
423
|
+
declare const ShapermintClubMobileLabel: ({ height, width }: IconProps) => JSX.Element;
|
|
424
|
+
|
|
425
|
+
declare const ShapermintClubIcon: ({ height, width }: IconProps) => JSX.Element;
|
|
426
|
+
|
|
427
|
+
declare const ShapermintClubIcon2: ({ height, width }: IconProps) => JSX.Element;
|
|
428
|
+
|
|
429
|
+
declare const BodConLabel: ({ height, width }: IconProps) => JSX.Element;
|
|
430
|
+
|
|
431
|
+
declare const BodConMobileLabel: ({ height, width }: IconProps) => JSX.Element;
|
|
432
|
+
|
|
178
433
|
type Other_LoadingProps = LoadingProps;
|
|
179
|
-
declare const Other_Loading: typeof Loading;
|
|
180
434
|
declare const Other_Shapermint: typeof Shapermint;
|
|
181
435
|
declare const Other_McAfee: typeof McAfee;
|
|
436
|
+
declare const Other_GetDiscount: typeof GetDiscount;
|
|
437
|
+
declare const Other_ShapermintLogo: typeof ShapermintLogo;
|
|
438
|
+
declare const Other_Chat: typeof Chat;
|
|
439
|
+
declare const Other_Email: typeof Email;
|
|
440
|
+
declare const Other_CallUs: typeof CallUs;
|
|
441
|
+
declare const Other_SignForm: typeof SignForm;
|
|
442
|
+
declare const Other_QrCode: typeof QrCode;
|
|
443
|
+
declare const Other_FreeExchange: typeof FreeExchange;
|
|
444
|
+
declare const Other_ShopNow: typeof ShopNow;
|
|
445
|
+
declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
|
|
446
|
+
declare const Other_Play: typeof Play;
|
|
447
|
+
declare const Other_FitGuarantee: typeof FitGuarantee;
|
|
448
|
+
declare const Other_QuestionWithCircle: typeof QuestionWithCircle;
|
|
449
|
+
declare const Other_ExpressShipping: typeof ExpressShipping;
|
|
450
|
+
declare const Other_ShapermintClubLabel: typeof ShapermintClubLabel;
|
|
451
|
+
declare const Other_ShapermintClubMobileLabel: typeof ShapermintClubMobileLabel;
|
|
452
|
+
declare const Other_ShapermintClubIcon: typeof ShapermintClubIcon;
|
|
453
|
+
declare const Other_ShapermintClubIcon2: typeof ShapermintClubIcon2;
|
|
454
|
+
declare const Other_BodConLabel: typeof BodConLabel;
|
|
455
|
+
declare const Other_BodConMobileLabel: typeof BodConMobileLabel;
|
|
182
456
|
declare namespace Other {
|
|
183
457
|
export {
|
|
184
458
|
FitPredictor$1 as FitPredictor,
|
|
185
459
|
Other_LoadingProps as LoadingProps,
|
|
186
|
-
|
|
460
|
+
Loading$1 as Loading,
|
|
187
461
|
Other_Shapermint as Shapermint,
|
|
188
462
|
Other_McAfee as McAfee,
|
|
463
|
+
Other_GetDiscount as GetDiscount,
|
|
464
|
+
Other_ShapermintLogo as ShapermintLogo,
|
|
465
|
+
Other_Chat as Chat,
|
|
466
|
+
Other_Email as Email,
|
|
467
|
+
Other_CallUs as CallUs,
|
|
468
|
+
Other_SignForm as SignForm,
|
|
469
|
+
Other_QrCode as QrCode,
|
|
470
|
+
Other_FreeExchange as FreeExchange,
|
|
471
|
+
Other_ShopNow as ShopNow,
|
|
472
|
+
Other_HasselFreeReturns as HasselFreeReturns,
|
|
473
|
+
Other_Play as Play,
|
|
474
|
+
Other_FitGuarantee as FitGuarantee,
|
|
475
|
+
Other_QuestionWithCircle as QuestionWithCircle,
|
|
476
|
+
Other_ExpressShipping as ExpressShipping,
|
|
477
|
+
Other_ShapermintClubLabel as ShapermintClubLabel,
|
|
478
|
+
Other_ShapermintClubMobileLabel as ShapermintClubMobileLabel,
|
|
479
|
+
Other_ShapermintClubIcon as ShapermintClubIcon,
|
|
480
|
+
Other_ShapermintClubIcon2 as ShapermintClubIcon2,
|
|
481
|
+
Other_BodConLabel as BodConLabel,
|
|
482
|
+
Other_BodConMobileLabel as BodConMobileLabel,
|
|
189
483
|
};
|
|
190
484
|
}
|
|
191
485
|
|
|
192
486
|
declare const ChevronDown: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
193
487
|
|
|
194
|
-
declare const ChevronLeft: ({ height, width, fill, opacity }: IconWithOpacityProps) => JSX.Element;
|
|
488
|
+
declare const ChevronLeft: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
|
|
195
489
|
|
|
196
|
-
declare const ChevronRight: ({ height, width, fill, opacity }: IconWithOpacityProps) => JSX.Element;
|
|
490
|
+
declare const ChevronRight: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
|
|
197
491
|
|
|
198
492
|
declare const ChevronRightVariant: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
199
493
|
|
|
@@ -203,6 +497,28 @@ declare const ChevronUpSolid: ({ height, width, fill }: IconProps) => JSX.Elemen
|
|
|
203
497
|
|
|
204
498
|
declare const CircleUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
205
499
|
|
|
500
|
+
declare const CircleChevronLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
501
|
+
|
|
502
|
+
declare const CircleChevronRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
503
|
+
|
|
504
|
+
declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
505
|
+
|
|
506
|
+
declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
507
|
+
|
|
508
|
+
declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
509
|
+
|
|
510
|
+
declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
511
|
+
|
|
512
|
+
declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
513
|
+
|
|
514
|
+
declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
515
|
+
|
|
516
|
+
declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
517
|
+
|
|
518
|
+
declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
519
|
+
|
|
520
|
+
declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
521
|
+
|
|
206
522
|
declare const Arrows_ChevronDown: typeof ChevronDown;
|
|
207
523
|
declare const Arrows_ChevronLeft: typeof ChevronLeft;
|
|
208
524
|
declare const Arrows_ChevronRight: typeof ChevronRight;
|
|
@@ -210,6 +526,17 @@ declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
|
|
|
210
526
|
declare const Arrows_ChevronUp: typeof ChevronUp;
|
|
211
527
|
declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
|
|
212
528
|
declare const Arrows_CircleUp: typeof CircleUp;
|
|
529
|
+
declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
|
|
530
|
+
declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
|
|
531
|
+
declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
|
|
532
|
+
declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
|
|
533
|
+
declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
|
|
534
|
+
declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
|
|
535
|
+
declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
|
|
536
|
+
declare const Arrows_CircleLineUp: typeof CircleLineUp;
|
|
537
|
+
declare const Arrows_CircleLineDown: typeof CircleLineDown;
|
|
538
|
+
declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
|
|
539
|
+
declare const Arrows_CircleLineRight: typeof CircleLineRight;
|
|
213
540
|
declare namespace Arrows {
|
|
214
541
|
export {
|
|
215
542
|
Arrows_ChevronDown as ChevronDown,
|
|
@@ -219,6 +546,17 @@ declare namespace Arrows {
|
|
|
219
546
|
Arrows_ChevronUp as ChevronUp,
|
|
220
547
|
Arrows_ChevronUpSolid as ChevronUpSolid,
|
|
221
548
|
Arrows_CircleUp as CircleUp,
|
|
549
|
+
Arrows_CircleChevronLeft as CircleChevronLeft,
|
|
550
|
+
Arrows_CircleChevronRight as CircleChevronRight,
|
|
551
|
+
Arrows_CircleChevronDown as CircleChevronDown,
|
|
552
|
+
Arrows_CircleChevronUp as CircleChevronUp,
|
|
553
|
+
Arrows_ChevronDownVariant as ChevronDownVariant,
|
|
554
|
+
Arrows_ChevronUpVariant as ChevronUpVariant,
|
|
555
|
+
Arrows_ChevronLeftVariant as ChevronLeftVariant,
|
|
556
|
+
Arrows_CircleLineUp as CircleLineUp,
|
|
557
|
+
Arrows_CircleLineDown as CircleLineDown,
|
|
558
|
+
Arrows_CircleLineLeft as CircleLineLeft,
|
|
559
|
+
Arrows_CircleLineRight as CircleLineRight,
|
|
222
560
|
};
|
|
223
561
|
}
|
|
224
562
|
|
|
@@ -242,6 +580,34 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
|
|
|
242
580
|
|
|
243
581
|
declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
244
582
|
|
|
583
|
+
declare const LightBulb$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
584
|
+
|
|
585
|
+
declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
586
|
+
|
|
587
|
+
declare const CircleNumber: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
588
|
+
|
|
589
|
+
declare const SizeEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
590
|
+
|
|
591
|
+
declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
592
|
+
|
|
593
|
+
declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
594
|
+
|
|
595
|
+
declare const Drop: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
596
|
+
|
|
597
|
+
declare const DropEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
598
|
+
|
|
599
|
+
declare const Stars: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
600
|
+
|
|
601
|
+
declare const Moon: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
602
|
+
|
|
603
|
+
declare const Hours: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
604
|
+
|
|
605
|
+
declare const NewClock: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
606
|
+
|
|
607
|
+
declare const KlarnaLogo: ({ height, width }: IconProps) => JSX.Element;
|
|
608
|
+
|
|
609
|
+
declare const TrustBadge: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
610
|
+
|
|
245
611
|
declare const PDP_Clock: typeof Clock;
|
|
246
612
|
declare const PDP_FlagUSA: typeof FlagUSA;
|
|
247
613
|
declare const PDP_Minus: typeof Minus;
|
|
@@ -252,6 +618,19 @@ declare const PDP_StarEmpty: typeof StarEmpty;
|
|
|
252
618
|
declare const PDP_StarHalf: typeof StarHalf;
|
|
253
619
|
declare const PDP_Stopwatch: typeof Stopwatch;
|
|
254
620
|
declare const PDP_Shipping: typeof Shipping;
|
|
621
|
+
declare const PDP_ErrorCross: typeof ErrorCross;
|
|
622
|
+
declare const PDP_CircleNumber: typeof CircleNumber;
|
|
623
|
+
declare const PDP_SizeEmpty: typeof SizeEmpty;
|
|
624
|
+
declare const PDP_PlayMini: typeof PlayMini;
|
|
625
|
+
declare const PDP_ShippingEmpty: typeof ShippingEmpty;
|
|
626
|
+
declare const PDP_Drop: typeof Drop;
|
|
627
|
+
declare const PDP_DropEmpty: typeof DropEmpty;
|
|
628
|
+
declare const PDP_Stars: typeof Stars;
|
|
629
|
+
declare const PDP_Moon: typeof Moon;
|
|
630
|
+
declare const PDP_Hours: typeof Hours;
|
|
631
|
+
declare const PDP_NewClock: typeof NewClock;
|
|
632
|
+
declare const PDP_KlarnaLogo: typeof KlarnaLogo;
|
|
633
|
+
declare const PDP_TrustBadge: typeof TrustBadge;
|
|
255
634
|
declare namespace PDP {
|
|
256
635
|
export {
|
|
257
636
|
PDP_Clock as Clock,
|
|
@@ -264,6 +643,20 @@ declare namespace PDP {
|
|
|
264
643
|
PDP_StarHalf as StarHalf,
|
|
265
644
|
PDP_Stopwatch as Stopwatch,
|
|
266
645
|
PDP_Shipping as Shipping,
|
|
646
|
+
LightBulb$1 as LightBulb,
|
|
647
|
+
PDP_ErrorCross as ErrorCross,
|
|
648
|
+
PDP_CircleNumber as CircleNumber,
|
|
649
|
+
PDP_SizeEmpty as SizeEmpty,
|
|
650
|
+
PDP_PlayMini as PlayMini,
|
|
651
|
+
PDP_ShippingEmpty as ShippingEmpty,
|
|
652
|
+
PDP_Drop as Drop,
|
|
653
|
+
PDP_DropEmpty as DropEmpty,
|
|
654
|
+
PDP_Stars as Stars,
|
|
655
|
+
PDP_Moon as Moon,
|
|
656
|
+
PDP_Hours as Hours,
|
|
657
|
+
PDP_NewClock as NewClock,
|
|
658
|
+
PDP_KlarnaLogo as KlarnaLogo,
|
|
659
|
+
PDP_TrustBadge as TrustBadge,
|
|
267
660
|
};
|
|
268
661
|
}
|
|
269
662
|
|
|
@@ -281,6 +674,8 @@ declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
281
674
|
|
|
282
675
|
declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
283
676
|
|
|
677
|
+
declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
678
|
+
|
|
284
679
|
declare const SocialMedia_Facebook: typeof Facebook;
|
|
285
680
|
declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
|
|
286
681
|
declare const SocialMedia_Instagram: typeof Instagram;
|
|
@@ -288,6 +683,7 @@ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
|
|
|
288
683
|
declare const SocialMedia_Pinterest: typeof Pinterest;
|
|
289
684
|
declare const SocialMedia_Twitter: typeof Twitter;
|
|
290
685
|
declare const SocialMedia_Youtube: typeof Youtube;
|
|
686
|
+
declare const SocialMedia_Interaction: typeof Interaction;
|
|
291
687
|
declare namespace SocialMedia {
|
|
292
688
|
export {
|
|
293
689
|
SocialMedia_Facebook as Facebook,
|
|
@@ -297,14 +693,15 @@ declare namespace SocialMedia {
|
|
|
297
693
|
SocialMedia_Pinterest as Pinterest,
|
|
298
694
|
SocialMedia_Twitter as Twitter,
|
|
299
695
|
SocialMedia_Youtube as Youtube,
|
|
696
|
+
SocialMedia_Interaction as Interaction,
|
|
300
697
|
};
|
|
301
698
|
}
|
|
302
699
|
|
|
303
|
-
declare const Search: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
700
|
+
declare const Search: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
304
701
|
|
|
305
702
|
declare const User: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
306
703
|
|
|
307
|
-
declare const ShoppingBag: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
704
|
+
declare const ShoppingBag: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
308
705
|
|
|
309
706
|
declare const ShoppingCart: FC<IconProps>;
|
|
310
707
|
|
|
@@ -312,12 +709,64 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
312
709
|
|
|
313
710
|
declare const Hamburger: FC<IconProps>;
|
|
314
711
|
|
|
712
|
+
declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
713
|
+
|
|
714
|
+
declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
715
|
+
|
|
716
|
+
declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
717
|
+
|
|
718
|
+
declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
719
|
+
|
|
720
|
+
declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
721
|
+
|
|
722
|
+
declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
723
|
+
|
|
724
|
+
declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
725
|
+
|
|
726
|
+
declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
727
|
+
|
|
728
|
+
declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
729
|
+
|
|
730
|
+
declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
731
|
+
|
|
732
|
+
declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
733
|
+
|
|
734
|
+
declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
735
|
+
|
|
736
|
+
declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
737
|
+
|
|
738
|
+
declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
739
|
+
|
|
740
|
+
declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
741
|
+
|
|
742
|
+
declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
743
|
+
|
|
744
|
+
declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
745
|
+
|
|
746
|
+
declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
747
|
+
|
|
315
748
|
declare const Navigation_Search: typeof Search;
|
|
316
749
|
declare const Navigation_User: typeof User;
|
|
317
750
|
declare const Navigation_ShoppingBag: typeof ShoppingBag;
|
|
318
751
|
declare const Navigation_ShoppingCart: typeof ShoppingCart;
|
|
319
752
|
declare const Navigation_MapMarker: typeof MapMarker;
|
|
320
753
|
declare const Navigation_Hamburger: typeof Hamburger;
|
|
754
|
+
declare const Navigation_AddressInformation: typeof AddressInformation;
|
|
755
|
+
declare const Navigation_ClubMembership: typeof ClubMembership;
|
|
756
|
+
declare const Navigation_Benefits: typeof Benefits;
|
|
757
|
+
declare const Navigation_Home: typeof Home;
|
|
758
|
+
declare const Navigation_HomeSolid: typeof HomeSolid;
|
|
759
|
+
declare const Navigation_ShoppingBagV2: typeof ShoppingBagV2;
|
|
760
|
+
declare const Navigation_UserSolid: typeof UserSolid;
|
|
761
|
+
declare const Navigation_SlideDotSolid: typeof SlideDotSolid;
|
|
762
|
+
declare const Navigation_Ellipsis: typeof Ellipsis;
|
|
763
|
+
declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
|
|
764
|
+
declare const Navigation_Lock: typeof Lock;
|
|
765
|
+
declare const Navigation_LockSolid: typeof LockSolid;
|
|
766
|
+
declare const Navigation_Loading: typeof Loading;
|
|
767
|
+
declare const Navigation_MapSolid: typeof MapSolid;
|
|
768
|
+
declare const Navigation_UserV2: typeof UserV2;
|
|
769
|
+
declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
|
|
321
770
|
declare namespace Navigation {
|
|
322
771
|
export {
|
|
323
772
|
Navigation_Search as Search,
|
|
@@ -326,6 +775,24 @@ declare namespace Navigation {
|
|
|
326
775
|
Navigation_ShoppingCart as ShoppingCart,
|
|
327
776
|
Navigation_MapMarker as MapMarker,
|
|
328
777
|
Navigation_Hamburger as Hamburger,
|
|
778
|
+
Navigation_AddressInformation as AddressInformation,
|
|
779
|
+
Navigation_ClubMembership as ClubMembership,
|
|
780
|
+
Navigation_Benefits as Benefits,
|
|
781
|
+
Navigation_Home as Home,
|
|
782
|
+
Navigation_HomeSolid as HomeSolid,
|
|
783
|
+
Navigation_ShoppingBagV2 as ShoppingBagV2,
|
|
784
|
+
Navigation_UserSolid as UserSolid,
|
|
785
|
+
SlideDot$1 as SlideDot,
|
|
786
|
+
Navigation_SlideDotSolid as SlideDotSolid,
|
|
787
|
+
Navigation_Ellipsis as Ellipsis,
|
|
788
|
+
Navigation_EllipsisHorizontal as EllipsisHorizontal,
|
|
789
|
+
Filters$1 as Filters,
|
|
790
|
+
Navigation_Lock as Lock,
|
|
791
|
+
Navigation_LockSolid as LockSolid,
|
|
792
|
+
Navigation_Loading as Loading,
|
|
793
|
+
Navigation_MapSolid as MapSolid,
|
|
794
|
+
Navigation_UserV2 as UserV2,
|
|
795
|
+
Navigation_ShoppingCartV2 as ShoppingCartV2,
|
|
329
796
|
};
|
|
330
797
|
}
|
|
331
798
|
|
|
@@ -342,22 +809,65 @@ interface IconWrapperProps {
|
|
|
342
809
|
viewBoxX: number;
|
|
343
810
|
viewBoxY: number;
|
|
344
811
|
children: React.ReactNode;
|
|
345
|
-
|
|
812
|
+
testId?: string;
|
|
346
813
|
fill?: string;
|
|
347
814
|
}
|
|
348
815
|
|
|
349
|
-
declare const Mail: ({ height, width }: IconWrapperProps) => JSX.Element;
|
|
816
|
+
declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
|
|
817
|
+
|
|
818
|
+
declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
819
|
+
|
|
820
|
+
declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
821
|
+
|
|
822
|
+
declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
823
|
+
|
|
824
|
+
declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
825
|
+
|
|
826
|
+
declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
827
|
+
|
|
828
|
+
declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
829
|
+
|
|
830
|
+
declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
831
|
+
|
|
832
|
+
declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
833
|
+
|
|
834
|
+
declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
835
|
+
|
|
836
|
+
declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
837
|
+
|
|
838
|
+
declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
350
839
|
|
|
351
840
|
declare const Messaging_QuestionCircle: typeof QuestionCircle;
|
|
352
841
|
declare const Messaging_Messenger: typeof Messenger;
|
|
353
842
|
declare const Messaging_Comment: typeof Comment;
|
|
354
843
|
declare const Messaging_Mail: typeof Mail;
|
|
844
|
+
declare const Messaging_QuoteLeft: typeof QuoteLeft;
|
|
845
|
+
declare const Messaging_QuoteRight: typeof QuoteRight;
|
|
846
|
+
declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
|
|
847
|
+
declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
|
|
848
|
+
declare const Messaging_Light: typeof Light;
|
|
849
|
+
declare const Messaging_LightBulb: typeof LightBulb;
|
|
850
|
+
declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
|
|
851
|
+
declare const Messaging_CommentDots: typeof CommentDots;
|
|
852
|
+
declare const Messaging_CommentLight: typeof CommentLight;
|
|
853
|
+
declare const Messaging_CommentMoney: typeof CommentMoney;
|
|
355
854
|
declare namespace Messaging {
|
|
356
855
|
export {
|
|
357
856
|
Messaging_QuestionCircle as QuestionCircle,
|
|
358
857
|
Messaging_Messenger as Messenger,
|
|
359
858
|
Messaging_Comment as Comment,
|
|
360
859
|
Messaging_Mail as Mail,
|
|
860
|
+
Community$1 as Community,
|
|
861
|
+
Messaging_QuoteLeft as QuoteLeft,
|
|
862
|
+
Messaging_QuoteRight as QuoteRight,
|
|
863
|
+
Messaging_QuoteSolidLeft as QuoteSolidLeft,
|
|
864
|
+
Messaging_QuoteSolidRight as QuoteSolidRight,
|
|
865
|
+
Messaging_Light as Light,
|
|
866
|
+
Messaging_LightBulb as LightBulb,
|
|
867
|
+
Messaging_LightBulbSolid as LightBulbSolid,
|
|
868
|
+
Messaging_CommentDots as CommentDots,
|
|
869
|
+
Messaging_CommentLight as CommentLight,
|
|
870
|
+
Messaging_CommentMoney as CommentMoney,
|
|
361
871
|
};
|
|
362
872
|
}
|
|
363
873
|
|
|
@@ -416,7 +926,101 @@ declare namespace SlideDots {
|
|
|
416
926
|
};
|
|
417
927
|
}
|
|
418
928
|
|
|
419
|
-
declare
|
|
929
|
+
declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
|
|
930
|
+
|
|
931
|
+
declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
|
|
932
|
+
|
|
933
|
+
declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
934
|
+
|
|
935
|
+
declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
|
|
936
|
+
|
|
937
|
+
declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
|
|
938
|
+
|
|
939
|
+
declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
940
|
+
|
|
941
|
+
declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
|
|
942
|
+
|
|
943
|
+
declare const Emoji_Thinking: typeof Thinking;
|
|
944
|
+
declare const Emoji_SmilingV2: typeof SmilingV2;
|
|
945
|
+
declare const Emoji_Grinning: typeof Grinning;
|
|
946
|
+
declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
|
|
947
|
+
declare const Emoji_BlowingKiss: typeof BlowingKiss;
|
|
948
|
+
declare const Emoji_Frowning: typeof Frowning;
|
|
949
|
+
declare const Emoji_Relieved: typeof Relieved;
|
|
950
|
+
declare namespace Emoji {
|
|
951
|
+
export {
|
|
952
|
+
Emoji_Thinking as Thinking,
|
|
953
|
+
Emoji_SmilingV2 as SmilingV2,
|
|
954
|
+
Emoji_Grinning as Grinning,
|
|
955
|
+
Emoji_GrinningWithSweat as GrinningWithSweat,
|
|
956
|
+
Emoji_BlowingKiss as BlowingKiss,
|
|
957
|
+
Emoji_Frowning as Frowning,
|
|
958
|
+
Emoji_Relieved as Relieved,
|
|
959
|
+
};
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
963
|
+
|
|
964
|
+
declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
965
|
+
|
|
966
|
+
declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
967
|
+
|
|
968
|
+
declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
969
|
+
|
|
970
|
+
declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
971
|
+
|
|
972
|
+
declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
973
|
+
|
|
974
|
+
declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
975
|
+
|
|
976
|
+
declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
977
|
+
|
|
978
|
+
declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
979
|
+
|
|
980
|
+
declare const PriorityShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
981
|
+
|
|
982
|
+
declare const Guard: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
983
|
+
|
|
984
|
+
declare const BirthdayGifts: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
985
|
+
|
|
986
|
+
declare const SaleTag: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
987
|
+
|
|
988
|
+
declare const FreeReturns: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
989
|
+
|
|
990
|
+
declare const MyAccount_FreeShipping: typeof FreeShipping;
|
|
991
|
+
declare const MyAccount_PersonalStylist: typeof PersonalStylist;
|
|
992
|
+
declare const MyAccount_Community: typeof Community;
|
|
993
|
+
declare const MyAccount_VIP: typeof VIP;
|
|
994
|
+
declare const MyAccount_DealsOffers: typeof DealsOffers;
|
|
995
|
+
declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
|
|
996
|
+
declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
|
|
997
|
+
declare const MyAccount_Profile: typeof Profile;
|
|
998
|
+
declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
|
|
999
|
+
declare const MyAccount_PriorityShipping: typeof PriorityShipping;
|
|
1000
|
+
declare const MyAccount_Guard: typeof Guard;
|
|
1001
|
+
declare const MyAccount_BirthdayGifts: typeof BirthdayGifts;
|
|
1002
|
+
declare const MyAccount_SaleTag: typeof SaleTag;
|
|
1003
|
+
declare const MyAccount_FreeReturns: typeof FreeReturns;
|
|
1004
|
+
declare namespace MyAccount {
|
|
1005
|
+
export {
|
|
1006
|
+
MyAccount_FreeShipping as FreeShipping,
|
|
1007
|
+
MyAccount_PersonalStylist as PersonalStylist,
|
|
1008
|
+
MyAccount_Community as Community,
|
|
1009
|
+
MyAccount_VIP as VIP,
|
|
1010
|
+
MyAccount_DealsOffers as DealsOffers,
|
|
1011
|
+
MyAccount_StyleFashionContent as StyleFashionContent,
|
|
1012
|
+
MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
|
|
1013
|
+
MyAccount_Profile as Profile,
|
|
1014
|
+
MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
|
|
1015
|
+
MyAccount_PriorityShipping as PriorityShipping,
|
|
1016
|
+
MyAccount_Guard as Guard,
|
|
1017
|
+
MyAccount_BirthdayGifts as BirthdayGifts,
|
|
1018
|
+
MyAccount_SaleTag as SaleTag,
|
|
1019
|
+
MyAccount_FreeReturns as FreeReturns,
|
|
1020
|
+
};
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
declare type IconType = ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
420
1024
|
declare const Icon: {
|
|
421
1025
|
Custom: typeof Custom;
|
|
422
1026
|
Arrows: typeof Arrows;
|
|
@@ -429,6 +1033,8 @@ declare const Icon: {
|
|
|
429
1033
|
Download: typeof Download;
|
|
430
1034
|
Payment: typeof Payment;
|
|
431
1035
|
SlideDots: typeof SlideDots;
|
|
1036
|
+
Emoji: typeof Emoji;
|
|
1037
|
+
MyAccount: typeof MyAccount;
|
|
432
1038
|
};
|
|
433
1039
|
|
|
434
1040
|
interface CardBodyProps {
|
|
@@ -445,7 +1051,7 @@ interface borderProps {
|
|
|
445
1051
|
}
|
|
446
1052
|
interface CardProps {
|
|
447
1053
|
children: ReactNode;
|
|
448
|
-
backgroundColor
|
|
1054
|
+
backgroundColor?: string;
|
|
449
1055
|
widthAuto?: boolean;
|
|
450
1056
|
border?: borderProps;
|
|
451
1057
|
flex?: boolean;
|
|
@@ -473,6 +1079,8 @@ declare type CommonProps<T> = {
|
|
|
473
1079
|
initialValue?: Value<T>;
|
|
474
1080
|
placeHolder: string;
|
|
475
1081
|
testId?: string;
|
|
1082
|
+
required?: string;
|
|
1083
|
+
showRequiredPlaceholder?: boolean;
|
|
476
1084
|
};
|
|
477
1085
|
declare type ControlledProps<T> = {
|
|
478
1086
|
value: Value<T>;
|
|
@@ -483,7 +1091,22 @@ declare type UncontrolledProps<T> = {
|
|
|
483
1091
|
onChange?: OnChange<T>;
|
|
484
1092
|
} & CommonProps<T>;
|
|
485
1093
|
declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
|
|
486
|
-
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, }: SimpleDropdownProps<T>): JSX.Element;
|
|
1094
|
+
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, required, showRequiredPlaceholder, }: SimpleDropdownProps<T>): JSX.Element;
|
|
1095
|
+
|
|
1096
|
+
interface DialogPositionProps {
|
|
1097
|
+
top: string;
|
|
1098
|
+
right: string;
|
|
1099
|
+
}
|
|
1100
|
+
interface DialogDropdownProps {
|
|
1101
|
+
options: {
|
|
1102
|
+
label: string;
|
|
1103
|
+
value: string;
|
|
1104
|
+
}[];
|
|
1105
|
+
position: DialogPositionProps;
|
|
1106
|
+
style?: React.CSSProperties;
|
|
1107
|
+
className?: string;
|
|
1108
|
+
}
|
|
1109
|
+
declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
|
|
487
1110
|
|
|
488
1111
|
interface SizeSelectorProps {
|
|
489
1112
|
label: string;
|
|
@@ -491,16 +1114,17 @@ interface SizeSelectorProps {
|
|
|
491
1114
|
selectedValue: SizeOption;
|
|
492
1115
|
onChange: (size: SizeOption) => void;
|
|
493
1116
|
inline?: boolean;
|
|
1117
|
+
width?: string;
|
|
494
1118
|
}
|
|
495
|
-
declare const SizeSelector: ({ label, sizes, selectedValue, onChange, inline, }: SizeSelectorProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1119
|
+
declare const SizeSelector: ({ label, sizes, selectedValue, onChange, inline, width, }: SizeSelectorProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
496
1120
|
|
|
497
1121
|
interface SizeFitGuideProps {
|
|
498
1122
|
title: string;
|
|
499
|
-
|
|
500
|
-
fitPercentage: number;
|
|
1123
|
+
fitPercentage?: number;
|
|
501
1124
|
onClick: () => void;
|
|
1125
|
+
onClickFitPercentage?: () => void;
|
|
502
1126
|
}
|
|
503
|
-
declare const SizeFitGuide: ({ title,
|
|
1127
|
+
declare const SizeFitGuide: ({ title, fitPercentage, onClick, onClickFitPercentage, }: SizeFitGuideProps) => JSX.Element;
|
|
504
1128
|
|
|
505
1129
|
interface BaseButtonProps {
|
|
506
1130
|
children: React.ReactNode;
|
|
@@ -511,7 +1135,9 @@ interface BaseButtonProps {
|
|
|
511
1135
|
onClick: () => void;
|
|
512
1136
|
className?: string;
|
|
513
1137
|
inline?: boolean;
|
|
1138
|
+
uppercase?: boolean;
|
|
514
1139
|
testId?: string;
|
|
1140
|
+
id?: string;
|
|
515
1141
|
}
|
|
516
1142
|
|
|
517
1143
|
declare type BaseProps = Pick<BaseButtonProps, 'disabled' | 'type' | 'onClick'>;
|
|
@@ -521,8 +1147,9 @@ interface TextButtonProps$1 extends BaseProps {
|
|
|
521
1147
|
TrailingIcon?: IconType;
|
|
522
1148
|
iconColor?: string;
|
|
523
1149
|
size?: ComponentSize;
|
|
1150
|
+
uppercase?: boolean;
|
|
524
1151
|
}
|
|
525
|
-
declare const TextButton: ({ text, LeadingIcon, TrailingIcon, iconColor, disabled, type, size, onClick, }: TextButtonProps$1) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1152
|
+
declare const TextButton: ({ text, LeadingIcon, TrailingIcon, iconColor, disabled, type, size, uppercase, onClick, }: TextButtonProps$1) => _emotion_react_jsx_runtime.JSX.Element;
|
|
526
1153
|
|
|
527
1154
|
interface DiscountTagProps {
|
|
528
1155
|
discount: number;
|
|
@@ -532,8 +1159,21 @@ interface DiscountTagProps {
|
|
|
532
1159
|
borderColor?: string;
|
|
533
1160
|
textColor?: string;
|
|
534
1161
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1162
|
+
style?: React.CSSProperties;
|
|
535
1163
|
}
|
|
536
|
-
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, }: DiscountTagProps) => JSX.Element;
|
|
1164
|
+
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
|
|
1165
|
+
|
|
1166
|
+
interface ClubOfferTagProps {
|
|
1167
|
+
clubOfferText?: string;
|
|
1168
|
+
className?: string;
|
|
1169
|
+
disabled?: boolean;
|
|
1170
|
+
backgroundColor?: string;
|
|
1171
|
+
borderColor?: string;
|
|
1172
|
+
textColor?: string;
|
|
1173
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1174
|
+
style?: React.CSSProperties;
|
|
1175
|
+
}
|
|
1176
|
+
declare const ClubOfferTag: ({ clubOfferText, className, disabled, backgroundColor, borderColor, textColor, size, style, }: ClubOfferTagProps) => JSX.Element;
|
|
537
1177
|
|
|
538
1178
|
interface PriceLabelProps {
|
|
539
1179
|
finalPrice: string | number;
|
|
@@ -541,8 +1181,17 @@ interface PriceLabelProps {
|
|
|
541
1181
|
color?: string;
|
|
542
1182
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
543
1183
|
discount?: DiscountTagProps;
|
|
1184
|
+
clubOffer?: ClubOfferTagProps;
|
|
1185
|
+
finalPriceStyled?: boolean;
|
|
1186
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1187
|
+
originalPriceStyled?: boolean;
|
|
1188
|
+
originalPriceUnderlined?: boolean;
|
|
1189
|
+
testId?: string;
|
|
1190
|
+
clubStyle?: boolean;
|
|
544
1191
|
}
|
|
545
|
-
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, size, }: PriceLabelProps) => JSX.Element;
|
|
1192
|
+
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, clubStyle, }: PriceLabelProps) => JSX.Element;
|
|
1193
|
+
|
|
1194
|
+
declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, clubOffer, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
546
1195
|
|
|
547
1196
|
interface ColorPickerProps {
|
|
548
1197
|
options: ColorPickerOption[];
|
|
@@ -564,21 +1213,29 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
|
|
|
564
1213
|
interface ProductGalleryProps {
|
|
565
1214
|
images: ImageType[];
|
|
566
1215
|
selectedValue?: ImageType;
|
|
567
|
-
|
|
568
|
-
|
|
1216
|
+
topTag?: JSX.Element;
|
|
1217
|
+
bottomTag?: JSX.Element;
|
|
569
1218
|
productImageDataTestId?: string;
|
|
570
1219
|
previewListDataTestId?: string;
|
|
1220
|
+
thumbnailPosition?: 'vertical' | 'horizontal';
|
|
1221
|
+
borderRadiusVariant?: boolean;
|
|
1222
|
+
previewImgBorderColor?: string;
|
|
1223
|
+
ctaText?: string;
|
|
1224
|
+
ctaAction?: () => void;
|
|
1225
|
+
hideCTA?: boolean;
|
|
571
1226
|
}
|
|
572
|
-
declare const ProductGallery: ({ images, selectedValue,
|
|
1227
|
+
declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, hideCTA, }: ProductGalleryProps) => JSX.Element;
|
|
573
1228
|
|
|
574
1229
|
interface RatingProps {
|
|
575
1230
|
rating: number;
|
|
576
1231
|
size?: ComponentSize;
|
|
577
|
-
reviews
|
|
578
|
-
reviewsText
|
|
1232
|
+
reviews?: number;
|
|
1233
|
+
reviewsText?: string;
|
|
579
1234
|
wrapWithParenthesis?: boolean;
|
|
1235
|
+
underline?: boolean;
|
|
1236
|
+
reviewsContainerId?: string;
|
|
580
1237
|
}
|
|
581
|
-
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
|
|
1238
|
+
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
|
|
582
1239
|
|
|
583
1240
|
interface FitPredictorProps {
|
|
584
1241
|
onClick: () => void;
|
|
@@ -590,8 +1247,23 @@ interface ProgressBarProps {
|
|
|
590
1247
|
fillColor: string;
|
|
591
1248
|
widthAuto?: boolean;
|
|
592
1249
|
percent?: number;
|
|
1250
|
+
height?: string;
|
|
1251
|
+
backgroundColor?: string;
|
|
1252
|
+
borderRadius?: string;
|
|
1253
|
+
}
|
|
1254
|
+
declare const ProgressBar: ({ description, fillColor, widthAuto, percent, height, backgroundColor, borderRadius, }: ProgressBarProps) => JSX.Element;
|
|
1255
|
+
|
|
1256
|
+
interface MotivatorProgressBarProps {
|
|
1257
|
+
fillColor?: string;
|
|
1258
|
+
currentAmount?: number;
|
|
1259
|
+
backgroundColor?: string;
|
|
1260
|
+
unfilledColor?: string;
|
|
1261
|
+
borderRadius?: string;
|
|
1262
|
+
rewardUnlockedMessage: string;
|
|
1263
|
+
endingValue?: number;
|
|
1264
|
+
currencyCode?: string;
|
|
593
1265
|
}
|
|
594
|
-
declare const
|
|
1266
|
+
declare const MotivatorProgressBar: ({ fillColor, backgroundColor, unfilledColor, currencyCode, endingValue, currentAmount, rewardUnlockedMessage, }: MotivatorProgressBarProps) => JSX.Element;
|
|
595
1267
|
|
|
596
1268
|
interface IconButtonProps {
|
|
597
1269
|
children: React.ReactNode;
|
|
@@ -605,31 +1277,45 @@ interface TooltipProps {
|
|
|
605
1277
|
children: React.ReactNode;
|
|
606
1278
|
position: ComponentPosition;
|
|
607
1279
|
align?: 'start' | 'center' | 'end';
|
|
608
|
-
|
|
1280
|
+
content?: {
|
|
1281
|
+
text: string;
|
|
1282
|
+
color?: string;
|
|
1283
|
+
};
|
|
1284
|
+
backgroundColor?: string;
|
|
1285
|
+
maxWidth?: string;
|
|
609
1286
|
header?: {
|
|
610
1287
|
title: string;
|
|
611
|
-
|
|
1288
|
+
titleColor?: string;
|
|
1289
|
+
Icon?: IconType;
|
|
1290
|
+
iconFill?: string;
|
|
612
1291
|
};
|
|
613
1292
|
onClick?: () => void;
|
|
614
1293
|
}
|
|
615
|
-
declare const Tooltip: ({ children, position,
|
|
1294
|
+
declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
|
|
616
1295
|
|
|
617
1296
|
interface AccordionProps {
|
|
618
1297
|
defaultOpen?: boolean;
|
|
1298
|
+
forceOpenHandler?: boolean;
|
|
1299
|
+
forceOpenValue?: boolean;
|
|
1300
|
+
titleColor?: string;
|
|
619
1301
|
variant: 'simple' | 'box';
|
|
620
1302
|
header: ReactNode;
|
|
1303
|
+
headerOnOpen?: ReactNode;
|
|
621
1304
|
content: ReactNode;
|
|
622
1305
|
disabled?: boolean;
|
|
1306
|
+
innerHTML?: boolean;
|
|
623
1307
|
openIcon: IconType;
|
|
624
1308
|
closeIcon: IconType;
|
|
1309
|
+
onClick?: (index: number) => void;
|
|
625
1310
|
}
|
|
626
|
-
declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
|
|
1311
|
+
declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
|
|
627
1312
|
|
|
628
1313
|
declare const ThemeProvider: FC<{
|
|
629
1314
|
theme: Theme;
|
|
630
1315
|
children: ReactNode;
|
|
631
1316
|
}>;
|
|
632
1317
|
declare const useTheme: () => Theme;
|
|
1318
|
+
|
|
633
1319
|
declare const ThemeVariables: FC<{
|
|
634
1320
|
theme: Theme;
|
|
635
1321
|
Container?: ElementType;
|
|
@@ -659,6 +1345,7 @@ declare type Theme = {
|
|
|
659
1345
|
};
|
|
660
1346
|
declare type ThemeBreakpoints = {
|
|
661
1347
|
mobile: number;
|
|
1348
|
+
tablet?: number;
|
|
662
1349
|
desktop: number;
|
|
663
1350
|
};
|
|
664
1351
|
declare type ThemeBasicPallete = {
|
|
@@ -666,7 +1353,7 @@ declare type ThemeBasicPallete = {
|
|
|
666
1353
|
contrast: string;
|
|
667
1354
|
};
|
|
668
1355
|
declare type ThemeColorPallete = ThemeBasicPallete & {
|
|
669
|
-
soft
|
|
1356
|
+
soft?: ThemeBasicPallete;
|
|
670
1357
|
};
|
|
671
1358
|
declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
|
|
672
1359
|
20: ThemeColorPallete;
|
|
@@ -678,6 +1365,7 @@ declare type ThemeColors = {
|
|
|
678
1365
|
pallete: {
|
|
679
1366
|
primary: ThemeColorPrimaryPallete;
|
|
680
1367
|
secondary: ThemeColorPrimaryPallete;
|
|
1368
|
+
tertiary?: ThemeColorPrimaryPallete;
|
|
681
1369
|
} & Partial<Record<string, ThemeColorPallete>>;
|
|
682
1370
|
shades: {
|
|
683
1371
|
black: ThemeBasicPallete;
|
|
@@ -687,6 +1375,7 @@ declare type ThemeColors = {
|
|
|
687
1375
|
50: ThemeBasicPallete;
|
|
688
1376
|
100: ThemeBasicPallete;
|
|
689
1377
|
150: ThemeBasicPallete;
|
|
1378
|
+
175: ThemeBasicPallete;
|
|
690
1379
|
200: ThemeBasicPallete;
|
|
691
1380
|
250: ThemeBasicPallete;
|
|
692
1381
|
300: ThemeBasicPallete;
|
|
@@ -715,6 +1404,8 @@ declare type ThemeColors = {
|
|
|
715
1404
|
color: string;
|
|
716
1405
|
disabled: string;
|
|
717
1406
|
highlight: string;
|
|
1407
|
+
shadow?: string;
|
|
1408
|
+
isChecked?: string;
|
|
718
1409
|
};
|
|
719
1410
|
background: {
|
|
720
1411
|
color: string;
|
|
@@ -730,6 +1421,10 @@ declare type ThemeComponent = {
|
|
|
730
1421
|
border: string;
|
|
731
1422
|
borderRadius: string;
|
|
732
1423
|
fontWeight: number;
|
|
1424
|
+
lineHeight: string;
|
|
1425
|
+
letterSpacing: string;
|
|
1426
|
+
minWidth: string;
|
|
1427
|
+
minHeight: string;
|
|
733
1428
|
size: {
|
|
734
1429
|
small: {
|
|
735
1430
|
fontSize: string;
|
|
@@ -776,6 +1471,12 @@ declare type ThemeComponent = {
|
|
|
776
1471
|
lineHeight: string;
|
|
777
1472
|
border: string;
|
|
778
1473
|
boxShadow: string;
|
|
1474
|
+
errorBorder: string;
|
|
1475
|
+
};
|
|
1476
|
+
inputPlaceholder: {
|
|
1477
|
+
fontSize: string;
|
|
1478
|
+
padding: string;
|
|
1479
|
+
focusBorder: string;
|
|
779
1480
|
};
|
|
780
1481
|
inputCustom: {
|
|
781
1482
|
button: {
|
|
@@ -808,6 +1509,12 @@ declare type ThemeComponent = {
|
|
|
808
1509
|
border: string;
|
|
809
1510
|
color: string;
|
|
810
1511
|
};
|
|
1512
|
+
noStock: {
|
|
1513
|
+
fontWeight: number;
|
|
1514
|
+
background: string;
|
|
1515
|
+
border: string;
|
|
1516
|
+
color: string;
|
|
1517
|
+
};
|
|
811
1518
|
disabled: {
|
|
812
1519
|
border: string;
|
|
813
1520
|
};
|
|
@@ -861,10 +1568,13 @@ declare type ThemeComponent = {
|
|
|
861
1568
|
};
|
|
862
1569
|
card: {
|
|
863
1570
|
borderRadius: string;
|
|
1571
|
+
backgroundColor: string;
|
|
864
1572
|
};
|
|
865
1573
|
radio: {
|
|
866
1574
|
borderColor: string;
|
|
867
1575
|
background: string;
|
|
1576
|
+
textSize: string;
|
|
1577
|
+
lineHeight: string;
|
|
868
1578
|
size: {
|
|
869
1579
|
small: {
|
|
870
1580
|
borderWidth: string;
|
|
@@ -893,6 +1603,7 @@ declare type ThemeComponent = {
|
|
|
893
1603
|
};
|
|
894
1604
|
};
|
|
895
1605
|
label: {
|
|
1606
|
+
color: string;
|
|
896
1607
|
fontSize: {
|
|
897
1608
|
small: string;
|
|
898
1609
|
medium: string;
|
|
@@ -1001,11 +1712,13 @@ declare type ThemeComponent = {
|
|
|
1001
1712
|
fontWeight: number;
|
|
1002
1713
|
lineHeight: string;
|
|
1003
1714
|
padding: string;
|
|
1715
|
+
optionPadding: string;
|
|
1004
1716
|
color: string;
|
|
1005
1717
|
fill: string;
|
|
1006
1718
|
options: {
|
|
1007
1719
|
borderColor: string;
|
|
1008
1720
|
color: string;
|
|
1721
|
+
borderRadius: string;
|
|
1009
1722
|
};
|
|
1010
1723
|
};
|
|
1011
1724
|
modal: {
|
|
@@ -1014,8 +1727,256 @@ declare type ThemeComponent = {
|
|
|
1014
1727
|
packSelector: {
|
|
1015
1728
|
borderRadius: string;
|
|
1016
1729
|
borderColor: string;
|
|
1017
|
-
|
|
1018
|
-
|
|
1730
|
+
highlightColor: string;
|
|
1731
|
+
selectedColor: string;
|
|
1732
|
+
selectedContrast: string;
|
|
1733
|
+
tagColor: string;
|
|
1734
|
+
};
|
|
1735
|
+
slideNavigation: {
|
|
1736
|
+
slideDots: {
|
|
1737
|
+
unselectedDotColor: string;
|
|
1738
|
+
selectedDotColor: string;
|
|
1739
|
+
dotsOpacity: number;
|
|
1740
|
+
};
|
|
1741
|
+
};
|
|
1742
|
+
beforeAfter: {
|
|
1743
|
+
size: {
|
|
1744
|
+
small: {
|
|
1745
|
+
image: {
|
|
1746
|
+
minHeight: string;
|
|
1747
|
+
minWidth: string;
|
|
1748
|
+
mobile: {
|
|
1749
|
+
minHeight: string;
|
|
1750
|
+
minWidth: string;
|
|
1751
|
+
};
|
|
1752
|
+
};
|
|
1753
|
+
imageContainer: {
|
|
1754
|
+
maxWidth: string;
|
|
1755
|
+
padding: string;
|
|
1756
|
+
mobile: {
|
|
1757
|
+
maxWidth: string;
|
|
1758
|
+
};
|
|
1759
|
+
};
|
|
1760
|
+
userInfoText: {
|
|
1761
|
+
fontSize: string;
|
|
1762
|
+
mobile: {
|
|
1763
|
+
fontSize: string;
|
|
1764
|
+
};
|
|
1765
|
+
};
|
|
1766
|
+
};
|
|
1767
|
+
medium: {
|
|
1768
|
+
image: {
|
|
1769
|
+
minHeight: string;
|
|
1770
|
+
minWidth: string;
|
|
1771
|
+
mobile: {
|
|
1772
|
+
minHeight: string;
|
|
1773
|
+
minWidth: string;
|
|
1774
|
+
};
|
|
1775
|
+
};
|
|
1776
|
+
imageContainer: {
|
|
1777
|
+
maxWidth: string;
|
|
1778
|
+
padding: string;
|
|
1779
|
+
mobile: {
|
|
1780
|
+
maxWidth: string;
|
|
1781
|
+
};
|
|
1782
|
+
};
|
|
1783
|
+
userInfoText: {
|
|
1784
|
+
fontSize: string;
|
|
1785
|
+
mobile: {
|
|
1786
|
+
fontSize: string;
|
|
1787
|
+
};
|
|
1788
|
+
};
|
|
1789
|
+
};
|
|
1790
|
+
large: {
|
|
1791
|
+
image: {
|
|
1792
|
+
minHeight: string;
|
|
1793
|
+
minWidth: string;
|
|
1794
|
+
mobile: {
|
|
1795
|
+
minHeight: string;
|
|
1796
|
+
minWidth: string;
|
|
1797
|
+
};
|
|
1798
|
+
};
|
|
1799
|
+
imageContainer: {
|
|
1800
|
+
maxWidth: string;
|
|
1801
|
+
padding: string;
|
|
1802
|
+
mobile: {
|
|
1803
|
+
maxWidth: string;
|
|
1804
|
+
};
|
|
1805
|
+
};
|
|
1806
|
+
userInfoText: {
|
|
1807
|
+
fontSize: string;
|
|
1808
|
+
mobile: {
|
|
1809
|
+
fontSize: string;
|
|
1810
|
+
};
|
|
1811
|
+
};
|
|
1812
|
+
};
|
|
1813
|
+
};
|
|
1814
|
+
};
|
|
1815
|
+
total: {
|
|
1816
|
+
basicTotal: {
|
|
1817
|
+
amount: {
|
|
1818
|
+
color: string;
|
|
1819
|
+
fontSize: string;
|
|
1820
|
+
};
|
|
1821
|
+
currency: {
|
|
1822
|
+
color: string;
|
|
1823
|
+
fontSize: string;
|
|
1824
|
+
lineHeight: string;
|
|
1825
|
+
alignSelf?: string;
|
|
1826
|
+
};
|
|
1827
|
+
savings: {
|
|
1828
|
+
amountFontWeight: number;
|
|
1829
|
+
color?: string;
|
|
1830
|
+
};
|
|
1831
|
+
};
|
|
1832
|
+
};
|
|
1833
|
+
subTotal: {
|
|
1834
|
+
basicSubTotal: {
|
|
1835
|
+
family: string;
|
|
1836
|
+
size: string;
|
|
1837
|
+
weight: number;
|
|
1838
|
+
lineHeight: string;
|
|
1839
|
+
color: string;
|
|
1840
|
+
};
|
|
1841
|
+
};
|
|
1842
|
+
pricing: {
|
|
1843
|
+
priceLabel: {
|
|
1844
|
+
price: {
|
|
1845
|
+
size: ComponentSize$1.Small | ComponentSize$1.Medium | ComponentSize$1.Large;
|
|
1846
|
+
originalPriceColor: string;
|
|
1847
|
+
actualPriceColor: string;
|
|
1848
|
+
};
|
|
1849
|
+
};
|
|
1850
|
+
};
|
|
1851
|
+
orderSummary: {
|
|
1852
|
+
headingTextAlign: string;
|
|
1853
|
+
backgroundColor?: string;
|
|
1854
|
+
padding?: string;
|
|
1855
|
+
borderRadius?: string;
|
|
1856
|
+
maxWidth?: string;
|
|
1857
|
+
onMobile: {
|
|
1858
|
+
maxWidth?: string;
|
|
1859
|
+
padding?: string;
|
|
1860
|
+
backgroundColor?: string;
|
|
1861
|
+
};
|
|
1862
|
+
};
|
|
1863
|
+
expressCheckout: {
|
|
1864
|
+
button: {
|
|
1865
|
+
borderRadius: string;
|
|
1866
|
+
};
|
|
1867
|
+
};
|
|
1868
|
+
copyrightText: {
|
|
1869
|
+
fontSize: string;
|
|
1870
|
+
fontWeight: number;
|
|
1871
|
+
lineHeight: string;
|
|
1872
|
+
color: string;
|
|
1873
|
+
};
|
|
1874
|
+
thankyouFooterText: {
|
|
1875
|
+
fontSize: string;
|
|
1876
|
+
fontWeight: string;
|
|
1877
|
+
lineHeight: string;
|
|
1878
|
+
};
|
|
1879
|
+
textButton: {
|
|
1880
|
+
fontWeight: number;
|
|
1881
|
+
lineHeight: string;
|
|
1882
|
+
};
|
|
1883
|
+
deliveryDetails: {
|
|
1884
|
+
title: {
|
|
1885
|
+
fontSize: string;
|
|
1886
|
+
lineHeight: string;
|
|
1887
|
+
fontWeight: number;
|
|
1888
|
+
};
|
|
1889
|
+
note: {
|
|
1890
|
+
accentColor: string;
|
|
1891
|
+
color: string;
|
|
1892
|
+
backgroundColor: string;
|
|
1893
|
+
};
|
|
1894
|
+
sectionTitle: {
|
|
1895
|
+
fontSize: string;
|
|
1896
|
+
lineHeight: string;
|
|
1897
|
+
fontWeight: number;
|
|
1898
|
+
};
|
|
1899
|
+
sectionDetails: {
|
|
1900
|
+
fontSize: string;
|
|
1901
|
+
lineHeight: string;
|
|
1902
|
+
fontWeight: number;
|
|
1903
|
+
marginLeft?: string;
|
|
1904
|
+
};
|
|
1905
|
+
};
|
|
1906
|
+
text: {
|
|
1907
|
+
orderHeader: {
|
|
1908
|
+
color: string;
|
|
1909
|
+
};
|
|
1910
|
+
};
|
|
1911
|
+
orderBar: {
|
|
1912
|
+
backgroundColor: string;
|
|
1913
|
+
fontColor: string;
|
|
1914
|
+
};
|
|
1915
|
+
banner: {
|
|
1916
|
+
outlineColor: string;
|
|
1917
|
+
filledColor: string;
|
|
1918
|
+
fontColor: string;
|
|
1919
|
+
};
|
|
1920
|
+
offerTitleText: {
|
|
1921
|
+
size: string;
|
|
1922
|
+
weight: number;
|
|
1923
|
+
lineHeight: string;
|
|
1924
|
+
};
|
|
1925
|
+
linePrice: {
|
|
1926
|
+
color: string;
|
|
1927
|
+
badge: {
|
|
1928
|
+
color: string;
|
|
1929
|
+
borderRadius: string;
|
|
1930
|
+
};
|
|
1931
|
+
};
|
|
1932
|
+
divider: {
|
|
1933
|
+
color: string;
|
|
1934
|
+
};
|
|
1935
|
+
checkout: {
|
|
1936
|
+
paymentInformation: {
|
|
1937
|
+
borderRadius?: string;
|
|
1938
|
+
};
|
|
1939
|
+
creditCardSection: {
|
|
1940
|
+
borderRadius?: string;
|
|
1941
|
+
};
|
|
1942
|
+
};
|
|
1943
|
+
upsell: {
|
|
1944
|
+
banner: {
|
|
1945
|
+
outlined: {
|
|
1946
|
+
color?: string;
|
|
1947
|
+
};
|
|
1948
|
+
};
|
|
1949
|
+
price: {
|
|
1950
|
+
colors: {
|
|
1951
|
+
regular: string;
|
|
1952
|
+
deal: string;
|
|
1953
|
+
each: string;
|
|
1954
|
+
badgeBG: string;
|
|
1955
|
+
badgeColor: string;
|
|
1956
|
+
};
|
|
1957
|
+
};
|
|
1958
|
+
hurryTimeCard: {
|
|
1959
|
+
backgroundColor: string;
|
|
1960
|
+
};
|
|
1961
|
+
guaranteedFit?: {
|
|
1962
|
+
backgroundColor: string;
|
|
1963
|
+
};
|
|
1964
|
+
};
|
|
1965
|
+
thankyou: {
|
|
1966
|
+
orderBanner?: {
|
|
1967
|
+
text: {
|
|
1968
|
+
left: string;
|
|
1969
|
+
};
|
|
1970
|
+
};
|
|
1971
|
+
emailSection: {
|
|
1972
|
+
backgroundColor?: string;
|
|
1973
|
+
};
|
|
1974
|
+
socialIcon: {
|
|
1975
|
+
color?: string;
|
|
1976
|
+
};
|
|
1977
|
+
orderId: {
|
|
1978
|
+
color: string;
|
|
1979
|
+
};
|
|
1019
1980
|
};
|
|
1020
1981
|
};
|
|
1021
1982
|
declare type ThemeTypography = {
|
|
@@ -1043,6 +2004,26 @@ declare type ThemeAssets = {
|
|
|
1043
2004
|
images: {
|
|
1044
2005
|
favicon: string;
|
|
1045
2006
|
logo: string;
|
|
2007
|
+
logoSize?: {
|
|
2008
|
+
width: string;
|
|
2009
|
+
height: string;
|
|
2010
|
+
};
|
|
2011
|
+
logoMobile?: string;
|
|
2012
|
+
checkoutLogo?: {
|
|
2013
|
+
url: string;
|
|
2014
|
+
width: string;
|
|
2015
|
+
height: string;
|
|
2016
|
+
};
|
|
2017
|
+
upsellLogo?: {
|
|
2018
|
+
url: string;
|
|
2019
|
+
width: string;
|
|
2020
|
+
height: string;
|
|
2021
|
+
};
|
|
2022
|
+
tyLogo?: {
|
|
2023
|
+
url: string;
|
|
2024
|
+
width: string;
|
|
2025
|
+
height: string;
|
|
2026
|
+
};
|
|
1046
2027
|
};
|
|
1047
2028
|
[key: string]: any;
|
|
1048
2029
|
};
|
|
@@ -1053,11 +2034,25 @@ interface CheckboxProps {
|
|
|
1053
2034
|
size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1054
2035
|
text: string;
|
|
1055
2036
|
checked?: boolean;
|
|
2037
|
+
blockUncheck?: boolean;
|
|
1056
2038
|
id: string;
|
|
1057
2039
|
backgroundColor?: string;
|
|
1058
|
-
variant: 'primary' | 'secondary';
|
|
2040
|
+
variant: 'primary' | 'secondary' | 'color';
|
|
1059
2041
|
}
|
|
1060
|
-
declare const Checkbox:
|
|
2042
|
+
declare const Checkbox: React.FC<CheckboxProps>;
|
|
2043
|
+
|
|
2044
|
+
interface RadioProps$1 {
|
|
2045
|
+
name: string;
|
|
2046
|
+
value: string;
|
|
2047
|
+
id: string;
|
|
2048
|
+
label: string | ReactFragment;
|
|
2049
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2050
|
+
checked?: boolean;
|
|
2051
|
+
disabled?: boolean;
|
|
2052
|
+
onChange: (option: RadioGroupOption) => void;
|
|
2053
|
+
style?: React.CSSProperties;
|
|
2054
|
+
}
|
|
2055
|
+
declare const RadioPrimary: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps$1) => JSX.Element;
|
|
1061
2056
|
|
|
1062
2057
|
interface RadioGroupInputProps {
|
|
1063
2058
|
name: string;
|
|
@@ -1066,8 +2061,20 @@ interface RadioGroupInputProps {
|
|
|
1066
2061
|
onChange: (value: RadioGroupOption) => void;
|
|
1067
2062
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1068
2063
|
disabled?: boolean;
|
|
2064
|
+
style?: React.CSSProperties;
|
|
1069
2065
|
}
|
|
1070
|
-
declare const RadioGroupInput: ({ name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
|
|
2066
|
+
declare const RadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
|
|
2067
|
+
|
|
2068
|
+
interface ClubRadioGroupInputProps {
|
|
2069
|
+
name: string;
|
|
2070
|
+
options?: RadioGroupOption[];
|
|
2071
|
+
value?: RadioGroupOption;
|
|
2072
|
+
onChange: (value: RadioGroupOption) => void;
|
|
2073
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2074
|
+
disabled?: boolean;
|
|
2075
|
+
style?: React.CSSProperties;
|
|
2076
|
+
}
|
|
2077
|
+
declare const ClubRadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: ClubRadioGroupInputProps) => JSX.Element;
|
|
1071
2078
|
|
|
1072
2079
|
interface SimpleProps {
|
|
1073
2080
|
title: string;
|
|
@@ -1090,10 +2097,11 @@ interface MinimalisticProps {
|
|
|
1090
2097
|
discount: number;
|
|
1091
2098
|
offText: string;
|
|
1092
2099
|
widthAuto?: boolean;
|
|
2100
|
+
testId?: string;
|
|
1093
2101
|
}
|
|
1094
2102
|
|
|
1095
2103
|
declare const Bundle: {
|
|
1096
|
-
Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, }: MinimalisticProps) => JSX.Element;
|
|
2104
|
+
Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, testId, }: MinimalisticProps) => JSX.Element;
|
|
1097
2105
|
Simple: ({ title, freeShippingText, price, anyQtyForText, backgroundColor, widthAuto, }: SimpleProps) => JSX.Element;
|
|
1098
2106
|
};
|
|
1099
2107
|
|
|
@@ -1101,16 +2109,18 @@ interface CategoryTagProps {
|
|
|
1101
2109
|
text: string;
|
|
1102
2110
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1103
2111
|
className?: string;
|
|
2112
|
+
styledBorder?: boolean;
|
|
1104
2113
|
}
|
|
1105
|
-
declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2114
|
+
declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1106
2115
|
|
|
1107
2116
|
interface SeasonOfferTagProps {
|
|
1108
2117
|
text: string;
|
|
1109
2118
|
backgroundColor?: string;
|
|
1110
2119
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1111
2120
|
className?: string;
|
|
2121
|
+
styledBorder?: boolean;
|
|
1112
2122
|
}
|
|
1113
|
-
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2123
|
+
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1114
2124
|
|
|
1115
2125
|
interface TimeProps {
|
|
1116
2126
|
hours: number;
|
|
@@ -1123,7 +2133,14 @@ interface TimerProps extends TimeProps {
|
|
|
1123
2133
|
}
|
|
1124
2134
|
declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
|
|
1125
2135
|
|
|
1126
|
-
interface
|
|
2136
|
+
interface BaseInputCommonProps {
|
|
2137
|
+
id?: string;
|
|
2138
|
+
value?: string;
|
|
2139
|
+
innerRef?: React.Ref<HTMLInputElement>;
|
|
2140
|
+
onBlur?: () => void;
|
|
2141
|
+
onFocus?: () => void;
|
|
2142
|
+
onChange?: (value: string, event: any) => void;
|
|
2143
|
+
hideClear?: boolean;
|
|
1127
2144
|
defaultValue?: string;
|
|
1128
2145
|
maxLength?: number;
|
|
1129
2146
|
placeholder?: string;
|
|
@@ -1133,16 +2150,14 @@ interface BaseInputCommmonProps {
|
|
|
1133
2150
|
required?: string;
|
|
1134
2151
|
children?: React.ReactNode;
|
|
1135
2152
|
size?: 'regular' | 'small';
|
|
2153
|
+
inlinePlaceholder?: boolean;
|
|
2154
|
+
hasError?: boolean;
|
|
2155
|
+
inputType?: 'text' | 'email' | 'password' | 'url';
|
|
2156
|
+
name?: string;
|
|
2157
|
+
autoFocus?: boolean;
|
|
2158
|
+
requiredPlaceholder?: string;
|
|
1136
2159
|
}
|
|
1137
|
-
|
|
1138
|
-
value: string;
|
|
1139
|
-
onChange: (value: string) => void;
|
|
1140
|
-
}
|
|
1141
|
-
interface BaseInputUncontrolled extends BaseInputCommmonProps {
|
|
1142
|
-
value?: never;
|
|
1143
|
-
onChange?: (value: string) => void;
|
|
1144
|
-
}
|
|
1145
|
-
declare type BaseInputProps = BaseInputControlled | BaseInputUncontrolled;
|
|
2160
|
+
declare type BaseInputProps = BaseInputCommonProps;
|
|
1146
2161
|
|
|
1147
2162
|
declare type BasePlusIconProps = BaseInputProps & {
|
|
1148
2163
|
Icon: IconType;
|
|
@@ -1166,6 +2181,7 @@ interface BaseCTAProps {
|
|
|
1166
2181
|
size?: ComponentSize;
|
|
1167
2182
|
text: string;
|
|
1168
2183
|
type?: ButtonType;
|
|
2184
|
+
inline?: boolean;
|
|
1169
2185
|
testId?: string;
|
|
1170
2186
|
}
|
|
1171
2187
|
|
|
@@ -1180,7 +2196,7 @@ declare type CustomProps = BaseInputProps & {
|
|
|
1180
2196
|
};
|
|
1181
2197
|
|
|
1182
2198
|
declare const Input: {
|
|
1183
|
-
Simple: ({ value, onChange,
|
|
2199
|
+
Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, requiredPlaceholder, ...rest }: BaseInputCommonProps) => JSX.Element;
|
|
1184
2200
|
Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
|
|
1185
2201
|
SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
|
|
1186
2202
|
SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
|
|
@@ -1240,7 +2256,7 @@ declare type detail = {
|
|
|
1240
2256
|
details: string;
|
|
1241
2257
|
};
|
|
1242
2258
|
interface orderUpdate extends detail {
|
|
1243
|
-
keepMeUpdated
|
|
2259
|
+
keepMeUpdated?: {
|
|
1244
2260
|
title: string;
|
|
1245
2261
|
onClick: () => void;
|
|
1246
2262
|
};
|
|
@@ -1253,9 +2269,9 @@ interface DeliveryDetailsProps {
|
|
|
1253
2269
|
note?: {
|
|
1254
2270
|
importantNoteText: string;
|
|
1255
2271
|
text: string;
|
|
1256
|
-
accentColor
|
|
1257
|
-
backgroundColor
|
|
1258
|
-
color
|
|
2272
|
+
accentColor?: string;
|
|
2273
|
+
backgroundColor?: string;
|
|
2274
|
+
color?: string;
|
|
1259
2275
|
};
|
|
1260
2276
|
}
|
|
1261
2277
|
declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
|
|
@@ -1263,26 +2279,37 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
|
|
|
1263
2279
|
interface ScrollToTopProps {
|
|
1264
2280
|
scrollToTopText: string;
|
|
1265
2281
|
onClick: () => void;
|
|
2282
|
+
fill?: string;
|
|
1266
2283
|
}
|
|
1267
|
-
declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
|
|
2284
|
+
declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
|
|
1268
2285
|
|
|
1269
2286
|
interface OrderBarProps {
|
|
1270
2287
|
message: string;
|
|
2288
|
+
color?: string;
|
|
1271
2289
|
}
|
|
1272
|
-
declare const OrderBar: ({ message }: OrderBarProps) => JSX.Element;
|
|
2290
|
+
declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
|
|
2291
|
+
|
|
2292
|
+
interface TableProps$1 {
|
|
2293
|
+
headers: string[];
|
|
2294
|
+
data: string[][];
|
|
2295
|
+
className?: string;
|
|
2296
|
+
}
|
|
2297
|
+
declare const SizeTable: ({ headers, data, className }: TableProps$1) => JSX.Element;
|
|
1273
2298
|
|
|
1274
2299
|
interface TableProps {
|
|
1275
2300
|
headers: string[];
|
|
1276
2301
|
data: string[][];
|
|
2302
|
+
newSizeTableCss?: boolean;
|
|
1277
2303
|
}
|
|
1278
|
-
declare const
|
|
2304
|
+
declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
|
|
1279
2305
|
|
|
1280
2306
|
interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
|
|
1281
2307
|
color?: string;
|
|
1282
2308
|
}
|
|
1283
2309
|
interface ProductOrderItemProps {
|
|
1284
|
-
title: string;
|
|
2310
|
+
title: React.ReactNode | string;
|
|
1285
2311
|
subtitle: string;
|
|
2312
|
+
className?: string;
|
|
1286
2313
|
image: {
|
|
1287
2314
|
src: string;
|
|
1288
2315
|
alt: string;
|
|
@@ -1293,10 +2320,12 @@ interface ProductOrderItemProps {
|
|
|
1293
2320
|
text: string;
|
|
1294
2321
|
backgroundColor: string;
|
|
1295
2322
|
};
|
|
2323
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1296
2324
|
}
|
|
1297
|
-
declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
|
|
2325
|
+
declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
|
|
1298
2326
|
|
|
1299
|
-
interface ReviewProps {
|
|
2327
|
+
interface ReviewProps$1 {
|
|
2328
|
+
reviewId: string;
|
|
1300
2329
|
reviewerName: string;
|
|
1301
2330
|
date: Date;
|
|
1302
2331
|
rating: number;
|
|
@@ -1306,27 +2335,35 @@ interface ReviewProps {
|
|
|
1306
2335
|
};
|
|
1307
2336
|
title: string;
|
|
1308
2337
|
description: string;
|
|
1309
|
-
|
|
2338
|
+
images?: {
|
|
1310
2339
|
src: string;
|
|
1311
2340
|
alt: string;
|
|
1312
|
-
};
|
|
2341
|
+
}[];
|
|
2342
|
+
reviewVariant?: string;
|
|
2343
|
+
onClickImage?: (image: string) => void;
|
|
2344
|
+
helpfulActionText?: string;
|
|
2345
|
+
helpfulAction?: (id: string) => void;
|
|
2346
|
+
helpfulCount?: number;
|
|
1313
2347
|
}
|
|
1314
|
-
declare const Review: ({ reviewerName, date, rating, stars, title, description,
|
|
2348
|
+
declare const Review$1: ({ reviewId, reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, helpfulActionText, helpfulAction, helpfulCount, }: ReviewProps$1) => JSX.Element;
|
|
1315
2349
|
|
|
1316
2350
|
interface SliderNavigationProps {
|
|
1317
|
-
children: JSX.Element[]
|
|
2351
|
+
children: JSX.Element | JSX.Element[] | StyledComponent<any>;
|
|
1318
2352
|
infinite: boolean;
|
|
1319
2353
|
adaptiveHeight: boolean;
|
|
1320
|
-
dotsSize
|
|
1321
|
-
dotListMarginTop
|
|
2354
|
+
dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
2355
|
+
dotListMarginTop?: number;
|
|
1322
2356
|
initialSlide?: number;
|
|
1323
2357
|
arrows?: {
|
|
1324
2358
|
arrowWidth: number;
|
|
1325
2359
|
arrowHeight: number;
|
|
1326
2360
|
arrowPadding: number;
|
|
1327
2361
|
};
|
|
2362
|
+
dots?: boolean;
|
|
2363
|
+
slidesToShow?: number;
|
|
2364
|
+
speed?: number;
|
|
1328
2365
|
}
|
|
1329
|
-
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2366
|
+
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1330
2367
|
|
|
1331
2368
|
interface DropdownListIconsProps {
|
|
1332
2369
|
items: DropdownListIconsItem[];
|
|
@@ -1344,8 +2381,11 @@ interface ImageStyleProps {
|
|
|
1344
2381
|
interface ImageProps extends ImageStyleProps {
|
|
1345
2382
|
src: string;
|
|
1346
2383
|
alt: string;
|
|
2384
|
+
srcSet?: string;
|
|
2385
|
+
sizes?: string;
|
|
2386
|
+
loading?: 'lazy' | 'eager';
|
|
1347
2387
|
}
|
|
1348
|
-
declare const Image: ({ src, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
|
|
2388
|
+
declare const Image: ({ src, srcSet, sizes, loading, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
|
|
1349
2389
|
|
|
1350
2390
|
interface AmazonPaypalBtnProps {
|
|
1351
2391
|
onClick: () => void;
|
|
@@ -1380,8 +2420,8 @@ interface ProductItemProps {
|
|
|
1380
2420
|
price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
|
|
1381
2421
|
rating: Pick<RatingProps, 'rating' | 'reviews'>;
|
|
1382
2422
|
tags?: {
|
|
1383
|
-
categoryTagText
|
|
1384
|
-
seasonOfferTagText
|
|
2423
|
+
categoryTagText?: string;
|
|
2424
|
+
seasonOfferTagText?: string;
|
|
1385
2425
|
};
|
|
1386
2426
|
alignName?: 'left' | 'center';
|
|
1387
2427
|
url?: string;
|
|
@@ -1390,6 +2430,35 @@ interface ProductItemProps {
|
|
|
1390
2430
|
|
|
1391
2431
|
interface ProductItemSmallMobileProps extends ProductItemProps {
|
|
1392
2432
|
size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
|
|
2433
|
+
imageHover?: ImageProps;
|
|
2434
|
+
topTag?: JSX.Element;
|
|
2435
|
+
bottomTag?: JSX.Element;
|
|
2436
|
+
onClick?: () => void;
|
|
2437
|
+
priceDisplayType?: 'default' | 'styled';
|
|
2438
|
+
priceAtBottom?: boolean;
|
|
2439
|
+
priceLoading?: boolean;
|
|
2440
|
+
noFollow?: boolean;
|
|
2441
|
+
colorPicker?: {
|
|
2442
|
+
display: boolean;
|
|
2443
|
+
position: string;
|
|
2444
|
+
component: JSX.Element | JSX.Element[] | undefined;
|
|
2445
|
+
};
|
|
2446
|
+
isBNPL?: {
|
|
2447
|
+
displayBNPL: boolean;
|
|
2448
|
+
installments: number;
|
|
2449
|
+
installmentPrice: string;
|
|
2450
|
+
iconFolder?: string;
|
|
2451
|
+
iconName: string;
|
|
2452
|
+
showLogo?: boolean;
|
|
2453
|
+
iconColor: string;
|
|
2454
|
+
fontSize: string;
|
|
2455
|
+
};
|
|
2456
|
+
hasStrength?: {
|
|
2457
|
+
strength: number;
|
|
2458
|
+
description: string;
|
|
2459
|
+
};
|
|
2460
|
+
clubPrice?: string;
|
|
2461
|
+
showClubPriceLabel?: boolean;
|
|
1393
2462
|
}
|
|
1394
2463
|
|
|
1395
2464
|
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
|
|
@@ -1398,7 +2467,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
|
|
|
1398
2467
|
};
|
|
1399
2468
|
|
|
1400
2469
|
declare const Collection: {
|
|
1401
|
-
ProductItemMobile: ({ title, image, price, rating, size,
|
|
2470
|
+
ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, noFollow, colorPicker, isBNPL, hasStrength, clubPrice, showClubPriceLabel, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1402
2471
|
withProductGrid: typeof withProductGrid;
|
|
1403
2472
|
};
|
|
1404
2473
|
|
|
@@ -1459,49 +2528,56 @@ interface PaginationProps {
|
|
|
1459
2528
|
underlineActive?: boolean;
|
|
1460
2529
|
boldActive?: boolean;
|
|
1461
2530
|
disabled?: boolean;
|
|
2531
|
+
showReducedPages?: boolean;
|
|
1462
2532
|
}
|
|
1463
|
-
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
|
|
2533
|
+
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
|
|
2534
|
+
|
|
2535
|
+
declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
|
|
1464
2536
|
|
|
1465
|
-
declare const Text:
|
|
2537
|
+
declare const Text: ({ variant, children, testId, asSpan, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1466
2538
|
declare type TextHeroProps = {
|
|
1467
2539
|
variant: 'hero1' | 'hero2' | 'hero3';
|
|
1468
2540
|
weight?: 'heavy' | 'bold' | 'demi';
|
|
1469
|
-
size?: 'regular';
|
|
2541
|
+
size?: 'regular' | 'xsmall';
|
|
1470
2542
|
underline?: never;
|
|
1471
2543
|
disabled?: never;
|
|
1472
2544
|
wide?: never;
|
|
1473
2545
|
original?: never;
|
|
1474
2546
|
allCaps?: never;
|
|
2547
|
+
href: never;
|
|
1475
2548
|
};
|
|
1476
2549
|
declare type TextDisplayProps = {
|
|
1477
2550
|
variant: 'display1' | 'display2';
|
|
1478
2551
|
weight?: 'bold' | 'demi';
|
|
1479
|
-
size?: 'regular';
|
|
2552
|
+
size?: 'regular' | 'xsmall';
|
|
1480
2553
|
underline?: never;
|
|
1481
2554
|
disabled?: never;
|
|
1482
2555
|
wide?: never;
|
|
1483
2556
|
original?: never;
|
|
1484
2557
|
allCaps?: never;
|
|
2558
|
+
href: never;
|
|
1485
2559
|
};
|
|
1486
2560
|
declare type TextHeadingProps = {
|
|
1487
|
-
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
|
|
2561
|
+
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6' | 'heading7' | 'heading8';
|
|
1488
2562
|
weight?: 'bold' | 'demi' | 'regular';
|
|
1489
|
-
size?: 'regular';
|
|
2563
|
+
size?: 'regular' | 'xsmall';
|
|
1490
2564
|
underline?: never;
|
|
1491
2565
|
disabled?: never;
|
|
1492
2566
|
wide?: never;
|
|
1493
2567
|
original?: never;
|
|
1494
2568
|
allCaps?: never;
|
|
2569
|
+
href?: never;
|
|
1495
2570
|
};
|
|
1496
2571
|
declare type TextBodyProps = {
|
|
1497
2572
|
variant: 'body';
|
|
1498
|
-
size?: 'regular' | 'small';
|
|
2573
|
+
size?: 'regular' | 'small' | 'xsmall';
|
|
1499
2574
|
weight?: 'bold' | 'demi' | 'regular';
|
|
1500
2575
|
underline?: never;
|
|
1501
2576
|
disabled?: never;
|
|
1502
2577
|
wide?: never;
|
|
1503
2578
|
original?: never;
|
|
1504
2579
|
allCaps?: never;
|
|
2580
|
+
href?: never;
|
|
1505
2581
|
};
|
|
1506
2582
|
declare type TextButtonProps = {
|
|
1507
2583
|
variant: 'button';
|
|
@@ -1512,6 +2588,7 @@ declare type TextButtonProps = {
|
|
|
1512
2588
|
wide?: boolean;
|
|
1513
2589
|
original?: never;
|
|
1514
2590
|
allCaps?: never;
|
|
2591
|
+
href?: never;
|
|
1515
2592
|
};
|
|
1516
2593
|
declare type TextPricingProps = {
|
|
1517
2594
|
variant: 'pricing';
|
|
@@ -1522,6 +2599,7 @@ declare type TextPricingProps = {
|
|
|
1522
2599
|
wide?: never;
|
|
1523
2600
|
original?: boolean;
|
|
1524
2601
|
allCaps?: never;
|
|
2602
|
+
href?: never;
|
|
1525
2603
|
};
|
|
1526
2604
|
declare type TextLinkProps = {
|
|
1527
2605
|
variant: 'link';
|
|
@@ -1532,9 +2610,11 @@ declare type TextLinkProps = {
|
|
|
1532
2610
|
wide?: never;
|
|
1533
2611
|
original?: never;
|
|
1534
2612
|
allCaps?: never;
|
|
1535
|
-
|
|
2613
|
+
href?: string;
|
|
2614
|
+
};
|
|
1536
2615
|
declare type TextLabelProps = {
|
|
1537
2616
|
variant: 'label';
|
|
2617
|
+
color?: string;
|
|
1538
2618
|
weight?: 'regular' | 'demi';
|
|
1539
2619
|
size?: 'regular' | 'small';
|
|
1540
2620
|
underline?: never;
|
|
@@ -1542,6 +2622,7 @@ declare type TextLabelProps = {
|
|
|
1542
2622
|
wide?: never;
|
|
1543
2623
|
original?: never;
|
|
1544
2624
|
allCaps?: never;
|
|
2625
|
+
href?: never;
|
|
1545
2626
|
} & LabelHTMLAttributes<'label'>;
|
|
1546
2627
|
declare type TextTagProps = {
|
|
1547
2628
|
variant: 'tag';
|
|
@@ -1552,10 +2633,15 @@ declare type TextTagProps = {
|
|
|
1552
2633
|
wide?: never;
|
|
1553
2634
|
original?: never;
|
|
1554
2635
|
allCaps?: boolean;
|
|
2636
|
+
href?: never;
|
|
1555
2637
|
};
|
|
1556
|
-
declare type TextProps = AriaAttributes & {
|
|
2638
|
+
declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
|
|
2639
|
+
children: ReactNode;
|
|
1557
2640
|
style?: CSSProperties;
|
|
1558
2641
|
className?: string;
|
|
2642
|
+
testId?: string;
|
|
2643
|
+
asSpan?: boolean;
|
|
2644
|
+
color?: string;
|
|
1559
2645
|
} & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
|
|
1560
2646
|
|
|
1561
2647
|
interface SearchBarProps {
|
|
@@ -1563,51 +2649,75 @@ interface SearchBarProps {
|
|
|
1563
2649
|
resultOptions: SearchBarOptionItem[];
|
|
1564
2650
|
onChange: (text: string) => void;
|
|
1565
2651
|
onSearch: (term: string) => void;
|
|
2652
|
+
onClose: () => void;
|
|
1566
2653
|
resultsPanelDataTestId?: string;
|
|
2654
|
+
allResults?: number;
|
|
2655
|
+
initialTerm?: string;
|
|
2656
|
+
shouldClear?: boolean;
|
|
2657
|
+
isBlogSearchBar?: boolean;
|
|
2658
|
+
ariaLabel?: string;
|
|
2659
|
+
placeholder?: string;
|
|
2660
|
+
id?: string;
|
|
2661
|
+
autoComplete?: string;
|
|
1567
2662
|
}
|
|
1568
|
-
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, resultsPanelDataTestId, }: SearchBarProps) => JSX.Element;
|
|
2663
|
+
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
|
|
1569
2664
|
|
|
1570
|
-
interface ProductGalleryMobileProps {
|
|
2665
|
+
interface ProductGalleryMobileProps$1 {
|
|
1571
2666
|
images: ImageType[];
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
2667
|
+
customClick?: boolean;
|
|
2668
|
+
topTag?: JSX.Element;
|
|
2669
|
+
bottomTag?: JSX.Element;
|
|
1575
2670
|
productImageDataTestId?: string;
|
|
1576
|
-
|
|
2671
|
+
borderRadiusVariant?: boolean;
|
|
2672
|
+
selectedValue?: ImageType;
|
|
1577
2673
|
}
|
|
1578
|
-
declare const ProductGalleryMobile: ({ images,
|
|
2674
|
+
declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps$1) => JSX.Element;
|
|
1579
2675
|
|
|
1580
2676
|
interface RadioProps {
|
|
1581
2677
|
name: string;
|
|
1582
2678
|
value: string;
|
|
1583
2679
|
id: string;
|
|
1584
|
-
label: string;
|
|
2680
|
+
label: string | ReactFragment;
|
|
1585
2681
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1586
2682
|
checked?: boolean;
|
|
1587
2683
|
disabled?: boolean;
|
|
1588
2684
|
onChange: (option: RadioGroupOption) => void;
|
|
2685
|
+
style?: React.CSSProperties;
|
|
1589
2686
|
}
|
|
1590
|
-
declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
|
|
2687
|
+
declare const RadioInput: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
|
|
1591
2688
|
|
|
1592
2689
|
declare type PortalProps = {
|
|
1593
2690
|
id: string;
|
|
1594
2691
|
className?: string;
|
|
2692
|
+
overflow?: boolean;
|
|
2693
|
+
style?: CSSProperties;
|
|
1595
2694
|
};
|
|
1596
2695
|
declare const Portal: FC<PortalProps>;
|
|
1597
2696
|
|
|
1598
2697
|
declare type ModalProps = {
|
|
1599
2698
|
id: string;
|
|
1600
2699
|
dismissable?: boolean;
|
|
2700
|
+
maxFullScreen?: boolean;
|
|
2701
|
+
padding?: string;
|
|
2702
|
+
children: React.ReactNode;
|
|
1601
2703
|
};
|
|
2704
|
+
interface ContainerProps {
|
|
2705
|
+
maxFullScreen: boolean;
|
|
2706
|
+
opened?: boolean;
|
|
2707
|
+
padding?: string;
|
|
2708
|
+
}
|
|
1602
2709
|
declare const Overlay: _emotion_styled.StyledComponent<{
|
|
1603
2710
|
theme?: _emotion_react.Theme | undefined;
|
|
1604
2711
|
as?: React.ElementType<any> | undefined;
|
|
1605
|
-
} & {
|
|
1606
|
-
opened?: boolean | undefined;
|
|
1607
|
-
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
2712
|
+
} & Pick<ContainerProps, "opened">, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
1608
2713
|
declare const Modal: FC<ModalProps>;
|
|
1609
2714
|
declare const modalEvent: (id: string, detail: Omit<Events['modal'], 'id'>) => void;
|
|
1610
|
-
declare const useModalEvent: (id: string, cb: (event: CustomEvent<Events['modal']>) => void) => void;
|
|
2715
|
+
declare const useModalEvent: (id: string, cb: (event: CustomEvent<Events['modal']>) => void) => void;
|
|
2716
|
+
declare const useModal: (id: string) => {
|
|
2717
|
+
opened: boolean;
|
|
2718
|
+
open: () => void;
|
|
2719
|
+
close: () => void;
|
|
2720
|
+
};
|
|
1611
2721
|
|
|
1612
2722
|
interface CloseButtonProps {
|
|
1613
2723
|
onClick: () => void;
|
|
@@ -1646,8 +2756,9 @@ declare type QuantityPickerPropsUncontrolled = {
|
|
|
1646
2756
|
declare type QuantityPickerProps = {
|
|
1647
2757
|
initialValue?: number;
|
|
1648
2758
|
maxValue?: number;
|
|
2759
|
+
testId?: string;
|
|
1649
2760
|
} & (QuantityPickerPropsControlled | QuantityPickerPropsUncontrolled);
|
|
1650
|
-
declare const QuantityPicker: ({ initialValue, maxValue, value, onChange, }: QuantityPickerProps) => JSX.Element;
|
|
2761
|
+
declare const QuantityPicker: ({ initialValue, maxValue, value, testId, onChange, }: QuantityPickerProps) => JSX.Element;
|
|
1651
2762
|
|
|
1652
2763
|
declare type SpacingProps = {
|
|
1653
2764
|
size: number;
|
|
@@ -1656,6 +2767,26 @@ declare type SpacingProps = {
|
|
|
1656
2767
|
};
|
|
1657
2768
|
declare const Spacing: FC<SpacingProps>;
|
|
1658
2769
|
|
|
2770
|
+
interface PackOption$1 {
|
|
2771
|
+
label: string;
|
|
2772
|
+
description: string;
|
|
2773
|
+
meta: {
|
|
2774
|
+
discountPercentage: number;
|
|
2775
|
+
originalPrice: number;
|
|
2776
|
+
price: number;
|
|
2777
|
+
quantity: number;
|
|
2778
|
+
icon: string;
|
|
2779
|
+
tag?: string;
|
|
2780
|
+
};
|
|
2781
|
+
}
|
|
2782
|
+
interface PackSelectorProps$1 {
|
|
2783
|
+
packs: PackOption$1[];
|
|
2784
|
+
selectedValue: PackOption$1;
|
|
2785
|
+
onChange: (size: PackOption$1) => void;
|
|
2786
|
+
currencyCode?: string;
|
|
2787
|
+
}
|
|
2788
|
+
declare const PackSelector: FC<PackSelectorProps$1>;
|
|
2789
|
+
|
|
1659
2790
|
interface PackOption {
|
|
1660
2791
|
label: string;
|
|
1661
2792
|
description: string;
|
|
@@ -1672,8 +2803,282 @@ interface PackSelectorProps {
|
|
|
1672
2803
|
packs: PackOption[];
|
|
1673
2804
|
selectedValue: PackOption;
|
|
1674
2805
|
onChange: (size: PackOption) => void;
|
|
2806
|
+
currencyCode?: string;
|
|
2807
|
+
}
|
|
2808
|
+
declare const PackSelectorV2: FC<PackSelectorProps>;
|
|
2809
|
+
|
|
2810
|
+
interface FiltersProps {
|
|
2811
|
+
values: Filter[];
|
|
2812
|
+
onChange: (newValues: Filter[], filtersState?: FilterChange) => void;
|
|
2813
|
+
tagsColor?: string;
|
|
2814
|
+
filterByText: string;
|
|
2815
|
+
clearAllText: string;
|
|
2816
|
+
filtersSelectText: string;
|
|
2817
|
+
isMobile: boolean;
|
|
2818
|
+
applyText: string;
|
|
2819
|
+
mobileBackArrowClick: () => void;
|
|
2820
|
+
mobileApplyButtonClick: () => void;
|
|
2821
|
+
onResetValues: () => void;
|
|
2822
|
+
}
|
|
2823
|
+
declare const Filters: ({ values, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, onResetValues, }: FiltersProps) => JSX.Element;
|
|
2824
|
+
|
|
2825
|
+
interface SearchNavigationProps {
|
|
2826
|
+
returnText?: string;
|
|
2827
|
+
returnUrl?: string;
|
|
2828
|
+
steps?: string[];
|
|
2829
|
+
returnAction?: () => void;
|
|
2830
|
+
}
|
|
2831
|
+
declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
|
|
2832
|
+
|
|
2833
|
+
interface TabProps$1 {
|
|
2834
|
+
title: string;
|
|
2835
|
+
content: ReactNode;
|
|
2836
|
+
}
|
|
2837
|
+
interface TabsProps {
|
|
2838
|
+
backgroundColor?: string;
|
|
2839
|
+
initialSelected?: string;
|
|
2840
|
+
tabsMaxWidth?: string;
|
|
2841
|
+
tabs: TabProps$1[];
|
|
1675
2842
|
}
|
|
1676
|
-
declare const
|
|
2843
|
+
declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
|
|
2844
|
+
|
|
2845
|
+
interface TabProps {
|
|
2846
|
+
title: string;
|
|
2847
|
+
titleSize?: string;
|
|
2848
|
+
selectedTitleWeight?: number;
|
|
2849
|
+
height?: string;
|
|
2850
|
+
selected?: boolean;
|
|
2851
|
+
color?: string;
|
|
2852
|
+
tabsMaxWidth?: string;
|
|
2853
|
+
onClick: (clickedTab: string) => void;
|
|
2854
|
+
}
|
|
2855
|
+
declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
|
|
2856
|
+
|
|
2857
|
+
interface IconsWithTitleProps {
|
|
2858
|
+
backgroundColor: string;
|
|
2859
|
+
iconColor: string;
|
|
2860
|
+
iconName: string;
|
|
2861
|
+
iconFolder?: string;
|
|
2862
|
+
withWrapper?: boolean;
|
|
2863
|
+
iconTitle: string;
|
|
2864
|
+
iconSizeDesktop?: number;
|
|
2865
|
+
iconSizeMobile?: number;
|
|
2866
|
+
iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
2867
|
+
iconTitleStyle?: string;
|
|
2868
|
+
iconStyle?: string;
|
|
2869
|
+
isTitleInnerHtml?: boolean;
|
|
2870
|
+
}
|
|
2871
|
+
declare const IconsWithTitle: ({ iconName, iconTitle, iconFolder, withWrapper, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconsWithTitleProps) => JSX.Element | null;
|
|
2872
|
+
|
|
2873
|
+
interface NoteProps {
|
|
2874
|
+
accentColor?: string;
|
|
2875
|
+
color?: string;
|
|
2876
|
+
backgroundColor?: string;
|
|
2877
|
+
importantNoteText: string;
|
|
2878
|
+
text: string;
|
|
2879
|
+
}
|
|
2880
|
+
declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
|
|
2881
|
+
|
|
2882
|
+
interface TextWithImageProps {
|
|
2883
|
+
title: string;
|
|
2884
|
+
text?: string;
|
|
2885
|
+
children?: ReactNode;
|
|
2886
|
+
buttomText: string;
|
|
2887
|
+
backgroundColor: string;
|
|
2888
|
+
imageLeftSide?: boolean;
|
|
2889
|
+
URLLink?: string;
|
|
2890
|
+
onButtonClick?: () => void;
|
|
2891
|
+
isRedirectionURL: boolean;
|
|
2892
|
+
btnBGColor?: string;
|
|
2893
|
+
btnHoverBGColor?: string;
|
|
2894
|
+
imgVideo: imageVideoProps;
|
|
2895
|
+
contentAfterButton?: React.ReactNode;
|
|
2896
|
+
titleStyle?: React.CSSProperties;
|
|
2897
|
+
textStyle?: React.CSSProperties;
|
|
2898
|
+
buttonWideOnMobile?: boolean;
|
|
2899
|
+
}
|
|
2900
|
+
declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2901
|
+
|
|
2902
|
+
interface AccordionOptionsProps {
|
|
2903
|
+
titleColor: string;
|
|
2904
|
+
accordions: AccordionProps[];
|
|
2905
|
+
}
|
|
2906
|
+
declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
|
|
2907
|
+
|
|
2908
|
+
interface ShortBannerProps {
|
|
2909
|
+
title: string;
|
|
2910
|
+
bannerText: string;
|
|
2911
|
+
backgroundColor: string;
|
|
2912
|
+
alignCenter?: boolean;
|
|
2913
|
+
widthAuto?: boolean;
|
|
2914
|
+
textColor: string;
|
|
2915
|
+
}
|
|
2916
|
+
declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
|
|
2917
|
+
|
|
2918
|
+
interface BeforeAfterCardProps {
|
|
2919
|
+
name: string;
|
|
2920
|
+
age?: string;
|
|
2921
|
+
months?: string;
|
|
2922
|
+
beforeImage: string;
|
|
2923
|
+
afterImage: string;
|
|
2924
|
+
alignCenter?: boolean;
|
|
2925
|
+
imageBorderRadius?: string;
|
|
2926
|
+
size?: ComponentSize;
|
|
2927
|
+
}
|
|
2928
|
+
declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
|
|
2929
|
+
|
|
2930
|
+
interface ImageCardWithDescriptionProps {
|
|
2931
|
+
image: string;
|
|
2932
|
+
title?: string;
|
|
2933
|
+
description?: string;
|
|
2934
|
+
titlePosition?: 'center' | 'left';
|
|
2935
|
+
}
|
|
2936
|
+
declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
|
|
2937
|
+
|
|
2938
|
+
interface Checkpoint$1 {
|
|
2939
|
+
day: string;
|
|
2940
|
+
date: string;
|
|
2941
|
+
statusMessage: string;
|
|
2942
|
+
}
|
|
2943
|
+
interface TrackingProgressProps {
|
|
2944
|
+
checkPoints: Checkpoint$1[];
|
|
2945
|
+
amountOfCheckPoints: number;
|
|
2946
|
+
}
|
|
2947
|
+
declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
|
|
2948
|
+
|
|
2949
|
+
interface Checkpoint {
|
|
2950
|
+
day: string;
|
|
2951
|
+
date: string;
|
|
2952
|
+
statusMessage: string;
|
|
2953
|
+
}
|
|
2954
|
+
interface TrackingProgressV2Props {
|
|
2955
|
+
checkPoints: Checkpoint[];
|
|
2956
|
+
amountOfCheckPoints: number;
|
|
2957
|
+
warning?: boolean;
|
|
2958
|
+
}
|
|
2959
|
+
declare const TrackingProgressV2: ({ checkPoints, amountOfCheckPoints, warning, }: TrackingProgressV2Props) => JSX.Element;
|
|
2960
|
+
|
|
2961
|
+
interface ReviewsHeaderProps {
|
|
2962
|
+
title?: string;
|
|
2963
|
+
rating: number;
|
|
2964
|
+
reviews: number;
|
|
2965
|
+
reviewsText: string;
|
|
2966
|
+
reviewsSummary: string[];
|
|
2967
|
+
onClickReview: (reveiw: string) => void;
|
|
2968
|
+
}
|
|
2969
|
+
declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
|
|
2970
|
+
|
|
2971
|
+
interface ReviewProps {
|
|
2972
|
+
reviewId: string;
|
|
2973
|
+
reviewerName: string;
|
|
2974
|
+
date: Date;
|
|
2975
|
+
rating: number;
|
|
2976
|
+
stars: {
|
|
2977
|
+
color: string;
|
|
2978
|
+
size: ComponentSize.Medium | ComponentSize.Small;
|
|
2979
|
+
};
|
|
2980
|
+
title: string;
|
|
2981
|
+
description: string;
|
|
2982
|
+
image?: {
|
|
2983
|
+
src: string;
|
|
2984
|
+
alt: string;
|
|
2985
|
+
};
|
|
2986
|
+
modalId: string;
|
|
2987
|
+
maxFullScreen?: boolean;
|
|
2988
|
+
verified?: boolean;
|
|
2989
|
+
productImage?: string;
|
|
2990
|
+
productTitle?: string;
|
|
2991
|
+
productLink?: string;
|
|
2992
|
+
helpfulCount?: number;
|
|
2993
|
+
helpfulAction?: (id: string) => void;
|
|
2994
|
+
notHelpfulCount?: number;
|
|
2995
|
+
notHelpfulAction?: (id: string) => void;
|
|
2996
|
+
}
|
|
2997
|
+
declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps) => JSX.Element;
|
|
2998
|
+
|
|
2999
|
+
interface ProductGalleryMobileProps {
|
|
3000
|
+
images: ImageType[];
|
|
3001
|
+
selectedValue?: ImageType;
|
|
3002
|
+
topTag?: JSX.Element;
|
|
3003
|
+
bottomTag?: JSX.Element;
|
|
3004
|
+
productImageDataTestId?: string;
|
|
3005
|
+
slideDotsDataTestId?: string;
|
|
3006
|
+
borderRadiusVariant?: boolean;
|
|
3007
|
+
}
|
|
3008
|
+
declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
|
|
3009
|
+
|
|
3010
|
+
interface AbsorbencyLevelProps {
|
|
3011
|
+
dropTotal: number;
|
|
3012
|
+
drops: number;
|
|
3013
|
+
absorbencyTitle: string;
|
|
3014
|
+
absorbencyDescription: string;
|
|
3015
|
+
}
|
|
3016
|
+
declare const AbsorbencyLevel: ({ dropTotal, drops, absorbencyTitle, absorbencyDescription, }: AbsorbencyLevelProps) => JSX.Element;
|
|
3017
|
+
|
|
3018
|
+
interface HurryUpProps {
|
|
3019
|
+
hurryUpText: string;
|
|
3020
|
+
backgroundColor?: string;
|
|
3021
|
+
showTimer?: boolean;
|
|
3022
|
+
iconSize?: number;
|
|
3023
|
+
textPosition?: 'left' | 'right' | 'center';
|
|
3024
|
+
}
|
|
3025
|
+
declare const HurryUp: ({ hurryUpText, backgroundColor, iconSize, textPosition, showTimer, }: HurryUpProps) => JSX.Element;
|
|
3026
|
+
|
|
3027
|
+
interface BuyNowPayLaterProps {
|
|
3028
|
+
displayBNPL: boolean;
|
|
3029
|
+
installments: number;
|
|
3030
|
+
installmentPrice: string;
|
|
3031
|
+
iconFolder?: string;
|
|
3032
|
+
iconName: string;
|
|
3033
|
+
showLogo?: boolean;
|
|
3034
|
+
iconColor?: string;
|
|
3035
|
+
fontSize?: string;
|
|
3036
|
+
}
|
|
3037
|
+
declare const BuyNowPayLater: ({ displayBNPL, installments, installmentPrice, iconFolder, iconName, showLogo, iconColor, fontSize, }: BuyNowPayLaterProps) => JSX.Element | null;
|
|
3038
|
+
|
|
3039
|
+
interface StrengthBarProps {
|
|
3040
|
+
barsFilled?: number;
|
|
3041
|
+
supportText?: string;
|
|
3042
|
+
}
|
|
3043
|
+
declare const StrengthBars: ({ barsFilled, supportText }: StrengthBarProps) => JSX.Element;
|
|
3044
|
+
|
|
3045
|
+
interface DropdownProps {
|
|
3046
|
+
options: SelectedOption[];
|
|
3047
|
+
defaultLabel: string;
|
|
3048
|
+
onOptionSelect: (option: string) => void;
|
|
3049
|
+
}
|
|
3050
|
+
interface SelectedOption {
|
|
3051
|
+
size: string;
|
|
3052
|
+
detail: string;
|
|
3053
|
+
}
|
|
3054
|
+
declare const SizeDropdown: React.FC<DropdownProps>;
|
|
3055
|
+
|
|
3056
|
+
interface IAutoshipProps {
|
|
3057
|
+
singlePurchaseLabel: string;
|
|
3058
|
+
subscriptionLabel: string;
|
|
3059
|
+
tooltipContent?: {
|
|
3060
|
+
text: string;
|
|
3061
|
+
color?: string;
|
|
3062
|
+
};
|
|
3063
|
+
tooltipHeader?: {
|
|
3064
|
+
title: string;
|
|
3065
|
+
};
|
|
3066
|
+
pricing?: {
|
|
3067
|
+
originalPrice: number;
|
|
3068
|
+
discountedPrice: number;
|
|
3069
|
+
discountPercentage: number;
|
|
3070
|
+
};
|
|
3071
|
+
frequencyValues?: Array<number>;
|
|
3072
|
+
frequencyUnit?: string;
|
|
3073
|
+
autoshipBenefits: string[];
|
|
3074
|
+
onChange: (values: {
|
|
3075
|
+
subscriptionPeriod: number;
|
|
3076
|
+
autoship: boolean;
|
|
3077
|
+
originalPrice: number;
|
|
3078
|
+
discountedPrice: number;
|
|
3079
|
+
}) => void;
|
|
3080
|
+
}
|
|
3081
|
+
declare const Autoship: ({ tooltipContent, tooltipHeader, pricing, frequencyValues, frequencyUnit, autoshipBenefits, onChange, singlePurchaseLabel, subscriptionLabel, }: IAutoshipProps) => JSX.Element;
|
|
1677
3082
|
|
|
1678
3083
|
declare global {
|
|
1679
3084
|
interface Events {
|
|
@@ -1714,4 +3119,8 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1714
3119
|
currency?: string | undefined;
|
|
1715
3120
|
}) => string;
|
|
1716
3121
|
|
|
1717
|
-
|
|
3122
|
+
declare const getSrcSet: (imgLink: string, ...breakpoints: number[]) => string;
|
|
3123
|
+
|
|
3124
|
+
declare const mediaQueries: facepaint.DynamicStyleFunction;
|
|
3125
|
+
|
|
3126
|
+
export { AbsorbencyLevel, Accordion, AccordionOptions, AmazonButton, AssetsProvider, Autoship, BeforeAfterCard, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, BuyNowPayLater, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, ClubOfferTag, ClubRadioGroupInput, Collection, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownDialog, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitPredictor, HurryUp, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageCardWithDescription, ImageType, Input, InputValidationType, Modal, MotivatorProgressBar, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, PackSelectorV2, Pagination, PaginatorBlog, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, PriceLabelV2, ProductGallery, ProductGalleryMobile, ProductGalleryMobileV2, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, RadioPrimary, Rating, Review$1 as Review, Review as ReviewDetail, ReviewsHeader, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, ShortBanner, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeChartTable, SizeDropdown, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, StrengthBars, Tab, Tabs, Text, TextButton, TextWithImage, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, TrackingProgress, TrackingProgressV2, WithTestId, decimalFormat, formatPrice, getSrcSet, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, mediaQueries, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|