@trafilea/afrodita-components 5.0.0-beta.28 → 5.0.0-beta.281
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 +1386 -86
- package/build/index.esm.css +4 -1
- package/build/index.esm.js +7924 -3997
- package/build/index.esm.js.map +1 -1
- package/build/index.js +7957 -3999
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.d.ts +710 -0
- package/build/theme/revel.theme.js +1040 -0
- package/build/theme/shapermint.theme.d.ts +295 -1
- package/build/theme/shapermint.theme.js +322 -3
- 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 +329 -9
- 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,14 +689,15 @@ 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
|
|
|
308
|
-
declare const Search: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
696
|
+
declare const Search: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
309
697
|
|
|
310
698
|
declare const User: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
311
699
|
|
|
312
|
-
declare const ShoppingBag: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
700
|
+
declare const ShoppingBag: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
313
701
|
|
|
314
702
|
declare const ShoppingCart: FC<IconProps>;
|
|
315
703
|
|
|
@@ -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,83 @@ 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 MyAccount_FreeShipping: typeof FreeShipping;
|
|
981
|
+
declare const MyAccount_PersonalStylist: typeof PersonalStylist;
|
|
982
|
+
declare const MyAccount_Community: typeof Community;
|
|
983
|
+
declare const MyAccount_VIP: typeof VIP;
|
|
984
|
+
declare const MyAccount_DealsOffers: typeof DealsOffers;
|
|
985
|
+
declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
|
|
986
|
+
declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
|
|
987
|
+
declare const MyAccount_Profile: typeof Profile;
|
|
988
|
+
declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
|
|
989
|
+
declare const MyAccount_PriorityShipping: typeof PriorityShipping;
|
|
990
|
+
declare const MyAccount_Guard: typeof Guard;
|
|
991
|
+
declare namespace MyAccount {
|
|
992
|
+
export {
|
|
993
|
+
MyAccount_FreeShipping as FreeShipping,
|
|
994
|
+
MyAccount_PersonalStylist as PersonalStylist,
|
|
995
|
+
MyAccount_Community as Community,
|
|
996
|
+
MyAccount_VIP as VIP,
|
|
997
|
+
MyAccount_DealsOffers as DealsOffers,
|
|
998
|
+
MyAccount_StyleFashionContent as StyleFashionContent,
|
|
999
|
+
MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
|
|
1000
|
+
MyAccount_Profile as Profile,
|
|
1001
|
+
MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
|
|
1002
|
+
MyAccount_PriorityShipping as PriorityShipping,
|
|
1003
|
+
MyAccount_Guard as Guard,
|
|
430
1004
|
};
|
|
431
1005
|
}
|
|
432
1006
|
|
|
@@ -444,6 +1018,7 @@ declare const Icon: {
|
|
|
444
1018
|
Payment: typeof Payment;
|
|
445
1019
|
SlideDots: typeof SlideDots;
|
|
446
1020
|
Emoji: typeof Emoji;
|
|
1021
|
+
MyAccount: typeof MyAccount;
|
|
447
1022
|
};
|
|
448
1023
|
|
|
449
1024
|
interface CardBodyProps {
|
|
@@ -460,7 +1035,7 @@ interface borderProps {
|
|
|
460
1035
|
}
|
|
461
1036
|
interface CardProps {
|
|
462
1037
|
children: ReactNode;
|
|
463
|
-
backgroundColor
|
|
1038
|
+
backgroundColor?: string;
|
|
464
1039
|
widthAuto?: boolean;
|
|
465
1040
|
border?: borderProps;
|
|
466
1041
|
flex?: boolean;
|
|
@@ -488,6 +1063,8 @@ declare type CommonProps<T> = {
|
|
|
488
1063
|
initialValue?: Value<T>;
|
|
489
1064
|
placeHolder: string;
|
|
490
1065
|
testId?: string;
|
|
1066
|
+
required?: string;
|
|
1067
|
+
showRequiredPlaceholder?: boolean;
|
|
491
1068
|
};
|
|
492
1069
|
declare type ControlledProps<T> = {
|
|
493
1070
|
value: Value<T>;
|
|
@@ -498,7 +1075,22 @@ declare type UncontrolledProps<T> = {
|
|
|
498
1075
|
onChange?: OnChange<T>;
|
|
499
1076
|
} & CommonProps<T>;
|
|
500
1077
|
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;
|
|
1078
|
+
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, required, showRequiredPlaceholder, }: SimpleDropdownProps<T>): JSX.Element;
|
|
1079
|
+
|
|
1080
|
+
interface DialogPositionProps {
|
|
1081
|
+
top: string;
|
|
1082
|
+
right: string;
|
|
1083
|
+
}
|
|
1084
|
+
interface DialogDropdownProps {
|
|
1085
|
+
options: {
|
|
1086
|
+
label: string;
|
|
1087
|
+
value: string;
|
|
1088
|
+
}[];
|
|
1089
|
+
position: DialogPositionProps;
|
|
1090
|
+
style?: React.CSSProperties;
|
|
1091
|
+
className?: string;
|
|
1092
|
+
}
|
|
1093
|
+
declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
|
|
502
1094
|
|
|
503
1095
|
interface SizeSelectorProps {
|
|
504
1096
|
label: string;
|
|
@@ -529,6 +1121,7 @@ interface BaseButtonProps {
|
|
|
529
1121
|
inline?: boolean;
|
|
530
1122
|
uppercase?: boolean;
|
|
531
1123
|
testId?: string;
|
|
1124
|
+
id?: string;
|
|
532
1125
|
}
|
|
533
1126
|
|
|
534
1127
|
declare type BaseProps = Pick<BaseButtonProps, 'disabled' | 'type' | 'onClick'>;
|
|
@@ -550,8 +1143,21 @@ interface DiscountTagProps {
|
|
|
550
1143
|
borderColor?: string;
|
|
551
1144
|
textColor?: string;
|
|
552
1145
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1146
|
+
style?: React.CSSProperties;
|
|
1147
|
+
}
|
|
1148
|
+
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
|
|
1149
|
+
|
|
1150
|
+
interface ClubOfferTagProps {
|
|
1151
|
+
clubOfferText?: string;
|
|
1152
|
+
className?: string;
|
|
1153
|
+
disabled?: boolean;
|
|
1154
|
+
backgroundColor?: string;
|
|
1155
|
+
borderColor?: string;
|
|
1156
|
+
textColor?: string;
|
|
1157
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1158
|
+
style?: React.CSSProperties;
|
|
553
1159
|
}
|
|
554
|
-
declare const
|
|
1160
|
+
declare const ClubOfferTag: ({ clubOfferText, className, disabled, backgroundColor, borderColor, textColor, size, style, }: ClubOfferTagProps) => JSX.Element;
|
|
555
1161
|
|
|
556
1162
|
interface PriceLabelProps {
|
|
557
1163
|
finalPrice: string | number;
|
|
@@ -559,9 +1165,16 @@ interface PriceLabelProps {
|
|
|
559
1165
|
color?: string;
|
|
560
1166
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
561
1167
|
discount?: DiscountTagProps;
|
|
1168
|
+
clubOffer?: ClubOfferTagProps;
|
|
1169
|
+
finalPriceStyled?: boolean;
|
|
1170
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1171
|
+
originalPriceStyled?: boolean;
|
|
1172
|
+
originalPriceUnderlined?: boolean;
|
|
562
1173
|
testId?: string;
|
|
563
1174
|
}
|
|
564
|
-
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, size, }: PriceLabelProps) => JSX.Element;
|
|
1175
|
+
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
1176
|
+
|
|
1177
|
+
declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, clubOffer, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
565
1178
|
|
|
566
1179
|
interface ColorPickerProps {
|
|
567
1180
|
options: ColorPickerOption[];
|
|
@@ -583,22 +1196,29 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
|
|
|
583
1196
|
interface ProductGalleryProps {
|
|
584
1197
|
images: ImageType[];
|
|
585
1198
|
selectedValue?: ImageType;
|
|
586
|
-
|
|
587
|
-
|
|
1199
|
+
topTag?: JSX.Element;
|
|
1200
|
+
bottomTag?: JSX.Element;
|
|
588
1201
|
productImageDataTestId?: string;
|
|
589
1202
|
previewListDataTestId?: string;
|
|
590
1203
|
thumbnailPosition?: 'vertical' | 'horizontal';
|
|
1204
|
+
borderRadiusVariant?: boolean;
|
|
1205
|
+
previewImgBorderColor?: string;
|
|
1206
|
+
ctaText?: string;
|
|
1207
|
+
ctaAction?: () => void;
|
|
1208
|
+
hideCTA?: boolean;
|
|
591
1209
|
}
|
|
592
|
-
declare const ProductGallery: ({ images, selectedValue,
|
|
1210
|
+
declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, hideCTA, }: ProductGalleryProps) => JSX.Element;
|
|
593
1211
|
|
|
594
1212
|
interface RatingProps {
|
|
595
1213
|
rating: number;
|
|
596
1214
|
size?: ComponentSize;
|
|
597
|
-
reviews
|
|
598
|
-
reviewsText
|
|
1215
|
+
reviews?: number;
|
|
1216
|
+
reviewsText?: string;
|
|
599
1217
|
wrapWithParenthesis?: boolean;
|
|
1218
|
+
underline?: boolean;
|
|
1219
|
+
reviewsContainerId?: string;
|
|
600
1220
|
}
|
|
601
|
-
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
|
|
1221
|
+
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
|
|
602
1222
|
|
|
603
1223
|
interface FitPredictorProps {
|
|
604
1224
|
onClick: () => void;
|
|
@@ -610,8 +1230,23 @@ interface ProgressBarProps {
|
|
|
610
1230
|
fillColor: string;
|
|
611
1231
|
widthAuto?: boolean;
|
|
612
1232
|
percent?: number;
|
|
1233
|
+
height?: string;
|
|
1234
|
+
backgroundColor?: string;
|
|
1235
|
+
borderRadius?: string;
|
|
1236
|
+
}
|
|
1237
|
+
declare const ProgressBar: ({ description, fillColor, widthAuto, percent, height, backgroundColor, borderRadius, }: ProgressBarProps) => JSX.Element;
|
|
1238
|
+
|
|
1239
|
+
interface MotivatorProgressBarProps {
|
|
1240
|
+
fillColor?: string;
|
|
1241
|
+
currentAmount?: number;
|
|
1242
|
+
backgroundColor?: string;
|
|
1243
|
+
unfilledColor?: string;
|
|
1244
|
+
borderRadius?: string;
|
|
1245
|
+
rewardUnlockedMessage: string;
|
|
1246
|
+
endingValue?: number;
|
|
1247
|
+
currencyCode?: string;
|
|
613
1248
|
}
|
|
614
|
-
declare const
|
|
1249
|
+
declare const MotivatorProgressBar: ({ fillColor, backgroundColor, unfilledColor, currencyCode, endingValue, currentAmount, rewardUnlockedMessage, }: MotivatorProgressBarProps) => JSX.Element;
|
|
615
1250
|
|
|
616
1251
|
interface IconButtonProps {
|
|
617
1252
|
children: React.ReactNode;
|
|
@@ -625,31 +1260,45 @@ interface TooltipProps {
|
|
|
625
1260
|
children: React.ReactNode;
|
|
626
1261
|
position: ComponentPosition;
|
|
627
1262
|
align?: 'start' | 'center' | 'end';
|
|
628
|
-
|
|
1263
|
+
content?: {
|
|
1264
|
+
text: string;
|
|
1265
|
+
color?: string;
|
|
1266
|
+
};
|
|
1267
|
+
backgroundColor?: string;
|
|
1268
|
+
maxWidth?: string;
|
|
629
1269
|
header?: {
|
|
630
1270
|
title: string;
|
|
631
|
-
|
|
1271
|
+
titleColor?: string;
|
|
1272
|
+
Icon?: IconType;
|
|
1273
|
+
iconFill?: string;
|
|
632
1274
|
};
|
|
633
1275
|
onClick?: () => void;
|
|
634
1276
|
}
|
|
635
|
-
declare const Tooltip: ({ children, position,
|
|
1277
|
+
declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
|
|
636
1278
|
|
|
637
1279
|
interface AccordionProps {
|
|
638
1280
|
defaultOpen?: boolean;
|
|
1281
|
+
forceOpenHandler?: boolean;
|
|
1282
|
+
forceOpenValue?: boolean;
|
|
1283
|
+
titleColor?: string;
|
|
639
1284
|
variant: 'simple' | 'box';
|
|
640
1285
|
header: ReactNode;
|
|
1286
|
+
headerOnOpen?: ReactNode;
|
|
641
1287
|
content: ReactNode;
|
|
642
1288
|
disabled?: boolean;
|
|
1289
|
+
innerHTML?: boolean;
|
|
643
1290
|
openIcon: IconType;
|
|
644
1291
|
closeIcon: IconType;
|
|
1292
|
+
onClick?: (index: number) => void;
|
|
645
1293
|
}
|
|
646
|
-
declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
|
|
1294
|
+
declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
|
|
647
1295
|
|
|
648
1296
|
declare const ThemeProvider: FC<{
|
|
649
1297
|
theme: Theme;
|
|
650
1298
|
children: ReactNode;
|
|
651
1299
|
}>;
|
|
652
1300
|
declare const useTheme: () => Theme;
|
|
1301
|
+
|
|
653
1302
|
declare const ThemeVariables: FC<{
|
|
654
1303
|
theme: Theme;
|
|
655
1304
|
Container?: ElementType;
|
|
@@ -679,6 +1328,7 @@ declare type Theme = {
|
|
|
679
1328
|
};
|
|
680
1329
|
declare type ThemeBreakpoints = {
|
|
681
1330
|
mobile: number;
|
|
1331
|
+
tablet?: number;
|
|
682
1332
|
desktop: number;
|
|
683
1333
|
};
|
|
684
1334
|
declare type ThemeBasicPallete = {
|
|
@@ -686,7 +1336,7 @@ declare type ThemeBasicPallete = {
|
|
|
686
1336
|
contrast: string;
|
|
687
1337
|
};
|
|
688
1338
|
declare type ThemeColorPallete = ThemeBasicPallete & {
|
|
689
|
-
soft
|
|
1339
|
+
soft?: ThemeBasicPallete;
|
|
690
1340
|
};
|
|
691
1341
|
declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
|
|
692
1342
|
20: ThemeColorPallete;
|
|
@@ -698,6 +1348,7 @@ declare type ThemeColors = {
|
|
|
698
1348
|
pallete: {
|
|
699
1349
|
primary: ThemeColorPrimaryPallete;
|
|
700
1350
|
secondary: ThemeColorPrimaryPallete;
|
|
1351
|
+
tertiary?: ThemeColorPrimaryPallete;
|
|
701
1352
|
} & Partial<Record<string, ThemeColorPallete>>;
|
|
702
1353
|
shades: {
|
|
703
1354
|
black: ThemeBasicPallete;
|
|
@@ -707,6 +1358,7 @@ declare type ThemeColors = {
|
|
|
707
1358
|
50: ThemeBasicPallete;
|
|
708
1359
|
100: ThemeBasicPallete;
|
|
709
1360
|
150: ThemeBasicPallete;
|
|
1361
|
+
175: ThemeBasicPallete;
|
|
710
1362
|
200: ThemeBasicPallete;
|
|
711
1363
|
250: ThemeBasicPallete;
|
|
712
1364
|
300: ThemeBasicPallete;
|
|
@@ -735,6 +1387,8 @@ declare type ThemeColors = {
|
|
|
735
1387
|
color: string;
|
|
736
1388
|
disabled: string;
|
|
737
1389
|
highlight: string;
|
|
1390
|
+
shadow?: string;
|
|
1391
|
+
isChecked?: string;
|
|
738
1392
|
};
|
|
739
1393
|
background: {
|
|
740
1394
|
color: string;
|
|
@@ -750,6 +1404,10 @@ declare type ThemeComponent = {
|
|
|
750
1404
|
border: string;
|
|
751
1405
|
borderRadius: string;
|
|
752
1406
|
fontWeight: number;
|
|
1407
|
+
lineHeight: string;
|
|
1408
|
+
letterSpacing: string;
|
|
1409
|
+
minWidth: string;
|
|
1410
|
+
minHeight: string;
|
|
753
1411
|
size: {
|
|
754
1412
|
small: {
|
|
755
1413
|
fontSize: string;
|
|
@@ -796,6 +1454,12 @@ declare type ThemeComponent = {
|
|
|
796
1454
|
lineHeight: string;
|
|
797
1455
|
border: string;
|
|
798
1456
|
boxShadow: string;
|
|
1457
|
+
errorBorder: string;
|
|
1458
|
+
};
|
|
1459
|
+
inputPlaceholder: {
|
|
1460
|
+
fontSize: string;
|
|
1461
|
+
padding: string;
|
|
1462
|
+
focusBorder: string;
|
|
799
1463
|
};
|
|
800
1464
|
inputCustom: {
|
|
801
1465
|
button: {
|
|
@@ -828,6 +1492,12 @@ declare type ThemeComponent = {
|
|
|
828
1492
|
border: string;
|
|
829
1493
|
color: string;
|
|
830
1494
|
};
|
|
1495
|
+
noStock: {
|
|
1496
|
+
fontWeight: number;
|
|
1497
|
+
background: string;
|
|
1498
|
+
border: string;
|
|
1499
|
+
color: string;
|
|
1500
|
+
};
|
|
831
1501
|
disabled: {
|
|
832
1502
|
border: string;
|
|
833
1503
|
};
|
|
@@ -881,10 +1551,13 @@ declare type ThemeComponent = {
|
|
|
881
1551
|
};
|
|
882
1552
|
card: {
|
|
883
1553
|
borderRadius: string;
|
|
1554
|
+
backgroundColor: string;
|
|
884
1555
|
};
|
|
885
1556
|
radio: {
|
|
886
1557
|
borderColor: string;
|
|
887
1558
|
background: string;
|
|
1559
|
+
textSize: string;
|
|
1560
|
+
lineHeight: string;
|
|
888
1561
|
size: {
|
|
889
1562
|
small: {
|
|
890
1563
|
borderWidth: string;
|
|
@@ -913,6 +1586,7 @@ declare type ThemeComponent = {
|
|
|
913
1586
|
};
|
|
914
1587
|
};
|
|
915
1588
|
label: {
|
|
1589
|
+
color: string;
|
|
916
1590
|
fontSize: {
|
|
917
1591
|
small: string;
|
|
918
1592
|
medium: string;
|
|
@@ -1021,11 +1695,13 @@ declare type ThemeComponent = {
|
|
|
1021
1695
|
fontWeight: number;
|
|
1022
1696
|
lineHeight: string;
|
|
1023
1697
|
padding: string;
|
|
1698
|
+
optionPadding: string;
|
|
1024
1699
|
color: string;
|
|
1025
1700
|
fill: string;
|
|
1026
1701
|
options: {
|
|
1027
1702
|
borderColor: string;
|
|
1028
1703
|
color: string;
|
|
1704
|
+
borderRadius: string;
|
|
1029
1705
|
};
|
|
1030
1706
|
};
|
|
1031
1707
|
modal: {
|
|
@@ -1039,6 +1715,252 @@ declare type ThemeComponent = {
|
|
|
1039
1715
|
selectedContrast: string;
|
|
1040
1716
|
tagColor: string;
|
|
1041
1717
|
};
|
|
1718
|
+
slideNavigation: {
|
|
1719
|
+
slideDots: {
|
|
1720
|
+
unselectedDotColor: string;
|
|
1721
|
+
selectedDotColor: string;
|
|
1722
|
+
dotsOpacity: number;
|
|
1723
|
+
};
|
|
1724
|
+
};
|
|
1725
|
+
beforeAfter: {
|
|
1726
|
+
size: {
|
|
1727
|
+
small: {
|
|
1728
|
+
image: {
|
|
1729
|
+
minHeight: string;
|
|
1730
|
+
minWidth: string;
|
|
1731
|
+
mobile: {
|
|
1732
|
+
minHeight: string;
|
|
1733
|
+
minWidth: string;
|
|
1734
|
+
};
|
|
1735
|
+
};
|
|
1736
|
+
imageContainer: {
|
|
1737
|
+
maxWidth: string;
|
|
1738
|
+
padding: string;
|
|
1739
|
+
mobile: {
|
|
1740
|
+
maxWidth: string;
|
|
1741
|
+
};
|
|
1742
|
+
};
|
|
1743
|
+
userInfoText: {
|
|
1744
|
+
fontSize: string;
|
|
1745
|
+
mobile: {
|
|
1746
|
+
fontSize: string;
|
|
1747
|
+
};
|
|
1748
|
+
};
|
|
1749
|
+
};
|
|
1750
|
+
medium: {
|
|
1751
|
+
image: {
|
|
1752
|
+
minHeight: string;
|
|
1753
|
+
minWidth: string;
|
|
1754
|
+
mobile: {
|
|
1755
|
+
minHeight: string;
|
|
1756
|
+
minWidth: string;
|
|
1757
|
+
};
|
|
1758
|
+
};
|
|
1759
|
+
imageContainer: {
|
|
1760
|
+
maxWidth: string;
|
|
1761
|
+
padding: string;
|
|
1762
|
+
mobile: {
|
|
1763
|
+
maxWidth: string;
|
|
1764
|
+
};
|
|
1765
|
+
};
|
|
1766
|
+
userInfoText: {
|
|
1767
|
+
fontSize: string;
|
|
1768
|
+
mobile: {
|
|
1769
|
+
fontSize: string;
|
|
1770
|
+
};
|
|
1771
|
+
};
|
|
1772
|
+
};
|
|
1773
|
+
large: {
|
|
1774
|
+
image: {
|
|
1775
|
+
minHeight: string;
|
|
1776
|
+
minWidth: string;
|
|
1777
|
+
mobile: {
|
|
1778
|
+
minHeight: string;
|
|
1779
|
+
minWidth: string;
|
|
1780
|
+
};
|
|
1781
|
+
};
|
|
1782
|
+
imageContainer: {
|
|
1783
|
+
maxWidth: string;
|
|
1784
|
+
padding: string;
|
|
1785
|
+
mobile: {
|
|
1786
|
+
maxWidth: string;
|
|
1787
|
+
};
|
|
1788
|
+
};
|
|
1789
|
+
userInfoText: {
|
|
1790
|
+
fontSize: string;
|
|
1791
|
+
mobile: {
|
|
1792
|
+
fontSize: string;
|
|
1793
|
+
};
|
|
1794
|
+
};
|
|
1795
|
+
};
|
|
1796
|
+
};
|
|
1797
|
+
};
|
|
1798
|
+
total: {
|
|
1799
|
+
basicTotal: {
|
|
1800
|
+
amount: {
|
|
1801
|
+
color: string;
|
|
1802
|
+
fontSize: string;
|
|
1803
|
+
};
|
|
1804
|
+
currency: {
|
|
1805
|
+
color: string;
|
|
1806
|
+
fontSize: string;
|
|
1807
|
+
lineHeight: string;
|
|
1808
|
+
alignSelf?: string;
|
|
1809
|
+
};
|
|
1810
|
+
savings: {
|
|
1811
|
+
amountFontWeight: number;
|
|
1812
|
+
color?: string;
|
|
1813
|
+
};
|
|
1814
|
+
};
|
|
1815
|
+
};
|
|
1816
|
+
subTotal: {
|
|
1817
|
+
basicSubTotal: {
|
|
1818
|
+
family: string;
|
|
1819
|
+
size: string;
|
|
1820
|
+
weight: number;
|
|
1821
|
+
lineHeight: string;
|
|
1822
|
+
color: string;
|
|
1823
|
+
};
|
|
1824
|
+
};
|
|
1825
|
+
pricing: {
|
|
1826
|
+
priceLabel: {
|
|
1827
|
+
price: {
|
|
1828
|
+
size: ComponentSize$1.Small | ComponentSize$1.Medium | ComponentSize$1.Large;
|
|
1829
|
+
originalPriceColor: string;
|
|
1830
|
+
actualPriceColor: string;
|
|
1831
|
+
};
|
|
1832
|
+
};
|
|
1833
|
+
};
|
|
1834
|
+
orderSummary: {
|
|
1835
|
+
headingTextAlign: string;
|
|
1836
|
+
backgroundColor?: string;
|
|
1837
|
+
padding?: string;
|
|
1838
|
+
borderRadius?: string;
|
|
1839
|
+
maxWidth?: string;
|
|
1840
|
+
onMobile: {
|
|
1841
|
+
maxWidth?: string;
|
|
1842
|
+
padding?: string;
|
|
1843
|
+
backgroundColor?: string;
|
|
1844
|
+
};
|
|
1845
|
+
};
|
|
1846
|
+
expressCheckout: {
|
|
1847
|
+
button: {
|
|
1848
|
+
borderRadius: string;
|
|
1849
|
+
};
|
|
1850
|
+
};
|
|
1851
|
+
copyrightText: {
|
|
1852
|
+
fontSize: string;
|
|
1853
|
+
fontWeight: number;
|
|
1854
|
+
lineHeight: string;
|
|
1855
|
+
color: string;
|
|
1856
|
+
};
|
|
1857
|
+
thankyouFooterText: {
|
|
1858
|
+
fontSize: string;
|
|
1859
|
+
fontWeight: string;
|
|
1860
|
+
lineHeight: string;
|
|
1861
|
+
};
|
|
1862
|
+
textButton: {
|
|
1863
|
+
fontWeight: number;
|
|
1864
|
+
lineHeight: string;
|
|
1865
|
+
};
|
|
1866
|
+
deliveryDetails: {
|
|
1867
|
+
title: {
|
|
1868
|
+
fontSize: string;
|
|
1869
|
+
lineHeight: string;
|
|
1870
|
+
fontWeight: number;
|
|
1871
|
+
};
|
|
1872
|
+
note: {
|
|
1873
|
+
accentColor: string;
|
|
1874
|
+
color: string;
|
|
1875
|
+
backgroundColor: string;
|
|
1876
|
+
};
|
|
1877
|
+
sectionTitle: {
|
|
1878
|
+
fontSize: string;
|
|
1879
|
+
lineHeight: string;
|
|
1880
|
+
fontWeight: number;
|
|
1881
|
+
};
|
|
1882
|
+
sectionDetails: {
|
|
1883
|
+
fontSize: string;
|
|
1884
|
+
lineHeight: string;
|
|
1885
|
+
fontWeight: number;
|
|
1886
|
+
marginLeft?: string;
|
|
1887
|
+
};
|
|
1888
|
+
};
|
|
1889
|
+
text: {
|
|
1890
|
+
orderHeader: {
|
|
1891
|
+
color: string;
|
|
1892
|
+
};
|
|
1893
|
+
};
|
|
1894
|
+
orderBar: {
|
|
1895
|
+
backgroundColor: string;
|
|
1896
|
+
fontColor: string;
|
|
1897
|
+
};
|
|
1898
|
+
banner: {
|
|
1899
|
+
outlineColor: string;
|
|
1900
|
+
filledColor: string;
|
|
1901
|
+
fontColor: string;
|
|
1902
|
+
};
|
|
1903
|
+
offerTitleText: {
|
|
1904
|
+
size: string;
|
|
1905
|
+
weight: number;
|
|
1906
|
+
lineHeight: string;
|
|
1907
|
+
};
|
|
1908
|
+
linePrice: {
|
|
1909
|
+
color: string;
|
|
1910
|
+
badge: {
|
|
1911
|
+
color: string;
|
|
1912
|
+
borderRadius: string;
|
|
1913
|
+
};
|
|
1914
|
+
};
|
|
1915
|
+
divider: {
|
|
1916
|
+
color: string;
|
|
1917
|
+
};
|
|
1918
|
+
checkout: {
|
|
1919
|
+
paymentInformation: {
|
|
1920
|
+
borderRadius?: string;
|
|
1921
|
+
};
|
|
1922
|
+
creditCardSection: {
|
|
1923
|
+
borderRadius?: string;
|
|
1924
|
+
};
|
|
1925
|
+
};
|
|
1926
|
+
upsell: {
|
|
1927
|
+
banner: {
|
|
1928
|
+
outlined: {
|
|
1929
|
+
color?: string;
|
|
1930
|
+
};
|
|
1931
|
+
};
|
|
1932
|
+
price: {
|
|
1933
|
+
colors: {
|
|
1934
|
+
regular: string;
|
|
1935
|
+
deal: string;
|
|
1936
|
+
each: string;
|
|
1937
|
+
badgeBG: string;
|
|
1938
|
+
badgeColor: string;
|
|
1939
|
+
};
|
|
1940
|
+
};
|
|
1941
|
+
hurryTimeCard: {
|
|
1942
|
+
backgroundColor: string;
|
|
1943
|
+
};
|
|
1944
|
+
guaranteedFit?: {
|
|
1945
|
+
backgroundColor: string;
|
|
1946
|
+
};
|
|
1947
|
+
};
|
|
1948
|
+
thankyou: {
|
|
1949
|
+
orderBanner?: {
|
|
1950
|
+
text: {
|
|
1951
|
+
left: string;
|
|
1952
|
+
};
|
|
1953
|
+
};
|
|
1954
|
+
emailSection: {
|
|
1955
|
+
backgroundColor?: string;
|
|
1956
|
+
};
|
|
1957
|
+
socialIcon: {
|
|
1958
|
+
color?: string;
|
|
1959
|
+
};
|
|
1960
|
+
orderId: {
|
|
1961
|
+
color: string;
|
|
1962
|
+
};
|
|
1963
|
+
};
|
|
1042
1964
|
};
|
|
1043
1965
|
declare type ThemeTypography = {
|
|
1044
1966
|
config: {
|
|
@@ -1065,6 +1987,26 @@ declare type ThemeAssets = {
|
|
|
1065
1987
|
images: {
|
|
1066
1988
|
favicon: string;
|
|
1067
1989
|
logo: string;
|
|
1990
|
+
logoSize?: {
|
|
1991
|
+
width: string;
|
|
1992
|
+
height: string;
|
|
1993
|
+
};
|
|
1994
|
+
logoMobile?: string;
|
|
1995
|
+
checkoutLogo?: {
|
|
1996
|
+
url: string;
|
|
1997
|
+
width: string;
|
|
1998
|
+
height: string;
|
|
1999
|
+
};
|
|
2000
|
+
upsellLogo?: {
|
|
2001
|
+
url: string;
|
|
2002
|
+
width: string;
|
|
2003
|
+
height: string;
|
|
2004
|
+
};
|
|
2005
|
+
tyLogo?: {
|
|
2006
|
+
url: string;
|
|
2007
|
+
width: string;
|
|
2008
|
+
height: string;
|
|
2009
|
+
};
|
|
1068
2010
|
};
|
|
1069
2011
|
[key: string]: any;
|
|
1070
2012
|
};
|
|
@@ -1075,11 +2017,25 @@ interface CheckboxProps {
|
|
|
1075
2017
|
size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1076
2018
|
text: string;
|
|
1077
2019
|
checked?: boolean;
|
|
2020
|
+
blockUncheck?: boolean;
|
|
1078
2021
|
id: string;
|
|
1079
2022
|
backgroundColor?: string;
|
|
1080
|
-
variant: 'primary' | 'secondary';
|
|
2023
|
+
variant: 'primary' | 'secondary' | 'color';
|
|
1081
2024
|
}
|
|
1082
|
-
declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, }: CheckboxProps) => JSX.Element;
|
|
2025
|
+
declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, blockUncheck, backgroundColor, }: CheckboxProps) => JSX.Element;
|
|
2026
|
+
|
|
2027
|
+
interface RadioProps$1 {
|
|
2028
|
+
name: string;
|
|
2029
|
+
value: string;
|
|
2030
|
+
id: string;
|
|
2031
|
+
label: string | ReactFragment;
|
|
2032
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2033
|
+
checked?: boolean;
|
|
2034
|
+
disabled?: boolean;
|
|
2035
|
+
onChange: (option: RadioGroupOption) => void;
|
|
2036
|
+
style?: React.CSSProperties;
|
|
2037
|
+
}
|
|
2038
|
+
declare const RadioPrimary: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps$1) => JSX.Element;
|
|
1083
2039
|
|
|
1084
2040
|
interface RadioGroupInputProps {
|
|
1085
2041
|
name: string;
|
|
@@ -1088,8 +2044,20 @@ interface RadioGroupInputProps {
|
|
|
1088
2044
|
onChange: (value: RadioGroupOption) => void;
|
|
1089
2045
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1090
2046
|
disabled?: boolean;
|
|
2047
|
+
style?: React.CSSProperties;
|
|
2048
|
+
}
|
|
2049
|
+
declare const RadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
|
|
2050
|
+
|
|
2051
|
+
interface ClubRadioGroupInputProps {
|
|
2052
|
+
name: string;
|
|
2053
|
+
options?: RadioGroupOption[];
|
|
2054
|
+
value?: RadioGroupOption;
|
|
2055
|
+
onChange: (value: RadioGroupOption) => void;
|
|
2056
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2057
|
+
disabled?: boolean;
|
|
2058
|
+
style?: React.CSSProperties;
|
|
1091
2059
|
}
|
|
1092
|
-
declare const
|
|
2060
|
+
declare const ClubRadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: ClubRadioGroupInputProps) => JSX.Element;
|
|
1093
2061
|
|
|
1094
2062
|
interface SimpleProps {
|
|
1095
2063
|
title: string;
|
|
@@ -1124,16 +2092,18 @@ interface CategoryTagProps {
|
|
|
1124
2092
|
text: string;
|
|
1125
2093
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1126
2094
|
className?: string;
|
|
2095
|
+
styledBorder?: boolean;
|
|
1127
2096
|
}
|
|
1128
|
-
declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2097
|
+
declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1129
2098
|
|
|
1130
2099
|
interface SeasonOfferTagProps {
|
|
1131
2100
|
text: string;
|
|
1132
2101
|
backgroundColor?: string;
|
|
1133
2102
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1134
2103
|
className?: string;
|
|
2104
|
+
styledBorder?: boolean;
|
|
1135
2105
|
}
|
|
1136
|
-
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2106
|
+
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1137
2107
|
|
|
1138
2108
|
interface TimeProps {
|
|
1139
2109
|
hours: number;
|
|
@@ -1146,7 +2116,14 @@ interface TimerProps extends TimeProps {
|
|
|
1146
2116
|
}
|
|
1147
2117
|
declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
|
|
1148
2118
|
|
|
1149
|
-
interface
|
|
2119
|
+
interface BaseInputCommonProps {
|
|
2120
|
+
id?: string;
|
|
2121
|
+
value?: string;
|
|
2122
|
+
innerRef?: React.Ref<HTMLInputElement>;
|
|
2123
|
+
onBlur?: () => void;
|
|
2124
|
+
onFocus?: () => void;
|
|
2125
|
+
onChange?: (value: string, event: any) => void;
|
|
2126
|
+
hideClear?: boolean;
|
|
1150
2127
|
defaultValue?: string;
|
|
1151
2128
|
maxLength?: number;
|
|
1152
2129
|
placeholder?: string;
|
|
@@ -1156,16 +2133,14 @@ interface BaseInputCommmonProps {
|
|
|
1156
2133
|
required?: string;
|
|
1157
2134
|
children?: React.ReactNode;
|
|
1158
2135
|
size?: 'regular' | 'small';
|
|
2136
|
+
inlinePlaceholder?: boolean;
|
|
2137
|
+
hasError?: boolean;
|
|
2138
|
+
inputType?: 'text' | 'email' | 'password' | 'url';
|
|
2139
|
+
name?: string;
|
|
2140
|
+
autoFocus?: boolean;
|
|
2141
|
+
requiredPlaceholder?: string;
|
|
1159
2142
|
}
|
|
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;
|
|
2143
|
+
declare type BaseInputProps = BaseInputCommonProps;
|
|
1169
2144
|
|
|
1170
2145
|
declare type BasePlusIconProps = BaseInputProps & {
|
|
1171
2146
|
Icon: IconType;
|
|
@@ -1204,7 +2179,7 @@ declare type CustomProps = BaseInputProps & {
|
|
|
1204
2179
|
};
|
|
1205
2180
|
|
|
1206
2181
|
declare const Input: {
|
|
1207
|
-
Simple: ({ value, onChange,
|
|
2182
|
+
Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, requiredPlaceholder, ...rest }: BaseInputCommonProps) => JSX.Element;
|
|
1208
2183
|
Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
|
|
1209
2184
|
SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
|
|
1210
2185
|
SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
|
|
@@ -1264,7 +2239,7 @@ declare type detail = {
|
|
|
1264
2239
|
details: string;
|
|
1265
2240
|
};
|
|
1266
2241
|
interface orderUpdate extends detail {
|
|
1267
|
-
keepMeUpdated
|
|
2242
|
+
keepMeUpdated?: {
|
|
1268
2243
|
title: string;
|
|
1269
2244
|
onClick: () => void;
|
|
1270
2245
|
};
|
|
@@ -1277,9 +2252,9 @@ interface DeliveryDetailsProps {
|
|
|
1277
2252
|
note?: {
|
|
1278
2253
|
importantNoteText: string;
|
|
1279
2254
|
text: string;
|
|
1280
|
-
accentColor
|
|
1281
|
-
backgroundColor
|
|
1282
|
-
color
|
|
2255
|
+
accentColor?: string;
|
|
2256
|
+
backgroundColor?: string;
|
|
2257
|
+
color?: string;
|
|
1283
2258
|
};
|
|
1284
2259
|
}
|
|
1285
2260
|
declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
|
|
@@ -1287,26 +2262,37 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
|
|
|
1287
2262
|
interface ScrollToTopProps {
|
|
1288
2263
|
scrollToTopText: string;
|
|
1289
2264
|
onClick: () => void;
|
|
2265
|
+
fill?: string;
|
|
1290
2266
|
}
|
|
1291
|
-
declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
|
|
2267
|
+
declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
|
|
1292
2268
|
|
|
1293
2269
|
interface OrderBarProps {
|
|
1294
2270
|
message: string;
|
|
2271
|
+
color?: string;
|
|
1295
2272
|
}
|
|
1296
|
-
declare const OrderBar: ({ message }: OrderBarProps) => JSX.Element;
|
|
2273
|
+
declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
|
|
2274
|
+
|
|
2275
|
+
interface TableProps$1 {
|
|
2276
|
+
headers: string[];
|
|
2277
|
+
data: string[][];
|
|
2278
|
+
className?: string;
|
|
2279
|
+
}
|
|
2280
|
+
declare const SizeTable: ({ headers, data, className }: TableProps$1) => JSX.Element;
|
|
1297
2281
|
|
|
1298
2282
|
interface TableProps {
|
|
1299
2283
|
headers: string[];
|
|
1300
2284
|
data: string[][];
|
|
2285
|
+
newSizeTableCss?: boolean;
|
|
1301
2286
|
}
|
|
1302
|
-
declare const
|
|
2287
|
+
declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
|
|
1303
2288
|
|
|
1304
2289
|
interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
|
|
1305
2290
|
color?: string;
|
|
1306
2291
|
}
|
|
1307
2292
|
interface ProductOrderItemProps {
|
|
1308
|
-
title: string;
|
|
2293
|
+
title: React.ReactNode | string;
|
|
1309
2294
|
subtitle: string;
|
|
2295
|
+
className?: string;
|
|
1310
2296
|
image: {
|
|
1311
2297
|
src: string;
|
|
1312
2298
|
alt: string;
|
|
@@ -1317,10 +2303,12 @@ interface ProductOrderItemProps {
|
|
|
1317
2303
|
text: string;
|
|
1318
2304
|
backgroundColor: string;
|
|
1319
2305
|
};
|
|
2306
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1320
2307
|
}
|
|
1321
|
-
declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
|
|
2308
|
+
declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
|
|
1322
2309
|
|
|
1323
|
-
interface ReviewProps {
|
|
2310
|
+
interface ReviewProps$1 {
|
|
2311
|
+
reviewId: string;
|
|
1324
2312
|
reviewerName: string;
|
|
1325
2313
|
date: Date;
|
|
1326
2314
|
rating: number;
|
|
@@ -1330,27 +2318,35 @@ interface ReviewProps {
|
|
|
1330
2318
|
};
|
|
1331
2319
|
title: string;
|
|
1332
2320
|
description: string;
|
|
1333
|
-
|
|
2321
|
+
images?: {
|
|
1334
2322
|
src: string;
|
|
1335
2323
|
alt: string;
|
|
1336
|
-
};
|
|
2324
|
+
}[];
|
|
2325
|
+
reviewVariant?: string;
|
|
2326
|
+
onClickImage?: (image: string) => void;
|
|
2327
|
+
helpfulActionText?: string;
|
|
2328
|
+
helpfulAction?: (id: string) => void;
|
|
2329
|
+
helpfulCount?: number;
|
|
1337
2330
|
}
|
|
1338
|
-
declare const Review: ({ reviewerName, date, rating, stars, title, description,
|
|
2331
|
+
declare const Review$1: ({ reviewId, reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, helpfulActionText, helpfulAction, helpfulCount, }: ReviewProps$1) => JSX.Element;
|
|
1339
2332
|
|
|
1340
2333
|
interface SliderNavigationProps {
|
|
1341
|
-
children: JSX.Element[]
|
|
2334
|
+
children: JSX.Element | JSX.Element[] | StyledComponent<any>;
|
|
1342
2335
|
infinite: boolean;
|
|
1343
2336
|
adaptiveHeight: boolean;
|
|
1344
|
-
dotsSize
|
|
1345
|
-
dotListMarginTop
|
|
2337
|
+
dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
2338
|
+
dotListMarginTop?: number;
|
|
1346
2339
|
initialSlide?: number;
|
|
1347
2340
|
arrows?: {
|
|
1348
2341
|
arrowWidth: number;
|
|
1349
2342
|
arrowHeight: number;
|
|
1350
2343
|
arrowPadding: number;
|
|
1351
2344
|
};
|
|
2345
|
+
dots?: boolean;
|
|
2346
|
+
slidesToShow?: number;
|
|
2347
|
+
speed?: number;
|
|
1352
2348
|
}
|
|
1353
|
-
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2349
|
+
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1354
2350
|
|
|
1355
2351
|
interface DropdownListIconsProps {
|
|
1356
2352
|
items: DropdownListIconsItem[];
|
|
@@ -1368,8 +2364,11 @@ interface ImageStyleProps {
|
|
|
1368
2364
|
interface ImageProps extends ImageStyleProps {
|
|
1369
2365
|
src: string;
|
|
1370
2366
|
alt: string;
|
|
2367
|
+
srcSet?: string;
|
|
2368
|
+
sizes?: string;
|
|
2369
|
+
loading?: 'lazy' | 'eager';
|
|
1371
2370
|
}
|
|
1372
|
-
declare const Image: ({ src, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
|
|
2371
|
+
declare const Image: ({ src, srcSet, sizes, loading, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
|
|
1373
2372
|
|
|
1374
2373
|
interface AmazonPaypalBtnProps {
|
|
1375
2374
|
onClick: () => void;
|
|
@@ -1414,7 +2413,33 @@ interface ProductItemProps {
|
|
|
1414
2413
|
|
|
1415
2414
|
interface ProductItemSmallMobileProps extends ProductItemProps {
|
|
1416
2415
|
size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
|
|
2416
|
+
imageHover?: ImageProps;
|
|
2417
|
+
topTag?: JSX.Element;
|
|
2418
|
+
bottomTag?: JSX.Element;
|
|
1417
2419
|
onClick?: () => void;
|
|
2420
|
+
priceDisplayType?: 'default' | 'styled';
|
|
2421
|
+
priceAtBottom?: boolean;
|
|
2422
|
+
priceLoading?: boolean;
|
|
2423
|
+
noFollow?: boolean;
|
|
2424
|
+
colorPicker?: {
|
|
2425
|
+
display: boolean;
|
|
2426
|
+
position: string;
|
|
2427
|
+
component: JSX.Element | JSX.Element[] | undefined;
|
|
2428
|
+
};
|
|
2429
|
+
isBNPL?: {
|
|
2430
|
+
displayBNPL: boolean;
|
|
2431
|
+
installments: number;
|
|
2432
|
+
installmentPrice: string;
|
|
2433
|
+
iconFolder?: string;
|
|
2434
|
+
iconName: string;
|
|
2435
|
+
showLogo?: boolean;
|
|
2436
|
+
iconColor: string;
|
|
2437
|
+
fontSize: string;
|
|
2438
|
+
};
|
|
2439
|
+
hasStrength?: {
|
|
2440
|
+
strength: number;
|
|
2441
|
+
description: string;
|
|
2442
|
+
};
|
|
1418
2443
|
}
|
|
1419
2444
|
|
|
1420
2445
|
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
|
|
@@ -1423,7 +2448,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
|
|
|
1423
2448
|
};
|
|
1424
2449
|
|
|
1425
2450
|
declare const Collection: {
|
|
1426
|
-
ProductItemMobile: ({ title, image, price, rating, size,
|
|
2451
|
+
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
2452
|
withProductGrid: typeof withProductGrid;
|
|
1428
2453
|
};
|
|
1429
2454
|
|
|
@@ -1484,49 +2509,56 @@ interface PaginationProps {
|
|
|
1484
2509
|
underlineActive?: boolean;
|
|
1485
2510
|
boldActive?: boolean;
|
|
1486
2511
|
disabled?: boolean;
|
|
2512
|
+
showReducedPages?: boolean;
|
|
1487
2513
|
}
|
|
1488
|
-
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
|
|
2514
|
+
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
|
|
2515
|
+
|
|
2516
|
+
declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
|
|
1489
2517
|
|
|
1490
|
-
declare const Text:
|
|
2518
|
+
declare const Text: ({ variant, children, testId, asSpan, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1491
2519
|
declare type TextHeroProps = {
|
|
1492
2520
|
variant: 'hero1' | 'hero2' | 'hero3';
|
|
1493
2521
|
weight?: 'heavy' | 'bold' | 'demi';
|
|
1494
|
-
size?: 'regular';
|
|
2522
|
+
size?: 'regular' | 'xsmall';
|
|
1495
2523
|
underline?: never;
|
|
1496
2524
|
disabled?: never;
|
|
1497
2525
|
wide?: never;
|
|
1498
2526
|
original?: never;
|
|
1499
2527
|
allCaps?: never;
|
|
2528
|
+
href: never;
|
|
1500
2529
|
};
|
|
1501
2530
|
declare type TextDisplayProps = {
|
|
1502
2531
|
variant: 'display1' | 'display2';
|
|
1503
2532
|
weight?: 'bold' | 'demi';
|
|
1504
|
-
size?: 'regular';
|
|
2533
|
+
size?: 'regular' | 'xsmall';
|
|
1505
2534
|
underline?: never;
|
|
1506
2535
|
disabled?: never;
|
|
1507
2536
|
wide?: never;
|
|
1508
2537
|
original?: never;
|
|
1509
2538
|
allCaps?: never;
|
|
2539
|
+
href: never;
|
|
1510
2540
|
};
|
|
1511
2541
|
declare type TextHeadingProps = {
|
|
1512
|
-
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
|
|
2542
|
+
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6' | 'heading7' | 'heading8';
|
|
1513
2543
|
weight?: 'bold' | 'demi' | 'regular';
|
|
1514
|
-
size?: 'regular';
|
|
2544
|
+
size?: 'regular' | 'xsmall';
|
|
1515
2545
|
underline?: never;
|
|
1516
2546
|
disabled?: never;
|
|
1517
2547
|
wide?: never;
|
|
1518
2548
|
original?: never;
|
|
1519
2549
|
allCaps?: never;
|
|
2550
|
+
href?: never;
|
|
1520
2551
|
};
|
|
1521
2552
|
declare type TextBodyProps = {
|
|
1522
2553
|
variant: 'body';
|
|
1523
|
-
size?: 'regular' | 'small';
|
|
2554
|
+
size?: 'regular' | 'small' | 'xsmall';
|
|
1524
2555
|
weight?: 'bold' | 'demi' | 'regular';
|
|
1525
2556
|
underline?: never;
|
|
1526
2557
|
disabled?: never;
|
|
1527
2558
|
wide?: never;
|
|
1528
2559
|
original?: never;
|
|
1529
2560
|
allCaps?: never;
|
|
2561
|
+
href?: never;
|
|
1530
2562
|
};
|
|
1531
2563
|
declare type TextButtonProps = {
|
|
1532
2564
|
variant: 'button';
|
|
@@ -1537,6 +2569,7 @@ declare type TextButtonProps = {
|
|
|
1537
2569
|
wide?: boolean;
|
|
1538
2570
|
original?: never;
|
|
1539
2571
|
allCaps?: never;
|
|
2572
|
+
href?: never;
|
|
1540
2573
|
};
|
|
1541
2574
|
declare type TextPricingProps = {
|
|
1542
2575
|
variant: 'pricing';
|
|
@@ -1547,6 +2580,7 @@ declare type TextPricingProps = {
|
|
|
1547
2580
|
wide?: never;
|
|
1548
2581
|
original?: boolean;
|
|
1549
2582
|
allCaps?: never;
|
|
2583
|
+
href?: never;
|
|
1550
2584
|
};
|
|
1551
2585
|
declare type TextLinkProps = {
|
|
1552
2586
|
variant: 'link';
|
|
@@ -1557,9 +2591,11 @@ declare type TextLinkProps = {
|
|
|
1557
2591
|
wide?: never;
|
|
1558
2592
|
original?: never;
|
|
1559
2593
|
allCaps?: never;
|
|
1560
|
-
|
|
2594
|
+
href?: string;
|
|
2595
|
+
};
|
|
1561
2596
|
declare type TextLabelProps = {
|
|
1562
2597
|
variant: 'label';
|
|
2598
|
+
color?: string;
|
|
1563
2599
|
weight?: 'regular' | 'demi';
|
|
1564
2600
|
size?: 'regular' | 'small';
|
|
1565
2601
|
underline?: never;
|
|
@@ -1567,6 +2603,7 @@ declare type TextLabelProps = {
|
|
|
1567
2603
|
wide?: never;
|
|
1568
2604
|
original?: never;
|
|
1569
2605
|
allCaps?: never;
|
|
2606
|
+
href?: never;
|
|
1570
2607
|
} & LabelHTMLAttributes<'label'>;
|
|
1571
2608
|
declare type TextTagProps = {
|
|
1572
2609
|
variant: 'tag';
|
|
@@ -1577,11 +2614,15 @@ declare type TextTagProps = {
|
|
|
1577
2614
|
wide?: never;
|
|
1578
2615
|
original?: never;
|
|
1579
2616
|
allCaps?: boolean;
|
|
2617
|
+
href?: never;
|
|
1580
2618
|
};
|
|
1581
|
-
declare type TextProps = AriaAttributes & {
|
|
2619
|
+
declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
|
|
2620
|
+
children: ReactNode;
|
|
1582
2621
|
style?: CSSProperties;
|
|
1583
2622
|
className?: string;
|
|
1584
2623
|
testId?: string;
|
|
2624
|
+
asSpan?: boolean;
|
|
2625
|
+
color?: string;
|
|
1585
2626
|
} & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
|
|
1586
2627
|
|
|
1587
2628
|
interface SearchBarProps {
|
|
@@ -1594,34 +2635,43 @@ interface SearchBarProps {
|
|
|
1594
2635
|
allResults?: number;
|
|
1595
2636
|
initialTerm?: string;
|
|
1596
2637
|
shouldClear?: boolean;
|
|
2638
|
+
isBlogSearchBar?: boolean;
|
|
2639
|
+
ariaLabel?: string;
|
|
2640
|
+
placeholder?: string;
|
|
2641
|
+
id?: string;
|
|
2642
|
+
autoComplete?: string;
|
|
1597
2643
|
}
|
|
1598
|
-
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, }: SearchBarProps) => JSX.Element;
|
|
2644
|
+
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
|
|
1599
2645
|
|
|
1600
|
-
interface ProductGalleryMobileProps {
|
|
2646
|
+
interface ProductGalleryMobileProps$1 {
|
|
1601
2647
|
images: ImageType[];
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
2648
|
+
customClick?: boolean;
|
|
2649
|
+
topTag?: JSX.Element;
|
|
2650
|
+
bottomTag?: JSX.Element;
|
|
1605
2651
|
productImageDataTestId?: string;
|
|
1606
|
-
|
|
2652
|
+
borderRadiusVariant?: boolean;
|
|
2653
|
+
selectedValue?: ImageType;
|
|
1607
2654
|
}
|
|
1608
|
-
declare const ProductGalleryMobile: ({ images,
|
|
2655
|
+
declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps$1) => JSX.Element;
|
|
1609
2656
|
|
|
1610
2657
|
interface RadioProps {
|
|
1611
2658
|
name: string;
|
|
1612
2659
|
value: string;
|
|
1613
2660
|
id: string;
|
|
1614
|
-
label: string;
|
|
2661
|
+
label: string | ReactFragment;
|
|
1615
2662
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1616
2663
|
checked?: boolean;
|
|
1617
2664
|
disabled?: boolean;
|
|
1618
2665
|
onChange: (option: RadioGroupOption) => void;
|
|
2666
|
+
style?: React.CSSProperties;
|
|
1619
2667
|
}
|
|
1620
|
-
declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
|
|
2668
|
+
declare const RadioInput: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
|
|
1621
2669
|
|
|
1622
2670
|
declare type PortalProps = {
|
|
1623
2671
|
id: string;
|
|
1624
2672
|
className?: string;
|
|
2673
|
+
overflow?: boolean;
|
|
2674
|
+
style?: CSSProperties;
|
|
1625
2675
|
};
|
|
1626
2676
|
declare const Portal: FC<PortalProps>;
|
|
1627
2677
|
|
|
@@ -1629,10 +2679,12 @@ declare type ModalProps = {
|
|
|
1629
2679
|
id: string;
|
|
1630
2680
|
dismissable?: boolean;
|
|
1631
2681
|
maxFullScreen?: boolean;
|
|
2682
|
+
padding?: string;
|
|
1632
2683
|
};
|
|
1633
2684
|
interface ContainerProps {
|
|
1634
2685
|
maxFullScreen: boolean;
|
|
1635
2686
|
opened?: boolean;
|
|
2687
|
+
padding?: string;
|
|
1636
2688
|
}
|
|
1637
2689
|
declare const Overlay: _emotion_styled.StyledComponent<{
|
|
1638
2690
|
theme?: _emotion_react.Theme | undefined;
|
|
@@ -1695,6 +2747,26 @@ declare type SpacingProps = {
|
|
|
1695
2747
|
};
|
|
1696
2748
|
declare const Spacing: FC<SpacingProps>;
|
|
1697
2749
|
|
|
2750
|
+
interface PackOption$1 {
|
|
2751
|
+
label: string;
|
|
2752
|
+
description: string;
|
|
2753
|
+
meta: {
|
|
2754
|
+
discountPercentage: number;
|
|
2755
|
+
originalPrice: number;
|
|
2756
|
+
price: number;
|
|
2757
|
+
quantity: number;
|
|
2758
|
+
icon: string;
|
|
2759
|
+
tag?: string;
|
|
2760
|
+
};
|
|
2761
|
+
}
|
|
2762
|
+
interface PackSelectorProps$1 {
|
|
2763
|
+
packs: PackOption$1[];
|
|
2764
|
+
selectedValue: PackOption$1;
|
|
2765
|
+
onChange: (size: PackOption$1) => void;
|
|
2766
|
+
currencyCode?: string;
|
|
2767
|
+
}
|
|
2768
|
+
declare const PackSelector: FC<PackSelectorProps$1>;
|
|
2769
|
+
|
|
1698
2770
|
interface PackOption {
|
|
1699
2771
|
label: string;
|
|
1700
2772
|
description: string;
|
|
@@ -1711,8 +2783,9 @@ interface PackSelectorProps {
|
|
|
1711
2783
|
packs: PackOption[];
|
|
1712
2784
|
selectedValue: PackOption;
|
|
1713
2785
|
onChange: (size: PackOption) => void;
|
|
2786
|
+
currencyCode?: string;
|
|
1714
2787
|
}
|
|
1715
|
-
declare const
|
|
2788
|
+
declare const PackSelectorV2: FC<PackSelectorProps>;
|
|
1716
2789
|
|
|
1717
2790
|
interface FiltersProps {
|
|
1718
2791
|
values: Filter[];
|
|
@@ -1737,6 +2810,229 @@ interface SearchNavigationProps {
|
|
|
1737
2810
|
}
|
|
1738
2811
|
declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
|
|
1739
2812
|
|
|
2813
|
+
interface TabProps$1 {
|
|
2814
|
+
title: string;
|
|
2815
|
+
content: ReactNode;
|
|
2816
|
+
}
|
|
2817
|
+
interface TabsProps {
|
|
2818
|
+
backgroundColor?: string;
|
|
2819
|
+
initialSelected?: string;
|
|
2820
|
+
tabsMaxWidth?: string;
|
|
2821
|
+
tabs: TabProps$1[];
|
|
2822
|
+
}
|
|
2823
|
+
declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
|
|
2824
|
+
|
|
2825
|
+
interface TabProps {
|
|
2826
|
+
title: string;
|
|
2827
|
+
titleSize?: string;
|
|
2828
|
+
selectedTitleWeight?: number;
|
|
2829
|
+
height?: string;
|
|
2830
|
+
selected?: boolean;
|
|
2831
|
+
color?: string;
|
|
2832
|
+
tabsMaxWidth?: string;
|
|
2833
|
+
onClick: (clickedTab: string) => void;
|
|
2834
|
+
}
|
|
2835
|
+
declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
|
|
2836
|
+
|
|
2837
|
+
interface IconsWithTitleProps {
|
|
2838
|
+
backgroundColor: string;
|
|
2839
|
+
iconColor: string;
|
|
2840
|
+
iconName: string;
|
|
2841
|
+
iconFolder?: string;
|
|
2842
|
+
withWrapper?: boolean;
|
|
2843
|
+
iconTitle: string;
|
|
2844
|
+
iconSizeDesktop?: number;
|
|
2845
|
+
iconSizeMobile?: number;
|
|
2846
|
+
iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
2847
|
+
iconTitleStyle?: string;
|
|
2848
|
+
iconStyle?: string;
|
|
2849
|
+
isTitleInnerHtml?: boolean;
|
|
2850
|
+
}
|
|
2851
|
+
declare const IconsWithTitle: ({ iconName, iconTitle, iconFolder, withWrapper, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconsWithTitleProps) => JSX.Element | null;
|
|
2852
|
+
|
|
2853
|
+
interface NoteProps {
|
|
2854
|
+
accentColor?: string;
|
|
2855
|
+
color?: string;
|
|
2856
|
+
backgroundColor?: string;
|
|
2857
|
+
importantNoteText: string;
|
|
2858
|
+
text: string;
|
|
2859
|
+
}
|
|
2860
|
+
declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
|
|
2861
|
+
|
|
2862
|
+
interface TextWithImageProps {
|
|
2863
|
+
title: string;
|
|
2864
|
+
text?: string;
|
|
2865
|
+
children?: ReactNode;
|
|
2866
|
+
buttomText: string;
|
|
2867
|
+
backgroundColor: string;
|
|
2868
|
+
imageLeftSide?: boolean;
|
|
2869
|
+
URLLink?: string;
|
|
2870
|
+
onButtonClick?: () => void;
|
|
2871
|
+
isRedirectionURL: boolean;
|
|
2872
|
+
btnBGColor?: string;
|
|
2873
|
+
btnHoverBGColor?: string;
|
|
2874
|
+
imgVideo: imageVideoProps;
|
|
2875
|
+
contentAfterButton?: React.ReactNode;
|
|
2876
|
+
titleStyle?: React.CSSProperties;
|
|
2877
|
+
textStyle?: React.CSSProperties;
|
|
2878
|
+
buttonWideOnMobile?: boolean;
|
|
2879
|
+
}
|
|
2880
|
+
declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2881
|
+
|
|
2882
|
+
interface AccordionOptionsProps {
|
|
2883
|
+
titleColor: string;
|
|
2884
|
+
accordions: AccordionProps[];
|
|
2885
|
+
}
|
|
2886
|
+
declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
|
|
2887
|
+
|
|
2888
|
+
interface ShortBannerProps {
|
|
2889
|
+
title: string;
|
|
2890
|
+
bannerText: string;
|
|
2891
|
+
backgroundColor: string;
|
|
2892
|
+
alignCenter?: boolean;
|
|
2893
|
+
widthAuto?: boolean;
|
|
2894
|
+
textColor: string;
|
|
2895
|
+
}
|
|
2896
|
+
declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
|
|
2897
|
+
|
|
2898
|
+
interface BeforeAfterCardProps {
|
|
2899
|
+
name: string;
|
|
2900
|
+
age?: string;
|
|
2901
|
+
months?: string;
|
|
2902
|
+
beforeImage: string;
|
|
2903
|
+
afterImage: string;
|
|
2904
|
+
alignCenter?: boolean;
|
|
2905
|
+
imageBorderRadius?: string;
|
|
2906
|
+
size?: ComponentSize;
|
|
2907
|
+
}
|
|
2908
|
+
declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
|
|
2909
|
+
|
|
2910
|
+
interface ImageCardWithDescriptionProps {
|
|
2911
|
+
image: string;
|
|
2912
|
+
title?: string;
|
|
2913
|
+
description?: string;
|
|
2914
|
+
titlePosition?: 'center' | 'left';
|
|
2915
|
+
}
|
|
2916
|
+
declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
|
|
2917
|
+
|
|
2918
|
+
interface Checkpoint$1 {
|
|
2919
|
+
day: string;
|
|
2920
|
+
date: string;
|
|
2921
|
+
statusMessage: string;
|
|
2922
|
+
}
|
|
2923
|
+
interface TrackingProgressProps {
|
|
2924
|
+
checkPoints: Checkpoint$1[];
|
|
2925
|
+
amountOfCheckPoints: number;
|
|
2926
|
+
}
|
|
2927
|
+
declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
|
|
2928
|
+
|
|
2929
|
+
interface Checkpoint {
|
|
2930
|
+
day: string;
|
|
2931
|
+
date: string;
|
|
2932
|
+
statusMessage: string;
|
|
2933
|
+
}
|
|
2934
|
+
interface TrackingProgressV2Props {
|
|
2935
|
+
checkPoints: Checkpoint[];
|
|
2936
|
+
amountOfCheckPoints: number;
|
|
2937
|
+
warning?: boolean;
|
|
2938
|
+
}
|
|
2939
|
+
declare const TrackingProgressV2: ({ checkPoints, amountOfCheckPoints, warning, }: TrackingProgressV2Props) => JSX.Element;
|
|
2940
|
+
|
|
2941
|
+
interface ReviewsHeaderProps {
|
|
2942
|
+
title?: string;
|
|
2943
|
+
rating: number;
|
|
2944
|
+
reviews: number;
|
|
2945
|
+
reviewsText: string;
|
|
2946
|
+
reviewsSummary: string[];
|
|
2947
|
+
onClickReview: (reveiw: string) => void;
|
|
2948
|
+
}
|
|
2949
|
+
declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
|
|
2950
|
+
|
|
2951
|
+
interface ReviewProps {
|
|
2952
|
+
reviewId: string;
|
|
2953
|
+
reviewerName: string;
|
|
2954
|
+
date: Date;
|
|
2955
|
+
rating: number;
|
|
2956
|
+
stars: {
|
|
2957
|
+
color: string;
|
|
2958
|
+
size: ComponentSize.Medium | ComponentSize.Small;
|
|
2959
|
+
};
|
|
2960
|
+
title: string;
|
|
2961
|
+
description: string;
|
|
2962
|
+
image?: {
|
|
2963
|
+
src: string;
|
|
2964
|
+
alt: string;
|
|
2965
|
+
};
|
|
2966
|
+
modalId: string;
|
|
2967
|
+
maxFullScreen?: boolean;
|
|
2968
|
+
verified?: boolean;
|
|
2969
|
+
productImage?: string;
|
|
2970
|
+
productTitle?: string;
|
|
2971
|
+
productLink?: string;
|
|
2972
|
+
helpfulCount?: number;
|
|
2973
|
+
helpfulAction?: (id: string) => void;
|
|
2974
|
+
notHelpfulCount?: number;
|
|
2975
|
+
notHelpfulAction?: (id: string) => void;
|
|
2976
|
+
}
|
|
2977
|
+
declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps) => JSX.Element;
|
|
2978
|
+
|
|
2979
|
+
interface ProductGalleryMobileProps {
|
|
2980
|
+
images: ImageType[];
|
|
2981
|
+
selectedValue?: ImageType;
|
|
2982
|
+
topTag?: JSX.Element;
|
|
2983
|
+
bottomTag?: JSX.Element;
|
|
2984
|
+
productImageDataTestId?: string;
|
|
2985
|
+
slideDotsDataTestId?: string;
|
|
2986
|
+
borderRadiusVariant?: boolean;
|
|
2987
|
+
}
|
|
2988
|
+
declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
|
|
2989
|
+
|
|
2990
|
+
interface AbsorbencyLevelProps {
|
|
2991
|
+
dropTotal: number;
|
|
2992
|
+
drops: number;
|
|
2993
|
+
absorbencyTitle: string;
|
|
2994
|
+
absorbencyDescription: string;
|
|
2995
|
+
}
|
|
2996
|
+
declare const AbsorbencyLevel: ({ dropTotal, drops, absorbencyTitle, absorbencyDescription, }: AbsorbencyLevelProps) => JSX.Element;
|
|
2997
|
+
|
|
2998
|
+
interface HurryUpProps {
|
|
2999
|
+
hurryUpText: string;
|
|
3000
|
+
backgroundColor?: string;
|
|
3001
|
+
showTimer?: boolean;
|
|
3002
|
+
iconSize?: number;
|
|
3003
|
+
textPosition?: 'left' | 'right' | 'center';
|
|
3004
|
+
}
|
|
3005
|
+
declare const HurryUp: ({ hurryUpText, backgroundColor, iconSize, textPosition, showTimer, }: HurryUpProps) => JSX.Element;
|
|
3006
|
+
|
|
3007
|
+
interface BuyNowPayLaterProps {
|
|
3008
|
+
displayBNPL: boolean;
|
|
3009
|
+
installments: number;
|
|
3010
|
+
installmentPrice: string;
|
|
3011
|
+
iconFolder?: string;
|
|
3012
|
+
iconName: string;
|
|
3013
|
+
showLogo?: boolean;
|
|
3014
|
+
iconColor?: string;
|
|
3015
|
+
fontSize?: string;
|
|
3016
|
+
}
|
|
3017
|
+
declare const BuyNowPayLater: ({ displayBNPL, installments, installmentPrice, iconFolder, iconName, showLogo, iconColor, fontSize, }: BuyNowPayLaterProps) => JSX.Element | null;
|
|
3018
|
+
|
|
3019
|
+
interface StrengthBarProps {
|
|
3020
|
+
barsFilled?: number;
|
|
3021
|
+
supportText?: string;
|
|
3022
|
+
}
|
|
3023
|
+
declare const StrengthBars: ({ barsFilled, supportText }: StrengthBarProps) => JSX.Element;
|
|
3024
|
+
|
|
3025
|
+
interface DropdownProps {
|
|
3026
|
+
options: SelectedOption[];
|
|
3027
|
+
defaultLabel: string;
|
|
3028
|
+
onOptionSelect: (option: string) => void;
|
|
3029
|
+
}
|
|
3030
|
+
interface SelectedOption {
|
|
3031
|
+
size: string;
|
|
3032
|
+
detail: string;
|
|
3033
|
+
}
|
|
3034
|
+
declare const SizeDropdown: React.FC<DropdownProps>;
|
|
3035
|
+
|
|
1740
3036
|
declare global {
|
|
1741
3037
|
interface Events {
|
|
1742
3038
|
modal: {
|
|
@@ -1776,4 +3072,8 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1776
3072
|
currency?: string | undefined;
|
|
1777
3073
|
}) => string;
|
|
1778
3074
|
|
|
1779
|
-
|
|
3075
|
+
declare const getSrcSet: (imgLink: string, ...breakpoints: number[]) => string;
|
|
3076
|
+
|
|
3077
|
+
declare const mediaQueries: facepaint.DynamicStyleFunction;
|
|
3078
|
+
|
|
3079
|
+
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 };
|