@trafilea/afrodita-components 5.0.0-beta.29 → 5.0.0-beta.291
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 +1397 -84
- package/build/index.esm.css +4 -1
- package/build/index.esm.js +7236 -3273
- package/build/index.esm.js.map +1 -1
- package/build/index.js +7269 -3275
- 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 +295 -1
- package/build/theme/shapermint.theme.js +323 -4
- package/build/theme/thespadr.theme.d.ts +710 -0
- package/build/theme/thespadr.theme.js +1131 -0
- package/build/theme/truekind.theme.d.ts +295 -1
- package/build/theme/truekind.theme.js +331 -11
- package/package.json +4 -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,
|
|
@@ -57,11 +61,7 @@ declare type SizeOption = {
|
|
|
57
61
|
label: string;
|
|
58
62
|
description: string;
|
|
59
63
|
disabled?: boolean;
|
|
60
|
-
|
|
61
|
-
declare type Color = {
|
|
62
|
-
primaryColor: string;
|
|
63
|
-
secondaryColor?: string;
|
|
64
|
-
tertiaryColor?: string;
|
|
64
|
+
noStock?: boolean;
|
|
65
65
|
};
|
|
66
66
|
declare type Pattern = {
|
|
67
67
|
url: string;
|
|
@@ -69,19 +69,21 @@ declare type Pattern = {
|
|
|
69
69
|
declare type ColorPickerOption = {
|
|
70
70
|
label: string;
|
|
71
71
|
description: string;
|
|
72
|
+
noStock?: boolean;
|
|
72
73
|
meta: {
|
|
73
|
-
color?:
|
|
74
|
+
color?: string[];
|
|
74
75
|
pattern?: Pattern;
|
|
75
76
|
};
|
|
76
77
|
};
|
|
77
78
|
declare type RadioGroupOption = {
|
|
78
79
|
value: string;
|
|
79
|
-
label: string;
|
|
80
|
+
label: string | ReactFragment;
|
|
80
81
|
};
|
|
81
82
|
declare type ImageType = {
|
|
82
83
|
key: string;
|
|
83
84
|
imageUrl: string;
|
|
84
85
|
alt: string;
|
|
86
|
+
thumbnailUrl?: string;
|
|
85
87
|
};
|
|
86
88
|
interface IconWithOpacityProps extends IconProps {
|
|
87
89
|
opacity?: number;
|
|
@@ -101,10 +103,20 @@ declare type Filter = {
|
|
|
101
103
|
title: string;
|
|
102
104
|
columns: number;
|
|
103
105
|
isOpenByDefault?: boolean;
|
|
106
|
+
isLinkOption?: boolean;
|
|
107
|
+
link?: string;
|
|
108
|
+
color?: string;
|
|
109
|
+
isMultiselect: boolean;
|
|
110
|
+
type?: string;
|
|
104
111
|
items: Array<{
|
|
105
112
|
label: string;
|
|
106
113
|
checked?: boolean;
|
|
114
|
+
isLinkItem?: boolean;
|
|
115
|
+
link?: string;
|
|
116
|
+
blockUncheck?: boolean;
|
|
117
|
+
value?: string;
|
|
107
118
|
}>;
|
|
119
|
+
showInMobile: boolean;
|
|
108
120
|
};
|
|
109
121
|
declare type FilterChange = {
|
|
110
122
|
sectionIndex: number;
|
|
@@ -116,18 +128,84 @@ interface SearchBarOptionItem {
|
|
|
116
128
|
price: string;
|
|
117
129
|
title: string;
|
|
118
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;
|
|
119
141
|
}
|
|
120
142
|
|
|
121
143
|
declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
122
144
|
|
|
123
145
|
declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
124
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
|
+
|
|
125
175
|
declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
|
|
126
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;
|
|
127
191
|
declare namespace Custom {
|
|
128
192
|
export {
|
|
129
193
|
Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
|
|
130
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,
|
|
131
209
|
};
|
|
132
210
|
}
|
|
133
211
|
|
|
@@ -148,6 +226,73 @@ declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
148
226
|
|
|
149
227
|
declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
150
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
|
+
|
|
151
296
|
declare const Actions_Check: typeof Check;
|
|
152
297
|
declare const Actions_ClearLight: typeof ClearLight;
|
|
153
298
|
declare const Actions_LightExclamation: typeof LightExclamation;
|
|
@@ -156,6 +301,38 @@ declare const Actions_LightCheck: typeof LightCheck;
|
|
|
156
301
|
declare const Actions_Question: typeof Question;
|
|
157
302
|
declare const Actions_Close: typeof Close;
|
|
158
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;
|
|
159
336
|
declare namespace Actions {
|
|
160
337
|
export {
|
|
161
338
|
Actions_Check as Check,
|
|
@@ -166,6 +343,39 @@ declare namespace Actions {
|
|
|
166
343
|
Actions_Question as Question,
|
|
167
344
|
Actions_Close as Close,
|
|
168
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,
|
|
169
379
|
};
|
|
170
380
|
}
|
|
171
381
|
|
|
@@ -174,23 +384,98 @@ declare const FitPredictor$1: ({ height, width, fill }: IconProps) => JSX.Elemen
|
|
|
174
384
|
interface LoadingProps extends IconProps {
|
|
175
385
|
backgroundColor: string;
|
|
176
386
|
}
|
|
177
|
-
declare const Loading: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
387
|
+
declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
178
388
|
|
|
179
389
|
declare const Shapermint: ({ height, width }: IconProps) => JSX.Element;
|
|
180
390
|
|
|
181
391
|
declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
|
|
182
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 BodConLabel: ({ height, width }: IconProps) => JSX.Element;
|
|
428
|
+
|
|
429
|
+
declare const BodConMobileLabel: ({ height, width }: IconProps) => JSX.Element;
|
|
430
|
+
|
|
183
431
|
type Other_LoadingProps = LoadingProps;
|
|
184
|
-
declare const Other_Loading: typeof Loading;
|
|
185
432
|
declare const Other_Shapermint: typeof Shapermint;
|
|
186
433
|
declare const Other_McAfee: typeof McAfee;
|
|
434
|
+
declare const Other_GetDiscount: typeof GetDiscount;
|
|
435
|
+
declare const Other_ShapermintLogo: typeof ShapermintLogo;
|
|
436
|
+
declare const Other_Chat: typeof Chat;
|
|
437
|
+
declare const Other_Email: typeof Email;
|
|
438
|
+
declare const Other_CallUs: typeof CallUs;
|
|
439
|
+
declare const Other_SignForm: typeof SignForm;
|
|
440
|
+
declare const Other_QrCode: typeof QrCode;
|
|
441
|
+
declare const Other_FreeExchange: typeof FreeExchange;
|
|
442
|
+
declare const Other_ShopNow: typeof ShopNow;
|
|
443
|
+
declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
|
|
444
|
+
declare const Other_Play: typeof Play;
|
|
445
|
+
declare const Other_FitGuarantee: typeof FitGuarantee;
|
|
446
|
+
declare const Other_QuestionWithCircle: typeof QuestionWithCircle;
|
|
447
|
+
declare const Other_ExpressShipping: typeof ExpressShipping;
|
|
448
|
+
declare const Other_ShapermintClubLabel: typeof ShapermintClubLabel;
|
|
449
|
+
declare const Other_ShapermintClubMobileLabel: typeof ShapermintClubMobileLabel;
|
|
450
|
+
declare const Other_ShapermintClubIcon: typeof ShapermintClubIcon;
|
|
451
|
+
declare const Other_BodConLabel: typeof BodConLabel;
|
|
452
|
+
declare const Other_BodConMobileLabel: typeof BodConMobileLabel;
|
|
187
453
|
declare namespace Other {
|
|
188
454
|
export {
|
|
189
455
|
FitPredictor$1 as FitPredictor,
|
|
190
456
|
Other_LoadingProps as LoadingProps,
|
|
191
|
-
|
|
457
|
+
Loading$1 as Loading,
|
|
192
458
|
Other_Shapermint as Shapermint,
|
|
193
459
|
Other_McAfee as McAfee,
|
|
460
|
+
Other_GetDiscount as GetDiscount,
|
|
461
|
+
Other_ShapermintLogo as ShapermintLogo,
|
|
462
|
+
Other_Chat as Chat,
|
|
463
|
+
Other_Email as Email,
|
|
464
|
+
Other_CallUs as CallUs,
|
|
465
|
+
Other_SignForm as SignForm,
|
|
466
|
+
Other_QrCode as QrCode,
|
|
467
|
+
Other_FreeExchange as FreeExchange,
|
|
468
|
+
Other_ShopNow as ShopNow,
|
|
469
|
+
Other_HasselFreeReturns as HasselFreeReturns,
|
|
470
|
+
Other_Play as Play,
|
|
471
|
+
Other_FitGuarantee as FitGuarantee,
|
|
472
|
+
Other_QuestionWithCircle as QuestionWithCircle,
|
|
473
|
+
Other_ExpressShipping as ExpressShipping,
|
|
474
|
+
Other_ShapermintClubLabel as ShapermintClubLabel,
|
|
475
|
+
Other_ShapermintClubMobileLabel as ShapermintClubMobileLabel,
|
|
476
|
+
Other_ShapermintClubIcon as ShapermintClubIcon,
|
|
477
|
+
Other_BodConLabel as BodConLabel,
|
|
478
|
+
Other_BodConMobileLabel as BodConMobileLabel,
|
|
194
479
|
};
|
|
195
480
|
}
|
|
196
481
|
|
|
@@ -208,6 +493,28 @@ declare const ChevronUpSolid: ({ height, width, fill }: IconProps) => JSX.Elemen
|
|
|
208
493
|
|
|
209
494
|
declare const CircleUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
210
495
|
|
|
496
|
+
declare const CircleChevronLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
497
|
+
|
|
498
|
+
declare const CircleChevronRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
499
|
+
|
|
500
|
+
declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
501
|
+
|
|
502
|
+
declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
503
|
+
|
|
504
|
+
declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
505
|
+
|
|
506
|
+
declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
507
|
+
|
|
508
|
+
declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
509
|
+
|
|
510
|
+
declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
511
|
+
|
|
512
|
+
declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
513
|
+
|
|
514
|
+
declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
515
|
+
|
|
516
|
+
declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
517
|
+
|
|
211
518
|
declare const Arrows_ChevronDown: typeof ChevronDown;
|
|
212
519
|
declare const Arrows_ChevronLeft: typeof ChevronLeft;
|
|
213
520
|
declare const Arrows_ChevronRight: typeof ChevronRight;
|
|
@@ -215,6 +522,17 @@ declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
|
|
|
215
522
|
declare const Arrows_ChevronUp: typeof ChevronUp;
|
|
216
523
|
declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
|
|
217
524
|
declare const Arrows_CircleUp: typeof CircleUp;
|
|
525
|
+
declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
|
|
526
|
+
declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
|
|
527
|
+
declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
|
|
528
|
+
declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
|
|
529
|
+
declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
|
|
530
|
+
declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
|
|
531
|
+
declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
|
|
532
|
+
declare const Arrows_CircleLineUp: typeof CircleLineUp;
|
|
533
|
+
declare const Arrows_CircleLineDown: typeof CircleLineDown;
|
|
534
|
+
declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
|
|
535
|
+
declare const Arrows_CircleLineRight: typeof CircleLineRight;
|
|
218
536
|
declare namespace Arrows {
|
|
219
537
|
export {
|
|
220
538
|
Arrows_ChevronDown as ChevronDown,
|
|
@@ -224,6 +542,17 @@ declare namespace Arrows {
|
|
|
224
542
|
Arrows_ChevronUp as ChevronUp,
|
|
225
543
|
Arrows_ChevronUpSolid as ChevronUpSolid,
|
|
226
544
|
Arrows_CircleUp as CircleUp,
|
|
545
|
+
Arrows_CircleChevronLeft as CircleChevronLeft,
|
|
546
|
+
Arrows_CircleChevronRight as CircleChevronRight,
|
|
547
|
+
Arrows_CircleChevronDown as CircleChevronDown,
|
|
548
|
+
Arrows_CircleChevronUp as CircleChevronUp,
|
|
549
|
+
Arrows_ChevronDownVariant as ChevronDownVariant,
|
|
550
|
+
Arrows_ChevronUpVariant as ChevronUpVariant,
|
|
551
|
+
Arrows_ChevronLeftVariant as ChevronLeftVariant,
|
|
552
|
+
Arrows_CircleLineUp as CircleLineUp,
|
|
553
|
+
Arrows_CircleLineDown as CircleLineDown,
|
|
554
|
+
Arrows_CircleLineLeft as CircleLineLeft,
|
|
555
|
+
Arrows_CircleLineRight as CircleLineRight,
|
|
227
556
|
};
|
|
228
557
|
}
|
|
229
558
|
|
|
@@ -247,6 +576,34 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
|
|
|
247
576
|
|
|
248
577
|
declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
249
578
|
|
|
579
|
+
declare const LightBulb$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
580
|
+
|
|
581
|
+
declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
582
|
+
|
|
583
|
+
declare const CircleNumber: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
584
|
+
|
|
585
|
+
declare const SizeEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
586
|
+
|
|
587
|
+
declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
588
|
+
|
|
589
|
+
declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
590
|
+
|
|
591
|
+
declare const Drop: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
592
|
+
|
|
593
|
+
declare const DropEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
594
|
+
|
|
595
|
+
declare const Stars: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
596
|
+
|
|
597
|
+
declare const Moon: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
598
|
+
|
|
599
|
+
declare const Hours: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
600
|
+
|
|
601
|
+
declare const NewClock: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
602
|
+
|
|
603
|
+
declare const KlarnaLogo: ({ height, width }: IconProps) => JSX.Element;
|
|
604
|
+
|
|
605
|
+
declare const TrustBadge: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
606
|
+
|
|
250
607
|
declare const PDP_Clock: typeof Clock;
|
|
251
608
|
declare const PDP_FlagUSA: typeof FlagUSA;
|
|
252
609
|
declare const PDP_Minus: typeof Minus;
|
|
@@ -257,6 +614,19 @@ declare const PDP_StarEmpty: typeof StarEmpty;
|
|
|
257
614
|
declare const PDP_StarHalf: typeof StarHalf;
|
|
258
615
|
declare const PDP_Stopwatch: typeof Stopwatch;
|
|
259
616
|
declare const PDP_Shipping: typeof Shipping;
|
|
617
|
+
declare const PDP_ErrorCross: typeof ErrorCross;
|
|
618
|
+
declare const PDP_CircleNumber: typeof CircleNumber;
|
|
619
|
+
declare const PDP_SizeEmpty: typeof SizeEmpty;
|
|
620
|
+
declare const PDP_PlayMini: typeof PlayMini;
|
|
621
|
+
declare const PDP_ShippingEmpty: typeof ShippingEmpty;
|
|
622
|
+
declare const PDP_Drop: typeof Drop;
|
|
623
|
+
declare const PDP_DropEmpty: typeof DropEmpty;
|
|
624
|
+
declare const PDP_Stars: typeof Stars;
|
|
625
|
+
declare const PDP_Moon: typeof Moon;
|
|
626
|
+
declare const PDP_Hours: typeof Hours;
|
|
627
|
+
declare const PDP_NewClock: typeof NewClock;
|
|
628
|
+
declare const PDP_KlarnaLogo: typeof KlarnaLogo;
|
|
629
|
+
declare const PDP_TrustBadge: typeof TrustBadge;
|
|
260
630
|
declare namespace PDP {
|
|
261
631
|
export {
|
|
262
632
|
PDP_Clock as Clock,
|
|
@@ -269,6 +639,20 @@ declare namespace PDP {
|
|
|
269
639
|
PDP_StarHalf as StarHalf,
|
|
270
640
|
PDP_Stopwatch as Stopwatch,
|
|
271
641
|
PDP_Shipping as Shipping,
|
|
642
|
+
LightBulb$1 as LightBulb,
|
|
643
|
+
PDP_ErrorCross as ErrorCross,
|
|
644
|
+
PDP_CircleNumber as CircleNumber,
|
|
645
|
+
PDP_SizeEmpty as SizeEmpty,
|
|
646
|
+
PDP_PlayMini as PlayMini,
|
|
647
|
+
PDP_ShippingEmpty as ShippingEmpty,
|
|
648
|
+
PDP_Drop as Drop,
|
|
649
|
+
PDP_DropEmpty as DropEmpty,
|
|
650
|
+
PDP_Stars as Stars,
|
|
651
|
+
PDP_Moon as Moon,
|
|
652
|
+
PDP_Hours as Hours,
|
|
653
|
+
PDP_NewClock as NewClock,
|
|
654
|
+
PDP_KlarnaLogo as KlarnaLogo,
|
|
655
|
+
PDP_TrustBadge as TrustBadge,
|
|
272
656
|
};
|
|
273
657
|
}
|
|
274
658
|
|
|
@@ -286,6 +670,8 @@ declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
286
670
|
|
|
287
671
|
declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
288
672
|
|
|
673
|
+
declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
674
|
+
|
|
289
675
|
declare const SocialMedia_Facebook: typeof Facebook;
|
|
290
676
|
declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
|
|
291
677
|
declare const SocialMedia_Instagram: typeof Instagram;
|
|
@@ -293,6 +679,7 @@ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
|
|
|
293
679
|
declare const SocialMedia_Pinterest: typeof Pinterest;
|
|
294
680
|
declare const SocialMedia_Twitter: typeof Twitter;
|
|
295
681
|
declare const SocialMedia_Youtube: typeof Youtube;
|
|
682
|
+
declare const SocialMedia_Interaction: typeof Interaction;
|
|
296
683
|
declare namespace SocialMedia {
|
|
297
684
|
export {
|
|
298
685
|
SocialMedia_Facebook as Facebook,
|
|
@@ -302,6 +689,7 @@ declare namespace SocialMedia {
|
|
|
302
689
|
SocialMedia_Pinterest as Pinterest,
|
|
303
690
|
SocialMedia_Twitter as Twitter,
|
|
304
691
|
SocialMedia_Youtube as Youtube,
|
|
692
|
+
SocialMedia_Interaction as Interaction,
|
|
305
693
|
};
|
|
306
694
|
}
|
|
307
695
|
|
|
@@ -317,12 +705,64 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
317
705
|
|
|
318
706
|
declare const Hamburger: FC<IconProps>;
|
|
319
707
|
|
|
708
|
+
declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
709
|
+
|
|
710
|
+
declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
711
|
+
|
|
712
|
+
declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
713
|
+
|
|
714
|
+
declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
715
|
+
|
|
716
|
+
declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
717
|
+
|
|
718
|
+
declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
719
|
+
|
|
720
|
+
declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
721
|
+
|
|
722
|
+
declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
723
|
+
|
|
724
|
+
declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
725
|
+
|
|
726
|
+
declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
727
|
+
|
|
728
|
+
declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
729
|
+
|
|
730
|
+
declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
731
|
+
|
|
732
|
+
declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
733
|
+
|
|
734
|
+
declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
735
|
+
|
|
736
|
+
declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
737
|
+
|
|
738
|
+
declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
739
|
+
|
|
740
|
+
declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
741
|
+
|
|
742
|
+
declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
743
|
+
|
|
320
744
|
declare const Navigation_Search: typeof Search;
|
|
321
745
|
declare const Navigation_User: typeof User;
|
|
322
746
|
declare const Navigation_ShoppingBag: typeof ShoppingBag;
|
|
323
747
|
declare const Navigation_ShoppingCart: typeof ShoppingCart;
|
|
324
748
|
declare const Navigation_MapMarker: typeof MapMarker;
|
|
325
749
|
declare const Navigation_Hamburger: typeof Hamburger;
|
|
750
|
+
declare const Navigation_AddressInformation: typeof AddressInformation;
|
|
751
|
+
declare const Navigation_ClubMembership: typeof ClubMembership;
|
|
752
|
+
declare const Navigation_Benefits: typeof Benefits;
|
|
753
|
+
declare const Navigation_Home: typeof Home;
|
|
754
|
+
declare const Navigation_HomeSolid: typeof HomeSolid;
|
|
755
|
+
declare const Navigation_ShoppingBagV2: typeof ShoppingBagV2;
|
|
756
|
+
declare const Navigation_UserSolid: typeof UserSolid;
|
|
757
|
+
declare const Navigation_SlideDotSolid: typeof SlideDotSolid;
|
|
758
|
+
declare const Navigation_Ellipsis: typeof Ellipsis;
|
|
759
|
+
declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
|
|
760
|
+
declare const Navigation_Lock: typeof Lock;
|
|
761
|
+
declare const Navigation_LockSolid: typeof LockSolid;
|
|
762
|
+
declare const Navigation_Loading: typeof Loading;
|
|
763
|
+
declare const Navigation_MapSolid: typeof MapSolid;
|
|
764
|
+
declare const Navigation_UserV2: typeof UserV2;
|
|
765
|
+
declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
|
|
326
766
|
declare namespace Navigation {
|
|
327
767
|
export {
|
|
328
768
|
Navigation_Search as Search,
|
|
@@ -331,6 +771,24 @@ declare namespace Navigation {
|
|
|
331
771
|
Navigation_ShoppingCart as ShoppingCart,
|
|
332
772
|
Navigation_MapMarker as MapMarker,
|
|
333
773
|
Navigation_Hamburger as Hamburger,
|
|
774
|
+
Navigation_AddressInformation as AddressInformation,
|
|
775
|
+
Navigation_ClubMembership as ClubMembership,
|
|
776
|
+
Navigation_Benefits as Benefits,
|
|
777
|
+
Navigation_Home as Home,
|
|
778
|
+
Navigation_HomeSolid as HomeSolid,
|
|
779
|
+
Navigation_ShoppingBagV2 as ShoppingBagV2,
|
|
780
|
+
Navigation_UserSolid as UserSolid,
|
|
781
|
+
SlideDot$1 as SlideDot,
|
|
782
|
+
Navigation_SlideDotSolid as SlideDotSolid,
|
|
783
|
+
Navigation_Ellipsis as Ellipsis,
|
|
784
|
+
Navigation_EllipsisHorizontal as EllipsisHorizontal,
|
|
785
|
+
Filters$1 as Filters,
|
|
786
|
+
Navigation_Lock as Lock,
|
|
787
|
+
Navigation_LockSolid as LockSolid,
|
|
788
|
+
Navigation_Loading as Loading,
|
|
789
|
+
Navigation_MapSolid as MapSolid,
|
|
790
|
+
Navigation_UserV2 as UserV2,
|
|
791
|
+
Navigation_ShoppingCartV2 as ShoppingCartV2,
|
|
334
792
|
};
|
|
335
793
|
}
|
|
336
794
|
|
|
@@ -351,18 +809,61 @@ interface IconWrapperProps {
|
|
|
351
809
|
fill?: string;
|
|
352
810
|
}
|
|
353
811
|
|
|
354
|
-
declare const Mail: ({ height, width }: IconWrapperProps) => JSX.Element;
|
|
812
|
+
declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
|
|
813
|
+
|
|
814
|
+
declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
815
|
+
|
|
816
|
+
declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
817
|
+
|
|
818
|
+
declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
819
|
+
|
|
820
|
+
declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
821
|
+
|
|
822
|
+
declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
823
|
+
|
|
824
|
+
declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
825
|
+
|
|
826
|
+
declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
827
|
+
|
|
828
|
+
declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
829
|
+
|
|
830
|
+
declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
831
|
+
|
|
832
|
+
declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
833
|
+
|
|
834
|
+
declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
355
835
|
|
|
356
836
|
declare const Messaging_QuestionCircle: typeof QuestionCircle;
|
|
357
837
|
declare const Messaging_Messenger: typeof Messenger;
|
|
358
838
|
declare const Messaging_Comment: typeof Comment;
|
|
359
839
|
declare const Messaging_Mail: typeof Mail;
|
|
840
|
+
declare const Messaging_QuoteLeft: typeof QuoteLeft;
|
|
841
|
+
declare const Messaging_QuoteRight: typeof QuoteRight;
|
|
842
|
+
declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
|
|
843
|
+
declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
|
|
844
|
+
declare const Messaging_Light: typeof Light;
|
|
845
|
+
declare const Messaging_LightBulb: typeof LightBulb;
|
|
846
|
+
declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
|
|
847
|
+
declare const Messaging_CommentDots: typeof CommentDots;
|
|
848
|
+
declare const Messaging_CommentLight: typeof CommentLight;
|
|
849
|
+
declare const Messaging_CommentMoney: typeof CommentMoney;
|
|
360
850
|
declare namespace Messaging {
|
|
361
851
|
export {
|
|
362
852
|
Messaging_QuestionCircle as QuestionCircle,
|
|
363
853
|
Messaging_Messenger as Messenger,
|
|
364
854
|
Messaging_Comment as Comment,
|
|
365
855
|
Messaging_Mail as Mail,
|
|
856
|
+
Community$1 as Community,
|
|
857
|
+
Messaging_QuoteLeft as QuoteLeft,
|
|
858
|
+
Messaging_QuoteRight as QuoteRight,
|
|
859
|
+
Messaging_QuoteSolidLeft as QuoteSolidLeft,
|
|
860
|
+
Messaging_QuoteSolidRight as QuoteSolidRight,
|
|
861
|
+
Messaging_Light as Light,
|
|
862
|
+
Messaging_LightBulb as LightBulb,
|
|
863
|
+
Messaging_LightBulbSolid as LightBulbSolid,
|
|
864
|
+
Messaging_CommentDots as CommentDots,
|
|
865
|
+
Messaging_CommentLight as CommentLight,
|
|
866
|
+
Messaging_CommentMoney as CommentMoney,
|
|
366
867
|
};
|
|
367
868
|
}
|
|
368
869
|
|
|
@@ -423,10 +924,95 @@ declare namespace SlideDots {
|
|
|
423
924
|
|
|
424
925
|
declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
|
|
425
926
|
|
|
927
|
+
declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
|
|
928
|
+
|
|
929
|
+
declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
930
|
+
|
|
931
|
+
declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
|
|
932
|
+
|
|
933
|
+
declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
|
|
934
|
+
|
|
935
|
+
declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
936
|
+
|
|
937
|
+
declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
|
|
938
|
+
|
|
426
939
|
declare const Emoji_Thinking: typeof Thinking;
|
|
940
|
+
declare const Emoji_SmilingV2: typeof SmilingV2;
|
|
941
|
+
declare const Emoji_Grinning: typeof Grinning;
|
|
942
|
+
declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
|
|
943
|
+
declare const Emoji_BlowingKiss: typeof BlowingKiss;
|
|
944
|
+
declare const Emoji_Frowning: typeof Frowning;
|
|
945
|
+
declare const Emoji_Relieved: typeof Relieved;
|
|
427
946
|
declare namespace Emoji {
|
|
428
947
|
export {
|
|
429
948
|
Emoji_Thinking as Thinking,
|
|
949
|
+
Emoji_SmilingV2 as SmilingV2,
|
|
950
|
+
Emoji_Grinning as Grinning,
|
|
951
|
+
Emoji_GrinningWithSweat as GrinningWithSweat,
|
|
952
|
+
Emoji_BlowingKiss as BlowingKiss,
|
|
953
|
+
Emoji_Frowning as Frowning,
|
|
954
|
+
Emoji_Relieved as Relieved,
|
|
955
|
+
};
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
959
|
+
|
|
960
|
+
declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
961
|
+
|
|
962
|
+
declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
963
|
+
|
|
964
|
+
declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
965
|
+
|
|
966
|
+
declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
967
|
+
|
|
968
|
+
declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
969
|
+
|
|
970
|
+
declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
971
|
+
|
|
972
|
+
declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
973
|
+
|
|
974
|
+
declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
975
|
+
|
|
976
|
+
declare const PriorityShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
977
|
+
|
|
978
|
+
declare const Guard: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
979
|
+
|
|
980
|
+
declare const BirthdayGifts: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
981
|
+
|
|
982
|
+
declare const SaleTag: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
983
|
+
|
|
984
|
+
declare const FreeReturns: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
985
|
+
|
|
986
|
+
declare const MyAccount_FreeShipping: typeof FreeShipping;
|
|
987
|
+
declare const MyAccount_PersonalStylist: typeof PersonalStylist;
|
|
988
|
+
declare const MyAccount_Community: typeof Community;
|
|
989
|
+
declare const MyAccount_VIP: typeof VIP;
|
|
990
|
+
declare const MyAccount_DealsOffers: typeof DealsOffers;
|
|
991
|
+
declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
|
|
992
|
+
declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
|
|
993
|
+
declare const MyAccount_Profile: typeof Profile;
|
|
994
|
+
declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
|
|
995
|
+
declare const MyAccount_PriorityShipping: typeof PriorityShipping;
|
|
996
|
+
declare const MyAccount_Guard: typeof Guard;
|
|
997
|
+
declare const MyAccount_BirthdayGifts: typeof BirthdayGifts;
|
|
998
|
+
declare const MyAccount_SaleTag: typeof SaleTag;
|
|
999
|
+
declare const MyAccount_FreeReturns: typeof FreeReturns;
|
|
1000
|
+
declare namespace MyAccount {
|
|
1001
|
+
export {
|
|
1002
|
+
MyAccount_FreeShipping as FreeShipping,
|
|
1003
|
+
MyAccount_PersonalStylist as PersonalStylist,
|
|
1004
|
+
MyAccount_Community as Community,
|
|
1005
|
+
MyAccount_VIP as VIP,
|
|
1006
|
+
MyAccount_DealsOffers as DealsOffers,
|
|
1007
|
+
MyAccount_StyleFashionContent as StyleFashionContent,
|
|
1008
|
+
MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
|
|
1009
|
+
MyAccount_Profile as Profile,
|
|
1010
|
+
MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
|
|
1011
|
+
MyAccount_PriorityShipping as PriorityShipping,
|
|
1012
|
+
MyAccount_Guard as Guard,
|
|
1013
|
+
MyAccount_BirthdayGifts as BirthdayGifts,
|
|
1014
|
+
MyAccount_SaleTag as SaleTag,
|
|
1015
|
+
MyAccount_FreeReturns as FreeReturns,
|
|
430
1016
|
};
|
|
431
1017
|
}
|
|
432
1018
|
|
|
@@ -444,6 +1030,7 @@ declare const Icon: {
|
|
|
444
1030
|
Payment: typeof Payment;
|
|
445
1031
|
SlideDots: typeof SlideDots;
|
|
446
1032
|
Emoji: typeof Emoji;
|
|
1033
|
+
MyAccount: typeof MyAccount;
|
|
447
1034
|
};
|
|
448
1035
|
|
|
449
1036
|
interface CardBodyProps {
|
|
@@ -460,7 +1047,7 @@ interface borderProps {
|
|
|
460
1047
|
}
|
|
461
1048
|
interface CardProps {
|
|
462
1049
|
children: ReactNode;
|
|
463
|
-
backgroundColor
|
|
1050
|
+
backgroundColor?: string;
|
|
464
1051
|
widthAuto?: boolean;
|
|
465
1052
|
border?: borderProps;
|
|
466
1053
|
flex?: boolean;
|
|
@@ -488,6 +1075,8 @@ declare type CommonProps<T> = {
|
|
|
488
1075
|
initialValue?: Value<T>;
|
|
489
1076
|
placeHolder: string;
|
|
490
1077
|
testId?: string;
|
|
1078
|
+
required?: string;
|
|
1079
|
+
showRequiredPlaceholder?: boolean;
|
|
491
1080
|
};
|
|
492
1081
|
declare type ControlledProps<T> = {
|
|
493
1082
|
value: Value<T>;
|
|
@@ -498,7 +1087,22 @@ declare type UncontrolledProps<T> = {
|
|
|
498
1087
|
onChange?: OnChange<T>;
|
|
499
1088
|
} & CommonProps<T>;
|
|
500
1089
|
declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
|
|
501
|
-
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, }: SimpleDropdownProps<T>): JSX.Element;
|
|
1090
|
+
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, required, showRequiredPlaceholder, }: SimpleDropdownProps<T>): JSX.Element;
|
|
1091
|
+
|
|
1092
|
+
interface DialogPositionProps {
|
|
1093
|
+
top: string;
|
|
1094
|
+
right: string;
|
|
1095
|
+
}
|
|
1096
|
+
interface DialogDropdownProps {
|
|
1097
|
+
options: {
|
|
1098
|
+
label: string;
|
|
1099
|
+
value: string;
|
|
1100
|
+
}[];
|
|
1101
|
+
position: DialogPositionProps;
|
|
1102
|
+
style?: React.CSSProperties;
|
|
1103
|
+
className?: string;
|
|
1104
|
+
}
|
|
1105
|
+
declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
|
|
502
1106
|
|
|
503
1107
|
interface SizeSelectorProps {
|
|
504
1108
|
label: string;
|
|
@@ -529,6 +1133,7 @@ interface BaseButtonProps {
|
|
|
529
1133
|
inline?: boolean;
|
|
530
1134
|
uppercase?: boolean;
|
|
531
1135
|
testId?: string;
|
|
1136
|
+
id?: string;
|
|
532
1137
|
}
|
|
533
1138
|
|
|
534
1139
|
declare type BaseProps = Pick<BaseButtonProps, 'disabled' | 'type' | 'onClick'>;
|
|
@@ -550,8 +1155,21 @@ interface DiscountTagProps {
|
|
|
550
1155
|
borderColor?: string;
|
|
551
1156
|
textColor?: string;
|
|
552
1157
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1158
|
+
style?: React.CSSProperties;
|
|
1159
|
+
}
|
|
1160
|
+
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
|
|
1161
|
+
|
|
1162
|
+
interface ClubOfferTagProps {
|
|
1163
|
+
clubOfferText?: string;
|
|
1164
|
+
className?: string;
|
|
1165
|
+
disabled?: boolean;
|
|
1166
|
+
backgroundColor?: string;
|
|
1167
|
+
borderColor?: string;
|
|
1168
|
+
textColor?: string;
|
|
1169
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1170
|
+
style?: React.CSSProperties;
|
|
553
1171
|
}
|
|
554
|
-
declare const
|
|
1172
|
+
declare const ClubOfferTag: ({ clubOfferText, className, disabled, backgroundColor, borderColor, textColor, size, style, }: ClubOfferTagProps) => JSX.Element;
|
|
555
1173
|
|
|
556
1174
|
interface PriceLabelProps {
|
|
557
1175
|
finalPrice: string | number;
|
|
@@ -559,9 +1177,16 @@ interface PriceLabelProps {
|
|
|
559
1177
|
color?: string;
|
|
560
1178
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
561
1179
|
discount?: DiscountTagProps;
|
|
1180
|
+
clubOffer?: ClubOfferTagProps;
|
|
1181
|
+
finalPriceStyled?: boolean;
|
|
1182
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1183
|
+
originalPriceStyled?: boolean;
|
|
1184
|
+
originalPriceUnderlined?: boolean;
|
|
562
1185
|
testId?: string;
|
|
563
1186
|
}
|
|
564
|
-
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, size, }: PriceLabelProps) => JSX.Element;
|
|
1187
|
+
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
1188
|
+
|
|
1189
|
+
declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, clubOffer, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
565
1190
|
|
|
566
1191
|
interface ColorPickerProps {
|
|
567
1192
|
options: ColorPickerOption[];
|
|
@@ -583,22 +1208,29 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
|
|
|
583
1208
|
interface ProductGalleryProps {
|
|
584
1209
|
images: ImageType[];
|
|
585
1210
|
selectedValue?: ImageType;
|
|
586
|
-
|
|
587
|
-
|
|
1211
|
+
topTag?: JSX.Element;
|
|
1212
|
+
bottomTag?: JSX.Element;
|
|
588
1213
|
productImageDataTestId?: string;
|
|
589
1214
|
previewListDataTestId?: string;
|
|
590
1215
|
thumbnailPosition?: 'vertical' | 'horizontal';
|
|
1216
|
+
borderRadiusVariant?: boolean;
|
|
1217
|
+
previewImgBorderColor?: string;
|
|
1218
|
+
ctaText?: string;
|
|
1219
|
+
ctaAction?: () => void;
|
|
1220
|
+
hideCTA?: boolean;
|
|
591
1221
|
}
|
|
592
|
-
declare const ProductGallery: ({ images, selectedValue,
|
|
1222
|
+
declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, hideCTA, }: ProductGalleryProps) => JSX.Element;
|
|
593
1223
|
|
|
594
1224
|
interface RatingProps {
|
|
595
1225
|
rating: number;
|
|
596
1226
|
size?: ComponentSize;
|
|
597
|
-
reviews
|
|
598
|
-
reviewsText
|
|
1227
|
+
reviews?: number;
|
|
1228
|
+
reviewsText?: string;
|
|
599
1229
|
wrapWithParenthesis?: boolean;
|
|
1230
|
+
underline?: boolean;
|
|
1231
|
+
reviewsContainerId?: string;
|
|
600
1232
|
}
|
|
601
|
-
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
|
|
1233
|
+
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
|
|
602
1234
|
|
|
603
1235
|
interface FitPredictorProps {
|
|
604
1236
|
onClick: () => void;
|
|
@@ -610,8 +1242,23 @@ interface ProgressBarProps {
|
|
|
610
1242
|
fillColor: string;
|
|
611
1243
|
widthAuto?: boolean;
|
|
612
1244
|
percent?: number;
|
|
1245
|
+
height?: string;
|
|
1246
|
+
backgroundColor?: string;
|
|
1247
|
+
borderRadius?: string;
|
|
613
1248
|
}
|
|
614
|
-
declare const ProgressBar: ({ description, fillColor, widthAuto, percent, }: ProgressBarProps) => JSX.Element;
|
|
1249
|
+
declare const ProgressBar: ({ description, fillColor, widthAuto, percent, height, backgroundColor, borderRadius, }: ProgressBarProps) => JSX.Element;
|
|
1250
|
+
|
|
1251
|
+
interface MotivatorProgressBarProps {
|
|
1252
|
+
fillColor?: string;
|
|
1253
|
+
currentAmount?: number;
|
|
1254
|
+
backgroundColor?: string;
|
|
1255
|
+
unfilledColor?: string;
|
|
1256
|
+
borderRadius?: string;
|
|
1257
|
+
rewardUnlockedMessage: string;
|
|
1258
|
+
endingValue?: number;
|
|
1259
|
+
currencyCode?: string;
|
|
1260
|
+
}
|
|
1261
|
+
declare const MotivatorProgressBar: ({ fillColor, backgroundColor, unfilledColor, currencyCode, endingValue, currentAmount, rewardUnlockedMessage, }: MotivatorProgressBarProps) => JSX.Element;
|
|
615
1262
|
|
|
616
1263
|
interface IconButtonProps {
|
|
617
1264
|
children: React.ReactNode;
|
|
@@ -625,31 +1272,45 @@ interface TooltipProps {
|
|
|
625
1272
|
children: React.ReactNode;
|
|
626
1273
|
position: ComponentPosition;
|
|
627
1274
|
align?: 'start' | 'center' | 'end';
|
|
628
|
-
|
|
1275
|
+
content?: {
|
|
1276
|
+
text: string;
|
|
1277
|
+
color?: string;
|
|
1278
|
+
};
|
|
1279
|
+
backgroundColor?: string;
|
|
1280
|
+
maxWidth?: string;
|
|
629
1281
|
header?: {
|
|
630
1282
|
title: string;
|
|
631
|
-
|
|
1283
|
+
titleColor?: string;
|
|
1284
|
+
Icon?: IconType;
|
|
1285
|
+
iconFill?: string;
|
|
632
1286
|
};
|
|
633
1287
|
onClick?: () => void;
|
|
634
1288
|
}
|
|
635
|
-
declare const Tooltip: ({ children, position,
|
|
1289
|
+
declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
|
|
636
1290
|
|
|
637
1291
|
interface AccordionProps {
|
|
638
1292
|
defaultOpen?: boolean;
|
|
1293
|
+
forceOpenHandler?: boolean;
|
|
1294
|
+
forceOpenValue?: boolean;
|
|
1295
|
+
titleColor?: string;
|
|
639
1296
|
variant: 'simple' | 'box';
|
|
640
1297
|
header: ReactNode;
|
|
1298
|
+
headerOnOpen?: ReactNode;
|
|
641
1299
|
content: ReactNode;
|
|
642
1300
|
disabled?: boolean;
|
|
1301
|
+
innerHTML?: boolean;
|
|
643
1302
|
openIcon: IconType;
|
|
644
1303
|
closeIcon: IconType;
|
|
1304
|
+
onClick?: (index: number) => void;
|
|
645
1305
|
}
|
|
646
|
-
declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
|
|
1306
|
+
declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
|
|
647
1307
|
|
|
648
1308
|
declare const ThemeProvider: FC<{
|
|
649
1309
|
theme: Theme;
|
|
650
1310
|
children: ReactNode;
|
|
651
1311
|
}>;
|
|
652
1312
|
declare const useTheme: () => Theme;
|
|
1313
|
+
|
|
653
1314
|
declare const ThemeVariables: FC<{
|
|
654
1315
|
theme: Theme;
|
|
655
1316
|
Container?: ElementType;
|
|
@@ -679,6 +1340,7 @@ declare type Theme = {
|
|
|
679
1340
|
};
|
|
680
1341
|
declare type ThemeBreakpoints = {
|
|
681
1342
|
mobile: number;
|
|
1343
|
+
tablet?: number;
|
|
682
1344
|
desktop: number;
|
|
683
1345
|
};
|
|
684
1346
|
declare type ThemeBasicPallete = {
|
|
@@ -686,7 +1348,7 @@ declare type ThemeBasicPallete = {
|
|
|
686
1348
|
contrast: string;
|
|
687
1349
|
};
|
|
688
1350
|
declare type ThemeColorPallete = ThemeBasicPallete & {
|
|
689
|
-
soft
|
|
1351
|
+
soft?: ThemeBasicPallete;
|
|
690
1352
|
};
|
|
691
1353
|
declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
|
|
692
1354
|
20: ThemeColorPallete;
|
|
@@ -698,6 +1360,7 @@ declare type ThemeColors = {
|
|
|
698
1360
|
pallete: {
|
|
699
1361
|
primary: ThemeColorPrimaryPallete;
|
|
700
1362
|
secondary: ThemeColorPrimaryPallete;
|
|
1363
|
+
tertiary?: ThemeColorPrimaryPallete;
|
|
701
1364
|
} & Partial<Record<string, ThemeColorPallete>>;
|
|
702
1365
|
shades: {
|
|
703
1366
|
black: ThemeBasicPallete;
|
|
@@ -707,6 +1370,7 @@ declare type ThemeColors = {
|
|
|
707
1370
|
50: ThemeBasicPallete;
|
|
708
1371
|
100: ThemeBasicPallete;
|
|
709
1372
|
150: ThemeBasicPallete;
|
|
1373
|
+
175: ThemeBasicPallete;
|
|
710
1374
|
200: ThemeBasicPallete;
|
|
711
1375
|
250: ThemeBasicPallete;
|
|
712
1376
|
300: ThemeBasicPallete;
|
|
@@ -735,6 +1399,8 @@ declare type ThemeColors = {
|
|
|
735
1399
|
color: string;
|
|
736
1400
|
disabled: string;
|
|
737
1401
|
highlight: string;
|
|
1402
|
+
shadow?: string;
|
|
1403
|
+
isChecked?: string;
|
|
738
1404
|
};
|
|
739
1405
|
background: {
|
|
740
1406
|
color: string;
|
|
@@ -750,6 +1416,10 @@ declare type ThemeComponent = {
|
|
|
750
1416
|
border: string;
|
|
751
1417
|
borderRadius: string;
|
|
752
1418
|
fontWeight: number;
|
|
1419
|
+
lineHeight: string;
|
|
1420
|
+
letterSpacing: string;
|
|
1421
|
+
minWidth: string;
|
|
1422
|
+
minHeight: string;
|
|
753
1423
|
size: {
|
|
754
1424
|
small: {
|
|
755
1425
|
fontSize: string;
|
|
@@ -796,6 +1466,12 @@ declare type ThemeComponent = {
|
|
|
796
1466
|
lineHeight: string;
|
|
797
1467
|
border: string;
|
|
798
1468
|
boxShadow: string;
|
|
1469
|
+
errorBorder: string;
|
|
1470
|
+
};
|
|
1471
|
+
inputPlaceholder: {
|
|
1472
|
+
fontSize: string;
|
|
1473
|
+
padding: string;
|
|
1474
|
+
focusBorder: string;
|
|
799
1475
|
};
|
|
800
1476
|
inputCustom: {
|
|
801
1477
|
button: {
|
|
@@ -828,6 +1504,12 @@ declare type ThemeComponent = {
|
|
|
828
1504
|
border: string;
|
|
829
1505
|
color: string;
|
|
830
1506
|
};
|
|
1507
|
+
noStock: {
|
|
1508
|
+
fontWeight: number;
|
|
1509
|
+
background: string;
|
|
1510
|
+
border: string;
|
|
1511
|
+
color: string;
|
|
1512
|
+
};
|
|
831
1513
|
disabled: {
|
|
832
1514
|
border: string;
|
|
833
1515
|
};
|
|
@@ -881,10 +1563,13 @@ declare type ThemeComponent = {
|
|
|
881
1563
|
};
|
|
882
1564
|
card: {
|
|
883
1565
|
borderRadius: string;
|
|
1566
|
+
backgroundColor: string;
|
|
884
1567
|
};
|
|
885
1568
|
radio: {
|
|
886
1569
|
borderColor: string;
|
|
887
1570
|
background: string;
|
|
1571
|
+
textSize: string;
|
|
1572
|
+
lineHeight: string;
|
|
888
1573
|
size: {
|
|
889
1574
|
small: {
|
|
890
1575
|
borderWidth: string;
|
|
@@ -913,6 +1598,7 @@ declare type ThemeComponent = {
|
|
|
913
1598
|
};
|
|
914
1599
|
};
|
|
915
1600
|
label: {
|
|
1601
|
+
color: string;
|
|
916
1602
|
fontSize: {
|
|
917
1603
|
small: string;
|
|
918
1604
|
medium: string;
|
|
@@ -1021,11 +1707,13 @@ declare type ThemeComponent = {
|
|
|
1021
1707
|
fontWeight: number;
|
|
1022
1708
|
lineHeight: string;
|
|
1023
1709
|
padding: string;
|
|
1710
|
+
optionPadding: string;
|
|
1024
1711
|
color: string;
|
|
1025
1712
|
fill: string;
|
|
1026
1713
|
options: {
|
|
1027
1714
|
borderColor: string;
|
|
1028
1715
|
color: string;
|
|
1716
|
+
borderRadius: string;
|
|
1029
1717
|
};
|
|
1030
1718
|
};
|
|
1031
1719
|
modal: {
|
|
@@ -1039,6 +1727,252 @@ declare type ThemeComponent = {
|
|
|
1039
1727
|
selectedContrast: string;
|
|
1040
1728
|
tagColor: string;
|
|
1041
1729
|
};
|
|
1730
|
+
slideNavigation: {
|
|
1731
|
+
slideDots: {
|
|
1732
|
+
unselectedDotColor: string;
|
|
1733
|
+
selectedDotColor: string;
|
|
1734
|
+
dotsOpacity: number;
|
|
1735
|
+
};
|
|
1736
|
+
};
|
|
1737
|
+
beforeAfter: {
|
|
1738
|
+
size: {
|
|
1739
|
+
small: {
|
|
1740
|
+
image: {
|
|
1741
|
+
minHeight: string;
|
|
1742
|
+
minWidth: string;
|
|
1743
|
+
mobile: {
|
|
1744
|
+
minHeight: string;
|
|
1745
|
+
minWidth: string;
|
|
1746
|
+
};
|
|
1747
|
+
};
|
|
1748
|
+
imageContainer: {
|
|
1749
|
+
maxWidth: string;
|
|
1750
|
+
padding: string;
|
|
1751
|
+
mobile: {
|
|
1752
|
+
maxWidth: string;
|
|
1753
|
+
};
|
|
1754
|
+
};
|
|
1755
|
+
userInfoText: {
|
|
1756
|
+
fontSize: string;
|
|
1757
|
+
mobile: {
|
|
1758
|
+
fontSize: string;
|
|
1759
|
+
};
|
|
1760
|
+
};
|
|
1761
|
+
};
|
|
1762
|
+
medium: {
|
|
1763
|
+
image: {
|
|
1764
|
+
minHeight: string;
|
|
1765
|
+
minWidth: string;
|
|
1766
|
+
mobile: {
|
|
1767
|
+
minHeight: string;
|
|
1768
|
+
minWidth: string;
|
|
1769
|
+
};
|
|
1770
|
+
};
|
|
1771
|
+
imageContainer: {
|
|
1772
|
+
maxWidth: string;
|
|
1773
|
+
padding: string;
|
|
1774
|
+
mobile: {
|
|
1775
|
+
maxWidth: string;
|
|
1776
|
+
};
|
|
1777
|
+
};
|
|
1778
|
+
userInfoText: {
|
|
1779
|
+
fontSize: string;
|
|
1780
|
+
mobile: {
|
|
1781
|
+
fontSize: string;
|
|
1782
|
+
};
|
|
1783
|
+
};
|
|
1784
|
+
};
|
|
1785
|
+
large: {
|
|
1786
|
+
image: {
|
|
1787
|
+
minHeight: string;
|
|
1788
|
+
minWidth: string;
|
|
1789
|
+
mobile: {
|
|
1790
|
+
minHeight: string;
|
|
1791
|
+
minWidth: string;
|
|
1792
|
+
};
|
|
1793
|
+
};
|
|
1794
|
+
imageContainer: {
|
|
1795
|
+
maxWidth: string;
|
|
1796
|
+
padding: string;
|
|
1797
|
+
mobile: {
|
|
1798
|
+
maxWidth: string;
|
|
1799
|
+
};
|
|
1800
|
+
};
|
|
1801
|
+
userInfoText: {
|
|
1802
|
+
fontSize: string;
|
|
1803
|
+
mobile: {
|
|
1804
|
+
fontSize: string;
|
|
1805
|
+
};
|
|
1806
|
+
};
|
|
1807
|
+
};
|
|
1808
|
+
};
|
|
1809
|
+
};
|
|
1810
|
+
total: {
|
|
1811
|
+
basicTotal: {
|
|
1812
|
+
amount: {
|
|
1813
|
+
color: string;
|
|
1814
|
+
fontSize: string;
|
|
1815
|
+
};
|
|
1816
|
+
currency: {
|
|
1817
|
+
color: string;
|
|
1818
|
+
fontSize: string;
|
|
1819
|
+
lineHeight: string;
|
|
1820
|
+
alignSelf?: string;
|
|
1821
|
+
};
|
|
1822
|
+
savings: {
|
|
1823
|
+
amountFontWeight: number;
|
|
1824
|
+
color?: string;
|
|
1825
|
+
};
|
|
1826
|
+
};
|
|
1827
|
+
};
|
|
1828
|
+
subTotal: {
|
|
1829
|
+
basicSubTotal: {
|
|
1830
|
+
family: string;
|
|
1831
|
+
size: string;
|
|
1832
|
+
weight: number;
|
|
1833
|
+
lineHeight: string;
|
|
1834
|
+
color: string;
|
|
1835
|
+
};
|
|
1836
|
+
};
|
|
1837
|
+
pricing: {
|
|
1838
|
+
priceLabel: {
|
|
1839
|
+
price: {
|
|
1840
|
+
size: ComponentSize$1.Small | ComponentSize$1.Medium | ComponentSize$1.Large;
|
|
1841
|
+
originalPriceColor: string;
|
|
1842
|
+
actualPriceColor: string;
|
|
1843
|
+
};
|
|
1844
|
+
};
|
|
1845
|
+
};
|
|
1846
|
+
orderSummary: {
|
|
1847
|
+
headingTextAlign: string;
|
|
1848
|
+
backgroundColor?: string;
|
|
1849
|
+
padding?: string;
|
|
1850
|
+
borderRadius?: string;
|
|
1851
|
+
maxWidth?: string;
|
|
1852
|
+
onMobile: {
|
|
1853
|
+
maxWidth?: string;
|
|
1854
|
+
padding?: string;
|
|
1855
|
+
backgroundColor?: string;
|
|
1856
|
+
};
|
|
1857
|
+
};
|
|
1858
|
+
expressCheckout: {
|
|
1859
|
+
button: {
|
|
1860
|
+
borderRadius: string;
|
|
1861
|
+
};
|
|
1862
|
+
};
|
|
1863
|
+
copyrightText: {
|
|
1864
|
+
fontSize: string;
|
|
1865
|
+
fontWeight: number;
|
|
1866
|
+
lineHeight: string;
|
|
1867
|
+
color: string;
|
|
1868
|
+
};
|
|
1869
|
+
thankyouFooterText: {
|
|
1870
|
+
fontSize: string;
|
|
1871
|
+
fontWeight: string;
|
|
1872
|
+
lineHeight: string;
|
|
1873
|
+
};
|
|
1874
|
+
textButton: {
|
|
1875
|
+
fontWeight: number;
|
|
1876
|
+
lineHeight: string;
|
|
1877
|
+
};
|
|
1878
|
+
deliveryDetails: {
|
|
1879
|
+
title: {
|
|
1880
|
+
fontSize: string;
|
|
1881
|
+
lineHeight: string;
|
|
1882
|
+
fontWeight: number;
|
|
1883
|
+
};
|
|
1884
|
+
note: {
|
|
1885
|
+
accentColor: string;
|
|
1886
|
+
color: string;
|
|
1887
|
+
backgroundColor: string;
|
|
1888
|
+
};
|
|
1889
|
+
sectionTitle: {
|
|
1890
|
+
fontSize: string;
|
|
1891
|
+
lineHeight: string;
|
|
1892
|
+
fontWeight: number;
|
|
1893
|
+
};
|
|
1894
|
+
sectionDetails: {
|
|
1895
|
+
fontSize: string;
|
|
1896
|
+
lineHeight: string;
|
|
1897
|
+
fontWeight: number;
|
|
1898
|
+
marginLeft?: string;
|
|
1899
|
+
};
|
|
1900
|
+
};
|
|
1901
|
+
text: {
|
|
1902
|
+
orderHeader: {
|
|
1903
|
+
color: string;
|
|
1904
|
+
};
|
|
1905
|
+
};
|
|
1906
|
+
orderBar: {
|
|
1907
|
+
backgroundColor: string;
|
|
1908
|
+
fontColor: string;
|
|
1909
|
+
};
|
|
1910
|
+
banner: {
|
|
1911
|
+
outlineColor: string;
|
|
1912
|
+
filledColor: string;
|
|
1913
|
+
fontColor: string;
|
|
1914
|
+
};
|
|
1915
|
+
offerTitleText: {
|
|
1916
|
+
size: string;
|
|
1917
|
+
weight: number;
|
|
1918
|
+
lineHeight: string;
|
|
1919
|
+
};
|
|
1920
|
+
linePrice: {
|
|
1921
|
+
color: string;
|
|
1922
|
+
badge: {
|
|
1923
|
+
color: string;
|
|
1924
|
+
borderRadius: string;
|
|
1925
|
+
};
|
|
1926
|
+
};
|
|
1927
|
+
divider: {
|
|
1928
|
+
color: string;
|
|
1929
|
+
};
|
|
1930
|
+
checkout: {
|
|
1931
|
+
paymentInformation: {
|
|
1932
|
+
borderRadius?: string;
|
|
1933
|
+
};
|
|
1934
|
+
creditCardSection: {
|
|
1935
|
+
borderRadius?: string;
|
|
1936
|
+
};
|
|
1937
|
+
};
|
|
1938
|
+
upsell: {
|
|
1939
|
+
banner: {
|
|
1940
|
+
outlined: {
|
|
1941
|
+
color?: string;
|
|
1942
|
+
};
|
|
1943
|
+
};
|
|
1944
|
+
price: {
|
|
1945
|
+
colors: {
|
|
1946
|
+
regular: string;
|
|
1947
|
+
deal: string;
|
|
1948
|
+
each: string;
|
|
1949
|
+
badgeBG: string;
|
|
1950
|
+
badgeColor: string;
|
|
1951
|
+
};
|
|
1952
|
+
};
|
|
1953
|
+
hurryTimeCard: {
|
|
1954
|
+
backgroundColor: string;
|
|
1955
|
+
};
|
|
1956
|
+
guaranteedFit?: {
|
|
1957
|
+
backgroundColor: string;
|
|
1958
|
+
};
|
|
1959
|
+
};
|
|
1960
|
+
thankyou: {
|
|
1961
|
+
orderBanner?: {
|
|
1962
|
+
text: {
|
|
1963
|
+
left: string;
|
|
1964
|
+
};
|
|
1965
|
+
};
|
|
1966
|
+
emailSection: {
|
|
1967
|
+
backgroundColor?: string;
|
|
1968
|
+
};
|
|
1969
|
+
socialIcon: {
|
|
1970
|
+
color?: string;
|
|
1971
|
+
};
|
|
1972
|
+
orderId: {
|
|
1973
|
+
color: string;
|
|
1974
|
+
};
|
|
1975
|
+
};
|
|
1042
1976
|
};
|
|
1043
1977
|
declare type ThemeTypography = {
|
|
1044
1978
|
config: {
|
|
@@ -1065,6 +1999,26 @@ declare type ThemeAssets = {
|
|
|
1065
1999
|
images: {
|
|
1066
2000
|
favicon: string;
|
|
1067
2001
|
logo: string;
|
|
2002
|
+
logoSize?: {
|
|
2003
|
+
width: string;
|
|
2004
|
+
height: string;
|
|
2005
|
+
};
|
|
2006
|
+
logoMobile?: string;
|
|
2007
|
+
checkoutLogo?: {
|
|
2008
|
+
url: string;
|
|
2009
|
+
width: string;
|
|
2010
|
+
height: string;
|
|
2011
|
+
};
|
|
2012
|
+
upsellLogo?: {
|
|
2013
|
+
url: string;
|
|
2014
|
+
width: string;
|
|
2015
|
+
height: string;
|
|
2016
|
+
};
|
|
2017
|
+
tyLogo?: {
|
|
2018
|
+
url: string;
|
|
2019
|
+
width: string;
|
|
2020
|
+
height: string;
|
|
2021
|
+
};
|
|
1068
2022
|
};
|
|
1069
2023
|
[key: string]: any;
|
|
1070
2024
|
};
|
|
@@ -1075,11 +2029,25 @@ interface CheckboxProps {
|
|
|
1075
2029
|
size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1076
2030
|
text: string;
|
|
1077
2031
|
checked?: boolean;
|
|
2032
|
+
blockUncheck?: boolean;
|
|
1078
2033
|
id: string;
|
|
1079
2034
|
backgroundColor?: string;
|
|
1080
|
-
variant: 'primary' | 'secondary';
|
|
2035
|
+
variant: 'primary' | 'secondary' | 'color';
|
|
2036
|
+
}
|
|
2037
|
+
declare const Checkbox: React.FC<CheckboxProps>;
|
|
2038
|
+
|
|
2039
|
+
interface RadioProps$1 {
|
|
2040
|
+
name: string;
|
|
2041
|
+
value: string;
|
|
2042
|
+
id: string;
|
|
2043
|
+
label: string | ReactFragment;
|
|
2044
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2045
|
+
checked?: boolean;
|
|
2046
|
+
disabled?: boolean;
|
|
2047
|
+
onChange: (option: RadioGroupOption) => void;
|
|
2048
|
+
style?: React.CSSProperties;
|
|
1081
2049
|
}
|
|
1082
|
-
declare const
|
|
2050
|
+
declare const RadioPrimary: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps$1) => JSX.Element;
|
|
1083
2051
|
|
|
1084
2052
|
interface RadioGroupInputProps {
|
|
1085
2053
|
name: string;
|
|
@@ -1088,8 +2056,20 @@ interface RadioGroupInputProps {
|
|
|
1088
2056
|
onChange: (value: RadioGroupOption) => void;
|
|
1089
2057
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1090
2058
|
disabled?: boolean;
|
|
2059
|
+
style?: React.CSSProperties;
|
|
2060
|
+
}
|
|
2061
|
+
declare const RadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
|
|
2062
|
+
|
|
2063
|
+
interface ClubRadioGroupInputProps {
|
|
2064
|
+
name: string;
|
|
2065
|
+
options?: RadioGroupOption[];
|
|
2066
|
+
value?: RadioGroupOption;
|
|
2067
|
+
onChange: (value: RadioGroupOption) => void;
|
|
2068
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2069
|
+
disabled?: boolean;
|
|
2070
|
+
style?: React.CSSProperties;
|
|
1091
2071
|
}
|
|
1092
|
-
declare const
|
|
2072
|
+
declare const ClubRadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: ClubRadioGroupInputProps) => JSX.Element;
|
|
1093
2073
|
|
|
1094
2074
|
interface SimpleProps {
|
|
1095
2075
|
title: string;
|
|
@@ -1124,16 +2104,18 @@ interface CategoryTagProps {
|
|
|
1124
2104
|
text: string;
|
|
1125
2105
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1126
2106
|
className?: string;
|
|
2107
|
+
styledBorder?: boolean;
|
|
1127
2108
|
}
|
|
1128
|
-
declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2109
|
+
declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1129
2110
|
|
|
1130
2111
|
interface SeasonOfferTagProps {
|
|
1131
2112
|
text: string;
|
|
1132
2113
|
backgroundColor?: string;
|
|
1133
2114
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1134
2115
|
className?: string;
|
|
2116
|
+
styledBorder?: boolean;
|
|
1135
2117
|
}
|
|
1136
|
-
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2118
|
+
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1137
2119
|
|
|
1138
2120
|
interface TimeProps {
|
|
1139
2121
|
hours: number;
|
|
@@ -1146,7 +2128,14 @@ interface TimerProps extends TimeProps {
|
|
|
1146
2128
|
}
|
|
1147
2129
|
declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
|
|
1148
2130
|
|
|
1149
|
-
interface
|
|
2131
|
+
interface BaseInputCommonProps {
|
|
2132
|
+
id?: string;
|
|
2133
|
+
value?: string;
|
|
2134
|
+
innerRef?: React.Ref<HTMLInputElement>;
|
|
2135
|
+
onBlur?: () => void;
|
|
2136
|
+
onFocus?: () => void;
|
|
2137
|
+
onChange?: (value: string, event: any) => void;
|
|
2138
|
+
hideClear?: boolean;
|
|
1150
2139
|
defaultValue?: string;
|
|
1151
2140
|
maxLength?: number;
|
|
1152
2141
|
placeholder?: string;
|
|
@@ -1156,16 +2145,14 @@ interface BaseInputCommmonProps {
|
|
|
1156
2145
|
required?: string;
|
|
1157
2146
|
children?: React.ReactNode;
|
|
1158
2147
|
size?: 'regular' | 'small';
|
|
2148
|
+
inlinePlaceholder?: boolean;
|
|
2149
|
+
hasError?: boolean;
|
|
2150
|
+
inputType?: 'text' | 'email' | 'password' | 'url';
|
|
2151
|
+
name?: string;
|
|
2152
|
+
autoFocus?: boolean;
|
|
2153
|
+
requiredPlaceholder?: string;
|
|
1159
2154
|
}
|
|
1160
|
-
|
|
1161
|
-
value: string;
|
|
1162
|
-
onChange: (value: string) => void;
|
|
1163
|
-
}
|
|
1164
|
-
interface BaseInputUncontrolled extends BaseInputCommmonProps {
|
|
1165
|
-
value?: never;
|
|
1166
|
-
onChange?: (value: string) => void;
|
|
1167
|
-
}
|
|
1168
|
-
declare type BaseInputProps = BaseInputControlled | BaseInputUncontrolled;
|
|
2155
|
+
declare type BaseInputProps = BaseInputCommonProps;
|
|
1169
2156
|
|
|
1170
2157
|
declare type BasePlusIconProps = BaseInputProps & {
|
|
1171
2158
|
Icon: IconType;
|
|
@@ -1204,7 +2191,7 @@ declare type CustomProps = BaseInputProps & {
|
|
|
1204
2191
|
};
|
|
1205
2192
|
|
|
1206
2193
|
declare const Input: {
|
|
1207
|
-
Simple: ({ value, onChange,
|
|
2194
|
+
Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, requiredPlaceholder, ...rest }: BaseInputCommonProps) => JSX.Element;
|
|
1208
2195
|
Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
|
|
1209
2196
|
SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
|
|
1210
2197
|
SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
|
|
@@ -1264,7 +2251,7 @@ declare type detail = {
|
|
|
1264
2251
|
details: string;
|
|
1265
2252
|
};
|
|
1266
2253
|
interface orderUpdate extends detail {
|
|
1267
|
-
keepMeUpdated
|
|
2254
|
+
keepMeUpdated?: {
|
|
1268
2255
|
title: string;
|
|
1269
2256
|
onClick: () => void;
|
|
1270
2257
|
};
|
|
@@ -1277,9 +2264,9 @@ interface DeliveryDetailsProps {
|
|
|
1277
2264
|
note?: {
|
|
1278
2265
|
importantNoteText: string;
|
|
1279
2266
|
text: string;
|
|
1280
|
-
accentColor
|
|
1281
|
-
backgroundColor
|
|
1282
|
-
color
|
|
2267
|
+
accentColor?: string;
|
|
2268
|
+
backgroundColor?: string;
|
|
2269
|
+
color?: string;
|
|
1283
2270
|
};
|
|
1284
2271
|
}
|
|
1285
2272
|
declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
|
|
@@ -1287,26 +2274,37 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
|
|
|
1287
2274
|
interface ScrollToTopProps {
|
|
1288
2275
|
scrollToTopText: string;
|
|
1289
2276
|
onClick: () => void;
|
|
2277
|
+
fill?: string;
|
|
1290
2278
|
}
|
|
1291
|
-
declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
|
|
2279
|
+
declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
|
|
1292
2280
|
|
|
1293
2281
|
interface OrderBarProps {
|
|
1294
2282
|
message: string;
|
|
2283
|
+
color?: string;
|
|
2284
|
+
}
|
|
2285
|
+
declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
|
|
2286
|
+
|
|
2287
|
+
interface TableProps$1 {
|
|
2288
|
+
headers: string[];
|
|
2289
|
+
data: string[][];
|
|
2290
|
+
className?: string;
|
|
1295
2291
|
}
|
|
1296
|
-
declare const
|
|
2292
|
+
declare const SizeTable: ({ headers, data, className }: TableProps$1) => JSX.Element;
|
|
1297
2293
|
|
|
1298
2294
|
interface TableProps {
|
|
1299
2295
|
headers: string[];
|
|
1300
2296
|
data: string[][];
|
|
2297
|
+
newSizeTableCss?: boolean;
|
|
1301
2298
|
}
|
|
1302
|
-
declare const
|
|
2299
|
+
declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
|
|
1303
2300
|
|
|
1304
2301
|
interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
|
|
1305
2302
|
color?: string;
|
|
1306
2303
|
}
|
|
1307
2304
|
interface ProductOrderItemProps {
|
|
1308
|
-
title: string;
|
|
2305
|
+
title: React.ReactNode | string;
|
|
1309
2306
|
subtitle: string;
|
|
2307
|
+
className?: string;
|
|
1310
2308
|
image: {
|
|
1311
2309
|
src: string;
|
|
1312
2310
|
alt: string;
|
|
@@ -1317,10 +2315,12 @@ interface ProductOrderItemProps {
|
|
|
1317
2315
|
text: string;
|
|
1318
2316
|
backgroundColor: string;
|
|
1319
2317
|
};
|
|
2318
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1320
2319
|
}
|
|
1321
|
-
declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
|
|
2320
|
+
declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
|
|
1322
2321
|
|
|
1323
|
-
interface ReviewProps {
|
|
2322
|
+
interface ReviewProps$1 {
|
|
2323
|
+
reviewId: string;
|
|
1324
2324
|
reviewerName: string;
|
|
1325
2325
|
date: Date;
|
|
1326
2326
|
rating: number;
|
|
@@ -1330,27 +2330,35 @@ interface ReviewProps {
|
|
|
1330
2330
|
};
|
|
1331
2331
|
title: string;
|
|
1332
2332
|
description: string;
|
|
1333
|
-
|
|
2333
|
+
images?: {
|
|
1334
2334
|
src: string;
|
|
1335
2335
|
alt: string;
|
|
1336
|
-
};
|
|
2336
|
+
}[];
|
|
2337
|
+
reviewVariant?: string;
|
|
2338
|
+
onClickImage?: (image: string) => void;
|
|
2339
|
+
helpfulActionText?: string;
|
|
2340
|
+
helpfulAction?: (id: string) => void;
|
|
2341
|
+
helpfulCount?: number;
|
|
1337
2342
|
}
|
|
1338
|
-
declare const Review: ({ reviewerName, date, rating, stars, title, description,
|
|
2343
|
+
declare const Review$1: ({ reviewId, reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, helpfulActionText, helpfulAction, helpfulCount, }: ReviewProps$1) => JSX.Element;
|
|
1339
2344
|
|
|
1340
2345
|
interface SliderNavigationProps {
|
|
1341
|
-
children: JSX.Element[]
|
|
2346
|
+
children: JSX.Element | JSX.Element[] | StyledComponent<any>;
|
|
1342
2347
|
infinite: boolean;
|
|
1343
2348
|
adaptiveHeight: boolean;
|
|
1344
|
-
dotsSize
|
|
1345
|
-
dotListMarginTop
|
|
2349
|
+
dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
2350
|
+
dotListMarginTop?: number;
|
|
1346
2351
|
initialSlide?: number;
|
|
1347
2352
|
arrows?: {
|
|
1348
2353
|
arrowWidth: number;
|
|
1349
2354
|
arrowHeight: number;
|
|
1350
2355
|
arrowPadding: number;
|
|
1351
2356
|
};
|
|
2357
|
+
dots?: boolean;
|
|
2358
|
+
slidesToShow?: number;
|
|
2359
|
+
speed?: number;
|
|
1352
2360
|
}
|
|
1353
|
-
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2361
|
+
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1354
2362
|
|
|
1355
2363
|
interface DropdownListIconsProps {
|
|
1356
2364
|
items: DropdownListIconsItem[];
|
|
@@ -1368,8 +2376,11 @@ interface ImageStyleProps {
|
|
|
1368
2376
|
interface ImageProps extends ImageStyleProps {
|
|
1369
2377
|
src: string;
|
|
1370
2378
|
alt: string;
|
|
2379
|
+
srcSet?: string;
|
|
2380
|
+
sizes?: string;
|
|
2381
|
+
loading?: 'lazy' | 'eager';
|
|
1371
2382
|
}
|
|
1372
|
-
declare const Image: ({ src, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
|
|
2383
|
+
declare const Image: ({ src, srcSet, sizes, loading, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
|
|
1373
2384
|
|
|
1374
2385
|
interface AmazonPaypalBtnProps {
|
|
1375
2386
|
onClick: () => void;
|
|
@@ -1414,7 +2425,33 @@ interface ProductItemProps {
|
|
|
1414
2425
|
|
|
1415
2426
|
interface ProductItemSmallMobileProps extends ProductItemProps {
|
|
1416
2427
|
size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
|
|
2428
|
+
imageHover?: ImageProps;
|
|
2429
|
+
topTag?: JSX.Element;
|
|
2430
|
+
bottomTag?: JSX.Element;
|
|
1417
2431
|
onClick?: () => void;
|
|
2432
|
+
priceDisplayType?: 'default' | 'styled';
|
|
2433
|
+
priceAtBottom?: boolean;
|
|
2434
|
+
priceLoading?: boolean;
|
|
2435
|
+
noFollow?: boolean;
|
|
2436
|
+
colorPicker?: {
|
|
2437
|
+
display: boolean;
|
|
2438
|
+
position: string;
|
|
2439
|
+
component: JSX.Element | JSX.Element[] | undefined;
|
|
2440
|
+
};
|
|
2441
|
+
isBNPL?: {
|
|
2442
|
+
displayBNPL: boolean;
|
|
2443
|
+
installments: number;
|
|
2444
|
+
installmentPrice: string;
|
|
2445
|
+
iconFolder?: string;
|
|
2446
|
+
iconName: string;
|
|
2447
|
+
showLogo?: boolean;
|
|
2448
|
+
iconColor: string;
|
|
2449
|
+
fontSize: string;
|
|
2450
|
+
};
|
|
2451
|
+
hasStrength?: {
|
|
2452
|
+
strength: number;
|
|
2453
|
+
description: string;
|
|
2454
|
+
};
|
|
1418
2455
|
}
|
|
1419
2456
|
|
|
1420
2457
|
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
|
|
@@ -1423,7 +2460,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
|
|
|
1423
2460
|
};
|
|
1424
2461
|
|
|
1425
2462
|
declare const Collection: {
|
|
1426
|
-
ProductItemMobile: ({ title, image, price, rating, size,
|
|
2463
|
+
ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, noFollow, colorPicker, isBNPL, hasStrength, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1427
2464
|
withProductGrid: typeof withProductGrid;
|
|
1428
2465
|
};
|
|
1429
2466
|
|
|
@@ -1484,49 +2521,56 @@ interface PaginationProps {
|
|
|
1484
2521
|
underlineActive?: boolean;
|
|
1485
2522
|
boldActive?: boolean;
|
|
1486
2523
|
disabled?: boolean;
|
|
2524
|
+
showReducedPages?: boolean;
|
|
1487
2525
|
}
|
|
1488
|
-
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
|
|
2526
|
+
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
|
|
2527
|
+
|
|
2528
|
+
declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
|
|
1489
2529
|
|
|
1490
|
-
declare const Text:
|
|
2530
|
+
declare const Text: ({ variant, children, testId, asSpan, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1491
2531
|
declare type TextHeroProps = {
|
|
1492
2532
|
variant: 'hero1' | 'hero2' | 'hero3';
|
|
1493
2533
|
weight?: 'heavy' | 'bold' | 'demi';
|
|
1494
|
-
size?: 'regular';
|
|
2534
|
+
size?: 'regular' | 'xsmall';
|
|
1495
2535
|
underline?: never;
|
|
1496
2536
|
disabled?: never;
|
|
1497
2537
|
wide?: never;
|
|
1498
2538
|
original?: never;
|
|
1499
2539
|
allCaps?: never;
|
|
2540
|
+
href: never;
|
|
1500
2541
|
};
|
|
1501
2542
|
declare type TextDisplayProps = {
|
|
1502
2543
|
variant: 'display1' | 'display2';
|
|
1503
2544
|
weight?: 'bold' | 'demi';
|
|
1504
|
-
size?: 'regular';
|
|
2545
|
+
size?: 'regular' | 'xsmall';
|
|
1505
2546
|
underline?: never;
|
|
1506
2547
|
disabled?: never;
|
|
1507
2548
|
wide?: never;
|
|
1508
2549
|
original?: never;
|
|
1509
2550
|
allCaps?: never;
|
|
2551
|
+
href: never;
|
|
1510
2552
|
};
|
|
1511
2553
|
declare type TextHeadingProps = {
|
|
1512
|
-
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
|
|
2554
|
+
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6' | 'heading7' | 'heading8';
|
|
1513
2555
|
weight?: 'bold' | 'demi' | 'regular';
|
|
1514
|
-
size?: 'regular';
|
|
2556
|
+
size?: 'regular' | 'xsmall';
|
|
1515
2557
|
underline?: never;
|
|
1516
2558
|
disabled?: never;
|
|
1517
2559
|
wide?: never;
|
|
1518
2560
|
original?: never;
|
|
1519
2561
|
allCaps?: never;
|
|
2562
|
+
href?: never;
|
|
1520
2563
|
};
|
|
1521
2564
|
declare type TextBodyProps = {
|
|
1522
2565
|
variant: 'body';
|
|
1523
|
-
size?: 'regular' | 'small';
|
|
2566
|
+
size?: 'regular' | 'small' | 'xsmall';
|
|
1524
2567
|
weight?: 'bold' | 'demi' | 'regular';
|
|
1525
2568
|
underline?: never;
|
|
1526
2569
|
disabled?: never;
|
|
1527
2570
|
wide?: never;
|
|
1528
2571
|
original?: never;
|
|
1529
2572
|
allCaps?: never;
|
|
2573
|
+
href?: never;
|
|
1530
2574
|
};
|
|
1531
2575
|
declare type TextButtonProps = {
|
|
1532
2576
|
variant: 'button';
|
|
@@ -1537,6 +2581,7 @@ declare type TextButtonProps = {
|
|
|
1537
2581
|
wide?: boolean;
|
|
1538
2582
|
original?: never;
|
|
1539
2583
|
allCaps?: never;
|
|
2584
|
+
href?: never;
|
|
1540
2585
|
};
|
|
1541
2586
|
declare type TextPricingProps = {
|
|
1542
2587
|
variant: 'pricing';
|
|
@@ -1547,6 +2592,7 @@ declare type TextPricingProps = {
|
|
|
1547
2592
|
wide?: never;
|
|
1548
2593
|
original?: boolean;
|
|
1549
2594
|
allCaps?: never;
|
|
2595
|
+
href?: never;
|
|
1550
2596
|
};
|
|
1551
2597
|
declare type TextLinkProps = {
|
|
1552
2598
|
variant: 'link';
|
|
@@ -1557,9 +2603,11 @@ declare type TextLinkProps = {
|
|
|
1557
2603
|
wide?: never;
|
|
1558
2604
|
original?: never;
|
|
1559
2605
|
allCaps?: never;
|
|
1560
|
-
|
|
2606
|
+
href?: string;
|
|
2607
|
+
};
|
|
1561
2608
|
declare type TextLabelProps = {
|
|
1562
2609
|
variant: 'label';
|
|
2610
|
+
color?: string;
|
|
1563
2611
|
weight?: 'regular' | 'demi';
|
|
1564
2612
|
size?: 'regular' | 'small';
|
|
1565
2613
|
underline?: never;
|
|
@@ -1567,6 +2615,7 @@ declare type TextLabelProps = {
|
|
|
1567
2615
|
wide?: never;
|
|
1568
2616
|
original?: never;
|
|
1569
2617
|
allCaps?: never;
|
|
2618
|
+
href?: never;
|
|
1570
2619
|
} & LabelHTMLAttributes<'label'>;
|
|
1571
2620
|
declare type TextTagProps = {
|
|
1572
2621
|
variant: 'tag';
|
|
@@ -1577,11 +2626,15 @@ declare type TextTagProps = {
|
|
|
1577
2626
|
wide?: never;
|
|
1578
2627
|
original?: never;
|
|
1579
2628
|
allCaps?: boolean;
|
|
2629
|
+
href?: never;
|
|
1580
2630
|
};
|
|
1581
|
-
declare type TextProps = AriaAttributes & {
|
|
2631
|
+
declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
|
|
2632
|
+
children: ReactNode;
|
|
1582
2633
|
style?: CSSProperties;
|
|
1583
2634
|
className?: string;
|
|
1584
2635
|
testId?: string;
|
|
2636
|
+
asSpan?: boolean;
|
|
2637
|
+
color?: string;
|
|
1585
2638
|
} & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
|
|
1586
2639
|
|
|
1587
2640
|
interface SearchBarProps {
|
|
@@ -1594,34 +2647,43 @@ interface SearchBarProps {
|
|
|
1594
2647
|
allResults?: number;
|
|
1595
2648
|
initialTerm?: string;
|
|
1596
2649
|
shouldClear?: boolean;
|
|
2650
|
+
isBlogSearchBar?: boolean;
|
|
2651
|
+
ariaLabel?: string;
|
|
2652
|
+
placeholder?: string;
|
|
2653
|
+
id?: string;
|
|
2654
|
+
autoComplete?: string;
|
|
1597
2655
|
}
|
|
1598
|
-
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, }: SearchBarProps) => JSX.Element;
|
|
2656
|
+
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
|
|
1599
2657
|
|
|
1600
|
-
interface ProductGalleryMobileProps {
|
|
2658
|
+
interface ProductGalleryMobileProps$1 {
|
|
1601
2659
|
images: ImageType[];
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
2660
|
+
customClick?: boolean;
|
|
2661
|
+
topTag?: JSX.Element;
|
|
2662
|
+
bottomTag?: JSX.Element;
|
|
1605
2663
|
productImageDataTestId?: string;
|
|
1606
|
-
|
|
2664
|
+
borderRadiusVariant?: boolean;
|
|
2665
|
+
selectedValue?: ImageType;
|
|
1607
2666
|
}
|
|
1608
|
-
declare const ProductGalleryMobile: ({ images,
|
|
2667
|
+
declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps$1) => JSX.Element;
|
|
1609
2668
|
|
|
1610
2669
|
interface RadioProps {
|
|
1611
2670
|
name: string;
|
|
1612
2671
|
value: string;
|
|
1613
2672
|
id: string;
|
|
1614
|
-
label: string;
|
|
2673
|
+
label: string | ReactFragment;
|
|
1615
2674
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1616
2675
|
checked?: boolean;
|
|
1617
2676
|
disabled?: boolean;
|
|
1618
2677
|
onChange: (option: RadioGroupOption) => void;
|
|
2678
|
+
style?: React.CSSProperties;
|
|
1619
2679
|
}
|
|
1620
|
-
declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
|
|
2680
|
+
declare const RadioInput: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
|
|
1621
2681
|
|
|
1622
2682
|
declare type PortalProps = {
|
|
1623
2683
|
id: string;
|
|
1624
2684
|
className?: string;
|
|
2685
|
+
overflow?: boolean;
|
|
2686
|
+
style?: CSSProperties;
|
|
1625
2687
|
};
|
|
1626
2688
|
declare const Portal: FC<PortalProps>;
|
|
1627
2689
|
|
|
@@ -1629,10 +2691,13 @@ declare type ModalProps = {
|
|
|
1629
2691
|
id: string;
|
|
1630
2692
|
dismissable?: boolean;
|
|
1631
2693
|
maxFullScreen?: boolean;
|
|
2694
|
+
padding?: string;
|
|
2695
|
+
children: React.ReactNode;
|
|
1632
2696
|
};
|
|
1633
2697
|
interface ContainerProps {
|
|
1634
2698
|
maxFullScreen: boolean;
|
|
1635
2699
|
opened?: boolean;
|
|
2700
|
+
padding?: string;
|
|
1636
2701
|
}
|
|
1637
2702
|
declare const Overlay: _emotion_styled.StyledComponent<{
|
|
1638
2703
|
theme?: _emotion_react.Theme | undefined;
|
|
@@ -1695,6 +2760,26 @@ declare type SpacingProps = {
|
|
|
1695
2760
|
};
|
|
1696
2761
|
declare const Spacing: FC<SpacingProps>;
|
|
1697
2762
|
|
|
2763
|
+
interface PackOption$1 {
|
|
2764
|
+
label: string;
|
|
2765
|
+
description: string;
|
|
2766
|
+
meta: {
|
|
2767
|
+
discountPercentage: number;
|
|
2768
|
+
originalPrice: number;
|
|
2769
|
+
price: number;
|
|
2770
|
+
quantity: number;
|
|
2771
|
+
icon: string;
|
|
2772
|
+
tag?: string;
|
|
2773
|
+
};
|
|
2774
|
+
}
|
|
2775
|
+
interface PackSelectorProps$1 {
|
|
2776
|
+
packs: PackOption$1[];
|
|
2777
|
+
selectedValue: PackOption$1;
|
|
2778
|
+
onChange: (size: PackOption$1) => void;
|
|
2779
|
+
currencyCode?: string;
|
|
2780
|
+
}
|
|
2781
|
+
declare const PackSelector: FC<PackSelectorProps$1>;
|
|
2782
|
+
|
|
1698
2783
|
interface PackOption {
|
|
1699
2784
|
label: string;
|
|
1700
2785
|
description: string;
|
|
@@ -1711,8 +2796,9 @@ interface PackSelectorProps {
|
|
|
1711
2796
|
packs: PackOption[];
|
|
1712
2797
|
selectedValue: PackOption;
|
|
1713
2798
|
onChange: (size: PackOption) => void;
|
|
2799
|
+
currencyCode?: string;
|
|
1714
2800
|
}
|
|
1715
|
-
declare const
|
|
2801
|
+
declare const PackSelectorV2: FC<PackSelectorProps>;
|
|
1716
2802
|
|
|
1717
2803
|
interface FiltersProps {
|
|
1718
2804
|
values: Filter[];
|
|
@@ -1737,6 +2823,229 @@ interface SearchNavigationProps {
|
|
|
1737
2823
|
}
|
|
1738
2824
|
declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
|
|
1739
2825
|
|
|
2826
|
+
interface TabProps$1 {
|
|
2827
|
+
title: string;
|
|
2828
|
+
content: ReactNode;
|
|
2829
|
+
}
|
|
2830
|
+
interface TabsProps {
|
|
2831
|
+
backgroundColor?: string;
|
|
2832
|
+
initialSelected?: string;
|
|
2833
|
+
tabsMaxWidth?: string;
|
|
2834
|
+
tabs: TabProps$1[];
|
|
2835
|
+
}
|
|
2836
|
+
declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
|
|
2837
|
+
|
|
2838
|
+
interface TabProps {
|
|
2839
|
+
title: string;
|
|
2840
|
+
titleSize?: string;
|
|
2841
|
+
selectedTitleWeight?: number;
|
|
2842
|
+
height?: string;
|
|
2843
|
+
selected?: boolean;
|
|
2844
|
+
color?: string;
|
|
2845
|
+
tabsMaxWidth?: string;
|
|
2846
|
+
onClick: (clickedTab: string) => void;
|
|
2847
|
+
}
|
|
2848
|
+
declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
|
|
2849
|
+
|
|
2850
|
+
interface IconsWithTitleProps {
|
|
2851
|
+
backgroundColor: string;
|
|
2852
|
+
iconColor: string;
|
|
2853
|
+
iconName: string;
|
|
2854
|
+
iconFolder?: string;
|
|
2855
|
+
withWrapper?: boolean;
|
|
2856
|
+
iconTitle: string;
|
|
2857
|
+
iconSizeDesktop?: number;
|
|
2858
|
+
iconSizeMobile?: number;
|
|
2859
|
+
iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
2860
|
+
iconTitleStyle?: string;
|
|
2861
|
+
iconStyle?: string;
|
|
2862
|
+
isTitleInnerHtml?: boolean;
|
|
2863
|
+
}
|
|
2864
|
+
declare const IconsWithTitle: ({ iconName, iconTitle, iconFolder, withWrapper, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconsWithTitleProps) => JSX.Element | null;
|
|
2865
|
+
|
|
2866
|
+
interface NoteProps {
|
|
2867
|
+
accentColor?: string;
|
|
2868
|
+
color?: string;
|
|
2869
|
+
backgroundColor?: string;
|
|
2870
|
+
importantNoteText: string;
|
|
2871
|
+
text: string;
|
|
2872
|
+
}
|
|
2873
|
+
declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
|
|
2874
|
+
|
|
2875
|
+
interface TextWithImageProps {
|
|
2876
|
+
title: string;
|
|
2877
|
+
text?: string;
|
|
2878
|
+
children?: ReactNode;
|
|
2879
|
+
buttomText: string;
|
|
2880
|
+
backgroundColor: string;
|
|
2881
|
+
imageLeftSide?: boolean;
|
|
2882
|
+
URLLink?: string;
|
|
2883
|
+
onButtonClick?: () => void;
|
|
2884
|
+
isRedirectionURL: boolean;
|
|
2885
|
+
btnBGColor?: string;
|
|
2886
|
+
btnHoverBGColor?: string;
|
|
2887
|
+
imgVideo: imageVideoProps;
|
|
2888
|
+
contentAfterButton?: React.ReactNode;
|
|
2889
|
+
titleStyle?: React.CSSProperties;
|
|
2890
|
+
textStyle?: React.CSSProperties;
|
|
2891
|
+
buttonWideOnMobile?: boolean;
|
|
2892
|
+
}
|
|
2893
|
+
declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2894
|
+
|
|
2895
|
+
interface AccordionOptionsProps {
|
|
2896
|
+
titleColor: string;
|
|
2897
|
+
accordions: AccordionProps[];
|
|
2898
|
+
}
|
|
2899
|
+
declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
|
|
2900
|
+
|
|
2901
|
+
interface ShortBannerProps {
|
|
2902
|
+
title: string;
|
|
2903
|
+
bannerText: string;
|
|
2904
|
+
backgroundColor: string;
|
|
2905
|
+
alignCenter?: boolean;
|
|
2906
|
+
widthAuto?: boolean;
|
|
2907
|
+
textColor: string;
|
|
2908
|
+
}
|
|
2909
|
+
declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
|
|
2910
|
+
|
|
2911
|
+
interface BeforeAfterCardProps {
|
|
2912
|
+
name: string;
|
|
2913
|
+
age?: string;
|
|
2914
|
+
months?: string;
|
|
2915
|
+
beforeImage: string;
|
|
2916
|
+
afterImage: string;
|
|
2917
|
+
alignCenter?: boolean;
|
|
2918
|
+
imageBorderRadius?: string;
|
|
2919
|
+
size?: ComponentSize;
|
|
2920
|
+
}
|
|
2921
|
+
declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
|
|
2922
|
+
|
|
2923
|
+
interface ImageCardWithDescriptionProps {
|
|
2924
|
+
image: string;
|
|
2925
|
+
title?: string;
|
|
2926
|
+
description?: string;
|
|
2927
|
+
titlePosition?: 'center' | 'left';
|
|
2928
|
+
}
|
|
2929
|
+
declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
|
|
2930
|
+
|
|
2931
|
+
interface Checkpoint$1 {
|
|
2932
|
+
day: string;
|
|
2933
|
+
date: string;
|
|
2934
|
+
statusMessage: string;
|
|
2935
|
+
}
|
|
2936
|
+
interface TrackingProgressProps {
|
|
2937
|
+
checkPoints: Checkpoint$1[];
|
|
2938
|
+
amountOfCheckPoints: number;
|
|
2939
|
+
}
|
|
2940
|
+
declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
|
|
2941
|
+
|
|
2942
|
+
interface Checkpoint {
|
|
2943
|
+
day: string;
|
|
2944
|
+
date: string;
|
|
2945
|
+
statusMessage: string;
|
|
2946
|
+
}
|
|
2947
|
+
interface TrackingProgressV2Props {
|
|
2948
|
+
checkPoints: Checkpoint[];
|
|
2949
|
+
amountOfCheckPoints: number;
|
|
2950
|
+
warning?: boolean;
|
|
2951
|
+
}
|
|
2952
|
+
declare const TrackingProgressV2: ({ checkPoints, amountOfCheckPoints, warning, }: TrackingProgressV2Props) => JSX.Element;
|
|
2953
|
+
|
|
2954
|
+
interface ReviewsHeaderProps {
|
|
2955
|
+
title?: string;
|
|
2956
|
+
rating: number;
|
|
2957
|
+
reviews: number;
|
|
2958
|
+
reviewsText: string;
|
|
2959
|
+
reviewsSummary: string[];
|
|
2960
|
+
onClickReview: (reveiw: string) => void;
|
|
2961
|
+
}
|
|
2962
|
+
declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
|
|
2963
|
+
|
|
2964
|
+
interface ReviewProps {
|
|
2965
|
+
reviewId: string;
|
|
2966
|
+
reviewerName: string;
|
|
2967
|
+
date: Date;
|
|
2968
|
+
rating: number;
|
|
2969
|
+
stars: {
|
|
2970
|
+
color: string;
|
|
2971
|
+
size: ComponentSize.Medium | ComponentSize.Small;
|
|
2972
|
+
};
|
|
2973
|
+
title: string;
|
|
2974
|
+
description: string;
|
|
2975
|
+
image?: {
|
|
2976
|
+
src: string;
|
|
2977
|
+
alt: string;
|
|
2978
|
+
};
|
|
2979
|
+
modalId: string;
|
|
2980
|
+
maxFullScreen?: boolean;
|
|
2981
|
+
verified?: boolean;
|
|
2982
|
+
productImage?: string;
|
|
2983
|
+
productTitle?: string;
|
|
2984
|
+
productLink?: string;
|
|
2985
|
+
helpfulCount?: number;
|
|
2986
|
+
helpfulAction?: (id: string) => void;
|
|
2987
|
+
notHelpfulCount?: number;
|
|
2988
|
+
notHelpfulAction?: (id: string) => void;
|
|
2989
|
+
}
|
|
2990
|
+
declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps) => JSX.Element;
|
|
2991
|
+
|
|
2992
|
+
interface ProductGalleryMobileProps {
|
|
2993
|
+
images: ImageType[];
|
|
2994
|
+
selectedValue?: ImageType;
|
|
2995
|
+
topTag?: JSX.Element;
|
|
2996
|
+
bottomTag?: JSX.Element;
|
|
2997
|
+
productImageDataTestId?: string;
|
|
2998
|
+
slideDotsDataTestId?: string;
|
|
2999
|
+
borderRadiusVariant?: boolean;
|
|
3000
|
+
}
|
|
3001
|
+
declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
|
|
3002
|
+
|
|
3003
|
+
interface AbsorbencyLevelProps {
|
|
3004
|
+
dropTotal: number;
|
|
3005
|
+
drops: number;
|
|
3006
|
+
absorbencyTitle: string;
|
|
3007
|
+
absorbencyDescription: string;
|
|
3008
|
+
}
|
|
3009
|
+
declare const AbsorbencyLevel: ({ dropTotal, drops, absorbencyTitle, absorbencyDescription, }: AbsorbencyLevelProps) => JSX.Element;
|
|
3010
|
+
|
|
3011
|
+
interface HurryUpProps {
|
|
3012
|
+
hurryUpText: string;
|
|
3013
|
+
backgroundColor?: string;
|
|
3014
|
+
showTimer?: boolean;
|
|
3015
|
+
iconSize?: number;
|
|
3016
|
+
textPosition?: 'left' | 'right' | 'center';
|
|
3017
|
+
}
|
|
3018
|
+
declare const HurryUp: ({ hurryUpText, backgroundColor, iconSize, textPosition, showTimer, }: HurryUpProps) => JSX.Element;
|
|
3019
|
+
|
|
3020
|
+
interface BuyNowPayLaterProps {
|
|
3021
|
+
displayBNPL: boolean;
|
|
3022
|
+
installments: number;
|
|
3023
|
+
installmentPrice: string;
|
|
3024
|
+
iconFolder?: string;
|
|
3025
|
+
iconName: string;
|
|
3026
|
+
showLogo?: boolean;
|
|
3027
|
+
iconColor?: string;
|
|
3028
|
+
fontSize?: string;
|
|
3029
|
+
}
|
|
3030
|
+
declare const BuyNowPayLater: ({ displayBNPL, installments, installmentPrice, iconFolder, iconName, showLogo, iconColor, fontSize, }: BuyNowPayLaterProps) => JSX.Element | null;
|
|
3031
|
+
|
|
3032
|
+
interface StrengthBarProps {
|
|
3033
|
+
barsFilled?: number;
|
|
3034
|
+
supportText?: string;
|
|
3035
|
+
}
|
|
3036
|
+
declare const StrengthBars: ({ barsFilled, supportText }: StrengthBarProps) => JSX.Element;
|
|
3037
|
+
|
|
3038
|
+
interface DropdownProps {
|
|
3039
|
+
options: SelectedOption[];
|
|
3040
|
+
defaultLabel: string;
|
|
3041
|
+
onOptionSelect: (option: string) => void;
|
|
3042
|
+
}
|
|
3043
|
+
interface SelectedOption {
|
|
3044
|
+
size: string;
|
|
3045
|
+
detail: string;
|
|
3046
|
+
}
|
|
3047
|
+
declare const SizeDropdown: React.FC<DropdownProps>;
|
|
3048
|
+
|
|
1740
3049
|
declare global {
|
|
1741
3050
|
interface Events {
|
|
1742
3051
|
modal: {
|
|
@@ -1776,4 +3085,8 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1776
3085
|
currency?: string | undefined;
|
|
1777
3086
|
}) => string;
|
|
1778
3087
|
|
|
1779
|
-
|
|
3088
|
+
declare const getSrcSet: (imgLink: string, ...breakpoints: number[]) => string;
|
|
3089
|
+
|
|
3090
|
+
declare const mediaQueries: facepaint.DynamicStyleFunction;
|
|
3091
|
+
|
|
3092
|
+
export { AbsorbencyLevel, Accordion, AccordionOptions, AmazonButton, AssetsProvider, 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 };
|