@trafilea/afrodita-components 5.0.0-beta.21 → 5.0.0-beta.211
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 +1126 -77
- package/build/index.esm.css +4 -1
- package/build/index.esm.js +6648 -3318
- package/build/index.esm.js.map +1 -1
- package/build/index.js +6673 -3320
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.d.ts +610 -0
- package/build/theme/revel.theme.js +951 -0
- package/build/theme/shapermint.theme.d.ts +195 -1
- package/build/theme/shapermint.theme.js +220 -1
- package/build/theme/truekind.theme.d.ts +195 -1
- package/build/theme/truekind.theme.js +211 -0
- package/build/theme/tsd.theme.d.ts +610 -0
- package/build/theme/tsd.theme.js +1017 -0
- package/package.json +4 -2
package/build/index.d.ts
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { IconProps as IconProps$1 } from 'src/types/types';
|
|
3
|
-
import React, { FC, ReactNode, ElementType, CSSProperties, AriaAttributes,
|
|
3
|
+
import React, { FC, ReactNode, ElementType, CSSProperties, AriaAttributes, HTMLAttributes, LabelHTMLAttributes, RefObject } from 'react';
|
|
4
4
|
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
5
|
-
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
6
5
|
import * as _emotion_styled from '@emotion/styled';
|
|
6
|
+
import { StyledComponent } from '@emotion/styled';
|
|
7
|
+
export { default as styled } from '@emotion/styled';
|
|
8
|
+
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
7
9
|
import * as _emotion_react from '@emotion/react';
|
|
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,8 +69,9 @@ 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
|
};
|
|
@@ -101,10 +102,20 @@ declare type Filter = {
|
|
|
101
102
|
title: string;
|
|
102
103
|
columns: number;
|
|
103
104
|
isOpenByDefault?: boolean;
|
|
105
|
+
isLinkOption?: boolean;
|
|
106
|
+
link?: string;
|
|
107
|
+
color?: string;
|
|
108
|
+
isMultiselect: boolean;
|
|
109
|
+
type?: string;
|
|
104
110
|
items: Array<{
|
|
105
111
|
label: string;
|
|
106
112
|
checked?: boolean;
|
|
113
|
+
isLinkItem?: boolean;
|
|
114
|
+
link?: string;
|
|
115
|
+
blockUncheck?: boolean;
|
|
116
|
+
value?: string;
|
|
107
117
|
}>;
|
|
118
|
+
showInMobile: boolean;
|
|
108
119
|
};
|
|
109
120
|
declare type FilterChange = {
|
|
110
121
|
sectionIndex: number;
|
|
@@ -115,18 +126,73 @@ interface SearchBarOptionItem {
|
|
|
115
126
|
src: string;
|
|
116
127
|
price: string;
|
|
117
128
|
title: string;
|
|
129
|
+
optionUrl: string;
|
|
130
|
+
}
|
|
131
|
+
interface imageVideoProps {
|
|
132
|
+
imageLink: string;
|
|
133
|
+
isVideo?: {
|
|
134
|
+
videoTitle?: string;
|
|
135
|
+
videoSubtitle?: string;
|
|
136
|
+
textColor?: string;
|
|
137
|
+
videoLink?: string;
|
|
138
|
+
};
|
|
139
|
+
isMobile?: boolean;
|
|
118
140
|
}
|
|
119
141
|
|
|
120
142
|
declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
121
143
|
|
|
122
144
|
declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
123
145
|
|
|
146
|
+
declare const Smiling: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
147
|
+
|
|
148
|
+
declare const BulletOne: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
149
|
+
|
|
150
|
+
declare const BulletTwo: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
151
|
+
|
|
152
|
+
declare const BulletThree: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
153
|
+
|
|
154
|
+
declare const ThumbsUp: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
155
|
+
|
|
156
|
+
declare const ThumbsDown: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
157
|
+
|
|
158
|
+
declare const Atom: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
159
|
+
|
|
160
|
+
declare const Bubbles: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
161
|
+
|
|
162
|
+
declare const FairAdvantages: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
163
|
+
|
|
164
|
+
declare const MoneyFlow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
165
|
+
|
|
166
|
+
declare const ClinicallyTested: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
167
|
+
|
|
124
168
|
declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
|
|
125
169
|
declare const Custom_Frown: typeof Frown;
|
|
170
|
+
declare const Custom_Smiling: typeof Smiling;
|
|
171
|
+
declare const Custom_BulletOne: typeof BulletOne;
|
|
172
|
+
declare const Custom_BulletTwo: typeof BulletTwo;
|
|
173
|
+
declare const Custom_BulletThree: typeof BulletThree;
|
|
174
|
+
declare const Custom_ThumbsUp: typeof ThumbsUp;
|
|
175
|
+
declare const Custom_ThumbsDown: typeof ThumbsDown;
|
|
176
|
+
declare const Custom_Atom: typeof Atom;
|
|
177
|
+
declare const Custom_Bubbles: typeof Bubbles;
|
|
178
|
+
declare const Custom_FairAdvantages: typeof FairAdvantages;
|
|
179
|
+
declare const Custom_MoneyFlow: typeof MoneyFlow;
|
|
180
|
+
declare const Custom_ClinicallyTested: typeof ClinicallyTested;
|
|
126
181
|
declare namespace Custom {
|
|
127
182
|
export {
|
|
128
183
|
Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
|
|
129
184
|
Custom_Frown as Frown,
|
|
185
|
+
Custom_Smiling as Smiling,
|
|
186
|
+
Custom_BulletOne as BulletOne,
|
|
187
|
+
Custom_BulletTwo as BulletTwo,
|
|
188
|
+
Custom_BulletThree as BulletThree,
|
|
189
|
+
Custom_ThumbsUp as ThumbsUp,
|
|
190
|
+
Custom_ThumbsDown as ThumbsDown,
|
|
191
|
+
Custom_Atom as Atom,
|
|
192
|
+
Custom_Bubbles as Bubbles,
|
|
193
|
+
Custom_FairAdvantages as FairAdvantages,
|
|
194
|
+
Custom_MoneyFlow as MoneyFlow,
|
|
195
|
+
Custom_ClinicallyTested as ClinicallyTested,
|
|
130
196
|
};
|
|
131
197
|
}
|
|
132
198
|
|
|
@@ -147,6 +213,73 @@ declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
147
213
|
|
|
148
214
|
declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
149
215
|
|
|
216
|
+
declare const Warning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
217
|
+
|
|
218
|
+
declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
219
|
+
|
|
220
|
+
declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
221
|
+
|
|
222
|
+
declare const Add: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
223
|
+
|
|
224
|
+
interface CopyProps extends IconProps {
|
|
225
|
+
stroke?: string;
|
|
226
|
+
}
|
|
227
|
+
declare const Copy: ({ height, width, fill, stroke }: CopyProps) => JSX.Element;
|
|
228
|
+
|
|
229
|
+
declare const CopyOutlined: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
230
|
+
|
|
231
|
+
declare const CheckboxEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
232
|
+
|
|
233
|
+
declare const CheckboxLight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
234
|
+
|
|
235
|
+
declare const CheckboxSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
236
|
+
|
|
237
|
+
declare const Like: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
238
|
+
|
|
239
|
+
declare const LikeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
240
|
+
|
|
241
|
+
declare const NotAllowed: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
242
|
+
|
|
243
|
+
declare const RadioEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
244
|
+
|
|
245
|
+
declare const RadioFilled: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
246
|
+
|
|
247
|
+
declare const Minus$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
248
|
+
|
|
249
|
+
declare const SettingsSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
250
|
+
|
|
251
|
+
declare const Settings: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
252
|
+
|
|
253
|
+
declare const Share: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
254
|
+
|
|
255
|
+
declare const CircleCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
256
|
+
|
|
257
|
+
declare const CircleClear: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
258
|
+
|
|
259
|
+
declare const CircleInfo: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
260
|
+
|
|
261
|
+
declare const CircleMinus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
262
|
+
|
|
263
|
+
declare const CirclePlus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
264
|
+
|
|
265
|
+
declare const CircleQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
266
|
+
|
|
267
|
+
declare const CircleWarning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
268
|
+
|
|
269
|
+
declare const CircleSolidCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
270
|
+
|
|
271
|
+
declare const CircleSolidClear: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
272
|
+
|
|
273
|
+
declare const CircleSolidMinus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
274
|
+
|
|
275
|
+
declare const CircleSolidPlus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
276
|
+
|
|
277
|
+
declare const CircleSolidQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
278
|
+
|
|
279
|
+
declare const CircleSolidWarning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
280
|
+
|
|
281
|
+
declare const CircleSolidStyledCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
282
|
+
|
|
150
283
|
declare const Actions_Check: typeof Check;
|
|
151
284
|
declare const Actions_ClearLight: typeof ClearLight;
|
|
152
285
|
declare const Actions_LightExclamation: typeof LightExclamation;
|
|
@@ -155,6 +288,38 @@ declare const Actions_LightCheck: typeof LightCheck;
|
|
|
155
288
|
declare const Actions_Question: typeof Question;
|
|
156
289
|
declare const Actions_Close: typeof Close;
|
|
157
290
|
declare const Actions_Trash: typeof Trash;
|
|
291
|
+
declare const Actions_Warning: typeof Warning;
|
|
292
|
+
declare const Actions_Edit: typeof Edit;
|
|
293
|
+
declare const Actions_SignOut: typeof SignOut;
|
|
294
|
+
declare const Actions_Add: typeof Add;
|
|
295
|
+
type Actions_CopyProps = CopyProps;
|
|
296
|
+
declare const Actions_Copy: typeof Copy;
|
|
297
|
+
declare const Actions_CopyOutlined: typeof CopyOutlined;
|
|
298
|
+
declare const Actions_CheckboxEmpty: typeof CheckboxEmpty;
|
|
299
|
+
declare const Actions_CheckboxLight: typeof CheckboxLight;
|
|
300
|
+
declare const Actions_CheckboxSolid: typeof CheckboxSolid;
|
|
301
|
+
declare const Actions_Like: typeof Like;
|
|
302
|
+
declare const Actions_LikeSolid: typeof LikeSolid;
|
|
303
|
+
declare const Actions_NotAllowed: typeof NotAllowed;
|
|
304
|
+
declare const Actions_RadioEmpty: typeof RadioEmpty;
|
|
305
|
+
declare const Actions_RadioFilled: typeof RadioFilled;
|
|
306
|
+
declare const Actions_SettingsSolid: typeof SettingsSolid;
|
|
307
|
+
declare const Actions_Settings: typeof Settings;
|
|
308
|
+
declare const Actions_Share: typeof Share;
|
|
309
|
+
declare const Actions_CircleCheck: typeof CircleCheck;
|
|
310
|
+
declare const Actions_CircleClear: typeof CircleClear;
|
|
311
|
+
declare const Actions_CircleInfo: typeof CircleInfo;
|
|
312
|
+
declare const Actions_CircleMinus: typeof CircleMinus;
|
|
313
|
+
declare const Actions_CirclePlus: typeof CirclePlus;
|
|
314
|
+
declare const Actions_CircleQuestion: typeof CircleQuestion;
|
|
315
|
+
declare const Actions_CircleWarning: typeof CircleWarning;
|
|
316
|
+
declare const Actions_CircleSolidCheck: typeof CircleSolidCheck;
|
|
317
|
+
declare const Actions_CircleSolidClear: typeof CircleSolidClear;
|
|
318
|
+
declare const Actions_CircleSolidMinus: typeof CircleSolidMinus;
|
|
319
|
+
declare const Actions_CircleSolidPlus: typeof CircleSolidPlus;
|
|
320
|
+
declare const Actions_CircleSolidQuestion: typeof CircleSolidQuestion;
|
|
321
|
+
declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
|
|
322
|
+
declare const Actions_CircleSolidStyledCheck: typeof CircleSolidStyledCheck;
|
|
158
323
|
declare namespace Actions {
|
|
159
324
|
export {
|
|
160
325
|
Actions_Check as Check,
|
|
@@ -165,6 +330,39 @@ declare namespace Actions {
|
|
|
165
330
|
Actions_Question as Question,
|
|
166
331
|
Actions_Close as Close,
|
|
167
332
|
Actions_Trash as Trash,
|
|
333
|
+
Actions_Warning as Warning,
|
|
334
|
+
Actions_Edit as Edit,
|
|
335
|
+
Actions_SignOut as SignOut,
|
|
336
|
+
Actions_Add as Add,
|
|
337
|
+
Actions_CopyProps as CopyProps,
|
|
338
|
+
Actions_Copy as Copy,
|
|
339
|
+
Actions_CopyOutlined as CopyOutlined,
|
|
340
|
+
Actions_CheckboxEmpty as CheckboxEmpty,
|
|
341
|
+
Actions_CheckboxLight as CheckboxLight,
|
|
342
|
+
Actions_CheckboxSolid as CheckboxSolid,
|
|
343
|
+
Actions_Like as Like,
|
|
344
|
+
Actions_LikeSolid as LikeSolid,
|
|
345
|
+
Actions_NotAllowed as NotAllowed,
|
|
346
|
+
Actions_RadioEmpty as RadioEmpty,
|
|
347
|
+
Actions_RadioFilled as RadioFilled,
|
|
348
|
+
Minus$1 as Minus,
|
|
349
|
+
Actions_SettingsSolid as SettingsSolid,
|
|
350
|
+
Actions_Settings as Settings,
|
|
351
|
+
Actions_Share as Share,
|
|
352
|
+
Actions_CircleCheck as CircleCheck,
|
|
353
|
+
Actions_CircleClear as CircleClear,
|
|
354
|
+
Actions_CircleInfo as CircleInfo,
|
|
355
|
+
Actions_CircleMinus as CircleMinus,
|
|
356
|
+
Actions_CirclePlus as CirclePlus,
|
|
357
|
+
Actions_CircleQuestion as CircleQuestion,
|
|
358
|
+
Actions_CircleWarning as CircleWarning,
|
|
359
|
+
Actions_CircleSolidCheck as CircleSolidCheck,
|
|
360
|
+
Actions_CircleSolidClear as CircleSolidClear,
|
|
361
|
+
Actions_CircleSolidMinus as CircleSolidMinus,
|
|
362
|
+
Actions_CircleSolidPlus as CircleSolidPlus,
|
|
363
|
+
Actions_CircleSolidQuestion as CircleSolidQuestion,
|
|
364
|
+
Actions_CircleSolidWarning as CircleSolidWarning,
|
|
365
|
+
Actions_CircleSolidStyledCheck as CircleSolidStyledCheck,
|
|
168
366
|
};
|
|
169
367
|
}
|
|
170
368
|
|
|
@@ -173,23 +371,74 @@ declare const FitPredictor$1: ({ height, width, fill }: IconProps) => JSX.Elemen
|
|
|
173
371
|
interface LoadingProps extends IconProps {
|
|
174
372
|
backgroundColor: string;
|
|
175
373
|
}
|
|
176
|
-
declare const Loading: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
374
|
+
declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
177
375
|
|
|
178
376
|
declare const Shapermint: ({ height, width }: IconProps) => JSX.Element;
|
|
179
377
|
|
|
180
378
|
declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
|
|
181
379
|
|
|
380
|
+
declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
|
|
381
|
+
|
|
382
|
+
declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
383
|
+
|
|
384
|
+
declare const Chat: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
385
|
+
|
|
386
|
+
declare const Email: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
387
|
+
|
|
388
|
+
declare const CallUs: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
389
|
+
|
|
390
|
+
declare const SignForm: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
391
|
+
|
|
392
|
+
declare const QrCode: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
393
|
+
|
|
394
|
+
declare const FreeExchange: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
395
|
+
|
|
396
|
+
declare const ShopNow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
397
|
+
|
|
398
|
+
declare const HasselFreeReturns: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
399
|
+
|
|
400
|
+
declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
401
|
+
|
|
402
|
+
declare const FitGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
403
|
+
|
|
404
|
+
declare const QuestionWithCircle: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
405
|
+
|
|
182
406
|
type Other_LoadingProps = LoadingProps;
|
|
183
|
-
declare const Other_Loading: typeof Loading;
|
|
184
407
|
declare const Other_Shapermint: typeof Shapermint;
|
|
185
408
|
declare const Other_McAfee: typeof McAfee;
|
|
409
|
+
declare const Other_GetDiscount: typeof GetDiscount;
|
|
410
|
+
declare const Other_ShapermintLogo: typeof ShapermintLogo;
|
|
411
|
+
declare const Other_Chat: typeof Chat;
|
|
412
|
+
declare const Other_Email: typeof Email;
|
|
413
|
+
declare const Other_CallUs: typeof CallUs;
|
|
414
|
+
declare const Other_SignForm: typeof SignForm;
|
|
415
|
+
declare const Other_QrCode: typeof QrCode;
|
|
416
|
+
declare const Other_FreeExchange: typeof FreeExchange;
|
|
417
|
+
declare const Other_ShopNow: typeof ShopNow;
|
|
418
|
+
declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
|
|
419
|
+
declare const Other_Play: typeof Play;
|
|
420
|
+
declare const Other_FitGuarantee: typeof FitGuarantee;
|
|
421
|
+
declare const Other_QuestionWithCircle: typeof QuestionWithCircle;
|
|
186
422
|
declare namespace Other {
|
|
187
423
|
export {
|
|
188
424
|
FitPredictor$1 as FitPredictor,
|
|
189
425
|
Other_LoadingProps as LoadingProps,
|
|
190
|
-
|
|
426
|
+
Loading$1 as Loading,
|
|
191
427
|
Other_Shapermint as Shapermint,
|
|
192
428
|
Other_McAfee as McAfee,
|
|
429
|
+
Other_GetDiscount as GetDiscount,
|
|
430
|
+
Other_ShapermintLogo as ShapermintLogo,
|
|
431
|
+
Other_Chat as Chat,
|
|
432
|
+
Other_Email as Email,
|
|
433
|
+
Other_CallUs as CallUs,
|
|
434
|
+
Other_SignForm as SignForm,
|
|
435
|
+
Other_QrCode as QrCode,
|
|
436
|
+
Other_FreeExchange as FreeExchange,
|
|
437
|
+
Other_ShopNow as ShopNow,
|
|
438
|
+
Other_HasselFreeReturns as HasselFreeReturns,
|
|
439
|
+
Other_Play as Play,
|
|
440
|
+
Other_FitGuarantee as FitGuarantee,
|
|
441
|
+
Other_QuestionWithCircle as QuestionWithCircle,
|
|
193
442
|
};
|
|
194
443
|
}
|
|
195
444
|
|
|
@@ -207,6 +456,28 @@ declare const ChevronUpSolid: ({ height, width, fill }: IconProps) => JSX.Elemen
|
|
|
207
456
|
|
|
208
457
|
declare const CircleUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
209
458
|
|
|
459
|
+
declare const CircleChevronLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
460
|
+
|
|
461
|
+
declare const CircleChevronRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
462
|
+
|
|
463
|
+
declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
464
|
+
|
|
465
|
+
declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
466
|
+
|
|
467
|
+
declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
468
|
+
|
|
469
|
+
declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
470
|
+
|
|
471
|
+
declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
472
|
+
|
|
473
|
+
declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
474
|
+
|
|
475
|
+
declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
476
|
+
|
|
477
|
+
declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
478
|
+
|
|
479
|
+
declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
480
|
+
|
|
210
481
|
declare const Arrows_ChevronDown: typeof ChevronDown;
|
|
211
482
|
declare const Arrows_ChevronLeft: typeof ChevronLeft;
|
|
212
483
|
declare const Arrows_ChevronRight: typeof ChevronRight;
|
|
@@ -214,6 +485,17 @@ declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
|
|
|
214
485
|
declare const Arrows_ChevronUp: typeof ChevronUp;
|
|
215
486
|
declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
|
|
216
487
|
declare const Arrows_CircleUp: typeof CircleUp;
|
|
488
|
+
declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
|
|
489
|
+
declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
|
|
490
|
+
declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
|
|
491
|
+
declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
|
|
492
|
+
declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
|
|
493
|
+
declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
|
|
494
|
+
declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
|
|
495
|
+
declare const Arrows_CircleLineUp: typeof CircleLineUp;
|
|
496
|
+
declare const Arrows_CircleLineDown: typeof CircleLineDown;
|
|
497
|
+
declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
|
|
498
|
+
declare const Arrows_CircleLineRight: typeof CircleLineRight;
|
|
217
499
|
declare namespace Arrows {
|
|
218
500
|
export {
|
|
219
501
|
Arrows_ChevronDown as ChevronDown,
|
|
@@ -223,6 +505,17 @@ declare namespace Arrows {
|
|
|
223
505
|
Arrows_ChevronUp as ChevronUp,
|
|
224
506
|
Arrows_ChevronUpSolid as ChevronUpSolid,
|
|
225
507
|
Arrows_CircleUp as CircleUp,
|
|
508
|
+
Arrows_CircleChevronLeft as CircleChevronLeft,
|
|
509
|
+
Arrows_CircleChevronRight as CircleChevronRight,
|
|
510
|
+
Arrows_CircleChevronDown as CircleChevronDown,
|
|
511
|
+
Arrows_CircleChevronUp as CircleChevronUp,
|
|
512
|
+
Arrows_ChevronDownVariant as ChevronDownVariant,
|
|
513
|
+
Arrows_ChevronUpVariant as ChevronUpVariant,
|
|
514
|
+
Arrows_ChevronLeftVariant as ChevronLeftVariant,
|
|
515
|
+
Arrows_CircleLineUp as CircleLineUp,
|
|
516
|
+
Arrows_CircleLineDown as CircleLineDown,
|
|
517
|
+
Arrows_CircleLineLeft as CircleLineLeft,
|
|
518
|
+
Arrows_CircleLineRight as CircleLineRight,
|
|
226
519
|
};
|
|
227
520
|
}
|
|
228
521
|
|
|
@@ -246,6 +539,30 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
|
|
|
246
539
|
|
|
247
540
|
declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
248
541
|
|
|
542
|
+
declare const LightBulb$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
543
|
+
|
|
544
|
+
declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
545
|
+
|
|
546
|
+
declare const CircleNumber: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
547
|
+
|
|
548
|
+
declare const SizeEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
549
|
+
|
|
550
|
+
declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
551
|
+
|
|
552
|
+
declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
553
|
+
|
|
554
|
+
declare const Drop: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
555
|
+
|
|
556
|
+
declare const DropEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
557
|
+
|
|
558
|
+
declare const Stars: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
559
|
+
|
|
560
|
+
declare const Moon: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
561
|
+
|
|
562
|
+
declare const Hours: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
563
|
+
|
|
564
|
+
declare const NewClock: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
565
|
+
|
|
249
566
|
declare const PDP_Clock: typeof Clock;
|
|
250
567
|
declare const PDP_FlagUSA: typeof FlagUSA;
|
|
251
568
|
declare const PDP_Minus: typeof Minus;
|
|
@@ -256,6 +573,17 @@ declare const PDP_StarEmpty: typeof StarEmpty;
|
|
|
256
573
|
declare const PDP_StarHalf: typeof StarHalf;
|
|
257
574
|
declare const PDP_Stopwatch: typeof Stopwatch;
|
|
258
575
|
declare const PDP_Shipping: typeof Shipping;
|
|
576
|
+
declare const PDP_ErrorCross: typeof ErrorCross;
|
|
577
|
+
declare const PDP_CircleNumber: typeof CircleNumber;
|
|
578
|
+
declare const PDP_SizeEmpty: typeof SizeEmpty;
|
|
579
|
+
declare const PDP_PlayMini: typeof PlayMini;
|
|
580
|
+
declare const PDP_ShippingEmpty: typeof ShippingEmpty;
|
|
581
|
+
declare const PDP_Drop: typeof Drop;
|
|
582
|
+
declare const PDP_DropEmpty: typeof DropEmpty;
|
|
583
|
+
declare const PDP_Stars: typeof Stars;
|
|
584
|
+
declare const PDP_Moon: typeof Moon;
|
|
585
|
+
declare const PDP_Hours: typeof Hours;
|
|
586
|
+
declare const PDP_NewClock: typeof NewClock;
|
|
259
587
|
declare namespace PDP {
|
|
260
588
|
export {
|
|
261
589
|
PDP_Clock as Clock,
|
|
@@ -268,6 +596,18 @@ declare namespace PDP {
|
|
|
268
596
|
PDP_StarHalf as StarHalf,
|
|
269
597
|
PDP_Stopwatch as Stopwatch,
|
|
270
598
|
PDP_Shipping as Shipping,
|
|
599
|
+
LightBulb$1 as LightBulb,
|
|
600
|
+
PDP_ErrorCross as ErrorCross,
|
|
601
|
+
PDP_CircleNumber as CircleNumber,
|
|
602
|
+
PDP_SizeEmpty as SizeEmpty,
|
|
603
|
+
PDP_PlayMini as PlayMini,
|
|
604
|
+
PDP_ShippingEmpty as ShippingEmpty,
|
|
605
|
+
PDP_Drop as Drop,
|
|
606
|
+
PDP_DropEmpty as DropEmpty,
|
|
607
|
+
PDP_Stars as Stars,
|
|
608
|
+
PDP_Moon as Moon,
|
|
609
|
+
PDP_Hours as Hours,
|
|
610
|
+
PDP_NewClock as NewClock,
|
|
271
611
|
};
|
|
272
612
|
}
|
|
273
613
|
|
|
@@ -285,6 +625,8 @@ declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
285
625
|
|
|
286
626
|
declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
287
627
|
|
|
628
|
+
declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
629
|
+
|
|
288
630
|
declare const SocialMedia_Facebook: typeof Facebook;
|
|
289
631
|
declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
|
|
290
632
|
declare const SocialMedia_Instagram: typeof Instagram;
|
|
@@ -292,6 +634,7 @@ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
|
|
|
292
634
|
declare const SocialMedia_Pinterest: typeof Pinterest;
|
|
293
635
|
declare const SocialMedia_Twitter: typeof Twitter;
|
|
294
636
|
declare const SocialMedia_Youtube: typeof Youtube;
|
|
637
|
+
declare const SocialMedia_Interaction: typeof Interaction;
|
|
295
638
|
declare namespace SocialMedia {
|
|
296
639
|
export {
|
|
297
640
|
SocialMedia_Facebook as Facebook,
|
|
@@ -301,14 +644,15 @@ declare namespace SocialMedia {
|
|
|
301
644
|
SocialMedia_Pinterest as Pinterest,
|
|
302
645
|
SocialMedia_Twitter as Twitter,
|
|
303
646
|
SocialMedia_Youtube as Youtube,
|
|
647
|
+
SocialMedia_Interaction as Interaction,
|
|
304
648
|
};
|
|
305
649
|
}
|
|
306
650
|
|
|
307
|
-
declare const Search: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
651
|
+
declare const Search: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
308
652
|
|
|
309
653
|
declare const User: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
310
654
|
|
|
311
|
-
declare const ShoppingBag: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
655
|
+
declare const ShoppingBag: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
312
656
|
|
|
313
657
|
declare const ShoppingCart: FC<IconProps>;
|
|
314
658
|
|
|
@@ -316,12 +660,64 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
316
660
|
|
|
317
661
|
declare const Hamburger: FC<IconProps>;
|
|
318
662
|
|
|
663
|
+
declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
664
|
+
|
|
665
|
+
declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
666
|
+
|
|
667
|
+
declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
668
|
+
|
|
669
|
+
declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
670
|
+
|
|
671
|
+
declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
672
|
+
|
|
673
|
+
declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
674
|
+
|
|
675
|
+
declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
676
|
+
|
|
677
|
+
declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
678
|
+
|
|
679
|
+
declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
680
|
+
|
|
681
|
+
declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
682
|
+
|
|
683
|
+
declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
684
|
+
|
|
685
|
+
declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
686
|
+
|
|
687
|
+
declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
688
|
+
|
|
689
|
+
declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
690
|
+
|
|
691
|
+
declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
692
|
+
|
|
693
|
+
declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
694
|
+
|
|
695
|
+
declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
696
|
+
|
|
697
|
+
declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
698
|
+
|
|
319
699
|
declare const Navigation_Search: typeof Search;
|
|
320
700
|
declare const Navigation_User: typeof User;
|
|
321
701
|
declare const Navigation_ShoppingBag: typeof ShoppingBag;
|
|
322
702
|
declare const Navigation_ShoppingCart: typeof ShoppingCart;
|
|
323
703
|
declare const Navigation_MapMarker: typeof MapMarker;
|
|
324
704
|
declare const Navigation_Hamburger: typeof Hamburger;
|
|
705
|
+
declare const Navigation_AddressInformation: typeof AddressInformation;
|
|
706
|
+
declare const Navigation_ClubMembership: typeof ClubMembership;
|
|
707
|
+
declare const Navigation_Benefits: typeof Benefits;
|
|
708
|
+
declare const Navigation_Home: typeof Home;
|
|
709
|
+
declare const Navigation_HomeSolid: typeof HomeSolid;
|
|
710
|
+
declare const Navigation_ShoppingBagV2: typeof ShoppingBagV2;
|
|
711
|
+
declare const Navigation_UserSolid: typeof UserSolid;
|
|
712
|
+
declare const Navigation_SlideDotSolid: typeof SlideDotSolid;
|
|
713
|
+
declare const Navigation_Ellipsis: typeof Ellipsis;
|
|
714
|
+
declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
|
|
715
|
+
declare const Navigation_Lock: typeof Lock;
|
|
716
|
+
declare const Navigation_LockSolid: typeof LockSolid;
|
|
717
|
+
declare const Navigation_Loading: typeof Loading;
|
|
718
|
+
declare const Navigation_MapSolid: typeof MapSolid;
|
|
719
|
+
declare const Navigation_UserV2: typeof UserV2;
|
|
720
|
+
declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
|
|
325
721
|
declare namespace Navigation {
|
|
326
722
|
export {
|
|
327
723
|
Navigation_Search as Search,
|
|
@@ -330,6 +726,24 @@ declare namespace Navigation {
|
|
|
330
726
|
Navigation_ShoppingCart as ShoppingCart,
|
|
331
727
|
Navigation_MapMarker as MapMarker,
|
|
332
728
|
Navigation_Hamburger as Hamburger,
|
|
729
|
+
Navigation_AddressInformation as AddressInformation,
|
|
730
|
+
Navigation_ClubMembership as ClubMembership,
|
|
731
|
+
Navigation_Benefits as Benefits,
|
|
732
|
+
Navigation_Home as Home,
|
|
733
|
+
Navigation_HomeSolid as HomeSolid,
|
|
734
|
+
Navigation_ShoppingBagV2 as ShoppingBagV2,
|
|
735
|
+
Navigation_UserSolid as UserSolid,
|
|
736
|
+
SlideDot$1 as SlideDot,
|
|
737
|
+
Navigation_SlideDotSolid as SlideDotSolid,
|
|
738
|
+
Navigation_Ellipsis as Ellipsis,
|
|
739
|
+
Navigation_EllipsisHorizontal as EllipsisHorizontal,
|
|
740
|
+
Filters$1 as Filters,
|
|
741
|
+
Navigation_Lock as Lock,
|
|
742
|
+
Navigation_LockSolid as LockSolid,
|
|
743
|
+
Navigation_Loading as Loading,
|
|
744
|
+
Navigation_MapSolid as MapSolid,
|
|
745
|
+
Navigation_UserV2 as UserV2,
|
|
746
|
+
Navigation_ShoppingCartV2 as ShoppingCartV2,
|
|
333
747
|
};
|
|
334
748
|
}
|
|
335
749
|
|
|
@@ -350,18 +764,61 @@ interface IconWrapperProps {
|
|
|
350
764
|
fill?: string;
|
|
351
765
|
}
|
|
352
766
|
|
|
353
|
-
declare const Mail: ({ height, width }: IconWrapperProps) => JSX.Element;
|
|
767
|
+
declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
|
|
768
|
+
|
|
769
|
+
declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
770
|
+
|
|
771
|
+
declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
772
|
+
|
|
773
|
+
declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
774
|
+
|
|
775
|
+
declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
776
|
+
|
|
777
|
+
declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
778
|
+
|
|
779
|
+
declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
780
|
+
|
|
781
|
+
declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
782
|
+
|
|
783
|
+
declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
784
|
+
|
|
785
|
+
declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
786
|
+
|
|
787
|
+
declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
788
|
+
|
|
789
|
+
declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
354
790
|
|
|
355
791
|
declare const Messaging_QuestionCircle: typeof QuestionCircle;
|
|
356
792
|
declare const Messaging_Messenger: typeof Messenger;
|
|
357
793
|
declare const Messaging_Comment: typeof Comment;
|
|
358
794
|
declare const Messaging_Mail: typeof Mail;
|
|
795
|
+
declare const Messaging_QuoteLeft: typeof QuoteLeft;
|
|
796
|
+
declare const Messaging_QuoteRight: typeof QuoteRight;
|
|
797
|
+
declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
|
|
798
|
+
declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
|
|
799
|
+
declare const Messaging_Light: typeof Light;
|
|
800
|
+
declare const Messaging_LightBulb: typeof LightBulb;
|
|
801
|
+
declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
|
|
802
|
+
declare const Messaging_CommentDots: typeof CommentDots;
|
|
803
|
+
declare const Messaging_CommentLight: typeof CommentLight;
|
|
804
|
+
declare const Messaging_CommentMoney: typeof CommentMoney;
|
|
359
805
|
declare namespace Messaging {
|
|
360
806
|
export {
|
|
361
807
|
Messaging_QuestionCircle as QuestionCircle,
|
|
362
808
|
Messaging_Messenger as Messenger,
|
|
363
809
|
Messaging_Comment as Comment,
|
|
364
810
|
Messaging_Mail as Mail,
|
|
811
|
+
Community$1 as Community,
|
|
812
|
+
Messaging_QuoteLeft as QuoteLeft,
|
|
813
|
+
Messaging_QuoteRight as QuoteRight,
|
|
814
|
+
Messaging_QuoteSolidLeft as QuoteSolidLeft,
|
|
815
|
+
Messaging_QuoteSolidRight as QuoteSolidRight,
|
|
816
|
+
Messaging_Light as Light,
|
|
817
|
+
Messaging_LightBulb as LightBulb,
|
|
818
|
+
Messaging_LightBulbSolid as LightBulbSolid,
|
|
819
|
+
Messaging_CommentDots as CommentDots,
|
|
820
|
+
Messaging_CommentLight as CommentLight,
|
|
821
|
+
Messaging_CommentMoney as CommentMoney,
|
|
365
822
|
};
|
|
366
823
|
}
|
|
367
824
|
|
|
@@ -422,10 +879,79 @@ declare namespace SlideDots {
|
|
|
422
879
|
|
|
423
880
|
declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
|
|
424
881
|
|
|
882
|
+
declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
|
|
883
|
+
|
|
884
|
+
declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
885
|
+
|
|
886
|
+
declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
|
|
887
|
+
|
|
888
|
+
declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
|
|
889
|
+
|
|
890
|
+
declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
891
|
+
|
|
892
|
+
declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
|
|
893
|
+
|
|
425
894
|
declare const Emoji_Thinking: typeof Thinking;
|
|
895
|
+
declare const Emoji_SmilingV2: typeof SmilingV2;
|
|
896
|
+
declare const Emoji_Grinning: typeof Grinning;
|
|
897
|
+
declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
|
|
898
|
+
declare const Emoji_BlowingKiss: typeof BlowingKiss;
|
|
899
|
+
declare const Emoji_Frowning: typeof Frowning;
|
|
900
|
+
declare const Emoji_Relieved: typeof Relieved;
|
|
426
901
|
declare namespace Emoji {
|
|
427
902
|
export {
|
|
428
903
|
Emoji_Thinking as Thinking,
|
|
904
|
+
Emoji_SmilingV2 as SmilingV2,
|
|
905
|
+
Emoji_Grinning as Grinning,
|
|
906
|
+
Emoji_GrinningWithSweat as GrinningWithSweat,
|
|
907
|
+
Emoji_BlowingKiss as BlowingKiss,
|
|
908
|
+
Emoji_Frowning as Frowning,
|
|
909
|
+
Emoji_Relieved as Relieved,
|
|
910
|
+
};
|
|
911
|
+
}
|
|
912
|
+
|
|
913
|
+
declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
914
|
+
|
|
915
|
+
declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
916
|
+
|
|
917
|
+
declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
918
|
+
|
|
919
|
+
declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
920
|
+
|
|
921
|
+
declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
922
|
+
|
|
923
|
+
declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
924
|
+
|
|
925
|
+
declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
926
|
+
|
|
927
|
+
declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
928
|
+
|
|
929
|
+
declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
930
|
+
|
|
931
|
+
declare const PriorityShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
932
|
+
|
|
933
|
+
declare const MyAccount_FreeShipping: typeof FreeShipping;
|
|
934
|
+
declare const MyAccount_PersonalStylist: typeof PersonalStylist;
|
|
935
|
+
declare const MyAccount_Community: typeof Community;
|
|
936
|
+
declare const MyAccount_VIP: typeof VIP;
|
|
937
|
+
declare const MyAccount_DealsOffers: typeof DealsOffers;
|
|
938
|
+
declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
|
|
939
|
+
declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
|
|
940
|
+
declare const MyAccount_Profile: typeof Profile;
|
|
941
|
+
declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
|
|
942
|
+
declare const MyAccount_PriorityShipping: typeof PriorityShipping;
|
|
943
|
+
declare namespace MyAccount {
|
|
944
|
+
export {
|
|
945
|
+
MyAccount_FreeShipping as FreeShipping,
|
|
946
|
+
MyAccount_PersonalStylist as PersonalStylist,
|
|
947
|
+
MyAccount_Community as Community,
|
|
948
|
+
MyAccount_VIP as VIP,
|
|
949
|
+
MyAccount_DealsOffers as DealsOffers,
|
|
950
|
+
MyAccount_StyleFashionContent as StyleFashionContent,
|
|
951
|
+
MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
|
|
952
|
+
MyAccount_Profile as Profile,
|
|
953
|
+
MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
|
|
954
|
+
MyAccount_PriorityShipping as PriorityShipping,
|
|
429
955
|
};
|
|
430
956
|
}
|
|
431
957
|
|
|
@@ -443,6 +969,7 @@ declare const Icon: {
|
|
|
443
969
|
Payment: typeof Payment;
|
|
444
970
|
SlideDots: typeof SlideDots;
|
|
445
971
|
Emoji: typeof Emoji;
|
|
972
|
+
MyAccount: typeof MyAccount;
|
|
446
973
|
};
|
|
447
974
|
|
|
448
975
|
interface CardBodyProps {
|
|
@@ -459,7 +986,7 @@ interface borderProps {
|
|
|
459
986
|
}
|
|
460
987
|
interface CardProps {
|
|
461
988
|
children: ReactNode;
|
|
462
|
-
backgroundColor
|
|
989
|
+
backgroundColor?: string;
|
|
463
990
|
widthAuto?: boolean;
|
|
464
991
|
border?: borderProps;
|
|
465
992
|
flex?: boolean;
|
|
@@ -487,6 +1014,8 @@ declare type CommonProps<T> = {
|
|
|
487
1014
|
initialValue?: Value<T>;
|
|
488
1015
|
placeHolder: string;
|
|
489
1016
|
testId?: string;
|
|
1017
|
+
required?: string;
|
|
1018
|
+
showRequiredPlaceholder?: boolean;
|
|
490
1019
|
};
|
|
491
1020
|
declare type ControlledProps<T> = {
|
|
492
1021
|
value: Value<T>;
|
|
@@ -497,7 +1026,22 @@ declare type UncontrolledProps<T> = {
|
|
|
497
1026
|
onChange?: OnChange<T>;
|
|
498
1027
|
} & CommonProps<T>;
|
|
499
1028
|
declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
|
|
500
|
-
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, }: SimpleDropdownProps<T>): JSX.Element;
|
|
1029
|
+
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, required, showRequiredPlaceholder, }: SimpleDropdownProps<T>): JSX.Element;
|
|
1030
|
+
|
|
1031
|
+
interface DialogPositionProps {
|
|
1032
|
+
top: string;
|
|
1033
|
+
right: string;
|
|
1034
|
+
}
|
|
1035
|
+
interface DialogDropdownProps {
|
|
1036
|
+
options: {
|
|
1037
|
+
label: string;
|
|
1038
|
+
value: string;
|
|
1039
|
+
}[];
|
|
1040
|
+
position: DialogPositionProps;
|
|
1041
|
+
style?: React.CSSProperties;
|
|
1042
|
+
className?: string;
|
|
1043
|
+
}
|
|
1044
|
+
declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
|
|
501
1045
|
|
|
502
1046
|
interface SizeSelectorProps {
|
|
503
1047
|
label: string;
|
|
@@ -528,6 +1072,7 @@ interface BaseButtonProps {
|
|
|
528
1072
|
inline?: boolean;
|
|
529
1073
|
uppercase?: boolean;
|
|
530
1074
|
testId?: string;
|
|
1075
|
+
id?: string;
|
|
531
1076
|
}
|
|
532
1077
|
|
|
533
1078
|
declare type BaseProps = Pick<BaseButtonProps, 'disabled' | 'type' | 'onClick'>;
|
|
@@ -549,8 +1094,9 @@ interface DiscountTagProps {
|
|
|
549
1094
|
borderColor?: string;
|
|
550
1095
|
textColor?: string;
|
|
551
1096
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1097
|
+
style?: React.CSSProperties;
|
|
552
1098
|
}
|
|
553
|
-
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, }: DiscountTagProps) => JSX.Element;
|
|
1099
|
+
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
|
|
554
1100
|
|
|
555
1101
|
interface PriceLabelProps {
|
|
556
1102
|
finalPrice: string | number;
|
|
@@ -558,9 +1104,15 @@ interface PriceLabelProps {
|
|
|
558
1104
|
color?: string;
|
|
559
1105
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
560
1106
|
discount?: DiscountTagProps;
|
|
1107
|
+
finalPriceStyled?: boolean;
|
|
1108
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1109
|
+
originalPriceStyled?: boolean;
|
|
1110
|
+
originalPriceUnderlined?: boolean;
|
|
561
1111
|
testId?: string;
|
|
562
1112
|
}
|
|
563
|
-
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, size, }: PriceLabelProps) => JSX.Element;
|
|
1113
|
+
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
1114
|
+
|
|
1115
|
+
declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
564
1116
|
|
|
565
1117
|
interface ColorPickerProps {
|
|
566
1118
|
options: ColorPickerOption[];
|
|
@@ -582,12 +1134,18 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
|
|
|
582
1134
|
interface ProductGalleryProps {
|
|
583
1135
|
images: ImageType[];
|
|
584
1136
|
selectedValue?: ImageType;
|
|
585
|
-
|
|
586
|
-
|
|
1137
|
+
topTag?: JSX.Element;
|
|
1138
|
+
bottomTag?: JSX.Element;
|
|
587
1139
|
productImageDataTestId?: string;
|
|
588
1140
|
previewListDataTestId?: string;
|
|
1141
|
+
thumbnailPosition?: 'vertical' | 'horizontal';
|
|
1142
|
+
borderRadiusVariant?: boolean;
|
|
1143
|
+
previewImgBorderColor?: string;
|
|
1144
|
+
ctaText?: string;
|
|
1145
|
+
ctaAction?: () => void;
|
|
1146
|
+
hideCTA?: boolean;
|
|
589
1147
|
}
|
|
590
|
-
declare const ProductGallery: ({ images, selectedValue,
|
|
1148
|
+
declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, hideCTA, }: ProductGalleryProps) => JSX.Element;
|
|
591
1149
|
|
|
592
1150
|
interface RatingProps {
|
|
593
1151
|
rating: number;
|
|
@@ -595,8 +1153,10 @@ interface RatingProps {
|
|
|
595
1153
|
reviews: number;
|
|
596
1154
|
reviewsText: string;
|
|
597
1155
|
wrapWithParenthesis?: boolean;
|
|
1156
|
+
underline?: boolean;
|
|
1157
|
+
reviewsContainerId?: string;
|
|
598
1158
|
}
|
|
599
|
-
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
|
|
1159
|
+
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
|
|
600
1160
|
|
|
601
1161
|
interface FitPredictorProps {
|
|
602
1162
|
onClick: () => void;
|
|
@@ -608,8 +1168,11 @@ interface ProgressBarProps {
|
|
|
608
1168
|
fillColor: string;
|
|
609
1169
|
widthAuto?: boolean;
|
|
610
1170
|
percent?: number;
|
|
1171
|
+
height?: string;
|
|
1172
|
+
backgroundColor?: string;
|
|
1173
|
+
borderRadius?: string;
|
|
611
1174
|
}
|
|
612
|
-
declare const ProgressBar: ({ description, fillColor, widthAuto, percent, }: ProgressBarProps) => JSX.Element;
|
|
1175
|
+
declare const ProgressBar: ({ description, fillColor, widthAuto, percent, height, backgroundColor, borderRadius, }: ProgressBarProps) => JSX.Element;
|
|
613
1176
|
|
|
614
1177
|
interface IconButtonProps {
|
|
615
1178
|
children: React.ReactNode;
|
|
@@ -623,31 +1186,45 @@ interface TooltipProps {
|
|
|
623
1186
|
children: React.ReactNode;
|
|
624
1187
|
position: ComponentPosition;
|
|
625
1188
|
align?: 'start' | 'center' | 'end';
|
|
626
|
-
|
|
1189
|
+
content?: {
|
|
1190
|
+
text: string;
|
|
1191
|
+
color?: string;
|
|
1192
|
+
};
|
|
1193
|
+
backgroundColor?: string;
|
|
1194
|
+
maxWidth?: string;
|
|
627
1195
|
header?: {
|
|
628
1196
|
title: string;
|
|
629
|
-
|
|
1197
|
+
titleColor?: string;
|
|
1198
|
+
Icon?: IconType;
|
|
1199
|
+
iconFill?: string;
|
|
630
1200
|
};
|
|
631
1201
|
onClick?: () => void;
|
|
632
1202
|
}
|
|
633
|
-
declare const Tooltip: ({ children, position,
|
|
1203
|
+
declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
|
|
634
1204
|
|
|
635
1205
|
interface AccordionProps {
|
|
636
1206
|
defaultOpen?: boolean;
|
|
1207
|
+
forceOpenHandler?: boolean;
|
|
1208
|
+
forceOpenValue?: boolean;
|
|
1209
|
+
titleColor?: string;
|
|
637
1210
|
variant: 'simple' | 'box';
|
|
638
1211
|
header: ReactNode;
|
|
1212
|
+
headerOnOpen?: ReactNode;
|
|
639
1213
|
content: ReactNode;
|
|
640
1214
|
disabled?: boolean;
|
|
1215
|
+
innerHTML?: boolean;
|
|
641
1216
|
openIcon: IconType;
|
|
642
1217
|
closeIcon: IconType;
|
|
1218
|
+
onClick?: (index: number) => void;
|
|
643
1219
|
}
|
|
644
|
-
declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
|
|
1220
|
+
declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
|
|
645
1221
|
|
|
646
1222
|
declare const ThemeProvider: FC<{
|
|
647
1223
|
theme: Theme;
|
|
648
1224
|
children: ReactNode;
|
|
649
1225
|
}>;
|
|
650
1226
|
declare const useTheme: () => Theme;
|
|
1227
|
+
|
|
651
1228
|
declare const ThemeVariables: FC<{
|
|
652
1229
|
theme: Theme;
|
|
653
1230
|
Container?: ElementType;
|
|
@@ -677,6 +1254,7 @@ declare type Theme = {
|
|
|
677
1254
|
};
|
|
678
1255
|
declare type ThemeBreakpoints = {
|
|
679
1256
|
mobile: number;
|
|
1257
|
+
tablet?: number;
|
|
680
1258
|
desktop: number;
|
|
681
1259
|
};
|
|
682
1260
|
declare type ThemeBasicPallete = {
|
|
@@ -684,7 +1262,7 @@ declare type ThemeBasicPallete = {
|
|
|
684
1262
|
contrast: string;
|
|
685
1263
|
};
|
|
686
1264
|
declare type ThemeColorPallete = ThemeBasicPallete & {
|
|
687
|
-
soft
|
|
1265
|
+
soft?: ThemeBasicPallete;
|
|
688
1266
|
};
|
|
689
1267
|
declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
|
|
690
1268
|
20: ThemeColorPallete;
|
|
@@ -696,6 +1274,7 @@ declare type ThemeColors = {
|
|
|
696
1274
|
pallete: {
|
|
697
1275
|
primary: ThemeColorPrimaryPallete;
|
|
698
1276
|
secondary: ThemeColorPrimaryPallete;
|
|
1277
|
+
tertiary?: ThemeColorPrimaryPallete;
|
|
699
1278
|
} & Partial<Record<string, ThemeColorPallete>>;
|
|
700
1279
|
shades: {
|
|
701
1280
|
black: ThemeBasicPallete;
|
|
@@ -705,6 +1284,7 @@ declare type ThemeColors = {
|
|
|
705
1284
|
50: ThemeBasicPallete;
|
|
706
1285
|
100: ThemeBasicPallete;
|
|
707
1286
|
150: ThemeBasicPallete;
|
|
1287
|
+
175: ThemeBasicPallete;
|
|
708
1288
|
200: ThemeBasicPallete;
|
|
709
1289
|
250: ThemeBasicPallete;
|
|
710
1290
|
300: ThemeBasicPallete;
|
|
@@ -733,6 +1313,7 @@ declare type ThemeColors = {
|
|
|
733
1313
|
color: string;
|
|
734
1314
|
disabled: string;
|
|
735
1315
|
highlight: string;
|
|
1316
|
+
shadow?: string;
|
|
736
1317
|
};
|
|
737
1318
|
background: {
|
|
738
1319
|
color: string;
|
|
@@ -748,6 +1329,10 @@ declare type ThemeComponent = {
|
|
|
748
1329
|
border: string;
|
|
749
1330
|
borderRadius: string;
|
|
750
1331
|
fontWeight: number;
|
|
1332
|
+
lineHeight: string;
|
|
1333
|
+
letterSpacing: string;
|
|
1334
|
+
minWidth: string;
|
|
1335
|
+
minHeight: string;
|
|
751
1336
|
size: {
|
|
752
1337
|
small: {
|
|
753
1338
|
fontSize: string;
|
|
@@ -794,6 +1379,12 @@ declare type ThemeComponent = {
|
|
|
794
1379
|
lineHeight: string;
|
|
795
1380
|
border: string;
|
|
796
1381
|
boxShadow: string;
|
|
1382
|
+
errorBorder: string;
|
|
1383
|
+
};
|
|
1384
|
+
inputPlaceholder: {
|
|
1385
|
+
fontSize: string;
|
|
1386
|
+
padding: string;
|
|
1387
|
+
focusBorder: string;
|
|
797
1388
|
};
|
|
798
1389
|
inputCustom: {
|
|
799
1390
|
button: {
|
|
@@ -826,6 +1417,12 @@ declare type ThemeComponent = {
|
|
|
826
1417
|
border: string;
|
|
827
1418
|
color: string;
|
|
828
1419
|
};
|
|
1420
|
+
noStock: {
|
|
1421
|
+
fontWeight: number;
|
|
1422
|
+
background: string;
|
|
1423
|
+
border: string;
|
|
1424
|
+
color: string;
|
|
1425
|
+
};
|
|
829
1426
|
disabled: {
|
|
830
1427
|
border: string;
|
|
831
1428
|
};
|
|
@@ -879,10 +1476,13 @@ declare type ThemeComponent = {
|
|
|
879
1476
|
};
|
|
880
1477
|
card: {
|
|
881
1478
|
borderRadius: string;
|
|
1479
|
+
backgroundColor: string;
|
|
882
1480
|
};
|
|
883
1481
|
radio: {
|
|
884
1482
|
borderColor: string;
|
|
885
1483
|
background: string;
|
|
1484
|
+
textSize: string;
|
|
1485
|
+
lineHeight: string;
|
|
886
1486
|
size: {
|
|
887
1487
|
small: {
|
|
888
1488
|
borderWidth: string;
|
|
@@ -911,6 +1511,7 @@ declare type ThemeComponent = {
|
|
|
911
1511
|
};
|
|
912
1512
|
};
|
|
913
1513
|
label: {
|
|
1514
|
+
color: string;
|
|
914
1515
|
fontSize: {
|
|
915
1516
|
small: string;
|
|
916
1517
|
medium: string;
|
|
@@ -1019,11 +1620,13 @@ declare type ThemeComponent = {
|
|
|
1019
1620
|
fontWeight: number;
|
|
1020
1621
|
lineHeight: string;
|
|
1021
1622
|
padding: string;
|
|
1623
|
+
optionPadding: string;
|
|
1022
1624
|
color: string;
|
|
1023
1625
|
fill: string;
|
|
1024
1626
|
options: {
|
|
1025
1627
|
borderColor: string;
|
|
1026
1628
|
color: string;
|
|
1629
|
+
borderRadius: string;
|
|
1027
1630
|
};
|
|
1028
1631
|
};
|
|
1029
1632
|
modal: {
|
|
@@ -1037,6 +1640,168 @@ declare type ThemeComponent = {
|
|
|
1037
1640
|
selectedContrast: string;
|
|
1038
1641
|
tagColor: string;
|
|
1039
1642
|
};
|
|
1643
|
+
slideNavigation: {
|
|
1644
|
+
slideDots: {
|
|
1645
|
+
unselectedDotColor: string;
|
|
1646
|
+
selectedDotColor: string;
|
|
1647
|
+
dotsOpacity: number;
|
|
1648
|
+
};
|
|
1649
|
+
};
|
|
1650
|
+
beforeAfter: {
|
|
1651
|
+
size: {
|
|
1652
|
+
small: {
|
|
1653
|
+
image: {
|
|
1654
|
+
minHeight: string;
|
|
1655
|
+
minWidth: string;
|
|
1656
|
+
mobile: {
|
|
1657
|
+
minHeight: string;
|
|
1658
|
+
minWidth: string;
|
|
1659
|
+
};
|
|
1660
|
+
};
|
|
1661
|
+
imageContainer: {
|
|
1662
|
+
maxWidth: string;
|
|
1663
|
+
padding: string;
|
|
1664
|
+
mobile: {
|
|
1665
|
+
maxWidth: string;
|
|
1666
|
+
};
|
|
1667
|
+
};
|
|
1668
|
+
userInfoText: {
|
|
1669
|
+
fontSize: string;
|
|
1670
|
+
mobile: {
|
|
1671
|
+
fontSize: string;
|
|
1672
|
+
};
|
|
1673
|
+
};
|
|
1674
|
+
};
|
|
1675
|
+
medium: {
|
|
1676
|
+
image: {
|
|
1677
|
+
minHeight: string;
|
|
1678
|
+
minWidth: string;
|
|
1679
|
+
mobile: {
|
|
1680
|
+
minHeight: string;
|
|
1681
|
+
minWidth: string;
|
|
1682
|
+
};
|
|
1683
|
+
};
|
|
1684
|
+
imageContainer: {
|
|
1685
|
+
maxWidth: string;
|
|
1686
|
+
padding: string;
|
|
1687
|
+
mobile: {
|
|
1688
|
+
maxWidth: string;
|
|
1689
|
+
};
|
|
1690
|
+
};
|
|
1691
|
+
userInfoText: {
|
|
1692
|
+
fontSize: string;
|
|
1693
|
+
mobile: {
|
|
1694
|
+
fontSize: string;
|
|
1695
|
+
};
|
|
1696
|
+
};
|
|
1697
|
+
};
|
|
1698
|
+
large: {
|
|
1699
|
+
image: {
|
|
1700
|
+
minHeight: string;
|
|
1701
|
+
minWidth: string;
|
|
1702
|
+
mobile: {
|
|
1703
|
+
minHeight: string;
|
|
1704
|
+
minWidth: string;
|
|
1705
|
+
};
|
|
1706
|
+
};
|
|
1707
|
+
imageContainer: {
|
|
1708
|
+
maxWidth: string;
|
|
1709
|
+
padding: string;
|
|
1710
|
+
mobile: {
|
|
1711
|
+
maxWidth: string;
|
|
1712
|
+
};
|
|
1713
|
+
};
|
|
1714
|
+
userInfoText: {
|
|
1715
|
+
fontSize: string;
|
|
1716
|
+
mobile: {
|
|
1717
|
+
fontSize: string;
|
|
1718
|
+
};
|
|
1719
|
+
};
|
|
1720
|
+
};
|
|
1721
|
+
};
|
|
1722
|
+
};
|
|
1723
|
+
total: {
|
|
1724
|
+
basicTotal: {
|
|
1725
|
+
amount: {
|
|
1726
|
+
color: string;
|
|
1727
|
+
fontSize: string;
|
|
1728
|
+
};
|
|
1729
|
+
currency: {
|
|
1730
|
+
color: string;
|
|
1731
|
+
fontSize: string;
|
|
1732
|
+
lineHeight: string;
|
|
1733
|
+
alignSelf?: string;
|
|
1734
|
+
};
|
|
1735
|
+
savings: {
|
|
1736
|
+
textFontSize: string;
|
|
1737
|
+
textLineHeight: string;
|
|
1738
|
+
amountFontSize: string;
|
|
1739
|
+
amountFontWeight: number;
|
|
1740
|
+
amountLineHeight: string;
|
|
1741
|
+
color?: string;
|
|
1742
|
+
};
|
|
1743
|
+
};
|
|
1744
|
+
};
|
|
1745
|
+
subTotal: {
|
|
1746
|
+
basicSubTotal: {
|
|
1747
|
+
family: string;
|
|
1748
|
+
size: string;
|
|
1749
|
+
weight: number;
|
|
1750
|
+
lineHeight: string;
|
|
1751
|
+
color: string;
|
|
1752
|
+
};
|
|
1753
|
+
};
|
|
1754
|
+
pricing: {
|
|
1755
|
+
priceLabel: {
|
|
1756
|
+
price: {
|
|
1757
|
+
size: ComponentSize$1.Small | ComponentSize$1.Medium | ComponentSize$1.Large;
|
|
1758
|
+
originalPriceColor: string;
|
|
1759
|
+
actualPriceColor: string;
|
|
1760
|
+
};
|
|
1761
|
+
};
|
|
1762
|
+
};
|
|
1763
|
+
orderSummary: {
|
|
1764
|
+
headingTextAlign: string;
|
|
1765
|
+
backgroundColor: string;
|
|
1766
|
+
maxWidth?: string;
|
|
1767
|
+
padding?: string;
|
|
1768
|
+
borderRadius?: string;
|
|
1769
|
+
onMobile: {
|
|
1770
|
+
maxWidth?: string;
|
|
1771
|
+
padding?: string;
|
|
1772
|
+
backgroundColor?: string;
|
|
1773
|
+
};
|
|
1774
|
+
};
|
|
1775
|
+
expressCheckout: {
|
|
1776
|
+
fontFamily: string;
|
|
1777
|
+
fontWeight: number;
|
|
1778
|
+
lineHeight: string;
|
|
1779
|
+
};
|
|
1780
|
+
copyrightText: {
|
|
1781
|
+
fontSize: string;
|
|
1782
|
+
fontWeight: number;
|
|
1783
|
+
lineHeight: string;
|
|
1784
|
+
color: string;
|
|
1785
|
+
};
|
|
1786
|
+
textButton: {
|
|
1787
|
+
fontWeight: number;
|
|
1788
|
+
lineHeight: string;
|
|
1789
|
+
};
|
|
1790
|
+
deliveryDetails: {
|
|
1791
|
+
note: {
|
|
1792
|
+
accentColor: string;
|
|
1793
|
+
color: string;
|
|
1794
|
+
backgroundColor: string;
|
|
1795
|
+
};
|
|
1796
|
+
SectionDetails?: {
|
|
1797
|
+
marginLeft: string;
|
|
1798
|
+
};
|
|
1799
|
+
};
|
|
1800
|
+
text: {
|
|
1801
|
+
orderHeader: {
|
|
1802
|
+
color: string;
|
|
1803
|
+
};
|
|
1804
|
+
};
|
|
1040
1805
|
};
|
|
1041
1806
|
declare type ThemeTypography = {
|
|
1042
1807
|
config: {
|
|
@@ -1063,6 +1828,11 @@ declare type ThemeAssets = {
|
|
|
1063
1828
|
images: {
|
|
1064
1829
|
favicon: string;
|
|
1065
1830
|
logo: string;
|
|
1831
|
+
logoSize?: {
|
|
1832
|
+
width: string;
|
|
1833
|
+
height: string;
|
|
1834
|
+
};
|
|
1835
|
+
logoMobile?: string;
|
|
1066
1836
|
};
|
|
1067
1837
|
[key: string]: any;
|
|
1068
1838
|
};
|
|
@@ -1073,11 +1843,12 @@ interface CheckboxProps {
|
|
|
1073
1843
|
size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1074
1844
|
text: string;
|
|
1075
1845
|
checked?: boolean;
|
|
1846
|
+
blockUncheck?: boolean;
|
|
1076
1847
|
id: string;
|
|
1077
1848
|
backgroundColor?: string;
|
|
1078
|
-
variant: 'primary' | 'secondary';
|
|
1849
|
+
variant: 'primary' | 'secondary' | 'color';
|
|
1079
1850
|
}
|
|
1080
|
-
declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, }: CheckboxProps) => JSX.Element;
|
|
1851
|
+
declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, blockUncheck, backgroundColor, }: CheckboxProps) => JSX.Element;
|
|
1081
1852
|
|
|
1082
1853
|
interface RadioGroupInputProps {
|
|
1083
1854
|
name: string;
|
|
@@ -1122,16 +1893,18 @@ interface CategoryTagProps {
|
|
|
1122
1893
|
text: string;
|
|
1123
1894
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1124
1895
|
className?: string;
|
|
1896
|
+
styledBorder?: boolean;
|
|
1125
1897
|
}
|
|
1126
|
-
declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1898
|
+
declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1127
1899
|
|
|
1128
1900
|
interface SeasonOfferTagProps {
|
|
1129
1901
|
text: string;
|
|
1130
1902
|
backgroundColor?: string;
|
|
1131
1903
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1132
1904
|
className?: string;
|
|
1905
|
+
styledBorder?: boolean;
|
|
1133
1906
|
}
|
|
1134
|
-
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1907
|
+
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1135
1908
|
|
|
1136
1909
|
interface TimeProps {
|
|
1137
1910
|
hours: number;
|
|
@@ -1144,7 +1917,14 @@ interface TimerProps extends TimeProps {
|
|
|
1144
1917
|
}
|
|
1145
1918
|
declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
|
|
1146
1919
|
|
|
1147
|
-
interface
|
|
1920
|
+
interface BaseInputCommonProps {
|
|
1921
|
+
id?: string;
|
|
1922
|
+
value?: string;
|
|
1923
|
+
innerRef?: React.Ref<HTMLInputElement>;
|
|
1924
|
+
onBlur?: () => void;
|
|
1925
|
+
onFocus?: () => void;
|
|
1926
|
+
onChange?: (value: string, event: any) => void;
|
|
1927
|
+
hideClear?: boolean;
|
|
1148
1928
|
defaultValue?: string;
|
|
1149
1929
|
maxLength?: number;
|
|
1150
1930
|
placeholder?: string;
|
|
@@ -1154,16 +1934,14 @@ interface BaseInputCommmonProps {
|
|
|
1154
1934
|
required?: string;
|
|
1155
1935
|
children?: React.ReactNode;
|
|
1156
1936
|
size?: 'regular' | 'small';
|
|
1937
|
+
inlinePlaceholder?: boolean;
|
|
1938
|
+
hasError?: boolean;
|
|
1939
|
+
inputType?: 'text' | 'email' | 'password' | 'url';
|
|
1940
|
+
name?: string;
|
|
1941
|
+
autoFocus?: boolean;
|
|
1942
|
+
requiredPlaceholder?: string;
|
|
1157
1943
|
}
|
|
1158
|
-
|
|
1159
|
-
value: string;
|
|
1160
|
-
onChange: (value: string) => void;
|
|
1161
|
-
}
|
|
1162
|
-
interface BaseInputUncontrolled extends BaseInputCommmonProps {
|
|
1163
|
-
value?: never;
|
|
1164
|
-
onChange?: (value: string) => void;
|
|
1165
|
-
}
|
|
1166
|
-
declare type BaseInputProps = BaseInputControlled | BaseInputUncontrolled;
|
|
1944
|
+
declare type BaseInputProps = BaseInputCommonProps;
|
|
1167
1945
|
|
|
1168
1946
|
declare type BasePlusIconProps = BaseInputProps & {
|
|
1169
1947
|
Icon: IconType;
|
|
@@ -1202,7 +1980,7 @@ declare type CustomProps = BaseInputProps & {
|
|
|
1202
1980
|
};
|
|
1203
1981
|
|
|
1204
1982
|
declare const Input: {
|
|
1205
|
-
Simple: ({ value, onChange,
|
|
1983
|
+
Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, requiredPlaceholder, ...rest }: BaseInputCommonProps) => JSX.Element;
|
|
1206
1984
|
Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
|
|
1207
1985
|
SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
|
|
1208
1986
|
SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
|
|
@@ -1262,7 +2040,7 @@ declare type detail = {
|
|
|
1262
2040
|
details: string;
|
|
1263
2041
|
};
|
|
1264
2042
|
interface orderUpdate extends detail {
|
|
1265
|
-
keepMeUpdated
|
|
2043
|
+
keepMeUpdated?: {
|
|
1266
2044
|
title: string;
|
|
1267
2045
|
onClick: () => void;
|
|
1268
2046
|
};
|
|
@@ -1275,9 +2053,9 @@ interface DeliveryDetailsProps {
|
|
|
1275
2053
|
note?: {
|
|
1276
2054
|
importantNoteText: string;
|
|
1277
2055
|
text: string;
|
|
1278
|
-
accentColor
|
|
1279
|
-
backgroundColor
|
|
1280
|
-
color
|
|
2056
|
+
accentColor?: string;
|
|
2057
|
+
backgroundColor?: string;
|
|
2058
|
+
color?: string;
|
|
1281
2059
|
};
|
|
1282
2060
|
}
|
|
1283
2061
|
declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
|
|
@@ -1285,26 +2063,37 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
|
|
|
1285
2063
|
interface ScrollToTopProps {
|
|
1286
2064
|
scrollToTopText: string;
|
|
1287
2065
|
onClick: () => void;
|
|
2066
|
+
fill?: string;
|
|
1288
2067
|
}
|
|
1289
|
-
declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
|
|
2068
|
+
declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
|
|
1290
2069
|
|
|
1291
2070
|
interface OrderBarProps {
|
|
1292
2071
|
message: string;
|
|
2072
|
+
color?: string;
|
|
1293
2073
|
}
|
|
1294
|
-
declare const OrderBar: ({ message }: OrderBarProps) => JSX.Element;
|
|
2074
|
+
declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
|
|
2075
|
+
|
|
2076
|
+
interface TableProps$1 {
|
|
2077
|
+
headers: string[];
|
|
2078
|
+
data: string[][];
|
|
2079
|
+
className?: string;
|
|
2080
|
+
}
|
|
2081
|
+
declare const SizeTable: ({ headers, data, className }: TableProps$1) => JSX.Element;
|
|
1295
2082
|
|
|
1296
2083
|
interface TableProps {
|
|
1297
2084
|
headers: string[];
|
|
1298
2085
|
data: string[][];
|
|
2086
|
+
newSizeTableCss?: boolean;
|
|
1299
2087
|
}
|
|
1300
|
-
declare const
|
|
2088
|
+
declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
|
|
1301
2089
|
|
|
1302
2090
|
interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
|
|
1303
2091
|
color?: string;
|
|
1304
2092
|
}
|
|
1305
2093
|
interface ProductOrderItemProps {
|
|
1306
|
-
title: string;
|
|
2094
|
+
title: React.ReactNode | string;
|
|
1307
2095
|
subtitle: string;
|
|
2096
|
+
className?: string;
|
|
1308
2097
|
image: {
|
|
1309
2098
|
src: string;
|
|
1310
2099
|
alt: string;
|
|
@@ -1315,10 +2104,12 @@ interface ProductOrderItemProps {
|
|
|
1315
2104
|
text: string;
|
|
1316
2105
|
backgroundColor: string;
|
|
1317
2106
|
};
|
|
2107
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1318
2108
|
}
|
|
1319
|
-
declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
|
|
2109
|
+
declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
|
|
1320
2110
|
|
|
1321
|
-
interface ReviewProps {
|
|
2111
|
+
interface ReviewProps$1 {
|
|
2112
|
+
reviewId: string;
|
|
1322
2113
|
reviewerName: string;
|
|
1323
2114
|
date: Date;
|
|
1324
2115
|
rating: number;
|
|
@@ -1328,27 +2119,35 @@ interface ReviewProps {
|
|
|
1328
2119
|
};
|
|
1329
2120
|
title: string;
|
|
1330
2121
|
description: string;
|
|
1331
|
-
|
|
2122
|
+
images?: {
|
|
1332
2123
|
src: string;
|
|
1333
2124
|
alt: string;
|
|
1334
|
-
};
|
|
2125
|
+
}[];
|
|
2126
|
+
reviewVariant?: string;
|
|
2127
|
+
onClickImage?: (image: string) => void;
|
|
2128
|
+
helpfulActionText?: string;
|
|
2129
|
+
helpfulAction?: (id: string) => void;
|
|
2130
|
+
helpfulCount?: number;
|
|
1335
2131
|
}
|
|
1336
|
-
declare const Review: ({ reviewerName, date, rating, stars, title, description,
|
|
2132
|
+
declare const Review$1: ({ reviewId, reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, helpfulActionText, helpfulAction, helpfulCount, }: ReviewProps$1) => JSX.Element;
|
|
1337
2133
|
|
|
1338
2134
|
interface SliderNavigationProps {
|
|
1339
|
-
children: JSX.Element[]
|
|
2135
|
+
children: JSX.Element | JSX.Element[] | StyledComponent<any>;
|
|
1340
2136
|
infinite: boolean;
|
|
1341
2137
|
adaptiveHeight: boolean;
|
|
1342
|
-
dotsSize
|
|
1343
|
-
dotListMarginTop
|
|
2138
|
+
dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
2139
|
+
dotListMarginTop?: number;
|
|
1344
2140
|
initialSlide?: number;
|
|
1345
2141
|
arrows?: {
|
|
1346
2142
|
arrowWidth: number;
|
|
1347
2143
|
arrowHeight: number;
|
|
1348
2144
|
arrowPadding: number;
|
|
1349
2145
|
};
|
|
2146
|
+
dots?: boolean;
|
|
2147
|
+
slidesToShow?: number;
|
|
2148
|
+
speed?: number;
|
|
1350
2149
|
}
|
|
1351
|
-
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2150
|
+
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1352
2151
|
|
|
1353
2152
|
interface DropdownListIconsProps {
|
|
1354
2153
|
items: DropdownListIconsItem[];
|
|
@@ -1366,8 +2165,11 @@ interface ImageStyleProps {
|
|
|
1366
2165
|
interface ImageProps extends ImageStyleProps {
|
|
1367
2166
|
src: string;
|
|
1368
2167
|
alt: string;
|
|
2168
|
+
srcSet?: string;
|
|
2169
|
+
sizes?: string;
|
|
2170
|
+
loading?: 'lazy' | 'eager';
|
|
1369
2171
|
}
|
|
1370
|
-
declare const Image: ({ src, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
|
|
2172
|
+
declare const Image: ({ src, srcSet, sizes, loading, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
|
|
1371
2173
|
|
|
1372
2174
|
interface AmazonPaypalBtnProps {
|
|
1373
2175
|
onClick: () => void;
|
|
@@ -1402,8 +2204,8 @@ interface ProductItemProps {
|
|
|
1402
2204
|
price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
|
|
1403
2205
|
rating: Pick<RatingProps, 'rating' | 'reviews'>;
|
|
1404
2206
|
tags?: {
|
|
1405
|
-
categoryTagText
|
|
1406
|
-
seasonOfferTagText
|
|
2207
|
+
categoryTagText?: string;
|
|
2208
|
+
seasonOfferTagText?: string;
|
|
1407
2209
|
};
|
|
1408
2210
|
alignName?: 'left' | 'center';
|
|
1409
2211
|
url?: string;
|
|
@@ -1412,6 +2214,18 @@ interface ProductItemProps {
|
|
|
1412
2214
|
|
|
1413
2215
|
interface ProductItemSmallMobileProps extends ProductItemProps {
|
|
1414
2216
|
size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
|
|
2217
|
+
imageHover?: ImageProps;
|
|
2218
|
+
topTag?: JSX.Element;
|
|
2219
|
+
bottomTag?: JSX.Element;
|
|
2220
|
+
onClick?: () => void;
|
|
2221
|
+
priceDisplayType?: 'default' | 'styled';
|
|
2222
|
+
priceAtBottom?: boolean;
|
|
2223
|
+
priceLoading?: boolean;
|
|
2224
|
+
colorPicker?: {
|
|
2225
|
+
display: boolean;
|
|
2226
|
+
position: string;
|
|
2227
|
+
component: JSX.Element | JSX.Element[] | undefined;
|
|
2228
|
+
};
|
|
1415
2229
|
}
|
|
1416
2230
|
|
|
1417
2231
|
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
|
|
@@ -1420,7 +2234,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
|
|
|
1420
2234
|
};
|
|
1421
2235
|
|
|
1422
2236
|
declare const Collection: {
|
|
1423
|
-
ProductItemMobile: ({ title, image, price, rating, size,
|
|
2237
|
+
ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, colorPicker, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1424
2238
|
withProductGrid: typeof withProductGrid;
|
|
1425
2239
|
};
|
|
1426
2240
|
|
|
@@ -1481,10 +2295,13 @@ interface PaginationProps {
|
|
|
1481
2295
|
underlineActive?: boolean;
|
|
1482
2296
|
boldActive?: boolean;
|
|
1483
2297
|
disabled?: boolean;
|
|
2298
|
+
showReducedPages?: boolean;
|
|
1484
2299
|
}
|
|
1485
|
-
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
|
|
2300
|
+
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
|
|
2301
|
+
|
|
2302
|
+
declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
|
|
1486
2303
|
|
|
1487
|
-
declare const Text:
|
|
2304
|
+
declare const Text: ({ variant, children, testId, asSpan, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1488
2305
|
declare type TextHeroProps = {
|
|
1489
2306
|
variant: 'hero1' | 'hero2' | 'hero3';
|
|
1490
2307
|
weight?: 'heavy' | 'bold' | 'demi';
|
|
@@ -1494,6 +2311,7 @@ declare type TextHeroProps = {
|
|
|
1494
2311
|
wide?: never;
|
|
1495
2312
|
original?: never;
|
|
1496
2313
|
allCaps?: never;
|
|
2314
|
+
href: never;
|
|
1497
2315
|
};
|
|
1498
2316
|
declare type TextDisplayProps = {
|
|
1499
2317
|
variant: 'display1' | 'display2';
|
|
@@ -1504,6 +2322,7 @@ declare type TextDisplayProps = {
|
|
|
1504
2322
|
wide?: never;
|
|
1505
2323
|
original?: never;
|
|
1506
2324
|
allCaps?: never;
|
|
2325
|
+
href: never;
|
|
1507
2326
|
};
|
|
1508
2327
|
declare type TextHeadingProps = {
|
|
1509
2328
|
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
|
|
@@ -1514,6 +2333,7 @@ declare type TextHeadingProps = {
|
|
|
1514
2333
|
wide?: never;
|
|
1515
2334
|
original?: never;
|
|
1516
2335
|
allCaps?: never;
|
|
2336
|
+
href?: never;
|
|
1517
2337
|
};
|
|
1518
2338
|
declare type TextBodyProps = {
|
|
1519
2339
|
variant: 'body';
|
|
@@ -1524,6 +2344,7 @@ declare type TextBodyProps = {
|
|
|
1524
2344
|
wide?: never;
|
|
1525
2345
|
original?: never;
|
|
1526
2346
|
allCaps?: never;
|
|
2347
|
+
href?: never;
|
|
1527
2348
|
};
|
|
1528
2349
|
declare type TextButtonProps = {
|
|
1529
2350
|
variant: 'button';
|
|
@@ -1534,6 +2355,7 @@ declare type TextButtonProps = {
|
|
|
1534
2355
|
wide?: boolean;
|
|
1535
2356
|
original?: never;
|
|
1536
2357
|
allCaps?: never;
|
|
2358
|
+
href?: never;
|
|
1537
2359
|
};
|
|
1538
2360
|
declare type TextPricingProps = {
|
|
1539
2361
|
variant: 'pricing';
|
|
@@ -1544,6 +2366,7 @@ declare type TextPricingProps = {
|
|
|
1544
2366
|
wide?: never;
|
|
1545
2367
|
original?: boolean;
|
|
1546
2368
|
allCaps?: never;
|
|
2369
|
+
href?: never;
|
|
1547
2370
|
};
|
|
1548
2371
|
declare type TextLinkProps = {
|
|
1549
2372
|
variant: 'link';
|
|
@@ -1554,9 +2377,11 @@ declare type TextLinkProps = {
|
|
|
1554
2377
|
wide?: never;
|
|
1555
2378
|
original?: never;
|
|
1556
2379
|
allCaps?: never;
|
|
1557
|
-
|
|
2380
|
+
href?: string;
|
|
2381
|
+
};
|
|
1558
2382
|
declare type TextLabelProps = {
|
|
1559
2383
|
variant: 'label';
|
|
2384
|
+
color?: string;
|
|
1560
2385
|
weight?: 'regular' | 'demi';
|
|
1561
2386
|
size?: 'regular' | 'small';
|
|
1562
2387
|
underline?: never;
|
|
@@ -1564,6 +2389,7 @@ declare type TextLabelProps = {
|
|
|
1564
2389
|
wide?: never;
|
|
1565
2390
|
original?: never;
|
|
1566
2391
|
allCaps?: never;
|
|
2392
|
+
href?: never;
|
|
1567
2393
|
} & LabelHTMLAttributes<'label'>;
|
|
1568
2394
|
declare type TextTagProps = {
|
|
1569
2395
|
variant: 'tag';
|
|
@@ -1574,11 +2400,15 @@ declare type TextTagProps = {
|
|
|
1574
2400
|
wide?: never;
|
|
1575
2401
|
original?: never;
|
|
1576
2402
|
allCaps?: boolean;
|
|
2403
|
+
href?: never;
|
|
1577
2404
|
};
|
|
1578
|
-
declare type TextProps = AriaAttributes & {
|
|
2405
|
+
declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
|
|
2406
|
+
children: ReactNode;
|
|
1579
2407
|
style?: CSSProperties;
|
|
1580
2408
|
className?: string;
|
|
1581
2409
|
testId?: string;
|
|
2410
|
+
asSpan?: boolean;
|
|
2411
|
+
color?: string;
|
|
1582
2412
|
} & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
|
|
1583
2413
|
|
|
1584
2414
|
interface SearchBarProps {
|
|
@@ -1586,21 +2416,29 @@ interface SearchBarProps {
|
|
|
1586
2416
|
resultOptions: SearchBarOptionItem[];
|
|
1587
2417
|
onChange: (text: string) => void;
|
|
1588
2418
|
onSearch: (term: string) => void;
|
|
2419
|
+
onClose: () => void;
|
|
1589
2420
|
resultsPanelDataTestId?: string;
|
|
1590
2421
|
allResults?: number;
|
|
1591
2422
|
initialTerm?: string;
|
|
2423
|
+
shouldClear?: boolean;
|
|
2424
|
+
isBlogSearchBar?: boolean;
|
|
2425
|
+
ariaLabel?: string;
|
|
2426
|
+
placeholder?: string;
|
|
2427
|
+
id?: string;
|
|
2428
|
+
autoComplete?: string;
|
|
1592
2429
|
}
|
|
1593
|
-
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, resultsPanelDataTestId, allResults, initialTerm, }: SearchBarProps) => JSX.Element;
|
|
2430
|
+
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
|
|
1594
2431
|
|
|
1595
|
-
interface ProductGalleryMobileProps {
|
|
2432
|
+
interface ProductGalleryMobileProps$1 {
|
|
1596
2433
|
images: ImageType[];
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
2434
|
+
customClick?: boolean;
|
|
2435
|
+
topTag?: JSX.Element;
|
|
2436
|
+
bottomTag?: JSX.Element;
|
|
1600
2437
|
productImageDataTestId?: string;
|
|
1601
|
-
|
|
2438
|
+
borderRadiusVariant?: boolean;
|
|
2439
|
+
selectedValue?: ImageType;
|
|
1602
2440
|
}
|
|
1603
|
-
declare const ProductGalleryMobile: ({ images,
|
|
2441
|
+
declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps$1) => JSX.Element;
|
|
1604
2442
|
|
|
1605
2443
|
interface RadioProps {
|
|
1606
2444
|
name: string;
|
|
@@ -1617,6 +2455,8 @@ declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange
|
|
|
1617
2455
|
declare type PortalProps = {
|
|
1618
2456
|
id: string;
|
|
1619
2457
|
className?: string;
|
|
2458
|
+
overflow?: boolean;
|
|
2459
|
+
style?: CSSProperties;
|
|
1620
2460
|
};
|
|
1621
2461
|
declare const Portal: FC<PortalProps>;
|
|
1622
2462
|
|
|
@@ -1624,10 +2464,12 @@ declare type ModalProps = {
|
|
|
1624
2464
|
id: string;
|
|
1625
2465
|
dismissable?: boolean;
|
|
1626
2466
|
maxFullScreen?: boolean;
|
|
2467
|
+
padding?: string;
|
|
1627
2468
|
};
|
|
1628
2469
|
interface ContainerProps {
|
|
1629
2470
|
maxFullScreen: boolean;
|
|
1630
2471
|
opened?: boolean;
|
|
2472
|
+
padding?: string;
|
|
1631
2473
|
}
|
|
1632
2474
|
declare const Overlay: _emotion_styled.StyledComponent<{
|
|
1633
2475
|
theme?: _emotion_react.Theme | undefined;
|
|
@@ -1690,6 +2532,26 @@ declare type SpacingProps = {
|
|
|
1690
2532
|
};
|
|
1691
2533
|
declare const Spacing: FC<SpacingProps>;
|
|
1692
2534
|
|
|
2535
|
+
interface PackOption$1 {
|
|
2536
|
+
label: string;
|
|
2537
|
+
description: string;
|
|
2538
|
+
meta: {
|
|
2539
|
+
discountPercentage: number;
|
|
2540
|
+
originalPrice: number;
|
|
2541
|
+
price: number;
|
|
2542
|
+
quantity: number;
|
|
2543
|
+
icon: string;
|
|
2544
|
+
tag?: string;
|
|
2545
|
+
};
|
|
2546
|
+
}
|
|
2547
|
+
interface PackSelectorProps$1 {
|
|
2548
|
+
packs: PackOption$1[];
|
|
2549
|
+
selectedValue: PackOption$1;
|
|
2550
|
+
onChange: (size: PackOption$1) => void;
|
|
2551
|
+
currencyCode?: string;
|
|
2552
|
+
}
|
|
2553
|
+
declare const PackSelector: FC<PackSelectorProps$1>;
|
|
2554
|
+
|
|
1693
2555
|
interface PackOption {
|
|
1694
2556
|
label: string;
|
|
1695
2557
|
description: string;
|
|
@@ -1706,8 +2568,9 @@ interface PackSelectorProps {
|
|
|
1706
2568
|
packs: PackOption[];
|
|
1707
2569
|
selectedValue: PackOption;
|
|
1708
2570
|
onChange: (size: PackOption) => void;
|
|
2571
|
+
currencyCode?: string;
|
|
1709
2572
|
}
|
|
1710
|
-
declare const
|
|
2573
|
+
declare const PackSelectorV2: FC<PackSelectorProps>;
|
|
1711
2574
|
|
|
1712
2575
|
interface FiltersProps {
|
|
1713
2576
|
values: Filter[];
|
|
@@ -1732,6 +2595,188 @@ interface SearchNavigationProps {
|
|
|
1732
2595
|
}
|
|
1733
2596
|
declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
|
|
1734
2597
|
|
|
2598
|
+
interface TabProps$1 {
|
|
2599
|
+
title: string;
|
|
2600
|
+
content: ReactNode;
|
|
2601
|
+
}
|
|
2602
|
+
interface TabsProps {
|
|
2603
|
+
backgroundColor?: string;
|
|
2604
|
+
initialSelected?: string;
|
|
2605
|
+
tabsMaxWidth?: string;
|
|
2606
|
+
tabs: TabProps$1[];
|
|
2607
|
+
}
|
|
2608
|
+
declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
|
|
2609
|
+
|
|
2610
|
+
interface TabProps {
|
|
2611
|
+
title: string;
|
|
2612
|
+
titleSize?: string;
|
|
2613
|
+
selectedTitleWeight?: number;
|
|
2614
|
+
height?: string;
|
|
2615
|
+
selected?: boolean;
|
|
2616
|
+
color?: string;
|
|
2617
|
+
tabsMaxWidth?: string;
|
|
2618
|
+
onClick: (clickedTab: string) => void;
|
|
2619
|
+
}
|
|
2620
|
+
declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
|
|
2621
|
+
|
|
2622
|
+
interface IconsWithTitleProps {
|
|
2623
|
+
backgroundColor: string;
|
|
2624
|
+
iconColor: string;
|
|
2625
|
+
iconName: string;
|
|
2626
|
+
iconFolder?: string;
|
|
2627
|
+
withWrapper?: boolean;
|
|
2628
|
+
iconTitle: string;
|
|
2629
|
+
iconSizeDesktop?: number;
|
|
2630
|
+
iconSizeMobile?: number;
|
|
2631
|
+
iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
2632
|
+
iconTitleStyle?: string;
|
|
2633
|
+
iconStyle?: string;
|
|
2634
|
+
isTitleInnerHtml?: boolean;
|
|
2635
|
+
}
|
|
2636
|
+
declare const IconsWithTitle: ({ iconName, iconTitle, iconFolder, withWrapper, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconsWithTitleProps) => JSX.Element | null;
|
|
2637
|
+
|
|
2638
|
+
interface NoteProps {
|
|
2639
|
+
accentColor?: string;
|
|
2640
|
+
color?: string;
|
|
2641
|
+
backgroundColor?: string;
|
|
2642
|
+
importantNoteText: string;
|
|
2643
|
+
text: string;
|
|
2644
|
+
}
|
|
2645
|
+
declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
|
|
2646
|
+
|
|
2647
|
+
interface TextWithImageProps {
|
|
2648
|
+
title: string;
|
|
2649
|
+
text?: string;
|
|
2650
|
+
children?: ReactNode;
|
|
2651
|
+
buttomText: string;
|
|
2652
|
+
backgroundColor: string;
|
|
2653
|
+
imageLeftSide?: boolean;
|
|
2654
|
+
URLLink?: string;
|
|
2655
|
+
onButtonClick?: () => void;
|
|
2656
|
+
isRedirectionURL: boolean;
|
|
2657
|
+
btnBGColor?: string;
|
|
2658
|
+
btnHoverBGColor?: string;
|
|
2659
|
+
imgVideo: imageVideoProps;
|
|
2660
|
+
contentAfterButton?: React.ReactNode;
|
|
2661
|
+
titleStyle?: React.CSSProperties;
|
|
2662
|
+
textStyle?: React.CSSProperties;
|
|
2663
|
+
buttonWideOnMobile?: boolean;
|
|
2664
|
+
}
|
|
2665
|
+
declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2666
|
+
|
|
2667
|
+
interface AccordionOptionsProps {
|
|
2668
|
+
titleColor: string;
|
|
2669
|
+
accordions: AccordionProps[];
|
|
2670
|
+
}
|
|
2671
|
+
declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
|
|
2672
|
+
|
|
2673
|
+
interface ShortBannerProps {
|
|
2674
|
+
title: string;
|
|
2675
|
+
bannerText: string;
|
|
2676
|
+
backgroundColor: string;
|
|
2677
|
+
alignCenter?: boolean;
|
|
2678
|
+
widthAuto?: boolean;
|
|
2679
|
+
textColor: string;
|
|
2680
|
+
}
|
|
2681
|
+
declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
|
|
2682
|
+
|
|
2683
|
+
interface BeforeAfterCardProps {
|
|
2684
|
+
name: string;
|
|
2685
|
+
age?: string;
|
|
2686
|
+
months?: string;
|
|
2687
|
+
beforeImage: string;
|
|
2688
|
+
afterImage: string;
|
|
2689
|
+
alignCenter?: boolean;
|
|
2690
|
+
imageBorderRadius?: string;
|
|
2691
|
+
size?: ComponentSize;
|
|
2692
|
+
}
|
|
2693
|
+
declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
|
|
2694
|
+
|
|
2695
|
+
interface ImageCardWithDescriptionProps {
|
|
2696
|
+
image: string;
|
|
2697
|
+
title?: string;
|
|
2698
|
+
description?: string;
|
|
2699
|
+
titlePosition?: 'center' | 'left';
|
|
2700
|
+
}
|
|
2701
|
+
declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
|
|
2702
|
+
|
|
2703
|
+
interface Checkpoint {
|
|
2704
|
+
day: string;
|
|
2705
|
+
date: string;
|
|
2706
|
+
statusMessage: string;
|
|
2707
|
+
}
|
|
2708
|
+
interface TrackingProgressProps {
|
|
2709
|
+
checkPoints: Checkpoint[];
|
|
2710
|
+
amountOfCheckPoints: number;
|
|
2711
|
+
}
|
|
2712
|
+
declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
|
|
2713
|
+
|
|
2714
|
+
interface ReviewsHeaderProps {
|
|
2715
|
+
title?: string;
|
|
2716
|
+
rating: number;
|
|
2717
|
+
reviews: number;
|
|
2718
|
+
reviewsText: string;
|
|
2719
|
+
reviewsSummary: string[];
|
|
2720
|
+
onClickReview: (reveiw: string) => void;
|
|
2721
|
+
}
|
|
2722
|
+
declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
|
|
2723
|
+
|
|
2724
|
+
interface ReviewProps {
|
|
2725
|
+
reviewId: string;
|
|
2726
|
+
reviewerName: string;
|
|
2727
|
+
date: Date;
|
|
2728
|
+
rating: number;
|
|
2729
|
+
stars: {
|
|
2730
|
+
color: string;
|
|
2731
|
+
size: ComponentSize.Medium | ComponentSize.Small;
|
|
2732
|
+
};
|
|
2733
|
+
title: string;
|
|
2734
|
+
description: string;
|
|
2735
|
+
image?: {
|
|
2736
|
+
src: string;
|
|
2737
|
+
alt: string;
|
|
2738
|
+
};
|
|
2739
|
+
modalId: string;
|
|
2740
|
+
maxFullScreen?: boolean;
|
|
2741
|
+
verified?: boolean;
|
|
2742
|
+
productImage?: string;
|
|
2743
|
+
productTitle?: string;
|
|
2744
|
+
productLink?: string;
|
|
2745
|
+
helpfulCount?: number;
|
|
2746
|
+
helpfulAction?: (id: string) => void;
|
|
2747
|
+
notHelpfulCount?: number;
|
|
2748
|
+
notHelpfulAction?: (id: string) => void;
|
|
2749
|
+
}
|
|
2750
|
+
declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps) => JSX.Element;
|
|
2751
|
+
|
|
2752
|
+
interface ProductGalleryMobileProps {
|
|
2753
|
+
images: ImageType[];
|
|
2754
|
+
selectedValue?: ImageType;
|
|
2755
|
+
topTag?: JSX.Element;
|
|
2756
|
+
bottomTag?: JSX.Element;
|
|
2757
|
+
productImageDataTestId?: string;
|
|
2758
|
+
slideDotsDataTestId?: string;
|
|
2759
|
+
borderRadiusVariant?: boolean;
|
|
2760
|
+
}
|
|
2761
|
+
declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
|
|
2762
|
+
|
|
2763
|
+
interface AbsorbencyLevelProps {
|
|
2764
|
+
dropTotal: number;
|
|
2765
|
+
drops: number;
|
|
2766
|
+
absorbencyTitle: string;
|
|
2767
|
+
absorbencyDescription: string;
|
|
2768
|
+
}
|
|
2769
|
+
declare const AbsorbencyLevel: ({ dropTotal, drops, absorbencyTitle, absorbencyDescription, }: AbsorbencyLevelProps) => JSX.Element;
|
|
2770
|
+
|
|
2771
|
+
interface HurryUpProps {
|
|
2772
|
+
hurryUpText: string;
|
|
2773
|
+
backgroundColor?: string;
|
|
2774
|
+
showTimer?: boolean;
|
|
2775
|
+
iconSize?: number;
|
|
2776
|
+
textPosition?: 'left' | 'right' | 'center';
|
|
2777
|
+
}
|
|
2778
|
+
declare const HurryUp: ({ hurryUpText, backgroundColor, iconSize, textPosition, showTimer, }: HurryUpProps) => JSX.Element;
|
|
2779
|
+
|
|
1735
2780
|
declare global {
|
|
1736
2781
|
interface Events {
|
|
1737
2782
|
modal: {
|
|
@@ -1771,4 +2816,8 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1771
2816
|
currency?: string | undefined;
|
|
1772
2817
|
}) => string;
|
|
1773
2818
|
|
|
1774
|
-
|
|
2819
|
+
declare const getSrcSet: (imgLink: string, ...breakpoints: number[]) => string;
|
|
2820
|
+
|
|
2821
|
+
declare const mediaQueries: facepaint.DynamicStyleFunction;
|
|
2822
|
+
|
|
2823
|
+
export { AbsorbencyLevel, Accordion, AccordionOptions, AmazonButton, AssetsProvider, BeforeAfterCard, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownDialog, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitPredictor, HurryUp, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageCardWithDescription, ImageType, Input, InputValidationType, Modal, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, PackSelectorV2, Pagination, PaginatorBlog, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, PriceLabelV2, ProductGallery, ProductGalleryMobile, ProductGalleryMobileV2, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, 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, Tab, Tabs, Text, TextButton, TextWithImage, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, TrackingProgress, WithTestId, decimalFormat, formatPrice, getSrcSet, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, mediaQueries, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|