@trafilea/afrodita-components 5.0.0-beta.27 → 5.0.0-beta.271
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 +1375 -86
- package/build/index.esm.css +4 -1
- package/build/index.esm.js +7169 -3263
- package/build/index.esm.js.map +1 -1
- package/build/index.js +7201 -3265
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.d.ts +714 -0
- package/build/theme/revel.theme.js +1044 -0
- package/build/theme/shapermint.theme.d.ts +299 -1
- package/build/theme/shapermint.theme.js +326 -3
- package/build/theme/thespadr.theme.d.ts +714 -0
- package/build/theme/thespadr.theme.js +1135 -0
- package/build/theme/truekind.theme.d.ts +299 -1
- package/build/theme/truekind.theme.js +329 -5
- 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,32 @@ 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
|
+
|
|
250
605
|
declare const PDP_Clock: typeof Clock;
|
|
251
606
|
declare const PDP_FlagUSA: typeof FlagUSA;
|
|
252
607
|
declare const PDP_Minus: typeof Minus;
|
|
@@ -257,6 +612,18 @@ declare const PDP_StarEmpty: typeof StarEmpty;
|
|
|
257
612
|
declare const PDP_StarHalf: typeof StarHalf;
|
|
258
613
|
declare const PDP_Stopwatch: typeof Stopwatch;
|
|
259
614
|
declare const PDP_Shipping: typeof Shipping;
|
|
615
|
+
declare const PDP_ErrorCross: typeof ErrorCross;
|
|
616
|
+
declare const PDP_CircleNumber: typeof CircleNumber;
|
|
617
|
+
declare const PDP_SizeEmpty: typeof SizeEmpty;
|
|
618
|
+
declare const PDP_PlayMini: typeof PlayMini;
|
|
619
|
+
declare const PDP_ShippingEmpty: typeof ShippingEmpty;
|
|
620
|
+
declare const PDP_Drop: typeof Drop;
|
|
621
|
+
declare const PDP_DropEmpty: typeof DropEmpty;
|
|
622
|
+
declare const PDP_Stars: typeof Stars;
|
|
623
|
+
declare const PDP_Moon: typeof Moon;
|
|
624
|
+
declare const PDP_Hours: typeof Hours;
|
|
625
|
+
declare const PDP_NewClock: typeof NewClock;
|
|
626
|
+
declare const PDP_KlarnaLogo: typeof KlarnaLogo;
|
|
260
627
|
declare namespace PDP {
|
|
261
628
|
export {
|
|
262
629
|
PDP_Clock as Clock,
|
|
@@ -269,6 +636,19 @@ declare namespace PDP {
|
|
|
269
636
|
PDP_StarHalf as StarHalf,
|
|
270
637
|
PDP_Stopwatch as Stopwatch,
|
|
271
638
|
PDP_Shipping as Shipping,
|
|
639
|
+
LightBulb$1 as LightBulb,
|
|
640
|
+
PDP_ErrorCross as ErrorCross,
|
|
641
|
+
PDP_CircleNumber as CircleNumber,
|
|
642
|
+
PDP_SizeEmpty as SizeEmpty,
|
|
643
|
+
PDP_PlayMini as PlayMini,
|
|
644
|
+
PDP_ShippingEmpty as ShippingEmpty,
|
|
645
|
+
PDP_Drop as Drop,
|
|
646
|
+
PDP_DropEmpty as DropEmpty,
|
|
647
|
+
PDP_Stars as Stars,
|
|
648
|
+
PDP_Moon as Moon,
|
|
649
|
+
PDP_Hours as Hours,
|
|
650
|
+
PDP_NewClock as NewClock,
|
|
651
|
+
PDP_KlarnaLogo as KlarnaLogo,
|
|
272
652
|
};
|
|
273
653
|
}
|
|
274
654
|
|
|
@@ -286,6 +666,8 @@ declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
286
666
|
|
|
287
667
|
declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
288
668
|
|
|
669
|
+
declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
670
|
+
|
|
289
671
|
declare const SocialMedia_Facebook: typeof Facebook;
|
|
290
672
|
declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
|
|
291
673
|
declare const SocialMedia_Instagram: typeof Instagram;
|
|
@@ -293,6 +675,7 @@ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
|
|
|
293
675
|
declare const SocialMedia_Pinterest: typeof Pinterest;
|
|
294
676
|
declare const SocialMedia_Twitter: typeof Twitter;
|
|
295
677
|
declare const SocialMedia_Youtube: typeof Youtube;
|
|
678
|
+
declare const SocialMedia_Interaction: typeof Interaction;
|
|
296
679
|
declare namespace SocialMedia {
|
|
297
680
|
export {
|
|
298
681
|
SocialMedia_Facebook as Facebook,
|
|
@@ -302,14 +685,15 @@ declare namespace SocialMedia {
|
|
|
302
685
|
SocialMedia_Pinterest as Pinterest,
|
|
303
686
|
SocialMedia_Twitter as Twitter,
|
|
304
687
|
SocialMedia_Youtube as Youtube,
|
|
688
|
+
SocialMedia_Interaction as Interaction,
|
|
305
689
|
};
|
|
306
690
|
}
|
|
307
691
|
|
|
308
|
-
declare const Search: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
692
|
+
declare const Search: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
309
693
|
|
|
310
694
|
declare const User: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
311
695
|
|
|
312
|
-
declare const ShoppingBag: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
696
|
+
declare const ShoppingBag: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
313
697
|
|
|
314
698
|
declare const ShoppingCart: FC<IconProps>;
|
|
315
699
|
|
|
@@ -317,12 +701,64 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
317
701
|
|
|
318
702
|
declare const Hamburger: FC<IconProps>;
|
|
319
703
|
|
|
704
|
+
declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
705
|
+
|
|
706
|
+
declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
707
|
+
|
|
708
|
+
declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
709
|
+
|
|
710
|
+
declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
711
|
+
|
|
712
|
+
declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
713
|
+
|
|
714
|
+
declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
715
|
+
|
|
716
|
+
declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
717
|
+
|
|
718
|
+
declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
719
|
+
|
|
720
|
+
declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
721
|
+
|
|
722
|
+
declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
723
|
+
|
|
724
|
+
declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
725
|
+
|
|
726
|
+
declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
727
|
+
|
|
728
|
+
declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
729
|
+
|
|
730
|
+
declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
731
|
+
|
|
732
|
+
declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
733
|
+
|
|
734
|
+
declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
735
|
+
|
|
736
|
+
declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
737
|
+
|
|
738
|
+
declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
739
|
+
|
|
320
740
|
declare const Navigation_Search: typeof Search;
|
|
321
741
|
declare const Navigation_User: typeof User;
|
|
322
742
|
declare const Navigation_ShoppingBag: typeof ShoppingBag;
|
|
323
743
|
declare const Navigation_ShoppingCart: typeof ShoppingCart;
|
|
324
744
|
declare const Navigation_MapMarker: typeof MapMarker;
|
|
325
745
|
declare const Navigation_Hamburger: typeof Hamburger;
|
|
746
|
+
declare const Navigation_AddressInformation: typeof AddressInformation;
|
|
747
|
+
declare const Navigation_ClubMembership: typeof ClubMembership;
|
|
748
|
+
declare const Navigation_Benefits: typeof Benefits;
|
|
749
|
+
declare const Navigation_Home: typeof Home;
|
|
750
|
+
declare const Navigation_HomeSolid: typeof HomeSolid;
|
|
751
|
+
declare const Navigation_ShoppingBagV2: typeof ShoppingBagV2;
|
|
752
|
+
declare const Navigation_UserSolid: typeof UserSolid;
|
|
753
|
+
declare const Navigation_SlideDotSolid: typeof SlideDotSolid;
|
|
754
|
+
declare const Navigation_Ellipsis: typeof Ellipsis;
|
|
755
|
+
declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
|
|
756
|
+
declare const Navigation_Lock: typeof Lock;
|
|
757
|
+
declare const Navigation_LockSolid: typeof LockSolid;
|
|
758
|
+
declare const Navigation_Loading: typeof Loading;
|
|
759
|
+
declare const Navigation_MapSolid: typeof MapSolid;
|
|
760
|
+
declare const Navigation_UserV2: typeof UserV2;
|
|
761
|
+
declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
|
|
326
762
|
declare namespace Navigation {
|
|
327
763
|
export {
|
|
328
764
|
Navigation_Search as Search,
|
|
@@ -331,6 +767,24 @@ declare namespace Navigation {
|
|
|
331
767
|
Navigation_ShoppingCart as ShoppingCart,
|
|
332
768
|
Navigation_MapMarker as MapMarker,
|
|
333
769
|
Navigation_Hamburger as Hamburger,
|
|
770
|
+
Navigation_AddressInformation as AddressInformation,
|
|
771
|
+
Navigation_ClubMembership as ClubMembership,
|
|
772
|
+
Navigation_Benefits as Benefits,
|
|
773
|
+
Navigation_Home as Home,
|
|
774
|
+
Navigation_HomeSolid as HomeSolid,
|
|
775
|
+
Navigation_ShoppingBagV2 as ShoppingBagV2,
|
|
776
|
+
Navigation_UserSolid as UserSolid,
|
|
777
|
+
SlideDot$1 as SlideDot,
|
|
778
|
+
Navigation_SlideDotSolid as SlideDotSolid,
|
|
779
|
+
Navigation_Ellipsis as Ellipsis,
|
|
780
|
+
Navigation_EllipsisHorizontal as EllipsisHorizontal,
|
|
781
|
+
Filters$1 as Filters,
|
|
782
|
+
Navigation_Lock as Lock,
|
|
783
|
+
Navigation_LockSolid as LockSolid,
|
|
784
|
+
Navigation_Loading as Loading,
|
|
785
|
+
Navigation_MapSolid as MapSolid,
|
|
786
|
+
Navigation_UserV2 as UserV2,
|
|
787
|
+
Navigation_ShoppingCartV2 as ShoppingCartV2,
|
|
334
788
|
};
|
|
335
789
|
}
|
|
336
790
|
|
|
@@ -351,18 +805,61 @@ interface IconWrapperProps {
|
|
|
351
805
|
fill?: string;
|
|
352
806
|
}
|
|
353
807
|
|
|
354
|
-
declare const Mail: ({ height, width }: IconWrapperProps) => JSX.Element;
|
|
808
|
+
declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
|
|
809
|
+
|
|
810
|
+
declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
811
|
+
|
|
812
|
+
declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
813
|
+
|
|
814
|
+
declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
815
|
+
|
|
816
|
+
declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
817
|
+
|
|
818
|
+
declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
819
|
+
|
|
820
|
+
declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
821
|
+
|
|
822
|
+
declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
823
|
+
|
|
824
|
+
declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
825
|
+
|
|
826
|
+
declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
827
|
+
|
|
828
|
+
declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
829
|
+
|
|
830
|
+
declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
355
831
|
|
|
356
832
|
declare const Messaging_QuestionCircle: typeof QuestionCircle;
|
|
357
833
|
declare const Messaging_Messenger: typeof Messenger;
|
|
358
834
|
declare const Messaging_Comment: typeof Comment;
|
|
359
835
|
declare const Messaging_Mail: typeof Mail;
|
|
836
|
+
declare const Messaging_QuoteLeft: typeof QuoteLeft;
|
|
837
|
+
declare const Messaging_QuoteRight: typeof QuoteRight;
|
|
838
|
+
declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
|
|
839
|
+
declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
|
|
840
|
+
declare const Messaging_Light: typeof Light;
|
|
841
|
+
declare const Messaging_LightBulb: typeof LightBulb;
|
|
842
|
+
declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
|
|
843
|
+
declare const Messaging_CommentDots: typeof CommentDots;
|
|
844
|
+
declare const Messaging_CommentLight: typeof CommentLight;
|
|
845
|
+
declare const Messaging_CommentMoney: typeof CommentMoney;
|
|
360
846
|
declare namespace Messaging {
|
|
361
847
|
export {
|
|
362
848
|
Messaging_QuestionCircle as QuestionCircle,
|
|
363
849
|
Messaging_Messenger as Messenger,
|
|
364
850
|
Messaging_Comment as Comment,
|
|
365
851
|
Messaging_Mail as Mail,
|
|
852
|
+
Community$1 as Community,
|
|
853
|
+
Messaging_QuoteLeft as QuoteLeft,
|
|
854
|
+
Messaging_QuoteRight as QuoteRight,
|
|
855
|
+
Messaging_QuoteSolidLeft as QuoteSolidLeft,
|
|
856
|
+
Messaging_QuoteSolidRight as QuoteSolidRight,
|
|
857
|
+
Messaging_Light as Light,
|
|
858
|
+
Messaging_LightBulb as LightBulb,
|
|
859
|
+
Messaging_LightBulbSolid as LightBulbSolid,
|
|
860
|
+
Messaging_CommentDots as CommentDots,
|
|
861
|
+
Messaging_CommentLight as CommentLight,
|
|
862
|
+
Messaging_CommentMoney as CommentMoney,
|
|
366
863
|
};
|
|
367
864
|
}
|
|
368
865
|
|
|
@@ -423,10 +920,83 @@ declare namespace SlideDots {
|
|
|
423
920
|
|
|
424
921
|
declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
|
|
425
922
|
|
|
923
|
+
declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
|
|
924
|
+
|
|
925
|
+
declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
926
|
+
|
|
927
|
+
declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
|
|
928
|
+
|
|
929
|
+
declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
|
|
930
|
+
|
|
931
|
+
declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
932
|
+
|
|
933
|
+
declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
|
|
934
|
+
|
|
426
935
|
declare const Emoji_Thinking: typeof Thinking;
|
|
936
|
+
declare const Emoji_SmilingV2: typeof SmilingV2;
|
|
937
|
+
declare const Emoji_Grinning: typeof Grinning;
|
|
938
|
+
declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
|
|
939
|
+
declare const Emoji_BlowingKiss: typeof BlowingKiss;
|
|
940
|
+
declare const Emoji_Frowning: typeof Frowning;
|
|
941
|
+
declare const Emoji_Relieved: typeof Relieved;
|
|
427
942
|
declare namespace Emoji {
|
|
428
943
|
export {
|
|
429
944
|
Emoji_Thinking as Thinking,
|
|
945
|
+
Emoji_SmilingV2 as SmilingV2,
|
|
946
|
+
Emoji_Grinning as Grinning,
|
|
947
|
+
Emoji_GrinningWithSweat as GrinningWithSweat,
|
|
948
|
+
Emoji_BlowingKiss as BlowingKiss,
|
|
949
|
+
Emoji_Frowning as Frowning,
|
|
950
|
+
Emoji_Relieved as Relieved,
|
|
951
|
+
};
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
955
|
+
|
|
956
|
+
declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
957
|
+
|
|
958
|
+
declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
959
|
+
|
|
960
|
+
declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
961
|
+
|
|
962
|
+
declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
963
|
+
|
|
964
|
+
declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
965
|
+
|
|
966
|
+
declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
967
|
+
|
|
968
|
+
declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
969
|
+
|
|
970
|
+
declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
971
|
+
|
|
972
|
+
declare const PriorityShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
973
|
+
|
|
974
|
+
declare const Guard: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
975
|
+
|
|
976
|
+
declare const MyAccount_FreeShipping: typeof FreeShipping;
|
|
977
|
+
declare const MyAccount_PersonalStylist: typeof PersonalStylist;
|
|
978
|
+
declare const MyAccount_Community: typeof Community;
|
|
979
|
+
declare const MyAccount_VIP: typeof VIP;
|
|
980
|
+
declare const MyAccount_DealsOffers: typeof DealsOffers;
|
|
981
|
+
declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
|
|
982
|
+
declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
|
|
983
|
+
declare const MyAccount_Profile: typeof Profile;
|
|
984
|
+
declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
|
|
985
|
+
declare const MyAccount_PriorityShipping: typeof PriorityShipping;
|
|
986
|
+
declare const MyAccount_Guard: typeof Guard;
|
|
987
|
+
declare namespace MyAccount {
|
|
988
|
+
export {
|
|
989
|
+
MyAccount_FreeShipping as FreeShipping,
|
|
990
|
+
MyAccount_PersonalStylist as PersonalStylist,
|
|
991
|
+
MyAccount_Community as Community,
|
|
992
|
+
MyAccount_VIP as VIP,
|
|
993
|
+
MyAccount_DealsOffers as DealsOffers,
|
|
994
|
+
MyAccount_StyleFashionContent as StyleFashionContent,
|
|
995
|
+
MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
|
|
996
|
+
MyAccount_Profile as Profile,
|
|
997
|
+
MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
|
|
998
|
+
MyAccount_PriorityShipping as PriorityShipping,
|
|
999
|
+
MyAccount_Guard as Guard,
|
|
430
1000
|
};
|
|
431
1001
|
}
|
|
432
1002
|
|
|
@@ -444,6 +1014,7 @@ declare const Icon: {
|
|
|
444
1014
|
Payment: typeof Payment;
|
|
445
1015
|
SlideDots: typeof SlideDots;
|
|
446
1016
|
Emoji: typeof Emoji;
|
|
1017
|
+
MyAccount: typeof MyAccount;
|
|
447
1018
|
};
|
|
448
1019
|
|
|
449
1020
|
interface CardBodyProps {
|
|
@@ -460,7 +1031,7 @@ interface borderProps {
|
|
|
460
1031
|
}
|
|
461
1032
|
interface CardProps {
|
|
462
1033
|
children: ReactNode;
|
|
463
|
-
backgroundColor
|
|
1034
|
+
backgroundColor?: string;
|
|
464
1035
|
widthAuto?: boolean;
|
|
465
1036
|
border?: borderProps;
|
|
466
1037
|
flex?: boolean;
|
|
@@ -488,6 +1059,8 @@ declare type CommonProps<T> = {
|
|
|
488
1059
|
initialValue?: Value<T>;
|
|
489
1060
|
placeHolder: string;
|
|
490
1061
|
testId?: string;
|
|
1062
|
+
required?: string;
|
|
1063
|
+
showRequiredPlaceholder?: boolean;
|
|
491
1064
|
};
|
|
492
1065
|
declare type ControlledProps<T> = {
|
|
493
1066
|
value: Value<T>;
|
|
@@ -498,7 +1071,22 @@ declare type UncontrolledProps<T> = {
|
|
|
498
1071
|
onChange?: OnChange<T>;
|
|
499
1072
|
} & CommonProps<T>;
|
|
500
1073
|
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;
|
|
1074
|
+
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, required, showRequiredPlaceholder, }: SimpleDropdownProps<T>): JSX.Element;
|
|
1075
|
+
|
|
1076
|
+
interface DialogPositionProps {
|
|
1077
|
+
top: string;
|
|
1078
|
+
right: string;
|
|
1079
|
+
}
|
|
1080
|
+
interface DialogDropdownProps {
|
|
1081
|
+
options: {
|
|
1082
|
+
label: string;
|
|
1083
|
+
value: string;
|
|
1084
|
+
}[];
|
|
1085
|
+
position: DialogPositionProps;
|
|
1086
|
+
style?: React.CSSProperties;
|
|
1087
|
+
className?: string;
|
|
1088
|
+
}
|
|
1089
|
+
declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
|
|
502
1090
|
|
|
503
1091
|
interface SizeSelectorProps {
|
|
504
1092
|
label: string;
|
|
@@ -529,6 +1117,7 @@ interface BaseButtonProps {
|
|
|
529
1117
|
inline?: boolean;
|
|
530
1118
|
uppercase?: boolean;
|
|
531
1119
|
testId?: string;
|
|
1120
|
+
id?: string;
|
|
532
1121
|
}
|
|
533
1122
|
|
|
534
1123
|
declare type BaseProps = Pick<BaseButtonProps, 'disabled' | 'type' | 'onClick'>;
|
|
@@ -550,8 +1139,21 @@ interface DiscountTagProps {
|
|
|
550
1139
|
borderColor?: string;
|
|
551
1140
|
textColor?: string;
|
|
552
1141
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1142
|
+
style?: React.CSSProperties;
|
|
553
1143
|
}
|
|
554
|
-
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, }: DiscountTagProps) => JSX.Element;
|
|
1144
|
+
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
|
|
1145
|
+
|
|
1146
|
+
interface ClubOfferTagProps {
|
|
1147
|
+
clubOfferText?: string;
|
|
1148
|
+
className?: string;
|
|
1149
|
+
disabled?: boolean;
|
|
1150
|
+
backgroundColor?: string;
|
|
1151
|
+
borderColor?: string;
|
|
1152
|
+
textColor?: string;
|
|
1153
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1154
|
+
style?: React.CSSProperties;
|
|
1155
|
+
}
|
|
1156
|
+
declare const ClubOfferTag: ({ clubOfferText, className, disabled, backgroundColor, borderColor, textColor, size, style, }: ClubOfferTagProps) => JSX.Element;
|
|
555
1157
|
|
|
556
1158
|
interface PriceLabelProps {
|
|
557
1159
|
finalPrice: string | number;
|
|
@@ -559,9 +1161,16 @@ interface PriceLabelProps {
|
|
|
559
1161
|
color?: string;
|
|
560
1162
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
561
1163
|
discount?: DiscountTagProps;
|
|
1164
|
+
clubOffer?: ClubOfferTagProps;
|
|
1165
|
+
finalPriceStyled?: boolean;
|
|
1166
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1167
|
+
originalPriceStyled?: boolean;
|
|
1168
|
+
originalPriceUnderlined?: boolean;
|
|
562
1169
|
testId?: string;
|
|
563
1170
|
}
|
|
564
|
-
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, size, }: PriceLabelProps) => JSX.Element;
|
|
1171
|
+
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
1172
|
+
|
|
1173
|
+
declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, clubOffer, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
565
1174
|
|
|
566
1175
|
interface ColorPickerProps {
|
|
567
1176
|
options: ColorPickerOption[];
|
|
@@ -583,21 +1192,29 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
|
|
|
583
1192
|
interface ProductGalleryProps {
|
|
584
1193
|
images: ImageType[];
|
|
585
1194
|
selectedValue?: ImageType;
|
|
586
|
-
|
|
587
|
-
|
|
1195
|
+
topTag?: JSX.Element;
|
|
1196
|
+
bottomTag?: JSX.Element;
|
|
588
1197
|
productImageDataTestId?: string;
|
|
589
1198
|
previewListDataTestId?: string;
|
|
1199
|
+
thumbnailPosition?: 'vertical' | 'horizontal';
|
|
1200
|
+
borderRadiusVariant?: boolean;
|
|
1201
|
+
previewImgBorderColor?: string;
|
|
1202
|
+
ctaText?: string;
|
|
1203
|
+
ctaAction?: () => void;
|
|
1204
|
+
hideCTA?: boolean;
|
|
590
1205
|
}
|
|
591
|
-
declare const ProductGallery: ({ images, selectedValue,
|
|
1206
|
+
declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, hideCTA, }: ProductGalleryProps) => JSX.Element;
|
|
592
1207
|
|
|
593
1208
|
interface RatingProps {
|
|
594
1209
|
rating: number;
|
|
595
1210
|
size?: ComponentSize;
|
|
596
|
-
reviews
|
|
597
|
-
reviewsText
|
|
1211
|
+
reviews?: number;
|
|
1212
|
+
reviewsText?: string;
|
|
598
1213
|
wrapWithParenthesis?: boolean;
|
|
1214
|
+
underline?: boolean;
|
|
1215
|
+
reviewsContainerId?: string;
|
|
599
1216
|
}
|
|
600
|
-
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
|
|
1217
|
+
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
|
|
601
1218
|
|
|
602
1219
|
interface FitPredictorProps {
|
|
603
1220
|
onClick: () => void;
|
|
@@ -609,8 +1226,23 @@ interface ProgressBarProps {
|
|
|
609
1226
|
fillColor: string;
|
|
610
1227
|
widthAuto?: boolean;
|
|
611
1228
|
percent?: number;
|
|
1229
|
+
height?: string;
|
|
1230
|
+
backgroundColor?: string;
|
|
1231
|
+
borderRadius?: string;
|
|
1232
|
+
}
|
|
1233
|
+
declare const ProgressBar: ({ description, fillColor, widthAuto, percent, height, backgroundColor, borderRadius, }: ProgressBarProps) => JSX.Element;
|
|
1234
|
+
|
|
1235
|
+
interface MotivatorProgressBarProps {
|
|
1236
|
+
fillColor?: string;
|
|
1237
|
+
currentAmount?: number;
|
|
1238
|
+
backgroundColor?: string;
|
|
1239
|
+
unfilledColor?: string;
|
|
1240
|
+
borderRadius?: string;
|
|
1241
|
+
rewardUnlockedMessage: string;
|
|
1242
|
+
endingValue?: number;
|
|
1243
|
+
currencyCode?: string;
|
|
612
1244
|
}
|
|
613
|
-
declare const
|
|
1245
|
+
declare const MotivatorProgressBar: ({ fillColor, backgroundColor, unfilledColor, currencyCode, endingValue, currentAmount, rewardUnlockedMessage, }: MotivatorProgressBarProps) => JSX.Element;
|
|
614
1246
|
|
|
615
1247
|
interface IconButtonProps {
|
|
616
1248
|
children: React.ReactNode;
|
|
@@ -624,31 +1256,45 @@ interface TooltipProps {
|
|
|
624
1256
|
children: React.ReactNode;
|
|
625
1257
|
position: ComponentPosition;
|
|
626
1258
|
align?: 'start' | 'center' | 'end';
|
|
627
|
-
|
|
1259
|
+
content?: {
|
|
1260
|
+
text: string;
|
|
1261
|
+
color?: string;
|
|
1262
|
+
};
|
|
1263
|
+
backgroundColor?: string;
|
|
1264
|
+
maxWidth?: string;
|
|
628
1265
|
header?: {
|
|
629
1266
|
title: string;
|
|
630
|
-
|
|
1267
|
+
titleColor?: string;
|
|
1268
|
+
Icon?: IconType;
|
|
1269
|
+
iconFill?: string;
|
|
631
1270
|
};
|
|
632
1271
|
onClick?: () => void;
|
|
633
1272
|
}
|
|
634
|
-
declare const Tooltip: ({ children, position,
|
|
1273
|
+
declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
|
|
635
1274
|
|
|
636
1275
|
interface AccordionProps {
|
|
637
1276
|
defaultOpen?: boolean;
|
|
1277
|
+
forceOpenHandler?: boolean;
|
|
1278
|
+
forceOpenValue?: boolean;
|
|
1279
|
+
titleColor?: string;
|
|
638
1280
|
variant: 'simple' | 'box';
|
|
639
1281
|
header: ReactNode;
|
|
1282
|
+
headerOnOpen?: ReactNode;
|
|
640
1283
|
content: ReactNode;
|
|
641
1284
|
disabled?: boolean;
|
|
1285
|
+
innerHTML?: boolean;
|
|
642
1286
|
openIcon: IconType;
|
|
643
1287
|
closeIcon: IconType;
|
|
1288
|
+
onClick?: (index: number) => void;
|
|
644
1289
|
}
|
|
645
|
-
declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
|
|
1290
|
+
declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
|
|
646
1291
|
|
|
647
1292
|
declare const ThemeProvider: FC<{
|
|
648
1293
|
theme: Theme;
|
|
649
1294
|
children: ReactNode;
|
|
650
1295
|
}>;
|
|
651
1296
|
declare const useTheme: () => Theme;
|
|
1297
|
+
|
|
652
1298
|
declare const ThemeVariables: FC<{
|
|
653
1299
|
theme: Theme;
|
|
654
1300
|
Container?: ElementType;
|
|
@@ -678,6 +1324,7 @@ declare type Theme = {
|
|
|
678
1324
|
};
|
|
679
1325
|
declare type ThemeBreakpoints = {
|
|
680
1326
|
mobile: number;
|
|
1327
|
+
tablet?: number;
|
|
681
1328
|
desktop: number;
|
|
682
1329
|
};
|
|
683
1330
|
declare type ThemeBasicPallete = {
|
|
@@ -685,7 +1332,7 @@ declare type ThemeBasicPallete = {
|
|
|
685
1332
|
contrast: string;
|
|
686
1333
|
};
|
|
687
1334
|
declare type ThemeColorPallete = ThemeBasicPallete & {
|
|
688
|
-
soft
|
|
1335
|
+
soft?: ThemeBasicPallete;
|
|
689
1336
|
};
|
|
690
1337
|
declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
|
|
691
1338
|
20: ThemeColorPallete;
|
|
@@ -697,6 +1344,7 @@ declare type ThemeColors = {
|
|
|
697
1344
|
pallete: {
|
|
698
1345
|
primary: ThemeColorPrimaryPallete;
|
|
699
1346
|
secondary: ThemeColorPrimaryPallete;
|
|
1347
|
+
tertiary?: ThemeColorPrimaryPallete;
|
|
700
1348
|
} & Partial<Record<string, ThemeColorPallete>>;
|
|
701
1349
|
shades: {
|
|
702
1350
|
black: ThemeBasicPallete;
|
|
@@ -706,6 +1354,7 @@ declare type ThemeColors = {
|
|
|
706
1354
|
50: ThemeBasicPallete;
|
|
707
1355
|
100: ThemeBasicPallete;
|
|
708
1356
|
150: ThemeBasicPallete;
|
|
1357
|
+
175: ThemeBasicPallete;
|
|
709
1358
|
200: ThemeBasicPallete;
|
|
710
1359
|
250: ThemeBasicPallete;
|
|
711
1360
|
300: ThemeBasicPallete;
|
|
@@ -734,6 +1383,8 @@ declare type ThemeColors = {
|
|
|
734
1383
|
color: string;
|
|
735
1384
|
disabled: string;
|
|
736
1385
|
highlight: string;
|
|
1386
|
+
shadow?: string;
|
|
1387
|
+
isChecked?: string;
|
|
737
1388
|
};
|
|
738
1389
|
background: {
|
|
739
1390
|
color: string;
|
|
@@ -749,6 +1400,10 @@ declare type ThemeComponent = {
|
|
|
749
1400
|
border: string;
|
|
750
1401
|
borderRadius: string;
|
|
751
1402
|
fontWeight: number;
|
|
1403
|
+
lineHeight: string;
|
|
1404
|
+
letterSpacing: string;
|
|
1405
|
+
minWidth: string;
|
|
1406
|
+
minHeight: string;
|
|
752
1407
|
size: {
|
|
753
1408
|
small: {
|
|
754
1409
|
fontSize: string;
|
|
@@ -795,6 +1450,12 @@ declare type ThemeComponent = {
|
|
|
795
1450
|
lineHeight: string;
|
|
796
1451
|
border: string;
|
|
797
1452
|
boxShadow: string;
|
|
1453
|
+
errorBorder: string;
|
|
1454
|
+
};
|
|
1455
|
+
inputPlaceholder: {
|
|
1456
|
+
fontSize: string;
|
|
1457
|
+
padding: string;
|
|
1458
|
+
focusBorder: string;
|
|
798
1459
|
};
|
|
799
1460
|
inputCustom: {
|
|
800
1461
|
button: {
|
|
@@ -827,6 +1488,12 @@ declare type ThemeComponent = {
|
|
|
827
1488
|
border: string;
|
|
828
1489
|
color: string;
|
|
829
1490
|
};
|
|
1491
|
+
noStock: {
|
|
1492
|
+
fontWeight: number;
|
|
1493
|
+
background: string;
|
|
1494
|
+
border: string;
|
|
1495
|
+
color: string;
|
|
1496
|
+
};
|
|
830
1497
|
disabled: {
|
|
831
1498
|
border: string;
|
|
832
1499
|
};
|
|
@@ -880,10 +1547,13 @@ declare type ThemeComponent = {
|
|
|
880
1547
|
};
|
|
881
1548
|
card: {
|
|
882
1549
|
borderRadius: string;
|
|
1550
|
+
backgroundColor: string;
|
|
883
1551
|
};
|
|
884
1552
|
radio: {
|
|
885
1553
|
borderColor: string;
|
|
886
1554
|
background: string;
|
|
1555
|
+
textSize: string;
|
|
1556
|
+
lineHeight: string;
|
|
887
1557
|
size: {
|
|
888
1558
|
small: {
|
|
889
1559
|
borderWidth: string;
|
|
@@ -912,6 +1582,7 @@ declare type ThemeComponent = {
|
|
|
912
1582
|
};
|
|
913
1583
|
};
|
|
914
1584
|
label: {
|
|
1585
|
+
color: string;
|
|
915
1586
|
fontSize: {
|
|
916
1587
|
small: string;
|
|
917
1588
|
medium: string;
|
|
@@ -1020,11 +1691,13 @@ declare type ThemeComponent = {
|
|
|
1020
1691
|
fontWeight: number;
|
|
1021
1692
|
lineHeight: string;
|
|
1022
1693
|
padding: string;
|
|
1694
|
+
optionPadding: string;
|
|
1023
1695
|
color: string;
|
|
1024
1696
|
fill: string;
|
|
1025
1697
|
options: {
|
|
1026
1698
|
borderColor: string;
|
|
1027
1699
|
color: string;
|
|
1700
|
+
borderRadius: string;
|
|
1028
1701
|
};
|
|
1029
1702
|
};
|
|
1030
1703
|
modal: {
|
|
@@ -1038,6 +1711,256 @@ declare type ThemeComponent = {
|
|
|
1038
1711
|
selectedContrast: string;
|
|
1039
1712
|
tagColor: string;
|
|
1040
1713
|
};
|
|
1714
|
+
slideNavigation: {
|
|
1715
|
+
slideDots: {
|
|
1716
|
+
unselectedDotColor: string;
|
|
1717
|
+
selectedDotColor: string;
|
|
1718
|
+
dotsOpacity: number;
|
|
1719
|
+
};
|
|
1720
|
+
};
|
|
1721
|
+
beforeAfter: {
|
|
1722
|
+
size: {
|
|
1723
|
+
small: {
|
|
1724
|
+
image: {
|
|
1725
|
+
minHeight: string;
|
|
1726
|
+
minWidth: string;
|
|
1727
|
+
mobile: {
|
|
1728
|
+
minHeight: string;
|
|
1729
|
+
minWidth: string;
|
|
1730
|
+
};
|
|
1731
|
+
};
|
|
1732
|
+
imageContainer: {
|
|
1733
|
+
maxWidth: string;
|
|
1734
|
+
padding: string;
|
|
1735
|
+
mobile: {
|
|
1736
|
+
maxWidth: string;
|
|
1737
|
+
};
|
|
1738
|
+
};
|
|
1739
|
+
userInfoText: {
|
|
1740
|
+
fontSize: string;
|
|
1741
|
+
mobile: {
|
|
1742
|
+
fontSize: string;
|
|
1743
|
+
};
|
|
1744
|
+
};
|
|
1745
|
+
};
|
|
1746
|
+
medium: {
|
|
1747
|
+
image: {
|
|
1748
|
+
minHeight: string;
|
|
1749
|
+
minWidth: string;
|
|
1750
|
+
mobile: {
|
|
1751
|
+
minHeight: string;
|
|
1752
|
+
minWidth: string;
|
|
1753
|
+
};
|
|
1754
|
+
};
|
|
1755
|
+
imageContainer: {
|
|
1756
|
+
maxWidth: string;
|
|
1757
|
+
padding: string;
|
|
1758
|
+
mobile: {
|
|
1759
|
+
maxWidth: string;
|
|
1760
|
+
};
|
|
1761
|
+
};
|
|
1762
|
+
userInfoText: {
|
|
1763
|
+
fontSize: string;
|
|
1764
|
+
mobile: {
|
|
1765
|
+
fontSize: string;
|
|
1766
|
+
};
|
|
1767
|
+
};
|
|
1768
|
+
};
|
|
1769
|
+
large: {
|
|
1770
|
+
image: {
|
|
1771
|
+
minHeight: string;
|
|
1772
|
+
minWidth: string;
|
|
1773
|
+
mobile: {
|
|
1774
|
+
minHeight: string;
|
|
1775
|
+
minWidth: string;
|
|
1776
|
+
};
|
|
1777
|
+
};
|
|
1778
|
+
imageContainer: {
|
|
1779
|
+
maxWidth: string;
|
|
1780
|
+
padding: string;
|
|
1781
|
+
mobile: {
|
|
1782
|
+
maxWidth: string;
|
|
1783
|
+
};
|
|
1784
|
+
};
|
|
1785
|
+
userInfoText: {
|
|
1786
|
+
fontSize: string;
|
|
1787
|
+
mobile: {
|
|
1788
|
+
fontSize: string;
|
|
1789
|
+
};
|
|
1790
|
+
};
|
|
1791
|
+
};
|
|
1792
|
+
};
|
|
1793
|
+
};
|
|
1794
|
+
total: {
|
|
1795
|
+
basicTotal: {
|
|
1796
|
+
amount: {
|
|
1797
|
+
color: string;
|
|
1798
|
+
fontSize: string;
|
|
1799
|
+
};
|
|
1800
|
+
currency: {
|
|
1801
|
+
color: string;
|
|
1802
|
+
fontSize: string;
|
|
1803
|
+
lineHeight: string;
|
|
1804
|
+
alignSelf?: string;
|
|
1805
|
+
};
|
|
1806
|
+
savings: {
|
|
1807
|
+
textFontSize: string;
|
|
1808
|
+
textLineHeight: string;
|
|
1809
|
+
amountFontSize: string;
|
|
1810
|
+
amountFontWeight: number;
|
|
1811
|
+
amountLineHeight: string;
|
|
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
|
+
};
|
|
1041
1964
|
};
|
|
1042
1965
|
declare type ThemeTypography = {
|
|
1043
1966
|
config: {
|
|
@@ -1064,6 +1987,26 @@ declare type ThemeAssets = {
|
|
|
1064
1987
|
images: {
|
|
1065
1988
|
favicon: string;
|
|
1066
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
|
+
};
|
|
1067
2010
|
};
|
|
1068
2011
|
[key: string]: any;
|
|
1069
2012
|
};
|
|
@@ -1074,11 +2017,25 @@ interface CheckboxProps {
|
|
|
1074
2017
|
size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1075
2018
|
text: string;
|
|
1076
2019
|
checked?: boolean;
|
|
2020
|
+
blockUncheck?: boolean;
|
|
1077
2021
|
id: string;
|
|
1078
2022
|
backgroundColor?: string;
|
|
1079
|
-
variant: 'primary' | 'secondary';
|
|
2023
|
+
variant: 'primary' | 'secondary' | 'color';
|
|
1080
2024
|
}
|
|
1081
|
-
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;
|
|
1082
2039
|
|
|
1083
2040
|
interface RadioGroupInputProps {
|
|
1084
2041
|
name: string;
|
|
@@ -1087,8 +2044,20 @@ interface RadioGroupInputProps {
|
|
|
1087
2044
|
onChange: (value: RadioGroupOption) => void;
|
|
1088
2045
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1089
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;
|
|
1090
2059
|
}
|
|
1091
|
-
declare const
|
|
2060
|
+
declare const ClubRadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: ClubRadioGroupInputProps) => JSX.Element;
|
|
1092
2061
|
|
|
1093
2062
|
interface SimpleProps {
|
|
1094
2063
|
title: string;
|
|
@@ -1123,16 +2092,18 @@ interface CategoryTagProps {
|
|
|
1123
2092
|
text: string;
|
|
1124
2093
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1125
2094
|
className?: string;
|
|
2095
|
+
styledBorder?: boolean;
|
|
1126
2096
|
}
|
|
1127
|
-
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;
|
|
1128
2098
|
|
|
1129
2099
|
interface SeasonOfferTagProps {
|
|
1130
2100
|
text: string;
|
|
1131
2101
|
backgroundColor?: string;
|
|
1132
2102
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1133
2103
|
className?: string;
|
|
2104
|
+
styledBorder?: boolean;
|
|
1134
2105
|
}
|
|
1135
|
-
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;
|
|
1136
2107
|
|
|
1137
2108
|
interface TimeProps {
|
|
1138
2109
|
hours: number;
|
|
@@ -1145,7 +2116,14 @@ interface TimerProps extends TimeProps {
|
|
|
1145
2116
|
}
|
|
1146
2117
|
declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
|
|
1147
2118
|
|
|
1148
|
-
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;
|
|
1149
2127
|
defaultValue?: string;
|
|
1150
2128
|
maxLength?: number;
|
|
1151
2129
|
placeholder?: string;
|
|
@@ -1155,16 +2133,14 @@ interface BaseInputCommmonProps {
|
|
|
1155
2133
|
required?: string;
|
|
1156
2134
|
children?: React.ReactNode;
|
|
1157
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;
|
|
1158
2142
|
}
|
|
1159
|
-
|
|
1160
|
-
value: string;
|
|
1161
|
-
onChange: (value: string) => void;
|
|
1162
|
-
}
|
|
1163
|
-
interface BaseInputUncontrolled extends BaseInputCommmonProps {
|
|
1164
|
-
value?: never;
|
|
1165
|
-
onChange?: (value: string) => void;
|
|
1166
|
-
}
|
|
1167
|
-
declare type BaseInputProps = BaseInputControlled | BaseInputUncontrolled;
|
|
2143
|
+
declare type BaseInputProps = BaseInputCommonProps;
|
|
1168
2144
|
|
|
1169
2145
|
declare type BasePlusIconProps = BaseInputProps & {
|
|
1170
2146
|
Icon: IconType;
|
|
@@ -1203,7 +2179,7 @@ declare type CustomProps = BaseInputProps & {
|
|
|
1203
2179
|
};
|
|
1204
2180
|
|
|
1205
2181
|
declare const Input: {
|
|
1206
|
-
Simple: ({ value, onChange,
|
|
2182
|
+
Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, requiredPlaceholder, ...rest }: BaseInputCommonProps) => JSX.Element;
|
|
1207
2183
|
Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
|
|
1208
2184
|
SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
|
|
1209
2185
|
SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
|
|
@@ -1263,7 +2239,7 @@ declare type detail = {
|
|
|
1263
2239
|
details: string;
|
|
1264
2240
|
};
|
|
1265
2241
|
interface orderUpdate extends detail {
|
|
1266
|
-
keepMeUpdated
|
|
2242
|
+
keepMeUpdated?: {
|
|
1267
2243
|
title: string;
|
|
1268
2244
|
onClick: () => void;
|
|
1269
2245
|
};
|
|
@@ -1276,9 +2252,9 @@ interface DeliveryDetailsProps {
|
|
|
1276
2252
|
note?: {
|
|
1277
2253
|
importantNoteText: string;
|
|
1278
2254
|
text: string;
|
|
1279
|
-
accentColor
|
|
1280
|
-
backgroundColor
|
|
1281
|
-
color
|
|
2255
|
+
accentColor?: string;
|
|
2256
|
+
backgroundColor?: string;
|
|
2257
|
+
color?: string;
|
|
1282
2258
|
};
|
|
1283
2259
|
}
|
|
1284
2260
|
declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
|
|
@@ -1286,26 +2262,37 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
|
|
|
1286
2262
|
interface ScrollToTopProps {
|
|
1287
2263
|
scrollToTopText: string;
|
|
1288
2264
|
onClick: () => void;
|
|
2265
|
+
fill?: string;
|
|
1289
2266
|
}
|
|
1290
|
-
declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
|
|
2267
|
+
declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
|
|
1291
2268
|
|
|
1292
2269
|
interface OrderBarProps {
|
|
1293
2270
|
message: string;
|
|
2271
|
+
color?: string;
|
|
1294
2272
|
}
|
|
1295
|
-
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;
|
|
1296
2281
|
|
|
1297
2282
|
interface TableProps {
|
|
1298
2283
|
headers: string[];
|
|
1299
2284
|
data: string[][];
|
|
2285
|
+
newSizeTableCss?: boolean;
|
|
1300
2286
|
}
|
|
1301
|
-
declare const
|
|
2287
|
+
declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
|
|
1302
2288
|
|
|
1303
2289
|
interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
|
|
1304
2290
|
color?: string;
|
|
1305
2291
|
}
|
|
1306
2292
|
interface ProductOrderItemProps {
|
|
1307
|
-
title: string;
|
|
2293
|
+
title: React.ReactNode | string;
|
|
1308
2294
|
subtitle: string;
|
|
2295
|
+
className?: string;
|
|
1309
2296
|
image: {
|
|
1310
2297
|
src: string;
|
|
1311
2298
|
alt: string;
|
|
@@ -1316,10 +2303,12 @@ interface ProductOrderItemProps {
|
|
|
1316
2303
|
text: string;
|
|
1317
2304
|
backgroundColor: string;
|
|
1318
2305
|
};
|
|
2306
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1319
2307
|
}
|
|
1320
|
-
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;
|
|
1321
2309
|
|
|
1322
|
-
interface ReviewProps {
|
|
2310
|
+
interface ReviewProps$1 {
|
|
2311
|
+
reviewId: string;
|
|
1323
2312
|
reviewerName: string;
|
|
1324
2313
|
date: Date;
|
|
1325
2314
|
rating: number;
|
|
@@ -1329,27 +2318,35 @@ interface ReviewProps {
|
|
|
1329
2318
|
};
|
|
1330
2319
|
title: string;
|
|
1331
2320
|
description: string;
|
|
1332
|
-
|
|
2321
|
+
images?: {
|
|
1333
2322
|
src: string;
|
|
1334
2323
|
alt: string;
|
|
1335
|
-
};
|
|
2324
|
+
}[];
|
|
2325
|
+
reviewVariant?: string;
|
|
2326
|
+
onClickImage?: (image: string) => void;
|
|
2327
|
+
helpfulActionText?: string;
|
|
2328
|
+
helpfulAction?: (id: string) => void;
|
|
2329
|
+
helpfulCount?: number;
|
|
1336
2330
|
}
|
|
1337
|
-
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;
|
|
1338
2332
|
|
|
1339
2333
|
interface SliderNavigationProps {
|
|
1340
|
-
children: JSX.Element[]
|
|
2334
|
+
children: JSX.Element | JSX.Element[] | StyledComponent<any>;
|
|
1341
2335
|
infinite: boolean;
|
|
1342
2336
|
adaptiveHeight: boolean;
|
|
1343
|
-
dotsSize
|
|
1344
|
-
dotListMarginTop
|
|
2337
|
+
dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
2338
|
+
dotListMarginTop?: number;
|
|
1345
2339
|
initialSlide?: number;
|
|
1346
2340
|
arrows?: {
|
|
1347
2341
|
arrowWidth: number;
|
|
1348
2342
|
arrowHeight: number;
|
|
1349
2343
|
arrowPadding: number;
|
|
1350
2344
|
};
|
|
2345
|
+
dots?: boolean;
|
|
2346
|
+
slidesToShow?: number;
|
|
2347
|
+
speed?: number;
|
|
1351
2348
|
}
|
|
1352
|
-
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;
|
|
1353
2350
|
|
|
1354
2351
|
interface DropdownListIconsProps {
|
|
1355
2352
|
items: DropdownListIconsItem[];
|
|
@@ -1367,8 +2364,11 @@ interface ImageStyleProps {
|
|
|
1367
2364
|
interface ImageProps extends ImageStyleProps {
|
|
1368
2365
|
src: string;
|
|
1369
2366
|
alt: string;
|
|
2367
|
+
srcSet?: string;
|
|
2368
|
+
sizes?: string;
|
|
2369
|
+
loading?: 'lazy' | 'eager';
|
|
1370
2370
|
}
|
|
1371
|
-
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;
|
|
1372
2372
|
|
|
1373
2373
|
interface AmazonPaypalBtnProps {
|
|
1374
2374
|
onClick: () => void;
|
|
@@ -1413,7 +2413,32 @@ interface ProductItemProps {
|
|
|
1413
2413
|
|
|
1414
2414
|
interface ProductItemSmallMobileProps extends ProductItemProps {
|
|
1415
2415
|
size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
|
|
2416
|
+
imageHover?: ImageProps;
|
|
2417
|
+
topTag?: JSX.Element;
|
|
2418
|
+
bottomTag?: JSX.Element;
|
|
1416
2419
|
onClick?: () => void;
|
|
2420
|
+
priceDisplayType?: 'default' | 'styled';
|
|
2421
|
+
priceAtBottom?: boolean;
|
|
2422
|
+
priceLoading?: boolean;
|
|
2423
|
+
colorPicker?: {
|
|
2424
|
+
display: boolean;
|
|
2425
|
+
position: string;
|
|
2426
|
+
component: JSX.Element | JSX.Element[] | undefined;
|
|
2427
|
+
};
|
|
2428
|
+
isBNPL?: {
|
|
2429
|
+
displayBNPL: boolean;
|
|
2430
|
+
installments: number;
|
|
2431
|
+
installmentPrice: string;
|
|
2432
|
+
iconFolder?: string;
|
|
2433
|
+
iconName: string;
|
|
2434
|
+
showLogo?: boolean;
|
|
2435
|
+
iconColor: string;
|
|
2436
|
+
fontSize: string;
|
|
2437
|
+
};
|
|
2438
|
+
hasStrength?: {
|
|
2439
|
+
strength: number;
|
|
2440
|
+
description: string;
|
|
2441
|
+
};
|
|
1417
2442
|
}
|
|
1418
2443
|
|
|
1419
2444
|
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
|
|
@@ -1422,7 +2447,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
|
|
|
1422
2447
|
};
|
|
1423
2448
|
|
|
1424
2449
|
declare const Collection: {
|
|
1425
|
-
ProductItemMobile: ({ title, image, price, rating, size,
|
|
2450
|
+
ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, colorPicker, isBNPL, hasStrength, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1426
2451
|
withProductGrid: typeof withProductGrid;
|
|
1427
2452
|
};
|
|
1428
2453
|
|
|
@@ -1483,49 +2508,56 @@ interface PaginationProps {
|
|
|
1483
2508
|
underlineActive?: boolean;
|
|
1484
2509
|
boldActive?: boolean;
|
|
1485
2510
|
disabled?: boolean;
|
|
2511
|
+
showReducedPages?: boolean;
|
|
1486
2512
|
}
|
|
1487
|
-
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
|
|
2513
|
+
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
|
|
1488
2514
|
|
|
1489
|
-
declare const
|
|
2515
|
+
declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
|
|
2516
|
+
|
|
2517
|
+
declare const Text: ({ variant, children, testId, asSpan, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1490
2518
|
declare type TextHeroProps = {
|
|
1491
2519
|
variant: 'hero1' | 'hero2' | 'hero3';
|
|
1492
2520
|
weight?: 'heavy' | 'bold' | 'demi';
|
|
1493
|
-
size?: 'regular';
|
|
2521
|
+
size?: 'regular' | 'xsmall';
|
|
1494
2522
|
underline?: never;
|
|
1495
2523
|
disabled?: never;
|
|
1496
2524
|
wide?: never;
|
|
1497
2525
|
original?: never;
|
|
1498
2526
|
allCaps?: never;
|
|
2527
|
+
href: never;
|
|
1499
2528
|
};
|
|
1500
2529
|
declare type TextDisplayProps = {
|
|
1501
2530
|
variant: 'display1' | 'display2';
|
|
1502
2531
|
weight?: 'bold' | 'demi';
|
|
1503
|
-
size?: 'regular';
|
|
2532
|
+
size?: 'regular' | 'xsmall';
|
|
1504
2533
|
underline?: never;
|
|
1505
2534
|
disabled?: never;
|
|
1506
2535
|
wide?: never;
|
|
1507
2536
|
original?: never;
|
|
1508
2537
|
allCaps?: never;
|
|
2538
|
+
href: never;
|
|
1509
2539
|
};
|
|
1510
2540
|
declare type TextHeadingProps = {
|
|
1511
|
-
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
|
|
2541
|
+
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6' | 'heading7' | 'heading8';
|
|
1512
2542
|
weight?: 'bold' | 'demi' | 'regular';
|
|
1513
|
-
size?: 'regular';
|
|
2543
|
+
size?: 'regular' | 'xsmall';
|
|
1514
2544
|
underline?: never;
|
|
1515
2545
|
disabled?: never;
|
|
1516
2546
|
wide?: never;
|
|
1517
2547
|
original?: never;
|
|
1518
2548
|
allCaps?: never;
|
|
2549
|
+
href?: never;
|
|
1519
2550
|
};
|
|
1520
2551
|
declare type TextBodyProps = {
|
|
1521
2552
|
variant: 'body';
|
|
1522
|
-
size?: 'regular' | 'small';
|
|
2553
|
+
size?: 'regular' | 'small' | 'xsmall';
|
|
1523
2554
|
weight?: 'bold' | 'demi' | 'regular';
|
|
1524
2555
|
underline?: never;
|
|
1525
2556
|
disabled?: never;
|
|
1526
2557
|
wide?: never;
|
|
1527
2558
|
original?: never;
|
|
1528
2559
|
allCaps?: never;
|
|
2560
|
+
href?: never;
|
|
1529
2561
|
};
|
|
1530
2562
|
declare type TextButtonProps = {
|
|
1531
2563
|
variant: 'button';
|
|
@@ -1536,6 +2568,7 @@ declare type TextButtonProps = {
|
|
|
1536
2568
|
wide?: boolean;
|
|
1537
2569
|
original?: never;
|
|
1538
2570
|
allCaps?: never;
|
|
2571
|
+
href?: never;
|
|
1539
2572
|
};
|
|
1540
2573
|
declare type TextPricingProps = {
|
|
1541
2574
|
variant: 'pricing';
|
|
@@ -1546,6 +2579,7 @@ declare type TextPricingProps = {
|
|
|
1546
2579
|
wide?: never;
|
|
1547
2580
|
original?: boolean;
|
|
1548
2581
|
allCaps?: never;
|
|
2582
|
+
href?: never;
|
|
1549
2583
|
};
|
|
1550
2584
|
declare type TextLinkProps = {
|
|
1551
2585
|
variant: 'link';
|
|
@@ -1556,9 +2590,11 @@ declare type TextLinkProps = {
|
|
|
1556
2590
|
wide?: never;
|
|
1557
2591
|
original?: never;
|
|
1558
2592
|
allCaps?: never;
|
|
1559
|
-
|
|
2593
|
+
href?: string;
|
|
2594
|
+
};
|
|
1560
2595
|
declare type TextLabelProps = {
|
|
1561
2596
|
variant: 'label';
|
|
2597
|
+
color?: string;
|
|
1562
2598
|
weight?: 'regular' | 'demi';
|
|
1563
2599
|
size?: 'regular' | 'small';
|
|
1564
2600
|
underline?: never;
|
|
@@ -1566,6 +2602,7 @@ declare type TextLabelProps = {
|
|
|
1566
2602
|
wide?: never;
|
|
1567
2603
|
original?: never;
|
|
1568
2604
|
allCaps?: never;
|
|
2605
|
+
href?: never;
|
|
1569
2606
|
} & LabelHTMLAttributes<'label'>;
|
|
1570
2607
|
declare type TextTagProps = {
|
|
1571
2608
|
variant: 'tag';
|
|
@@ -1576,11 +2613,15 @@ declare type TextTagProps = {
|
|
|
1576
2613
|
wide?: never;
|
|
1577
2614
|
original?: never;
|
|
1578
2615
|
allCaps?: boolean;
|
|
2616
|
+
href?: never;
|
|
1579
2617
|
};
|
|
1580
|
-
declare type TextProps = AriaAttributes & {
|
|
2618
|
+
declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
|
|
2619
|
+
children: ReactNode;
|
|
1581
2620
|
style?: CSSProperties;
|
|
1582
2621
|
className?: string;
|
|
1583
2622
|
testId?: string;
|
|
2623
|
+
asSpan?: boolean;
|
|
2624
|
+
color?: string;
|
|
1584
2625
|
} & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
|
|
1585
2626
|
|
|
1586
2627
|
interface SearchBarProps {
|
|
@@ -1593,34 +2634,43 @@ interface SearchBarProps {
|
|
|
1593
2634
|
allResults?: number;
|
|
1594
2635
|
initialTerm?: string;
|
|
1595
2636
|
shouldClear?: boolean;
|
|
2637
|
+
isBlogSearchBar?: boolean;
|
|
2638
|
+
ariaLabel?: string;
|
|
2639
|
+
placeholder?: string;
|
|
2640
|
+
id?: string;
|
|
2641
|
+
autoComplete?: string;
|
|
1596
2642
|
}
|
|
1597
|
-
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, }: SearchBarProps) => JSX.Element;
|
|
2643
|
+
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
|
|
1598
2644
|
|
|
1599
|
-
interface ProductGalleryMobileProps {
|
|
2645
|
+
interface ProductGalleryMobileProps$1 {
|
|
1600
2646
|
images: ImageType[];
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
2647
|
+
customClick?: boolean;
|
|
2648
|
+
topTag?: JSX.Element;
|
|
2649
|
+
bottomTag?: JSX.Element;
|
|
1604
2650
|
productImageDataTestId?: string;
|
|
1605
|
-
|
|
2651
|
+
borderRadiusVariant?: boolean;
|
|
2652
|
+
selectedValue?: ImageType;
|
|
1606
2653
|
}
|
|
1607
|
-
declare const ProductGalleryMobile: ({ images,
|
|
2654
|
+
declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps$1) => JSX.Element;
|
|
1608
2655
|
|
|
1609
2656
|
interface RadioProps {
|
|
1610
2657
|
name: string;
|
|
1611
2658
|
value: string;
|
|
1612
2659
|
id: string;
|
|
1613
|
-
label: string;
|
|
2660
|
+
label: string | ReactFragment;
|
|
1614
2661
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1615
2662
|
checked?: boolean;
|
|
1616
2663
|
disabled?: boolean;
|
|
1617
2664
|
onChange: (option: RadioGroupOption) => void;
|
|
2665
|
+
style?: React.CSSProperties;
|
|
1618
2666
|
}
|
|
1619
|
-
declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
|
|
2667
|
+
declare const RadioInput: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
|
|
1620
2668
|
|
|
1621
2669
|
declare type PortalProps = {
|
|
1622
2670
|
id: string;
|
|
1623
2671
|
className?: string;
|
|
2672
|
+
overflow?: boolean;
|
|
2673
|
+
style?: CSSProperties;
|
|
1624
2674
|
};
|
|
1625
2675
|
declare const Portal: FC<PortalProps>;
|
|
1626
2676
|
|
|
@@ -1628,10 +2678,12 @@ declare type ModalProps = {
|
|
|
1628
2678
|
id: string;
|
|
1629
2679
|
dismissable?: boolean;
|
|
1630
2680
|
maxFullScreen?: boolean;
|
|
2681
|
+
padding?: string;
|
|
1631
2682
|
};
|
|
1632
2683
|
interface ContainerProps {
|
|
1633
2684
|
maxFullScreen: boolean;
|
|
1634
2685
|
opened?: boolean;
|
|
2686
|
+
padding?: string;
|
|
1635
2687
|
}
|
|
1636
2688
|
declare const Overlay: _emotion_styled.StyledComponent<{
|
|
1637
2689
|
theme?: _emotion_react.Theme | undefined;
|
|
@@ -1694,6 +2746,26 @@ declare type SpacingProps = {
|
|
|
1694
2746
|
};
|
|
1695
2747
|
declare const Spacing: FC<SpacingProps>;
|
|
1696
2748
|
|
|
2749
|
+
interface PackOption$1 {
|
|
2750
|
+
label: string;
|
|
2751
|
+
description: string;
|
|
2752
|
+
meta: {
|
|
2753
|
+
discountPercentage: number;
|
|
2754
|
+
originalPrice: number;
|
|
2755
|
+
price: number;
|
|
2756
|
+
quantity: number;
|
|
2757
|
+
icon: string;
|
|
2758
|
+
tag?: string;
|
|
2759
|
+
};
|
|
2760
|
+
}
|
|
2761
|
+
interface PackSelectorProps$1 {
|
|
2762
|
+
packs: PackOption$1[];
|
|
2763
|
+
selectedValue: PackOption$1;
|
|
2764
|
+
onChange: (size: PackOption$1) => void;
|
|
2765
|
+
currencyCode?: string;
|
|
2766
|
+
}
|
|
2767
|
+
declare const PackSelector: FC<PackSelectorProps$1>;
|
|
2768
|
+
|
|
1697
2769
|
interface PackOption {
|
|
1698
2770
|
label: string;
|
|
1699
2771
|
description: string;
|
|
@@ -1710,8 +2782,9 @@ interface PackSelectorProps {
|
|
|
1710
2782
|
packs: PackOption[];
|
|
1711
2783
|
selectedValue: PackOption;
|
|
1712
2784
|
onChange: (size: PackOption) => void;
|
|
2785
|
+
currencyCode?: string;
|
|
1713
2786
|
}
|
|
1714
|
-
declare const
|
|
2787
|
+
declare const PackSelectorV2: FC<PackSelectorProps>;
|
|
1715
2788
|
|
|
1716
2789
|
interface FiltersProps {
|
|
1717
2790
|
values: Filter[];
|
|
@@ -1736,6 +2809,218 @@ interface SearchNavigationProps {
|
|
|
1736
2809
|
}
|
|
1737
2810
|
declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
|
|
1738
2811
|
|
|
2812
|
+
interface TabProps$1 {
|
|
2813
|
+
title: string;
|
|
2814
|
+
content: ReactNode;
|
|
2815
|
+
}
|
|
2816
|
+
interface TabsProps {
|
|
2817
|
+
backgroundColor?: string;
|
|
2818
|
+
initialSelected?: string;
|
|
2819
|
+
tabsMaxWidth?: string;
|
|
2820
|
+
tabs: TabProps$1[];
|
|
2821
|
+
}
|
|
2822
|
+
declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
|
|
2823
|
+
|
|
2824
|
+
interface TabProps {
|
|
2825
|
+
title: string;
|
|
2826
|
+
titleSize?: string;
|
|
2827
|
+
selectedTitleWeight?: number;
|
|
2828
|
+
height?: string;
|
|
2829
|
+
selected?: boolean;
|
|
2830
|
+
color?: string;
|
|
2831
|
+
tabsMaxWidth?: string;
|
|
2832
|
+
onClick: (clickedTab: string) => void;
|
|
2833
|
+
}
|
|
2834
|
+
declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
|
|
2835
|
+
|
|
2836
|
+
interface IconsWithTitleProps {
|
|
2837
|
+
backgroundColor: string;
|
|
2838
|
+
iconColor: string;
|
|
2839
|
+
iconName: string;
|
|
2840
|
+
iconFolder?: string;
|
|
2841
|
+
withWrapper?: boolean;
|
|
2842
|
+
iconTitle: string;
|
|
2843
|
+
iconSizeDesktop?: number;
|
|
2844
|
+
iconSizeMobile?: number;
|
|
2845
|
+
iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
2846
|
+
iconTitleStyle?: string;
|
|
2847
|
+
iconStyle?: string;
|
|
2848
|
+
isTitleInnerHtml?: boolean;
|
|
2849
|
+
}
|
|
2850
|
+
declare const IconsWithTitle: ({ iconName, iconTitle, iconFolder, withWrapper, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconsWithTitleProps) => JSX.Element | null;
|
|
2851
|
+
|
|
2852
|
+
interface NoteProps {
|
|
2853
|
+
accentColor?: string;
|
|
2854
|
+
color?: string;
|
|
2855
|
+
backgroundColor?: string;
|
|
2856
|
+
importantNoteText: string;
|
|
2857
|
+
text: string;
|
|
2858
|
+
}
|
|
2859
|
+
declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
|
|
2860
|
+
|
|
2861
|
+
interface TextWithImageProps {
|
|
2862
|
+
title: string;
|
|
2863
|
+
text?: string;
|
|
2864
|
+
children?: ReactNode;
|
|
2865
|
+
buttomText: string;
|
|
2866
|
+
backgroundColor: string;
|
|
2867
|
+
imageLeftSide?: boolean;
|
|
2868
|
+
URLLink?: string;
|
|
2869
|
+
onButtonClick?: () => void;
|
|
2870
|
+
isRedirectionURL: boolean;
|
|
2871
|
+
btnBGColor?: string;
|
|
2872
|
+
btnHoverBGColor?: string;
|
|
2873
|
+
imgVideo: imageVideoProps;
|
|
2874
|
+
contentAfterButton?: React.ReactNode;
|
|
2875
|
+
titleStyle?: React.CSSProperties;
|
|
2876
|
+
textStyle?: React.CSSProperties;
|
|
2877
|
+
buttonWideOnMobile?: boolean;
|
|
2878
|
+
}
|
|
2879
|
+
declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2880
|
+
|
|
2881
|
+
interface AccordionOptionsProps {
|
|
2882
|
+
titleColor: string;
|
|
2883
|
+
accordions: AccordionProps[];
|
|
2884
|
+
}
|
|
2885
|
+
declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
|
|
2886
|
+
|
|
2887
|
+
interface ShortBannerProps {
|
|
2888
|
+
title: string;
|
|
2889
|
+
bannerText: string;
|
|
2890
|
+
backgroundColor: string;
|
|
2891
|
+
alignCenter?: boolean;
|
|
2892
|
+
widthAuto?: boolean;
|
|
2893
|
+
textColor: string;
|
|
2894
|
+
}
|
|
2895
|
+
declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
|
|
2896
|
+
|
|
2897
|
+
interface BeforeAfterCardProps {
|
|
2898
|
+
name: string;
|
|
2899
|
+
age?: string;
|
|
2900
|
+
months?: string;
|
|
2901
|
+
beforeImage: string;
|
|
2902
|
+
afterImage: string;
|
|
2903
|
+
alignCenter?: boolean;
|
|
2904
|
+
imageBorderRadius?: string;
|
|
2905
|
+
size?: ComponentSize;
|
|
2906
|
+
}
|
|
2907
|
+
declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
|
|
2908
|
+
|
|
2909
|
+
interface ImageCardWithDescriptionProps {
|
|
2910
|
+
image: string;
|
|
2911
|
+
title?: string;
|
|
2912
|
+
description?: string;
|
|
2913
|
+
titlePosition?: 'center' | 'left';
|
|
2914
|
+
}
|
|
2915
|
+
declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
|
|
2916
|
+
|
|
2917
|
+
interface Checkpoint$1 {
|
|
2918
|
+
day: string;
|
|
2919
|
+
date: string;
|
|
2920
|
+
statusMessage: string;
|
|
2921
|
+
}
|
|
2922
|
+
interface TrackingProgressProps {
|
|
2923
|
+
checkPoints: Checkpoint$1[];
|
|
2924
|
+
amountOfCheckPoints: number;
|
|
2925
|
+
}
|
|
2926
|
+
declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
|
|
2927
|
+
|
|
2928
|
+
interface Checkpoint {
|
|
2929
|
+
day: string;
|
|
2930
|
+
date: string;
|
|
2931
|
+
statusMessage: string;
|
|
2932
|
+
}
|
|
2933
|
+
interface TrackingProgressV2Props {
|
|
2934
|
+
checkPoints: Checkpoint[];
|
|
2935
|
+
amountOfCheckPoints: number;
|
|
2936
|
+
warning?: boolean;
|
|
2937
|
+
}
|
|
2938
|
+
declare const TrackingProgressV2: ({ checkPoints, amountOfCheckPoints, warning, }: TrackingProgressV2Props) => JSX.Element;
|
|
2939
|
+
|
|
2940
|
+
interface ReviewsHeaderProps {
|
|
2941
|
+
title?: string;
|
|
2942
|
+
rating: number;
|
|
2943
|
+
reviews: number;
|
|
2944
|
+
reviewsText: string;
|
|
2945
|
+
reviewsSummary: string[];
|
|
2946
|
+
onClickReview: (reveiw: string) => void;
|
|
2947
|
+
}
|
|
2948
|
+
declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
|
|
2949
|
+
|
|
2950
|
+
interface ReviewProps {
|
|
2951
|
+
reviewId: string;
|
|
2952
|
+
reviewerName: string;
|
|
2953
|
+
date: Date;
|
|
2954
|
+
rating: number;
|
|
2955
|
+
stars: {
|
|
2956
|
+
color: string;
|
|
2957
|
+
size: ComponentSize.Medium | ComponentSize.Small;
|
|
2958
|
+
};
|
|
2959
|
+
title: string;
|
|
2960
|
+
description: string;
|
|
2961
|
+
image?: {
|
|
2962
|
+
src: string;
|
|
2963
|
+
alt: string;
|
|
2964
|
+
};
|
|
2965
|
+
modalId: string;
|
|
2966
|
+
maxFullScreen?: boolean;
|
|
2967
|
+
verified?: boolean;
|
|
2968
|
+
productImage?: string;
|
|
2969
|
+
productTitle?: string;
|
|
2970
|
+
productLink?: string;
|
|
2971
|
+
helpfulCount?: number;
|
|
2972
|
+
helpfulAction?: (id: string) => void;
|
|
2973
|
+
notHelpfulCount?: number;
|
|
2974
|
+
notHelpfulAction?: (id: string) => void;
|
|
2975
|
+
}
|
|
2976
|
+
declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps) => JSX.Element;
|
|
2977
|
+
|
|
2978
|
+
interface ProductGalleryMobileProps {
|
|
2979
|
+
images: ImageType[];
|
|
2980
|
+
selectedValue?: ImageType;
|
|
2981
|
+
topTag?: JSX.Element;
|
|
2982
|
+
bottomTag?: JSX.Element;
|
|
2983
|
+
productImageDataTestId?: string;
|
|
2984
|
+
slideDotsDataTestId?: string;
|
|
2985
|
+
borderRadiusVariant?: boolean;
|
|
2986
|
+
}
|
|
2987
|
+
declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
|
|
2988
|
+
|
|
2989
|
+
interface AbsorbencyLevelProps {
|
|
2990
|
+
dropTotal: number;
|
|
2991
|
+
drops: number;
|
|
2992
|
+
absorbencyTitle: string;
|
|
2993
|
+
absorbencyDescription: string;
|
|
2994
|
+
}
|
|
2995
|
+
declare const AbsorbencyLevel: ({ dropTotal, drops, absorbencyTitle, absorbencyDescription, }: AbsorbencyLevelProps) => JSX.Element;
|
|
2996
|
+
|
|
2997
|
+
interface HurryUpProps {
|
|
2998
|
+
hurryUpText: string;
|
|
2999
|
+
backgroundColor?: string;
|
|
3000
|
+
showTimer?: boolean;
|
|
3001
|
+
iconSize?: number;
|
|
3002
|
+
textPosition?: 'left' | 'right' | 'center';
|
|
3003
|
+
}
|
|
3004
|
+
declare const HurryUp: ({ hurryUpText, backgroundColor, iconSize, textPosition, showTimer, }: HurryUpProps) => JSX.Element;
|
|
3005
|
+
|
|
3006
|
+
interface BuyNowPayLaterProps {
|
|
3007
|
+
displayBNPL: boolean;
|
|
3008
|
+
installments: number;
|
|
3009
|
+
installmentPrice: string;
|
|
3010
|
+
iconFolder?: string;
|
|
3011
|
+
iconName: string;
|
|
3012
|
+
showLogo?: boolean;
|
|
3013
|
+
iconColor?: string;
|
|
3014
|
+
fontSize?: string;
|
|
3015
|
+
}
|
|
3016
|
+
declare const BuyNowPayLater: ({ displayBNPL, installments, installmentPrice, iconFolder, iconName, showLogo, iconColor, fontSize, }: BuyNowPayLaterProps) => JSX.Element | null;
|
|
3017
|
+
|
|
3018
|
+
interface StrengthBarProps {
|
|
3019
|
+
barsFilled?: number;
|
|
3020
|
+
supportText?: string;
|
|
3021
|
+
}
|
|
3022
|
+
declare const StrengthBars: ({ barsFilled, supportText }: StrengthBarProps) => JSX.Element;
|
|
3023
|
+
|
|
1739
3024
|
declare global {
|
|
1740
3025
|
interface Events {
|
|
1741
3026
|
modal: {
|
|
@@ -1775,4 +3060,8 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1775
3060
|
currency?: string | undefined;
|
|
1776
3061
|
}) => string;
|
|
1777
3062
|
|
|
1778
|
-
|
|
3063
|
+
declare const getSrcSet: (imgLink: string, ...breakpoints: number[]) => string;
|
|
3064
|
+
|
|
3065
|
+
declare const mediaQueries: facepaint.DynamicStyleFunction;
|
|
3066
|
+
|
|
3067
|
+
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, 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 };
|