@trafilea/afrodita-components 5.0.0-beta.18 → 5.0.0-beta.181
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 +1024 -81
- package/build/index.esm.css +4 -1
- package/build/index.esm.js +8045 -4834
- package/build/index.esm.js.map +1 -1
- package/build/index.js +8064 -4835
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.d.ts +606 -0
- package/build/theme/revel.theme.js +950 -0
- package/build/theme/shapermint.theme.d.ts +190 -0
- package/build/theme/shapermint.theme.js +219 -1
- package/build/theme/truekind.theme.d.ts +190 -0
- package/build/theme/truekind.theme.js +210 -0
- package/package.json +4 -2
package/build/index.d.ts
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
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';
|
|
8
11
|
|
|
9
12
|
declare enum CardSectionType {
|
|
10
13
|
Header = 0,
|
|
@@ -33,6 +36,7 @@ interface IconProps {
|
|
|
33
36
|
height?: number;
|
|
34
37
|
fill?: string;
|
|
35
38
|
title?: string;
|
|
39
|
+
testId?: string;
|
|
36
40
|
}
|
|
37
41
|
declare type ButtonType = 'button' | 'submit' | 'reset';
|
|
38
42
|
interface CTAProps {
|
|
@@ -56,11 +60,7 @@ declare type SizeOption = {
|
|
|
56
60
|
label: string;
|
|
57
61
|
description: string;
|
|
58
62
|
disabled?: boolean;
|
|
59
|
-
|
|
60
|
-
declare type Color = {
|
|
61
|
-
primaryColor: string;
|
|
62
|
-
secondaryColor?: string;
|
|
63
|
-
tertiaryColor?: string;
|
|
63
|
+
noStock?: boolean;
|
|
64
64
|
};
|
|
65
65
|
declare type Pattern = {
|
|
66
66
|
url: string;
|
|
@@ -68,8 +68,9 @@ declare type Pattern = {
|
|
|
68
68
|
declare type ColorPickerOption = {
|
|
69
69
|
label: string;
|
|
70
70
|
description: string;
|
|
71
|
+
noStock?: boolean;
|
|
71
72
|
meta: {
|
|
72
|
-
color?:
|
|
73
|
+
color?: string[];
|
|
73
74
|
pattern?: Pattern;
|
|
74
75
|
};
|
|
75
76
|
};
|
|
@@ -100,7 +101,20 @@ declare type Filter = {
|
|
|
100
101
|
title: string;
|
|
101
102
|
columns: number;
|
|
102
103
|
isOpenByDefault?: boolean;
|
|
103
|
-
|
|
104
|
+
isLinkOption?: boolean;
|
|
105
|
+
link?: string;
|
|
106
|
+
color?: string;
|
|
107
|
+
isMultiselect: boolean;
|
|
108
|
+
type?: string;
|
|
109
|
+
items: Array<{
|
|
110
|
+
label: string;
|
|
111
|
+
checked?: boolean;
|
|
112
|
+
isLinkItem?: boolean;
|
|
113
|
+
link?: string;
|
|
114
|
+
blockUncheck?: boolean;
|
|
115
|
+
value?: string;
|
|
116
|
+
}>;
|
|
117
|
+
showInMobile: boolean;
|
|
104
118
|
};
|
|
105
119
|
declare type FilterChange = {
|
|
106
120
|
sectionIndex: number;
|
|
@@ -111,18 +125,53 @@ interface SearchBarOptionItem {
|
|
|
111
125
|
src: string;
|
|
112
126
|
price: string;
|
|
113
127
|
title: string;
|
|
128
|
+
optionUrl: string;
|
|
129
|
+
}
|
|
130
|
+
interface imageVideoProps {
|
|
131
|
+
imageLink: string;
|
|
132
|
+
isVideo?: {
|
|
133
|
+
videoTitle?: string;
|
|
134
|
+
videoSubtitle?: string;
|
|
135
|
+
textColor?: string;
|
|
136
|
+
videoLink?: string;
|
|
137
|
+
};
|
|
138
|
+
isMobile?: boolean;
|
|
114
139
|
}
|
|
115
140
|
|
|
116
141
|
declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
117
142
|
|
|
118
143
|
declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
119
144
|
|
|
145
|
+
declare const Smiling: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
146
|
+
|
|
147
|
+
declare const BulletOne: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
148
|
+
|
|
149
|
+
declare const BulletTwo: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
150
|
+
|
|
151
|
+
declare const BulletThree: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
152
|
+
|
|
153
|
+
declare const ThumbsUp: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
154
|
+
|
|
155
|
+
declare const ThumbsDown: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
156
|
+
|
|
120
157
|
declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
|
|
121
158
|
declare const Custom_Frown: typeof Frown;
|
|
159
|
+
declare const Custom_Smiling: typeof Smiling;
|
|
160
|
+
declare const Custom_BulletOne: typeof BulletOne;
|
|
161
|
+
declare const Custom_BulletTwo: typeof BulletTwo;
|
|
162
|
+
declare const Custom_BulletThree: typeof BulletThree;
|
|
163
|
+
declare const Custom_ThumbsUp: typeof ThumbsUp;
|
|
164
|
+
declare const Custom_ThumbsDown: typeof ThumbsDown;
|
|
122
165
|
declare namespace Custom {
|
|
123
166
|
export {
|
|
124
167
|
Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
|
|
125
168
|
Custom_Frown as Frown,
|
|
169
|
+
Custom_Smiling as Smiling,
|
|
170
|
+
Custom_BulletOne as BulletOne,
|
|
171
|
+
Custom_BulletTwo as BulletTwo,
|
|
172
|
+
Custom_BulletThree as BulletThree,
|
|
173
|
+
Custom_ThumbsUp as ThumbsUp,
|
|
174
|
+
Custom_ThumbsDown as ThumbsDown,
|
|
126
175
|
};
|
|
127
176
|
}
|
|
128
177
|
|
|
@@ -143,6 +192,71 @@ declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
143
192
|
|
|
144
193
|
declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
145
194
|
|
|
195
|
+
declare const Warning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
196
|
+
|
|
197
|
+
declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
198
|
+
|
|
199
|
+
declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
200
|
+
|
|
201
|
+
declare const Add: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
202
|
+
|
|
203
|
+
interface CopyProps extends IconProps {
|
|
204
|
+
stroke?: string;
|
|
205
|
+
}
|
|
206
|
+
declare const Copy: ({ height, width, fill, stroke }: CopyProps) => JSX.Element;
|
|
207
|
+
|
|
208
|
+
declare const CheckboxEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
209
|
+
|
|
210
|
+
declare const CheckboxLight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
211
|
+
|
|
212
|
+
declare const CheckboxSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
213
|
+
|
|
214
|
+
declare const Like: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
215
|
+
|
|
216
|
+
declare const LikeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
217
|
+
|
|
218
|
+
declare const NotAllowed: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
219
|
+
|
|
220
|
+
declare const RadioEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
221
|
+
|
|
222
|
+
declare const RadioFilled: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
223
|
+
|
|
224
|
+
declare const Minus$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
225
|
+
|
|
226
|
+
declare const SettingsSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
227
|
+
|
|
228
|
+
declare const Settings: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
229
|
+
|
|
230
|
+
declare const Share: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
231
|
+
|
|
232
|
+
declare const CircleCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
233
|
+
|
|
234
|
+
declare const CircleClear: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
235
|
+
|
|
236
|
+
declare const CircleInfo: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
237
|
+
|
|
238
|
+
declare const CircleMinus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
239
|
+
|
|
240
|
+
declare const CirclePlus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
241
|
+
|
|
242
|
+
declare const CircleQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
243
|
+
|
|
244
|
+
declare const CircleWarning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
245
|
+
|
|
246
|
+
declare const CircleSolidCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
247
|
+
|
|
248
|
+
declare const CircleSolidClear: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
249
|
+
|
|
250
|
+
declare const CircleSolidMinus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
251
|
+
|
|
252
|
+
declare const CircleSolidPlus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
253
|
+
|
|
254
|
+
declare const CircleSolidQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
255
|
+
|
|
256
|
+
declare const CircleSolidWarning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
257
|
+
|
|
258
|
+
declare const CircleSolidStyledCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
259
|
+
|
|
146
260
|
declare const Actions_Check: typeof Check;
|
|
147
261
|
declare const Actions_ClearLight: typeof ClearLight;
|
|
148
262
|
declare const Actions_LightExclamation: typeof LightExclamation;
|
|
@@ -151,6 +265,37 @@ declare const Actions_LightCheck: typeof LightCheck;
|
|
|
151
265
|
declare const Actions_Question: typeof Question;
|
|
152
266
|
declare const Actions_Close: typeof Close;
|
|
153
267
|
declare const Actions_Trash: typeof Trash;
|
|
268
|
+
declare const Actions_Warning: typeof Warning;
|
|
269
|
+
declare const Actions_Edit: typeof Edit;
|
|
270
|
+
declare const Actions_SignOut: typeof SignOut;
|
|
271
|
+
declare const Actions_Add: typeof Add;
|
|
272
|
+
type Actions_CopyProps = CopyProps;
|
|
273
|
+
declare const Actions_Copy: typeof Copy;
|
|
274
|
+
declare const Actions_CheckboxEmpty: typeof CheckboxEmpty;
|
|
275
|
+
declare const Actions_CheckboxLight: typeof CheckboxLight;
|
|
276
|
+
declare const Actions_CheckboxSolid: typeof CheckboxSolid;
|
|
277
|
+
declare const Actions_Like: typeof Like;
|
|
278
|
+
declare const Actions_LikeSolid: typeof LikeSolid;
|
|
279
|
+
declare const Actions_NotAllowed: typeof NotAllowed;
|
|
280
|
+
declare const Actions_RadioEmpty: typeof RadioEmpty;
|
|
281
|
+
declare const Actions_RadioFilled: typeof RadioFilled;
|
|
282
|
+
declare const Actions_SettingsSolid: typeof SettingsSolid;
|
|
283
|
+
declare const Actions_Settings: typeof Settings;
|
|
284
|
+
declare const Actions_Share: typeof Share;
|
|
285
|
+
declare const Actions_CircleCheck: typeof CircleCheck;
|
|
286
|
+
declare const Actions_CircleClear: typeof CircleClear;
|
|
287
|
+
declare const Actions_CircleInfo: typeof CircleInfo;
|
|
288
|
+
declare const Actions_CircleMinus: typeof CircleMinus;
|
|
289
|
+
declare const Actions_CirclePlus: typeof CirclePlus;
|
|
290
|
+
declare const Actions_CircleQuestion: typeof CircleQuestion;
|
|
291
|
+
declare const Actions_CircleWarning: typeof CircleWarning;
|
|
292
|
+
declare const Actions_CircleSolidCheck: typeof CircleSolidCheck;
|
|
293
|
+
declare const Actions_CircleSolidClear: typeof CircleSolidClear;
|
|
294
|
+
declare const Actions_CircleSolidMinus: typeof CircleSolidMinus;
|
|
295
|
+
declare const Actions_CircleSolidPlus: typeof CircleSolidPlus;
|
|
296
|
+
declare const Actions_CircleSolidQuestion: typeof CircleSolidQuestion;
|
|
297
|
+
declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
|
|
298
|
+
declare const Actions_CircleSolidStyledCheck: typeof CircleSolidStyledCheck;
|
|
154
299
|
declare namespace Actions {
|
|
155
300
|
export {
|
|
156
301
|
Actions_Check as Check,
|
|
@@ -161,6 +306,38 @@ declare namespace Actions {
|
|
|
161
306
|
Actions_Question as Question,
|
|
162
307
|
Actions_Close as Close,
|
|
163
308
|
Actions_Trash as Trash,
|
|
309
|
+
Actions_Warning as Warning,
|
|
310
|
+
Actions_Edit as Edit,
|
|
311
|
+
Actions_SignOut as SignOut,
|
|
312
|
+
Actions_Add as Add,
|
|
313
|
+
Actions_CopyProps as CopyProps,
|
|
314
|
+
Actions_Copy as Copy,
|
|
315
|
+
Actions_CheckboxEmpty as CheckboxEmpty,
|
|
316
|
+
Actions_CheckboxLight as CheckboxLight,
|
|
317
|
+
Actions_CheckboxSolid as CheckboxSolid,
|
|
318
|
+
Actions_Like as Like,
|
|
319
|
+
Actions_LikeSolid as LikeSolid,
|
|
320
|
+
Actions_NotAllowed as NotAllowed,
|
|
321
|
+
Actions_RadioEmpty as RadioEmpty,
|
|
322
|
+
Actions_RadioFilled as RadioFilled,
|
|
323
|
+
Minus$1 as Minus,
|
|
324
|
+
Actions_SettingsSolid as SettingsSolid,
|
|
325
|
+
Actions_Settings as Settings,
|
|
326
|
+
Actions_Share as Share,
|
|
327
|
+
Actions_CircleCheck as CircleCheck,
|
|
328
|
+
Actions_CircleClear as CircleClear,
|
|
329
|
+
Actions_CircleInfo as CircleInfo,
|
|
330
|
+
Actions_CircleMinus as CircleMinus,
|
|
331
|
+
Actions_CirclePlus as CirclePlus,
|
|
332
|
+
Actions_CircleQuestion as CircleQuestion,
|
|
333
|
+
Actions_CircleWarning as CircleWarning,
|
|
334
|
+
Actions_CircleSolidCheck as CircleSolidCheck,
|
|
335
|
+
Actions_CircleSolidClear as CircleSolidClear,
|
|
336
|
+
Actions_CircleSolidMinus as CircleSolidMinus,
|
|
337
|
+
Actions_CircleSolidPlus as CircleSolidPlus,
|
|
338
|
+
Actions_CircleSolidQuestion as CircleSolidQuestion,
|
|
339
|
+
Actions_CircleSolidWarning as CircleSolidWarning,
|
|
340
|
+
Actions_CircleSolidStyledCheck as CircleSolidStyledCheck,
|
|
164
341
|
};
|
|
165
342
|
}
|
|
166
343
|
|
|
@@ -169,31 +346,78 @@ declare const FitPredictor$1: ({ height, width, fill }: IconProps) => JSX.Elemen
|
|
|
169
346
|
interface LoadingProps extends IconProps {
|
|
170
347
|
backgroundColor: string;
|
|
171
348
|
}
|
|
172
|
-
declare const Loading: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
349
|
+
declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
173
350
|
|
|
174
351
|
declare const Shapermint: ({ height, width }: IconProps) => JSX.Element;
|
|
175
352
|
|
|
176
353
|
declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
|
|
177
354
|
|
|
355
|
+
declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
|
|
356
|
+
|
|
357
|
+
declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
358
|
+
|
|
359
|
+
declare const Chat: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
360
|
+
|
|
361
|
+
declare const Email: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
362
|
+
|
|
363
|
+
declare const CallUs: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
364
|
+
|
|
365
|
+
declare const SignForm: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
366
|
+
|
|
367
|
+
declare const QrCode: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
368
|
+
|
|
369
|
+
declare const FreeExchange: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
370
|
+
|
|
371
|
+
declare const ShopNow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
372
|
+
|
|
373
|
+
declare const HasselFreeReturns: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
374
|
+
|
|
375
|
+
declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
376
|
+
|
|
377
|
+
declare const FitGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
378
|
+
|
|
178
379
|
type Other_LoadingProps = LoadingProps;
|
|
179
|
-
declare const Other_Loading: typeof Loading;
|
|
180
380
|
declare const Other_Shapermint: typeof Shapermint;
|
|
181
381
|
declare const Other_McAfee: typeof McAfee;
|
|
382
|
+
declare const Other_GetDiscount: typeof GetDiscount;
|
|
383
|
+
declare const Other_ShapermintLogo: typeof ShapermintLogo;
|
|
384
|
+
declare const Other_Chat: typeof Chat;
|
|
385
|
+
declare const Other_Email: typeof Email;
|
|
386
|
+
declare const Other_CallUs: typeof CallUs;
|
|
387
|
+
declare const Other_SignForm: typeof SignForm;
|
|
388
|
+
declare const Other_QrCode: typeof QrCode;
|
|
389
|
+
declare const Other_FreeExchange: typeof FreeExchange;
|
|
390
|
+
declare const Other_ShopNow: typeof ShopNow;
|
|
391
|
+
declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
|
|
392
|
+
declare const Other_Play: typeof Play;
|
|
393
|
+
declare const Other_FitGuarantee: typeof FitGuarantee;
|
|
182
394
|
declare namespace Other {
|
|
183
395
|
export {
|
|
184
396
|
FitPredictor$1 as FitPredictor,
|
|
185
397
|
Other_LoadingProps as LoadingProps,
|
|
186
|
-
|
|
398
|
+
Loading$1 as Loading,
|
|
187
399
|
Other_Shapermint as Shapermint,
|
|
188
400
|
Other_McAfee as McAfee,
|
|
401
|
+
Other_GetDiscount as GetDiscount,
|
|
402
|
+
Other_ShapermintLogo as ShapermintLogo,
|
|
403
|
+
Other_Chat as Chat,
|
|
404
|
+
Other_Email as Email,
|
|
405
|
+
Other_CallUs as CallUs,
|
|
406
|
+
Other_SignForm as SignForm,
|
|
407
|
+
Other_QrCode as QrCode,
|
|
408
|
+
Other_FreeExchange as FreeExchange,
|
|
409
|
+
Other_ShopNow as ShopNow,
|
|
410
|
+
Other_HasselFreeReturns as HasselFreeReturns,
|
|
411
|
+
Other_Play as Play,
|
|
412
|
+
Other_FitGuarantee as FitGuarantee,
|
|
189
413
|
};
|
|
190
414
|
}
|
|
191
415
|
|
|
192
416
|
declare const ChevronDown: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
193
417
|
|
|
194
|
-
declare const ChevronLeft: ({ height, width, fill, opacity }: IconWithOpacityProps) => JSX.Element;
|
|
418
|
+
declare const ChevronLeft: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
|
|
195
419
|
|
|
196
|
-
declare const ChevronRight: ({ height, width, fill, opacity }: IconWithOpacityProps) => JSX.Element;
|
|
420
|
+
declare const ChevronRight: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
|
|
197
421
|
|
|
198
422
|
declare const ChevronRightVariant: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
199
423
|
|
|
@@ -203,6 +427,28 @@ declare const ChevronUpSolid: ({ height, width, fill }: IconProps) => JSX.Elemen
|
|
|
203
427
|
|
|
204
428
|
declare const CircleUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
205
429
|
|
|
430
|
+
declare const CircleChevronLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
431
|
+
|
|
432
|
+
declare const CircleChevronRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
433
|
+
|
|
434
|
+
declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
435
|
+
|
|
436
|
+
declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
437
|
+
|
|
438
|
+
declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
439
|
+
|
|
440
|
+
declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
441
|
+
|
|
442
|
+
declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
443
|
+
|
|
444
|
+
declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
445
|
+
|
|
446
|
+
declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
447
|
+
|
|
448
|
+
declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
449
|
+
|
|
450
|
+
declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
451
|
+
|
|
206
452
|
declare const Arrows_ChevronDown: typeof ChevronDown;
|
|
207
453
|
declare const Arrows_ChevronLeft: typeof ChevronLeft;
|
|
208
454
|
declare const Arrows_ChevronRight: typeof ChevronRight;
|
|
@@ -210,6 +456,17 @@ declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
|
|
|
210
456
|
declare const Arrows_ChevronUp: typeof ChevronUp;
|
|
211
457
|
declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
|
|
212
458
|
declare const Arrows_CircleUp: typeof CircleUp;
|
|
459
|
+
declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
|
|
460
|
+
declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
|
|
461
|
+
declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
|
|
462
|
+
declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
|
|
463
|
+
declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
|
|
464
|
+
declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
|
|
465
|
+
declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
|
|
466
|
+
declare const Arrows_CircleLineUp: typeof CircleLineUp;
|
|
467
|
+
declare const Arrows_CircleLineDown: typeof CircleLineDown;
|
|
468
|
+
declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
|
|
469
|
+
declare const Arrows_CircleLineRight: typeof CircleLineRight;
|
|
213
470
|
declare namespace Arrows {
|
|
214
471
|
export {
|
|
215
472
|
Arrows_ChevronDown as ChevronDown,
|
|
@@ -219,6 +476,17 @@ declare namespace Arrows {
|
|
|
219
476
|
Arrows_ChevronUp as ChevronUp,
|
|
220
477
|
Arrows_ChevronUpSolid as ChevronUpSolid,
|
|
221
478
|
Arrows_CircleUp as CircleUp,
|
|
479
|
+
Arrows_CircleChevronLeft as CircleChevronLeft,
|
|
480
|
+
Arrows_CircleChevronRight as CircleChevronRight,
|
|
481
|
+
Arrows_CircleChevronDown as CircleChevronDown,
|
|
482
|
+
Arrows_CircleChevronUp as CircleChevronUp,
|
|
483
|
+
Arrows_ChevronDownVariant as ChevronDownVariant,
|
|
484
|
+
Arrows_ChevronUpVariant as ChevronUpVariant,
|
|
485
|
+
Arrows_ChevronLeftVariant as ChevronLeftVariant,
|
|
486
|
+
Arrows_CircleLineUp as CircleLineUp,
|
|
487
|
+
Arrows_CircleLineDown as CircleLineDown,
|
|
488
|
+
Arrows_CircleLineLeft as CircleLineLeft,
|
|
489
|
+
Arrows_CircleLineRight as CircleLineRight,
|
|
222
490
|
};
|
|
223
491
|
}
|
|
224
492
|
|
|
@@ -242,6 +510,18 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
|
|
|
242
510
|
|
|
243
511
|
declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
244
512
|
|
|
513
|
+
declare const LightBulb$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
514
|
+
|
|
515
|
+
declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
516
|
+
|
|
517
|
+
declare const CircleNumber: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
518
|
+
|
|
519
|
+
declare const SizeEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
520
|
+
|
|
521
|
+
declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
522
|
+
|
|
523
|
+
declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
524
|
+
|
|
245
525
|
declare const PDP_Clock: typeof Clock;
|
|
246
526
|
declare const PDP_FlagUSA: typeof FlagUSA;
|
|
247
527
|
declare const PDP_Minus: typeof Minus;
|
|
@@ -252,6 +532,11 @@ declare const PDP_StarEmpty: typeof StarEmpty;
|
|
|
252
532
|
declare const PDP_StarHalf: typeof StarHalf;
|
|
253
533
|
declare const PDP_Stopwatch: typeof Stopwatch;
|
|
254
534
|
declare const PDP_Shipping: typeof Shipping;
|
|
535
|
+
declare const PDP_ErrorCross: typeof ErrorCross;
|
|
536
|
+
declare const PDP_CircleNumber: typeof CircleNumber;
|
|
537
|
+
declare const PDP_SizeEmpty: typeof SizeEmpty;
|
|
538
|
+
declare const PDP_PlayMini: typeof PlayMini;
|
|
539
|
+
declare const PDP_ShippingEmpty: typeof ShippingEmpty;
|
|
255
540
|
declare namespace PDP {
|
|
256
541
|
export {
|
|
257
542
|
PDP_Clock as Clock,
|
|
@@ -264,6 +549,12 @@ declare namespace PDP {
|
|
|
264
549
|
PDP_StarHalf as StarHalf,
|
|
265
550
|
PDP_Stopwatch as Stopwatch,
|
|
266
551
|
PDP_Shipping as Shipping,
|
|
552
|
+
LightBulb$1 as LightBulb,
|
|
553
|
+
PDP_ErrorCross as ErrorCross,
|
|
554
|
+
PDP_CircleNumber as CircleNumber,
|
|
555
|
+
PDP_SizeEmpty as SizeEmpty,
|
|
556
|
+
PDP_PlayMini as PlayMini,
|
|
557
|
+
PDP_ShippingEmpty as ShippingEmpty,
|
|
267
558
|
};
|
|
268
559
|
}
|
|
269
560
|
|
|
@@ -281,6 +572,8 @@ declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
281
572
|
|
|
282
573
|
declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
283
574
|
|
|
575
|
+
declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
576
|
+
|
|
284
577
|
declare const SocialMedia_Facebook: typeof Facebook;
|
|
285
578
|
declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
|
|
286
579
|
declare const SocialMedia_Instagram: typeof Instagram;
|
|
@@ -288,6 +581,7 @@ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
|
|
|
288
581
|
declare const SocialMedia_Pinterest: typeof Pinterest;
|
|
289
582
|
declare const SocialMedia_Twitter: typeof Twitter;
|
|
290
583
|
declare const SocialMedia_Youtube: typeof Youtube;
|
|
584
|
+
declare const SocialMedia_Interaction: typeof Interaction;
|
|
291
585
|
declare namespace SocialMedia {
|
|
292
586
|
export {
|
|
293
587
|
SocialMedia_Facebook as Facebook,
|
|
@@ -297,14 +591,15 @@ declare namespace SocialMedia {
|
|
|
297
591
|
SocialMedia_Pinterest as Pinterest,
|
|
298
592
|
SocialMedia_Twitter as Twitter,
|
|
299
593
|
SocialMedia_Youtube as Youtube,
|
|
594
|
+
SocialMedia_Interaction as Interaction,
|
|
300
595
|
};
|
|
301
596
|
}
|
|
302
597
|
|
|
303
|
-
declare const Search: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
598
|
+
declare const Search: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
304
599
|
|
|
305
600
|
declare const User: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
306
601
|
|
|
307
|
-
declare const ShoppingBag: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
602
|
+
declare const ShoppingBag: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
308
603
|
|
|
309
604
|
declare const ShoppingCart: FC<IconProps>;
|
|
310
605
|
|
|
@@ -312,12 +607,64 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
312
607
|
|
|
313
608
|
declare const Hamburger: FC<IconProps>;
|
|
314
609
|
|
|
610
|
+
declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
611
|
+
|
|
612
|
+
declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
613
|
+
|
|
614
|
+
declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
615
|
+
|
|
616
|
+
declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
617
|
+
|
|
618
|
+
declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
619
|
+
|
|
620
|
+
declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
621
|
+
|
|
622
|
+
declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
623
|
+
|
|
624
|
+
declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
625
|
+
|
|
626
|
+
declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
627
|
+
|
|
628
|
+
declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
629
|
+
|
|
630
|
+
declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
631
|
+
|
|
632
|
+
declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
633
|
+
|
|
634
|
+
declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
635
|
+
|
|
636
|
+
declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
637
|
+
|
|
638
|
+
declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
639
|
+
|
|
640
|
+
declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
641
|
+
|
|
642
|
+
declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
643
|
+
|
|
644
|
+
declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
645
|
+
|
|
315
646
|
declare const Navigation_Search: typeof Search;
|
|
316
647
|
declare const Navigation_User: typeof User;
|
|
317
648
|
declare const Navigation_ShoppingBag: typeof ShoppingBag;
|
|
318
649
|
declare const Navigation_ShoppingCart: typeof ShoppingCart;
|
|
319
650
|
declare const Navigation_MapMarker: typeof MapMarker;
|
|
320
651
|
declare const Navigation_Hamburger: typeof Hamburger;
|
|
652
|
+
declare const Navigation_AddressInformation: typeof AddressInformation;
|
|
653
|
+
declare const Navigation_ClubMembership: typeof ClubMembership;
|
|
654
|
+
declare const Navigation_Benefits: typeof Benefits;
|
|
655
|
+
declare const Navigation_Home: typeof Home;
|
|
656
|
+
declare const Navigation_HomeSolid: typeof HomeSolid;
|
|
657
|
+
declare const Navigation_ShoppingBagV2: typeof ShoppingBagV2;
|
|
658
|
+
declare const Navigation_UserSolid: typeof UserSolid;
|
|
659
|
+
declare const Navigation_SlideDotSolid: typeof SlideDotSolid;
|
|
660
|
+
declare const Navigation_Ellipsis: typeof Ellipsis;
|
|
661
|
+
declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
|
|
662
|
+
declare const Navigation_Lock: typeof Lock;
|
|
663
|
+
declare const Navigation_LockSolid: typeof LockSolid;
|
|
664
|
+
declare const Navigation_Loading: typeof Loading;
|
|
665
|
+
declare const Navigation_MapSolid: typeof MapSolid;
|
|
666
|
+
declare const Navigation_UserV2: typeof UserV2;
|
|
667
|
+
declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
|
|
321
668
|
declare namespace Navigation {
|
|
322
669
|
export {
|
|
323
670
|
Navigation_Search as Search,
|
|
@@ -326,6 +673,24 @@ declare namespace Navigation {
|
|
|
326
673
|
Navigation_ShoppingCart as ShoppingCart,
|
|
327
674
|
Navigation_MapMarker as MapMarker,
|
|
328
675
|
Navigation_Hamburger as Hamburger,
|
|
676
|
+
Navigation_AddressInformation as AddressInformation,
|
|
677
|
+
Navigation_ClubMembership as ClubMembership,
|
|
678
|
+
Navigation_Benefits as Benefits,
|
|
679
|
+
Navigation_Home as Home,
|
|
680
|
+
Navigation_HomeSolid as HomeSolid,
|
|
681
|
+
Navigation_ShoppingBagV2 as ShoppingBagV2,
|
|
682
|
+
Navigation_UserSolid as UserSolid,
|
|
683
|
+
SlideDot$1 as SlideDot,
|
|
684
|
+
Navigation_SlideDotSolid as SlideDotSolid,
|
|
685
|
+
Navigation_Ellipsis as Ellipsis,
|
|
686
|
+
Navigation_EllipsisHorizontal as EllipsisHorizontal,
|
|
687
|
+
Filters$1 as Filters,
|
|
688
|
+
Navigation_Lock as Lock,
|
|
689
|
+
Navigation_LockSolid as LockSolid,
|
|
690
|
+
Navigation_Loading as Loading,
|
|
691
|
+
Navigation_MapSolid as MapSolid,
|
|
692
|
+
Navigation_UserV2 as UserV2,
|
|
693
|
+
Navigation_ShoppingCartV2 as ShoppingCartV2,
|
|
329
694
|
};
|
|
330
695
|
}
|
|
331
696
|
|
|
@@ -342,22 +707,65 @@ interface IconWrapperProps {
|
|
|
342
707
|
viewBoxX: number;
|
|
343
708
|
viewBoxY: number;
|
|
344
709
|
children: React.ReactNode;
|
|
345
|
-
|
|
710
|
+
testId?: string;
|
|
346
711
|
fill?: string;
|
|
347
712
|
}
|
|
348
713
|
|
|
349
|
-
declare const Mail: ({ height, width }: IconWrapperProps) => JSX.Element;
|
|
714
|
+
declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
|
|
715
|
+
|
|
716
|
+
declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
717
|
+
|
|
718
|
+
declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
719
|
+
|
|
720
|
+
declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
721
|
+
|
|
722
|
+
declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
723
|
+
|
|
724
|
+
declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
725
|
+
|
|
726
|
+
declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
727
|
+
|
|
728
|
+
declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
729
|
+
|
|
730
|
+
declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
731
|
+
|
|
732
|
+
declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
733
|
+
|
|
734
|
+
declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
735
|
+
|
|
736
|
+
declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
350
737
|
|
|
351
738
|
declare const Messaging_QuestionCircle: typeof QuestionCircle;
|
|
352
739
|
declare const Messaging_Messenger: typeof Messenger;
|
|
353
740
|
declare const Messaging_Comment: typeof Comment;
|
|
354
741
|
declare const Messaging_Mail: typeof Mail;
|
|
742
|
+
declare const Messaging_QuoteLeft: typeof QuoteLeft;
|
|
743
|
+
declare const Messaging_QuoteRight: typeof QuoteRight;
|
|
744
|
+
declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
|
|
745
|
+
declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
|
|
746
|
+
declare const Messaging_Light: typeof Light;
|
|
747
|
+
declare const Messaging_LightBulb: typeof LightBulb;
|
|
748
|
+
declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
|
|
749
|
+
declare const Messaging_CommentDots: typeof CommentDots;
|
|
750
|
+
declare const Messaging_CommentLight: typeof CommentLight;
|
|
751
|
+
declare const Messaging_CommentMoney: typeof CommentMoney;
|
|
355
752
|
declare namespace Messaging {
|
|
356
753
|
export {
|
|
357
754
|
Messaging_QuestionCircle as QuestionCircle,
|
|
358
755
|
Messaging_Messenger as Messenger,
|
|
359
756
|
Messaging_Comment as Comment,
|
|
360
757
|
Messaging_Mail as Mail,
|
|
758
|
+
Community$1 as Community,
|
|
759
|
+
Messaging_QuoteLeft as QuoteLeft,
|
|
760
|
+
Messaging_QuoteRight as QuoteRight,
|
|
761
|
+
Messaging_QuoteSolidLeft as QuoteSolidLeft,
|
|
762
|
+
Messaging_QuoteSolidRight as QuoteSolidRight,
|
|
763
|
+
Messaging_Light as Light,
|
|
764
|
+
Messaging_LightBulb as LightBulb,
|
|
765
|
+
Messaging_LightBulbSolid as LightBulbSolid,
|
|
766
|
+
Messaging_CommentDots as CommentDots,
|
|
767
|
+
Messaging_CommentLight as CommentLight,
|
|
768
|
+
Messaging_CommentMoney as CommentMoney,
|
|
361
769
|
};
|
|
362
770
|
}
|
|
363
771
|
|
|
@@ -418,14 +826,79 @@ declare namespace SlideDots {
|
|
|
418
826
|
|
|
419
827
|
declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
|
|
420
828
|
|
|
829
|
+
declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
|
|
830
|
+
|
|
831
|
+
declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
832
|
+
|
|
833
|
+
declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
|
|
834
|
+
|
|
835
|
+
declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
|
|
836
|
+
|
|
837
|
+
declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
838
|
+
|
|
839
|
+
declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
|
|
840
|
+
|
|
421
841
|
declare const Emoji_Thinking: typeof Thinking;
|
|
842
|
+
declare const Emoji_SmilingV2: typeof SmilingV2;
|
|
843
|
+
declare const Emoji_Grinning: typeof Grinning;
|
|
844
|
+
declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
|
|
845
|
+
declare const Emoji_BlowingKiss: typeof BlowingKiss;
|
|
846
|
+
declare const Emoji_Frowning: typeof Frowning;
|
|
847
|
+
declare const Emoji_Relieved: typeof Relieved;
|
|
422
848
|
declare namespace Emoji {
|
|
423
849
|
export {
|
|
424
850
|
Emoji_Thinking as Thinking,
|
|
851
|
+
Emoji_SmilingV2 as SmilingV2,
|
|
852
|
+
Emoji_Grinning as Grinning,
|
|
853
|
+
Emoji_GrinningWithSweat as GrinningWithSweat,
|
|
854
|
+
Emoji_BlowingKiss as BlowingKiss,
|
|
855
|
+
Emoji_Frowning as Frowning,
|
|
856
|
+
Emoji_Relieved as Relieved,
|
|
857
|
+
};
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
861
|
+
|
|
862
|
+
declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
863
|
+
|
|
864
|
+
declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
865
|
+
|
|
866
|
+
declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
867
|
+
|
|
868
|
+
declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
869
|
+
|
|
870
|
+
declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
871
|
+
|
|
872
|
+
declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
873
|
+
|
|
874
|
+
declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
875
|
+
|
|
876
|
+
declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
877
|
+
|
|
878
|
+
declare const MyAccount_FreeShipping: typeof FreeShipping;
|
|
879
|
+
declare const MyAccount_PersonalStylist: typeof PersonalStylist;
|
|
880
|
+
declare const MyAccount_Community: typeof Community;
|
|
881
|
+
declare const MyAccount_VIP: typeof VIP;
|
|
882
|
+
declare const MyAccount_DealsOffers: typeof DealsOffers;
|
|
883
|
+
declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
|
|
884
|
+
declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
|
|
885
|
+
declare const MyAccount_Profile: typeof Profile;
|
|
886
|
+
declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
|
|
887
|
+
declare namespace MyAccount {
|
|
888
|
+
export {
|
|
889
|
+
MyAccount_FreeShipping as FreeShipping,
|
|
890
|
+
MyAccount_PersonalStylist as PersonalStylist,
|
|
891
|
+
MyAccount_Community as Community,
|
|
892
|
+
MyAccount_VIP as VIP,
|
|
893
|
+
MyAccount_DealsOffers as DealsOffers,
|
|
894
|
+
MyAccount_StyleFashionContent as StyleFashionContent,
|
|
895
|
+
MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
|
|
896
|
+
MyAccount_Profile as Profile,
|
|
897
|
+
MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
|
|
425
898
|
};
|
|
426
899
|
}
|
|
427
900
|
|
|
428
|
-
declare type IconType = ({ height, width, fill }: IconProps) => JSX.Element;
|
|
901
|
+
declare type IconType = ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
429
902
|
declare const Icon: {
|
|
430
903
|
Custom: typeof Custom;
|
|
431
904
|
Arrows: typeof Arrows;
|
|
@@ -439,6 +912,7 @@ declare const Icon: {
|
|
|
439
912
|
Payment: typeof Payment;
|
|
440
913
|
SlideDots: typeof SlideDots;
|
|
441
914
|
Emoji: typeof Emoji;
|
|
915
|
+
MyAccount: typeof MyAccount;
|
|
442
916
|
};
|
|
443
917
|
|
|
444
918
|
interface CardBodyProps {
|
|
@@ -455,7 +929,7 @@ interface borderProps {
|
|
|
455
929
|
}
|
|
456
930
|
interface CardProps {
|
|
457
931
|
children: ReactNode;
|
|
458
|
-
backgroundColor
|
|
932
|
+
backgroundColor?: string;
|
|
459
933
|
widthAuto?: boolean;
|
|
460
934
|
border?: borderProps;
|
|
461
935
|
flex?: boolean;
|
|
@@ -495,6 +969,21 @@ declare type UncontrolledProps<T> = {
|
|
|
495
969
|
declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
|
|
496
970
|
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, }: SimpleDropdownProps<T>): JSX.Element;
|
|
497
971
|
|
|
972
|
+
interface DialogPositionProps {
|
|
973
|
+
top: string;
|
|
974
|
+
right: string;
|
|
975
|
+
}
|
|
976
|
+
interface DialogDropdownProps {
|
|
977
|
+
options: {
|
|
978
|
+
label: string;
|
|
979
|
+
value: string;
|
|
980
|
+
}[];
|
|
981
|
+
position: DialogPositionProps;
|
|
982
|
+
style?: React.CSSProperties;
|
|
983
|
+
className?: string;
|
|
984
|
+
}
|
|
985
|
+
declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
|
|
986
|
+
|
|
498
987
|
interface SizeSelectorProps {
|
|
499
988
|
label: string;
|
|
500
989
|
sizes: SizeOption[];
|
|
@@ -524,6 +1013,7 @@ interface BaseButtonProps {
|
|
|
524
1013
|
inline?: boolean;
|
|
525
1014
|
uppercase?: boolean;
|
|
526
1015
|
testId?: string;
|
|
1016
|
+
id?: string;
|
|
527
1017
|
}
|
|
528
1018
|
|
|
529
1019
|
declare type BaseProps = Pick<BaseButtonProps, 'disabled' | 'type' | 'onClick'>;
|
|
@@ -545,8 +1035,9 @@ interface DiscountTagProps {
|
|
|
545
1035
|
borderColor?: string;
|
|
546
1036
|
textColor?: string;
|
|
547
1037
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1038
|
+
style?: React.CSSProperties;
|
|
548
1039
|
}
|
|
549
|
-
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, }: DiscountTagProps) => JSX.Element;
|
|
1040
|
+
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
|
|
550
1041
|
|
|
551
1042
|
interface PriceLabelProps {
|
|
552
1043
|
finalPrice: string | number;
|
|
@@ -554,8 +1045,15 @@ interface PriceLabelProps {
|
|
|
554
1045
|
color?: string;
|
|
555
1046
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
556
1047
|
discount?: DiscountTagProps;
|
|
1048
|
+
finalPriceStyled?: boolean;
|
|
1049
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1050
|
+
originalPriceStyled?: boolean;
|
|
1051
|
+
originalPriceUnderlined?: boolean;
|
|
1052
|
+
testId?: string;
|
|
557
1053
|
}
|
|
558
|
-
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, size, }: PriceLabelProps) => JSX.Element;
|
|
1054
|
+
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
1055
|
+
|
|
1056
|
+
declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
559
1057
|
|
|
560
1058
|
interface ColorPickerProps {
|
|
561
1059
|
options: ColorPickerOption[];
|
|
@@ -577,12 +1075,17 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
|
|
|
577
1075
|
interface ProductGalleryProps {
|
|
578
1076
|
images: ImageType[];
|
|
579
1077
|
selectedValue?: ImageType;
|
|
580
|
-
|
|
581
|
-
|
|
1078
|
+
topTag?: JSX.Element;
|
|
1079
|
+
bottomTag?: JSX.Element;
|
|
582
1080
|
productImageDataTestId?: string;
|
|
583
1081
|
previewListDataTestId?: string;
|
|
1082
|
+
thumbnailPosition?: 'vertical' | 'horizontal';
|
|
1083
|
+
borderRadiusVariant?: boolean;
|
|
1084
|
+
previewImgBorderColor?: string;
|
|
1085
|
+
ctaText?: string;
|
|
1086
|
+
ctaAction?: () => void;
|
|
584
1087
|
}
|
|
585
|
-
declare const ProductGallery: ({ images, selectedValue,
|
|
1088
|
+
declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, }: ProductGalleryProps) => JSX.Element;
|
|
586
1089
|
|
|
587
1090
|
interface RatingProps {
|
|
588
1091
|
rating: number;
|
|
@@ -590,8 +1093,10 @@ interface RatingProps {
|
|
|
590
1093
|
reviews: number;
|
|
591
1094
|
reviewsText: string;
|
|
592
1095
|
wrapWithParenthesis?: boolean;
|
|
1096
|
+
underline?: boolean;
|
|
1097
|
+
reviewsContainerId?: string;
|
|
593
1098
|
}
|
|
594
|
-
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
|
|
1099
|
+
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
|
|
595
1100
|
|
|
596
1101
|
interface FitPredictorProps {
|
|
597
1102
|
onClick: () => void;
|
|
@@ -618,31 +1123,45 @@ interface TooltipProps {
|
|
|
618
1123
|
children: React.ReactNode;
|
|
619
1124
|
position: ComponentPosition;
|
|
620
1125
|
align?: 'start' | 'center' | 'end';
|
|
621
|
-
|
|
1126
|
+
content?: {
|
|
1127
|
+
text: string;
|
|
1128
|
+
color?: string;
|
|
1129
|
+
};
|
|
1130
|
+
backgroundColor?: string;
|
|
1131
|
+
maxWidth?: string;
|
|
622
1132
|
header?: {
|
|
623
1133
|
title: string;
|
|
624
|
-
|
|
1134
|
+
titleColor?: string;
|
|
1135
|
+
Icon?: IconType;
|
|
1136
|
+
iconFill?: string;
|
|
625
1137
|
};
|
|
626
1138
|
onClick?: () => void;
|
|
627
1139
|
}
|
|
628
|
-
declare const Tooltip: ({ children, position,
|
|
1140
|
+
declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
|
|
629
1141
|
|
|
630
1142
|
interface AccordionProps {
|
|
631
1143
|
defaultOpen?: boolean;
|
|
1144
|
+
forceOpenHandler?: boolean;
|
|
1145
|
+
forceOpenValue?: boolean;
|
|
1146
|
+
titleColor?: string;
|
|
632
1147
|
variant: 'simple' | 'box';
|
|
633
1148
|
header: ReactNode;
|
|
1149
|
+
headerOnOpen?: ReactNode;
|
|
634
1150
|
content: ReactNode;
|
|
635
1151
|
disabled?: boolean;
|
|
1152
|
+
innerHTML?: boolean;
|
|
636
1153
|
openIcon: IconType;
|
|
637
1154
|
closeIcon: IconType;
|
|
1155
|
+
onClick?: (index: number) => void;
|
|
638
1156
|
}
|
|
639
|
-
declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
|
|
1157
|
+
declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
|
|
640
1158
|
|
|
641
1159
|
declare const ThemeProvider: FC<{
|
|
642
1160
|
theme: Theme;
|
|
643
1161
|
children: ReactNode;
|
|
644
1162
|
}>;
|
|
645
1163
|
declare const useTheme: () => Theme;
|
|
1164
|
+
|
|
646
1165
|
declare const ThemeVariables: FC<{
|
|
647
1166
|
theme: Theme;
|
|
648
1167
|
Container?: ElementType;
|
|
@@ -700,6 +1219,7 @@ declare type ThemeColors = {
|
|
|
700
1219
|
50: ThemeBasicPallete;
|
|
701
1220
|
100: ThemeBasicPallete;
|
|
702
1221
|
150: ThemeBasicPallete;
|
|
1222
|
+
175: ThemeBasicPallete;
|
|
703
1223
|
200: ThemeBasicPallete;
|
|
704
1224
|
250: ThemeBasicPallete;
|
|
705
1225
|
300: ThemeBasicPallete;
|
|
@@ -743,6 +1263,10 @@ declare type ThemeComponent = {
|
|
|
743
1263
|
border: string;
|
|
744
1264
|
borderRadius: string;
|
|
745
1265
|
fontWeight: number;
|
|
1266
|
+
lineHeight: string;
|
|
1267
|
+
letterSpacing: string;
|
|
1268
|
+
minWidth: string;
|
|
1269
|
+
minHeight: string;
|
|
746
1270
|
size: {
|
|
747
1271
|
small: {
|
|
748
1272
|
fontSize: string;
|
|
@@ -789,6 +1313,12 @@ declare type ThemeComponent = {
|
|
|
789
1313
|
lineHeight: string;
|
|
790
1314
|
border: string;
|
|
791
1315
|
boxShadow: string;
|
|
1316
|
+
errorBorder: string;
|
|
1317
|
+
};
|
|
1318
|
+
inputPlaceholder: {
|
|
1319
|
+
fontSize: string;
|
|
1320
|
+
padding: string;
|
|
1321
|
+
focusBorder: string;
|
|
792
1322
|
};
|
|
793
1323
|
inputCustom: {
|
|
794
1324
|
button: {
|
|
@@ -821,6 +1351,12 @@ declare type ThemeComponent = {
|
|
|
821
1351
|
border: string;
|
|
822
1352
|
color: string;
|
|
823
1353
|
};
|
|
1354
|
+
noStock: {
|
|
1355
|
+
fontWeight: number;
|
|
1356
|
+
background: string;
|
|
1357
|
+
border: string;
|
|
1358
|
+
color: string;
|
|
1359
|
+
};
|
|
824
1360
|
disabled: {
|
|
825
1361
|
border: string;
|
|
826
1362
|
};
|
|
@@ -874,10 +1410,13 @@ declare type ThemeComponent = {
|
|
|
874
1410
|
};
|
|
875
1411
|
card: {
|
|
876
1412
|
borderRadius: string;
|
|
1413
|
+
backgroundColor: string;
|
|
877
1414
|
};
|
|
878
1415
|
radio: {
|
|
879
1416
|
borderColor: string;
|
|
880
1417
|
background: string;
|
|
1418
|
+
textSize: string;
|
|
1419
|
+
lineHeight: string;
|
|
881
1420
|
size: {
|
|
882
1421
|
small: {
|
|
883
1422
|
borderWidth: string;
|
|
@@ -906,6 +1445,7 @@ declare type ThemeComponent = {
|
|
|
906
1445
|
};
|
|
907
1446
|
};
|
|
908
1447
|
label: {
|
|
1448
|
+
color: string;
|
|
909
1449
|
fontSize: {
|
|
910
1450
|
small: string;
|
|
911
1451
|
medium: string;
|
|
@@ -1019,6 +1559,7 @@ declare type ThemeComponent = {
|
|
|
1019
1559
|
options: {
|
|
1020
1560
|
borderColor: string;
|
|
1021
1561
|
color: string;
|
|
1562
|
+
borderRadius: string;
|
|
1022
1563
|
};
|
|
1023
1564
|
};
|
|
1024
1565
|
modal: {
|
|
@@ -1032,6 +1573,168 @@ declare type ThemeComponent = {
|
|
|
1032
1573
|
selectedContrast: string;
|
|
1033
1574
|
tagColor: string;
|
|
1034
1575
|
};
|
|
1576
|
+
slideNavigation: {
|
|
1577
|
+
slideDots: {
|
|
1578
|
+
unselectedDotColor: string;
|
|
1579
|
+
selectedDotColor: string;
|
|
1580
|
+
dotsOpacity: number;
|
|
1581
|
+
};
|
|
1582
|
+
};
|
|
1583
|
+
beforeAfter: {
|
|
1584
|
+
size: {
|
|
1585
|
+
small: {
|
|
1586
|
+
image: {
|
|
1587
|
+
minHeight: string;
|
|
1588
|
+
minWidth: string;
|
|
1589
|
+
mobile: {
|
|
1590
|
+
minHeight: string;
|
|
1591
|
+
minWidth: string;
|
|
1592
|
+
};
|
|
1593
|
+
};
|
|
1594
|
+
imageContainer: {
|
|
1595
|
+
maxWidth: string;
|
|
1596
|
+
padding: string;
|
|
1597
|
+
mobile: {
|
|
1598
|
+
maxWidth: string;
|
|
1599
|
+
};
|
|
1600
|
+
};
|
|
1601
|
+
userInfoText: {
|
|
1602
|
+
fontSize: string;
|
|
1603
|
+
mobile: {
|
|
1604
|
+
fontSize: string;
|
|
1605
|
+
};
|
|
1606
|
+
};
|
|
1607
|
+
};
|
|
1608
|
+
medium: {
|
|
1609
|
+
image: {
|
|
1610
|
+
minHeight: string;
|
|
1611
|
+
minWidth: string;
|
|
1612
|
+
mobile: {
|
|
1613
|
+
minHeight: string;
|
|
1614
|
+
minWidth: string;
|
|
1615
|
+
};
|
|
1616
|
+
};
|
|
1617
|
+
imageContainer: {
|
|
1618
|
+
maxWidth: string;
|
|
1619
|
+
padding: string;
|
|
1620
|
+
mobile: {
|
|
1621
|
+
maxWidth: string;
|
|
1622
|
+
};
|
|
1623
|
+
};
|
|
1624
|
+
userInfoText: {
|
|
1625
|
+
fontSize: string;
|
|
1626
|
+
mobile: {
|
|
1627
|
+
fontSize: string;
|
|
1628
|
+
};
|
|
1629
|
+
};
|
|
1630
|
+
};
|
|
1631
|
+
large: {
|
|
1632
|
+
image: {
|
|
1633
|
+
minHeight: string;
|
|
1634
|
+
minWidth: string;
|
|
1635
|
+
mobile: {
|
|
1636
|
+
minHeight: string;
|
|
1637
|
+
minWidth: string;
|
|
1638
|
+
};
|
|
1639
|
+
};
|
|
1640
|
+
imageContainer: {
|
|
1641
|
+
maxWidth: string;
|
|
1642
|
+
padding: string;
|
|
1643
|
+
mobile: {
|
|
1644
|
+
maxWidth: string;
|
|
1645
|
+
};
|
|
1646
|
+
};
|
|
1647
|
+
userInfoText: {
|
|
1648
|
+
fontSize: string;
|
|
1649
|
+
mobile: {
|
|
1650
|
+
fontSize: string;
|
|
1651
|
+
};
|
|
1652
|
+
};
|
|
1653
|
+
};
|
|
1654
|
+
};
|
|
1655
|
+
};
|
|
1656
|
+
total: {
|
|
1657
|
+
basicTotal: {
|
|
1658
|
+
amount: {
|
|
1659
|
+
color: string;
|
|
1660
|
+
fontSize: string;
|
|
1661
|
+
};
|
|
1662
|
+
currency: {
|
|
1663
|
+
color: string;
|
|
1664
|
+
fontSize: string;
|
|
1665
|
+
lineHeight: string;
|
|
1666
|
+
alignSelf?: string;
|
|
1667
|
+
};
|
|
1668
|
+
savings: {
|
|
1669
|
+
textFontSize: string;
|
|
1670
|
+
textLineHeight: string;
|
|
1671
|
+
amountFontSize: string;
|
|
1672
|
+
amountFontWeight: number;
|
|
1673
|
+
amountLineHeight: string;
|
|
1674
|
+
color?: string;
|
|
1675
|
+
};
|
|
1676
|
+
};
|
|
1677
|
+
};
|
|
1678
|
+
subTotal: {
|
|
1679
|
+
basicSubTotal: {
|
|
1680
|
+
family: string;
|
|
1681
|
+
size: string;
|
|
1682
|
+
weight: number;
|
|
1683
|
+
lineHeight: string;
|
|
1684
|
+
color: string;
|
|
1685
|
+
};
|
|
1686
|
+
};
|
|
1687
|
+
pricing: {
|
|
1688
|
+
priceLabel: {
|
|
1689
|
+
price: {
|
|
1690
|
+
size: ComponentSize$1.Small | ComponentSize$1.Medium | ComponentSize$1.Large;
|
|
1691
|
+
originalPriceColor: string;
|
|
1692
|
+
actualPriceColor: string;
|
|
1693
|
+
};
|
|
1694
|
+
};
|
|
1695
|
+
};
|
|
1696
|
+
orderSummary: {
|
|
1697
|
+
headingTextAlign: string;
|
|
1698
|
+
backgroundColor: string;
|
|
1699
|
+
maxWidth?: string;
|
|
1700
|
+
padding?: string;
|
|
1701
|
+
borderRadius?: string;
|
|
1702
|
+
onMobile: {
|
|
1703
|
+
maxWidth?: string;
|
|
1704
|
+
padding?: string;
|
|
1705
|
+
backgroundColor?: string;
|
|
1706
|
+
};
|
|
1707
|
+
};
|
|
1708
|
+
expressCheckout: {
|
|
1709
|
+
fontFamily: string;
|
|
1710
|
+
fontWeight: number;
|
|
1711
|
+
lineHeight: string;
|
|
1712
|
+
};
|
|
1713
|
+
copyrightText: {
|
|
1714
|
+
fontSize: string;
|
|
1715
|
+
fontWeight: number;
|
|
1716
|
+
lineHeight: string;
|
|
1717
|
+
color: string;
|
|
1718
|
+
};
|
|
1719
|
+
textButton: {
|
|
1720
|
+
fontWeight: number;
|
|
1721
|
+
lineHeight: string;
|
|
1722
|
+
};
|
|
1723
|
+
deliveryDetails: {
|
|
1724
|
+
note: {
|
|
1725
|
+
accentColor: string;
|
|
1726
|
+
color: string;
|
|
1727
|
+
backgroundColor: string;
|
|
1728
|
+
};
|
|
1729
|
+
SectionDetails?: {
|
|
1730
|
+
marginLeft: string;
|
|
1731
|
+
};
|
|
1732
|
+
};
|
|
1733
|
+
text: {
|
|
1734
|
+
orderHeader: {
|
|
1735
|
+
color: string;
|
|
1736
|
+
};
|
|
1737
|
+
};
|
|
1035
1738
|
};
|
|
1036
1739
|
declare type ThemeTypography = {
|
|
1037
1740
|
config: {
|
|
@@ -1058,6 +1761,11 @@ declare type ThemeAssets = {
|
|
|
1058
1761
|
images: {
|
|
1059
1762
|
favicon: string;
|
|
1060
1763
|
logo: string;
|
|
1764
|
+
logoSize?: {
|
|
1765
|
+
width: string;
|
|
1766
|
+
height: string;
|
|
1767
|
+
};
|
|
1768
|
+
logoMobile?: string;
|
|
1061
1769
|
};
|
|
1062
1770
|
[key: string]: any;
|
|
1063
1771
|
};
|
|
@@ -1068,11 +1776,12 @@ interface CheckboxProps {
|
|
|
1068
1776
|
size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1069
1777
|
text: string;
|
|
1070
1778
|
checked?: boolean;
|
|
1779
|
+
blockUncheck?: boolean;
|
|
1071
1780
|
id: string;
|
|
1072
1781
|
backgroundColor?: string;
|
|
1073
|
-
variant: 'primary' | 'secondary';
|
|
1782
|
+
variant: 'primary' | 'secondary' | 'color';
|
|
1074
1783
|
}
|
|
1075
|
-
declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, }: CheckboxProps) => JSX.Element;
|
|
1784
|
+
declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, blockUncheck, backgroundColor, }: CheckboxProps) => JSX.Element;
|
|
1076
1785
|
|
|
1077
1786
|
interface RadioGroupInputProps {
|
|
1078
1787
|
name: string;
|
|
@@ -1105,10 +1814,11 @@ interface MinimalisticProps {
|
|
|
1105
1814
|
discount: number;
|
|
1106
1815
|
offText: string;
|
|
1107
1816
|
widthAuto?: boolean;
|
|
1817
|
+
testId?: string;
|
|
1108
1818
|
}
|
|
1109
1819
|
|
|
1110
1820
|
declare const Bundle: {
|
|
1111
|
-
Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, }: MinimalisticProps) => JSX.Element;
|
|
1821
|
+
Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, testId, }: MinimalisticProps) => JSX.Element;
|
|
1112
1822
|
Simple: ({ title, freeShippingText, price, anyQtyForText, backgroundColor, widthAuto, }: SimpleProps) => JSX.Element;
|
|
1113
1823
|
};
|
|
1114
1824
|
|
|
@@ -1116,16 +1826,18 @@ interface CategoryTagProps {
|
|
|
1116
1826
|
text: string;
|
|
1117
1827
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1118
1828
|
className?: string;
|
|
1829
|
+
styledBorder?: boolean;
|
|
1119
1830
|
}
|
|
1120
|
-
declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1831
|
+
declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1121
1832
|
|
|
1122
1833
|
interface SeasonOfferTagProps {
|
|
1123
1834
|
text: string;
|
|
1124
1835
|
backgroundColor?: string;
|
|
1125
1836
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1126
1837
|
className?: string;
|
|
1838
|
+
styledBorder?: boolean;
|
|
1127
1839
|
}
|
|
1128
|
-
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1840
|
+
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1129
1841
|
|
|
1130
1842
|
interface TimeProps {
|
|
1131
1843
|
hours: number;
|
|
@@ -1138,7 +1850,14 @@ interface TimerProps extends TimeProps {
|
|
|
1138
1850
|
}
|
|
1139
1851
|
declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
|
|
1140
1852
|
|
|
1141
|
-
interface
|
|
1853
|
+
interface BaseInputCommonProps {
|
|
1854
|
+
id?: string;
|
|
1855
|
+
value?: string;
|
|
1856
|
+
innerRef?: React.Ref<HTMLInputElement>;
|
|
1857
|
+
onBlur?: () => void;
|
|
1858
|
+
onFocus?: () => void;
|
|
1859
|
+
onChange?: (value: string, event: any) => void;
|
|
1860
|
+
hideClear?: boolean;
|
|
1142
1861
|
defaultValue?: string;
|
|
1143
1862
|
maxLength?: number;
|
|
1144
1863
|
placeholder?: string;
|
|
@@ -1148,16 +1867,13 @@ interface BaseInputCommmonProps {
|
|
|
1148
1867
|
required?: string;
|
|
1149
1868
|
children?: React.ReactNode;
|
|
1150
1869
|
size?: 'regular' | 'small';
|
|
1870
|
+
inlinePlaceholder?: boolean;
|
|
1871
|
+
hasError?: boolean;
|
|
1872
|
+
inputType?: 'text' | 'email' | 'password' | 'url';
|
|
1873
|
+
name?: string;
|
|
1874
|
+
autoFocus?: boolean;
|
|
1151
1875
|
}
|
|
1152
|
-
|
|
1153
|
-
value: string;
|
|
1154
|
-
onChange: (value: string) => void;
|
|
1155
|
-
}
|
|
1156
|
-
interface BaseInputUncontrolled extends BaseInputCommmonProps {
|
|
1157
|
-
value?: never;
|
|
1158
|
-
onChange?: (value: string) => void;
|
|
1159
|
-
}
|
|
1160
|
-
declare type BaseInputProps = BaseInputControlled | BaseInputUncontrolled;
|
|
1876
|
+
declare type BaseInputProps = BaseInputCommonProps;
|
|
1161
1877
|
|
|
1162
1878
|
declare type BasePlusIconProps = BaseInputProps & {
|
|
1163
1879
|
Icon: IconType;
|
|
@@ -1181,6 +1897,7 @@ interface BaseCTAProps {
|
|
|
1181
1897
|
size?: ComponentSize;
|
|
1182
1898
|
text: string;
|
|
1183
1899
|
type?: ButtonType;
|
|
1900
|
+
inline?: boolean;
|
|
1184
1901
|
testId?: string;
|
|
1185
1902
|
}
|
|
1186
1903
|
|
|
@@ -1195,7 +1912,7 @@ declare type CustomProps = BaseInputProps & {
|
|
|
1195
1912
|
};
|
|
1196
1913
|
|
|
1197
1914
|
declare const Input: {
|
|
1198
|
-
Simple: ({ value, onChange,
|
|
1915
|
+
Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, ...rest }: BaseInputCommonProps) => JSX.Element;
|
|
1199
1916
|
Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
|
|
1200
1917
|
SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
|
|
1201
1918
|
SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
|
|
@@ -1255,7 +1972,7 @@ declare type detail = {
|
|
|
1255
1972
|
details: string;
|
|
1256
1973
|
};
|
|
1257
1974
|
interface orderUpdate extends detail {
|
|
1258
|
-
keepMeUpdated
|
|
1975
|
+
keepMeUpdated?: {
|
|
1259
1976
|
title: string;
|
|
1260
1977
|
onClick: () => void;
|
|
1261
1978
|
};
|
|
@@ -1268,9 +1985,9 @@ interface DeliveryDetailsProps {
|
|
|
1268
1985
|
note?: {
|
|
1269
1986
|
importantNoteText: string;
|
|
1270
1987
|
text: string;
|
|
1271
|
-
accentColor
|
|
1272
|
-
backgroundColor
|
|
1273
|
-
color
|
|
1988
|
+
accentColor?: string;
|
|
1989
|
+
backgroundColor?: string;
|
|
1990
|
+
color?: string;
|
|
1274
1991
|
};
|
|
1275
1992
|
}
|
|
1276
1993
|
declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
|
|
@@ -1278,19 +1995,28 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
|
|
|
1278
1995
|
interface ScrollToTopProps {
|
|
1279
1996
|
scrollToTopText: string;
|
|
1280
1997
|
onClick: () => void;
|
|
1998
|
+
fill?: string;
|
|
1281
1999
|
}
|
|
1282
|
-
declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
|
|
2000
|
+
declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
|
|
1283
2001
|
|
|
1284
2002
|
interface OrderBarProps {
|
|
1285
2003
|
message: string;
|
|
2004
|
+
color?: string;
|
|
2005
|
+
}
|
|
2006
|
+
declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
|
|
2007
|
+
|
|
2008
|
+
interface TableProps$1 {
|
|
2009
|
+
headers: string[];
|
|
2010
|
+
data: string[][];
|
|
1286
2011
|
}
|
|
1287
|
-
declare const
|
|
2012
|
+
declare const SizeTable: ({ headers, data }: TableProps$1) => JSX.Element;
|
|
1288
2013
|
|
|
1289
2014
|
interface TableProps {
|
|
1290
2015
|
headers: string[];
|
|
1291
2016
|
data: string[][];
|
|
2017
|
+
newSizeTableCss?: boolean;
|
|
1292
2018
|
}
|
|
1293
|
-
declare const
|
|
2019
|
+
declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
|
|
1294
2020
|
|
|
1295
2021
|
interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
|
|
1296
2022
|
color?: string;
|
|
@@ -1298,6 +2024,7 @@ interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
|
|
|
1298
2024
|
interface ProductOrderItemProps {
|
|
1299
2025
|
title: string;
|
|
1300
2026
|
subtitle: string;
|
|
2027
|
+
className?: string;
|
|
1301
2028
|
image: {
|
|
1302
2029
|
src: string;
|
|
1303
2030
|
alt: string;
|
|
@@ -1308,10 +2035,12 @@ interface ProductOrderItemProps {
|
|
|
1308
2035
|
text: string;
|
|
1309
2036
|
backgroundColor: string;
|
|
1310
2037
|
};
|
|
2038
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1311
2039
|
}
|
|
1312
|
-
declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
|
|
2040
|
+
declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
|
|
1313
2041
|
|
|
1314
|
-
interface ReviewProps {
|
|
2042
|
+
interface ReviewProps$1 {
|
|
2043
|
+
reviewId: string;
|
|
1315
2044
|
reviewerName: string;
|
|
1316
2045
|
date: Date;
|
|
1317
2046
|
rating: number;
|
|
@@ -1321,27 +2050,35 @@ interface ReviewProps {
|
|
|
1321
2050
|
};
|
|
1322
2051
|
title: string;
|
|
1323
2052
|
description: string;
|
|
1324
|
-
|
|
2053
|
+
images?: {
|
|
1325
2054
|
src: string;
|
|
1326
2055
|
alt: string;
|
|
1327
|
-
};
|
|
2056
|
+
}[];
|
|
2057
|
+
reviewVariant?: string;
|
|
2058
|
+
onClickImage?: (image: string) => void;
|
|
2059
|
+
helpfulActionText?: string;
|
|
2060
|
+
helpfulAction?: (id: string) => void;
|
|
2061
|
+
helpfulCount?: number;
|
|
1328
2062
|
}
|
|
1329
|
-
declare const Review: ({ reviewerName, date, rating, stars, title, description,
|
|
2063
|
+
declare const Review$1: ({ reviewId, reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, helpfulActionText, helpfulAction, helpfulCount, }: ReviewProps$1) => JSX.Element;
|
|
1330
2064
|
|
|
1331
2065
|
interface SliderNavigationProps {
|
|
1332
|
-
children: JSX.Element[]
|
|
2066
|
+
children: JSX.Element | JSX.Element[] | StyledComponent<any>;
|
|
1333
2067
|
infinite: boolean;
|
|
1334
2068
|
adaptiveHeight: boolean;
|
|
1335
|
-
dotsSize
|
|
1336
|
-
dotListMarginTop
|
|
2069
|
+
dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
2070
|
+
dotListMarginTop?: number;
|
|
1337
2071
|
initialSlide?: number;
|
|
1338
2072
|
arrows?: {
|
|
1339
2073
|
arrowWidth: number;
|
|
1340
2074
|
arrowHeight: number;
|
|
1341
2075
|
arrowPadding: number;
|
|
1342
2076
|
};
|
|
2077
|
+
dots?: boolean;
|
|
2078
|
+
slidesToShow?: number;
|
|
2079
|
+
speed?: number;
|
|
1343
2080
|
}
|
|
1344
|
-
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2081
|
+
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1345
2082
|
|
|
1346
2083
|
interface DropdownListIconsProps {
|
|
1347
2084
|
items: DropdownListIconsItem[];
|
|
@@ -1395,8 +2132,8 @@ interface ProductItemProps {
|
|
|
1395
2132
|
price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
|
|
1396
2133
|
rating: Pick<RatingProps, 'rating' | 'reviews'>;
|
|
1397
2134
|
tags?: {
|
|
1398
|
-
categoryTagText
|
|
1399
|
-
seasonOfferTagText
|
|
2135
|
+
categoryTagText?: string;
|
|
2136
|
+
seasonOfferTagText?: string;
|
|
1400
2137
|
};
|
|
1401
2138
|
alignName?: 'left' | 'center';
|
|
1402
2139
|
url?: string;
|
|
@@ -1405,6 +2142,18 @@ interface ProductItemProps {
|
|
|
1405
2142
|
|
|
1406
2143
|
interface ProductItemSmallMobileProps extends ProductItemProps {
|
|
1407
2144
|
size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
|
|
2145
|
+
imageHover?: ImageProps;
|
|
2146
|
+
topTag?: JSX.Element;
|
|
2147
|
+
bottomTag?: JSX.Element;
|
|
2148
|
+
onClick?: () => void;
|
|
2149
|
+
priceDisplayType?: 'default' | 'styled';
|
|
2150
|
+
priceAtBottom?: boolean;
|
|
2151
|
+
priceLoading?: boolean;
|
|
2152
|
+
colorPicker?: {
|
|
2153
|
+
display: boolean;
|
|
2154
|
+
position: string;
|
|
2155
|
+
component: JSX.Element | JSX.Element[] | undefined;
|
|
2156
|
+
};
|
|
1408
2157
|
}
|
|
1409
2158
|
|
|
1410
2159
|
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
|
|
@@ -1413,7 +2162,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
|
|
|
1413
2162
|
};
|
|
1414
2163
|
|
|
1415
2164
|
declare const Collection: {
|
|
1416
|
-
ProductItemMobile: ({ title, image, price, rating, size,
|
|
2165
|
+
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;
|
|
1417
2166
|
withProductGrid: typeof withProductGrid;
|
|
1418
2167
|
};
|
|
1419
2168
|
|
|
@@ -1474,10 +2223,13 @@ interface PaginationProps {
|
|
|
1474
2223
|
underlineActive?: boolean;
|
|
1475
2224
|
boldActive?: boolean;
|
|
1476
2225
|
disabled?: boolean;
|
|
2226
|
+
showReducedPages?: boolean;
|
|
1477
2227
|
}
|
|
1478
|
-
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
|
|
2228
|
+
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
|
|
2229
|
+
|
|
2230
|
+
declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
|
|
1479
2231
|
|
|
1480
|
-
declare const Text:
|
|
2232
|
+
declare const Text: ({ variant, children, testId, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1481
2233
|
declare type TextHeroProps = {
|
|
1482
2234
|
variant: 'hero1' | 'hero2' | 'hero3';
|
|
1483
2235
|
weight?: 'heavy' | 'bold' | 'demi';
|
|
@@ -1487,6 +2239,7 @@ declare type TextHeroProps = {
|
|
|
1487
2239
|
wide?: never;
|
|
1488
2240
|
original?: never;
|
|
1489
2241
|
allCaps?: never;
|
|
2242
|
+
href: never;
|
|
1490
2243
|
};
|
|
1491
2244
|
declare type TextDisplayProps = {
|
|
1492
2245
|
variant: 'display1' | 'display2';
|
|
@@ -1497,6 +2250,7 @@ declare type TextDisplayProps = {
|
|
|
1497
2250
|
wide?: never;
|
|
1498
2251
|
original?: never;
|
|
1499
2252
|
allCaps?: never;
|
|
2253
|
+
href: never;
|
|
1500
2254
|
};
|
|
1501
2255
|
declare type TextHeadingProps = {
|
|
1502
2256
|
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
|
|
@@ -1507,6 +2261,7 @@ declare type TextHeadingProps = {
|
|
|
1507
2261
|
wide?: never;
|
|
1508
2262
|
original?: never;
|
|
1509
2263
|
allCaps?: never;
|
|
2264
|
+
href?: never;
|
|
1510
2265
|
};
|
|
1511
2266
|
declare type TextBodyProps = {
|
|
1512
2267
|
variant: 'body';
|
|
@@ -1517,6 +2272,7 @@ declare type TextBodyProps = {
|
|
|
1517
2272
|
wide?: never;
|
|
1518
2273
|
original?: never;
|
|
1519
2274
|
allCaps?: never;
|
|
2275
|
+
href?: never;
|
|
1520
2276
|
};
|
|
1521
2277
|
declare type TextButtonProps = {
|
|
1522
2278
|
variant: 'button';
|
|
@@ -1527,6 +2283,7 @@ declare type TextButtonProps = {
|
|
|
1527
2283
|
wide?: boolean;
|
|
1528
2284
|
original?: never;
|
|
1529
2285
|
allCaps?: never;
|
|
2286
|
+
href?: never;
|
|
1530
2287
|
};
|
|
1531
2288
|
declare type TextPricingProps = {
|
|
1532
2289
|
variant: 'pricing';
|
|
@@ -1537,6 +2294,7 @@ declare type TextPricingProps = {
|
|
|
1537
2294
|
wide?: never;
|
|
1538
2295
|
original?: boolean;
|
|
1539
2296
|
allCaps?: never;
|
|
2297
|
+
href?: never;
|
|
1540
2298
|
};
|
|
1541
2299
|
declare type TextLinkProps = {
|
|
1542
2300
|
variant: 'link';
|
|
@@ -1547,9 +2305,11 @@ declare type TextLinkProps = {
|
|
|
1547
2305
|
wide?: never;
|
|
1548
2306
|
original?: never;
|
|
1549
2307
|
allCaps?: never;
|
|
1550
|
-
|
|
2308
|
+
href?: string;
|
|
2309
|
+
};
|
|
1551
2310
|
declare type TextLabelProps = {
|
|
1552
2311
|
variant: 'label';
|
|
2312
|
+
color?: string;
|
|
1553
2313
|
weight?: 'regular' | 'demi';
|
|
1554
2314
|
size?: 'regular' | 'small';
|
|
1555
2315
|
underline?: never;
|
|
@@ -1557,6 +2317,7 @@ declare type TextLabelProps = {
|
|
|
1557
2317
|
wide?: never;
|
|
1558
2318
|
original?: never;
|
|
1559
2319
|
allCaps?: never;
|
|
2320
|
+
href?: never;
|
|
1560
2321
|
} & LabelHTMLAttributes<'label'>;
|
|
1561
2322
|
declare type TextTagProps = {
|
|
1562
2323
|
variant: 'tag';
|
|
@@ -1567,10 +2328,13 @@ declare type TextTagProps = {
|
|
|
1567
2328
|
wide?: never;
|
|
1568
2329
|
original?: never;
|
|
1569
2330
|
allCaps?: boolean;
|
|
2331
|
+
href?: never;
|
|
1570
2332
|
};
|
|
1571
|
-
declare type TextProps = AriaAttributes & {
|
|
2333
|
+
declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
|
|
2334
|
+
children: ReactNode;
|
|
1572
2335
|
style?: CSSProperties;
|
|
1573
2336
|
className?: string;
|
|
2337
|
+
testId?: string;
|
|
1574
2338
|
} & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
|
|
1575
2339
|
|
|
1576
2340
|
interface SearchBarProps {
|
|
@@ -1578,20 +2342,29 @@ interface SearchBarProps {
|
|
|
1578
2342
|
resultOptions: SearchBarOptionItem[];
|
|
1579
2343
|
onChange: (text: string) => void;
|
|
1580
2344
|
onSearch: (term: string) => void;
|
|
2345
|
+
onClose: () => void;
|
|
1581
2346
|
resultsPanelDataTestId?: string;
|
|
1582
2347
|
allResults?: number;
|
|
2348
|
+
initialTerm?: string;
|
|
2349
|
+
shouldClear?: boolean;
|
|
2350
|
+
isBlogSearchBar?: boolean;
|
|
2351
|
+
ariaLabel?: string;
|
|
2352
|
+
placeholder?: string;
|
|
2353
|
+
id?: string;
|
|
2354
|
+
autoComplete?: string;
|
|
1583
2355
|
}
|
|
1584
|
-
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, resultsPanelDataTestId, allResults, }: SearchBarProps) => JSX.Element;
|
|
2356
|
+
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
|
|
1585
2357
|
|
|
1586
|
-
interface ProductGalleryMobileProps {
|
|
2358
|
+
interface ProductGalleryMobileProps$1 {
|
|
1587
2359
|
images: ImageType[];
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
2360
|
+
customClick?: boolean;
|
|
2361
|
+
topTag?: JSX.Element;
|
|
2362
|
+
bottomTag?: JSX.Element;
|
|
1591
2363
|
productImageDataTestId?: string;
|
|
1592
|
-
|
|
2364
|
+
borderRadiusVariant?: boolean;
|
|
2365
|
+
selectedValue?: ImageType;
|
|
1593
2366
|
}
|
|
1594
|
-
declare const ProductGalleryMobile: ({ images,
|
|
2367
|
+
declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps$1) => JSX.Element;
|
|
1595
2368
|
|
|
1596
2369
|
interface RadioProps {
|
|
1597
2370
|
name: string;
|
|
@@ -1608,6 +2381,8 @@ declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange
|
|
|
1608
2381
|
declare type PortalProps = {
|
|
1609
2382
|
id: string;
|
|
1610
2383
|
className?: string;
|
|
2384
|
+
overflow?: boolean;
|
|
2385
|
+
style?: CSSProperties;
|
|
1611
2386
|
};
|
|
1612
2387
|
declare const Portal: FC<PortalProps>;
|
|
1613
2388
|
|
|
@@ -1615,10 +2390,12 @@ declare type ModalProps = {
|
|
|
1615
2390
|
id: string;
|
|
1616
2391
|
dismissable?: boolean;
|
|
1617
2392
|
maxFullScreen?: boolean;
|
|
2393
|
+
padding?: string;
|
|
1618
2394
|
};
|
|
1619
2395
|
interface ContainerProps {
|
|
1620
2396
|
maxFullScreen: boolean;
|
|
1621
2397
|
opened?: boolean;
|
|
2398
|
+
padding?: string;
|
|
1622
2399
|
}
|
|
1623
2400
|
declare const Overlay: _emotion_styled.StyledComponent<{
|
|
1624
2401
|
theme?: _emotion_react.Theme | undefined;
|
|
@@ -1670,8 +2447,9 @@ declare type QuantityPickerPropsUncontrolled = {
|
|
|
1670
2447
|
declare type QuantityPickerProps = {
|
|
1671
2448
|
initialValue?: number;
|
|
1672
2449
|
maxValue?: number;
|
|
2450
|
+
testId?: string;
|
|
1673
2451
|
} & (QuantityPickerPropsControlled | QuantityPickerPropsUncontrolled);
|
|
1674
|
-
declare const QuantityPicker: ({ initialValue, maxValue, value, onChange, }: QuantityPickerProps) => JSX.Element;
|
|
2452
|
+
declare const QuantityPicker: ({ initialValue, maxValue, value, testId, onChange, }: QuantityPickerProps) => JSX.Element;
|
|
1675
2453
|
|
|
1676
2454
|
declare type SpacingProps = {
|
|
1677
2455
|
size: number;
|
|
@@ -1696,12 +2474,13 @@ interface PackSelectorProps {
|
|
|
1696
2474
|
packs: PackOption[];
|
|
1697
2475
|
selectedValue: PackOption;
|
|
1698
2476
|
onChange: (size: PackOption) => void;
|
|
2477
|
+
currencyCode?: string;
|
|
1699
2478
|
}
|
|
1700
2479
|
declare const PackSelector: FC<PackSelectorProps>;
|
|
1701
2480
|
|
|
1702
2481
|
interface FiltersProps {
|
|
1703
|
-
|
|
1704
|
-
onChange: (
|
|
2482
|
+
values: Filter[];
|
|
2483
|
+
onChange: (newValues: Filter[], filtersState?: FilterChange) => void;
|
|
1705
2484
|
tagsColor?: string;
|
|
1706
2485
|
filterByText: string;
|
|
1707
2486
|
clearAllText: string;
|
|
@@ -1710,8 +2489,9 @@ interface FiltersProps {
|
|
|
1710
2489
|
applyText: string;
|
|
1711
2490
|
mobileBackArrowClick: () => void;
|
|
1712
2491
|
mobileApplyButtonClick: () => void;
|
|
2492
|
+
onResetValues: () => void;
|
|
1713
2493
|
}
|
|
1714
|
-
declare const Filters: ({
|
|
2494
|
+
declare const Filters: ({ values, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, onResetValues, }: FiltersProps) => JSX.Element;
|
|
1715
2495
|
|
|
1716
2496
|
interface SearchNavigationProps {
|
|
1717
2497
|
returnText?: string;
|
|
@@ -1721,6 +2501,169 @@ interface SearchNavigationProps {
|
|
|
1721
2501
|
}
|
|
1722
2502
|
declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
|
|
1723
2503
|
|
|
2504
|
+
interface TabProps$1 {
|
|
2505
|
+
title: string;
|
|
2506
|
+
content: ReactNode;
|
|
2507
|
+
}
|
|
2508
|
+
interface TabsProps {
|
|
2509
|
+
backgroundColor?: string;
|
|
2510
|
+
initialSelected?: string;
|
|
2511
|
+
tabsMaxWidth?: string;
|
|
2512
|
+
tabs: TabProps$1[];
|
|
2513
|
+
}
|
|
2514
|
+
declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
|
|
2515
|
+
|
|
2516
|
+
interface TabProps {
|
|
2517
|
+
title: string;
|
|
2518
|
+
titleSize?: string;
|
|
2519
|
+
selectedTitleWeight?: number;
|
|
2520
|
+
height?: string;
|
|
2521
|
+
selected?: boolean;
|
|
2522
|
+
color?: string;
|
|
2523
|
+
tabsMaxWidth?: string;
|
|
2524
|
+
onClick: (clickedTab: string) => void;
|
|
2525
|
+
}
|
|
2526
|
+
declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
|
|
2527
|
+
|
|
2528
|
+
interface IconList {
|
|
2529
|
+
backgroundColor: string;
|
|
2530
|
+
iconColor: string;
|
|
2531
|
+
iconName: string;
|
|
2532
|
+
iconTitle: string;
|
|
2533
|
+
iconSizeDesktop?: number;
|
|
2534
|
+
iconSizeMobile?: number;
|
|
2535
|
+
iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
2536
|
+
iconTitleStyle?: string;
|
|
2537
|
+
iconStyle?: string;
|
|
2538
|
+
isTitleInnerHtml?: boolean;
|
|
2539
|
+
}
|
|
2540
|
+
declare const IconsWithTitle: ({ iconName, iconTitle, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconList) => JSX.Element | null;
|
|
2541
|
+
|
|
2542
|
+
interface NoteProps {
|
|
2543
|
+
accentColor?: string;
|
|
2544
|
+
color?: string;
|
|
2545
|
+
backgroundColor?: string;
|
|
2546
|
+
importantNoteText: string;
|
|
2547
|
+
text: string;
|
|
2548
|
+
}
|
|
2549
|
+
declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
|
|
2550
|
+
|
|
2551
|
+
interface TextWithImageProps {
|
|
2552
|
+
title: string;
|
|
2553
|
+
text?: string;
|
|
2554
|
+
children?: ReactNode;
|
|
2555
|
+
buttomText: string;
|
|
2556
|
+
backgroundColor: string;
|
|
2557
|
+
imageLeftSide?: boolean;
|
|
2558
|
+
URLLink?: string;
|
|
2559
|
+
onButtonClick?: () => void;
|
|
2560
|
+
isRedirectionURL: boolean;
|
|
2561
|
+
btnBGColor?: string;
|
|
2562
|
+
btnHoverBGColor?: string;
|
|
2563
|
+
imgVideo: imageVideoProps;
|
|
2564
|
+
contentAfterButton?: React.ReactNode;
|
|
2565
|
+
titleStyle?: React.CSSProperties;
|
|
2566
|
+
textStyle?: React.CSSProperties;
|
|
2567
|
+
buttonWideOnMobile?: boolean;
|
|
2568
|
+
}
|
|
2569
|
+
declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2570
|
+
|
|
2571
|
+
interface AccordionOptionsProps {
|
|
2572
|
+
titleColor: string;
|
|
2573
|
+
accordions: AccordionProps[];
|
|
2574
|
+
}
|
|
2575
|
+
declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
|
|
2576
|
+
|
|
2577
|
+
interface ShortBannerProps {
|
|
2578
|
+
title: string;
|
|
2579
|
+
bannerText: string;
|
|
2580
|
+
backgroundColor: string;
|
|
2581
|
+
alignCenter?: boolean;
|
|
2582
|
+
widthAuto?: boolean;
|
|
2583
|
+
textColor: string;
|
|
2584
|
+
}
|
|
2585
|
+
declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
|
|
2586
|
+
|
|
2587
|
+
interface BeforeAfterCardProps {
|
|
2588
|
+
name: string;
|
|
2589
|
+
age: string;
|
|
2590
|
+
months: string;
|
|
2591
|
+
beforeImage: string;
|
|
2592
|
+
afterImage: string;
|
|
2593
|
+
alignCenter?: boolean;
|
|
2594
|
+
imageBorderRadius?: string;
|
|
2595
|
+
size?: ComponentSize;
|
|
2596
|
+
}
|
|
2597
|
+
declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
|
|
2598
|
+
|
|
2599
|
+
interface ImageCardWithDescriptionProps {
|
|
2600
|
+
image: string;
|
|
2601
|
+
title?: string;
|
|
2602
|
+
description?: string;
|
|
2603
|
+
titlePosition?: 'center' | 'left';
|
|
2604
|
+
}
|
|
2605
|
+
declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
|
|
2606
|
+
|
|
2607
|
+
interface Checkpoint {
|
|
2608
|
+
day: string;
|
|
2609
|
+
date: string;
|
|
2610
|
+
statusMessage: string;
|
|
2611
|
+
}
|
|
2612
|
+
interface TrackingProgressProps {
|
|
2613
|
+
checkPoints: Checkpoint[];
|
|
2614
|
+
amountOfCheckPoints: number;
|
|
2615
|
+
}
|
|
2616
|
+
declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
|
|
2617
|
+
|
|
2618
|
+
interface ReviewsHeaderProps {
|
|
2619
|
+
title?: string;
|
|
2620
|
+
rating: number;
|
|
2621
|
+
reviews: number;
|
|
2622
|
+
reviewsText: string;
|
|
2623
|
+
reviewsSummary: string[];
|
|
2624
|
+
onClickReview: (reveiw: string) => void;
|
|
2625
|
+
}
|
|
2626
|
+
declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
|
|
2627
|
+
|
|
2628
|
+
interface ReviewProps {
|
|
2629
|
+
reviewId: string;
|
|
2630
|
+
reviewerName: string;
|
|
2631
|
+
date: Date;
|
|
2632
|
+
rating: number;
|
|
2633
|
+
stars: {
|
|
2634
|
+
color: string;
|
|
2635
|
+
size: ComponentSize.Medium | ComponentSize.Small;
|
|
2636
|
+
};
|
|
2637
|
+
title: string;
|
|
2638
|
+
description: string;
|
|
2639
|
+
image?: {
|
|
2640
|
+
src: string;
|
|
2641
|
+
alt: string;
|
|
2642
|
+
};
|
|
2643
|
+
modalId: string;
|
|
2644
|
+
maxFullScreen?: boolean;
|
|
2645
|
+
verified?: boolean;
|
|
2646
|
+
productImage?: string;
|
|
2647
|
+
productTitle?: string;
|
|
2648
|
+
productLink?: string;
|
|
2649
|
+
helpfulCount?: number;
|
|
2650
|
+
helpfulAction?: (id: string) => void;
|
|
2651
|
+
notHelpfulCount?: number;
|
|
2652
|
+
notHelpfulAction?: (id: string) => void;
|
|
2653
|
+
}
|
|
2654
|
+
declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps) => JSX.Element;
|
|
2655
|
+
|
|
2656
|
+
interface ProductGalleryMobileProps {
|
|
2657
|
+
images: ImageType[];
|
|
2658
|
+
selectedValue?: ImageType;
|
|
2659
|
+
topTag?: JSX.Element;
|
|
2660
|
+
bottomTag?: JSX.Element;
|
|
2661
|
+
productImageDataTestId?: string;
|
|
2662
|
+
slideDotsDataTestId?: string;
|
|
2663
|
+
borderRadiusVariant?: boolean;
|
|
2664
|
+
}
|
|
2665
|
+
declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
|
|
2666
|
+
|
|
1724
2667
|
declare global {
|
|
1725
2668
|
interface Events {
|
|
1726
2669
|
modal: {
|
|
@@ -1760,4 +2703,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1760
2703
|
currency?: string | undefined;
|
|
1761
2704
|
}) => string;
|
|
1762
2705
|
|
|
1763
|
-
export { Accordion, AmazonButton, AssetsProvider, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection,
|
|
2706
|
+
export { 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, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageCardWithDescription, ImageType, Input, InputValidationType, Modal, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, 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, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|