@trafilea/afrodita-components 5.0.0-beta.17 → 5.0.0-beta.171
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 +3 -1
- package/build/index.d.ts +980 -79
- package/build/index.esm.css +3 -1
- package/build/index.esm.js +7644 -4834
- package/build/index.esm.js.map +1 -1
- package/build/index.js +7662 -4835
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.d.ts +605 -0
- package/build/theme/revel.theme.js +949 -0
- package/build/theme/shapermint.theme.d.ts +189 -0
- package/build/theme/shapermint.theme.js +218 -1
- package/build/theme/truekind.theme.d.ts +189 -0
- package/build/theme/truekind.theme.js +209 -0
- package/package.json +4 -3
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,18 @@ 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
|
+
items: Array<{
|
|
109
|
+
label: string;
|
|
110
|
+
checked?: boolean;
|
|
111
|
+
isLinkItem?: boolean;
|
|
112
|
+
link?: string;
|
|
113
|
+
blockUncheck?: boolean;
|
|
114
|
+
}>;
|
|
115
|
+
showInMobile: boolean;
|
|
104
116
|
};
|
|
105
117
|
declare type FilterChange = {
|
|
106
118
|
sectionIndex: number;
|
|
@@ -111,18 +123,45 @@ interface SearchBarOptionItem {
|
|
|
111
123
|
src: string;
|
|
112
124
|
price: string;
|
|
113
125
|
title: string;
|
|
126
|
+
optionUrl: string;
|
|
127
|
+
}
|
|
128
|
+
interface imageVideoProps {
|
|
129
|
+
imageLink: string;
|
|
130
|
+
isVideo?: {
|
|
131
|
+
videoTitle?: string;
|
|
132
|
+
videoSubtitle?: string;
|
|
133
|
+
textColor?: string;
|
|
134
|
+
videoLink?: string;
|
|
135
|
+
};
|
|
136
|
+
isMobile?: boolean;
|
|
114
137
|
}
|
|
115
138
|
|
|
116
139
|
declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
117
140
|
|
|
118
141
|
declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
119
142
|
|
|
143
|
+
declare const Smiling: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
144
|
+
|
|
145
|
+
declare const BulletOne: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
146
|
+
|
|
147
|
+
declare const BulletTwo: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
148
|
+
|
|
149
|
+
declare const BulletThree: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
150
|
+
|
|
120
151
|
declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
|
|
121
152
|
declare const Custom_Frown: typeof Frown;
|
|
153
|
+
declare const Custom_Smiling: typeof Smiling;
|
|
154
|
+
declare const Custom_BulletOne: typeof BulletOne;
|
|
155
|
+
declare const Custom_BulletTwo: typeof BulletTwo;
|
|
156
|
+
declare const Custom_BulletThree: typeof BulletThree;
|
|
122
157
|
declare namespace Custom {
|
|
123
158
|
export {
|
|
124
159
|
Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
|
|
125
160
|
Custom_Frown as Frown,
|
|
161
|
+
Custom_Smiling as Smiling,
|
|
162
|
+
Custom_BulletOne as BulletOne,
|
|
163
|
+
Custom_BulletTwo as BulletTwo,
|
|
164
|
+
Custom_BulletThree as BulletThree,
|
|
126
165
|
};
|
|
127
166
|
}
|
|
128
167
|
|
|
@@ -143,6 +182,71 @@ declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
143
182
|
|
|
144
183
|
declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
145
184
|
|
|
185
|
+
declare const Warning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
186
|
+
|
|
187
|
+
declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
188
|
+
|
|
189
|
+
declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
190
|
+
|
|
191
|
+
declare const Add: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
192
|
+
|
|
193
|
+
interface CopyProps extends IconProps {
|
|
194
|
+
stroke?: string;
|
|
195
|
+
}
|
|
196
|
+
declare const Copy: ({ height, width, fill, stroke }: CopyProps) => JSX.Element;
|
|
197
|
+
|
|
198
|
+
declare const CheckboxEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
199
|
+
|
|
200
|
+
declare const CheckboxLight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
201
|
+
|
|
202
|
+
declare const CheckboxSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
203
|
+
|
|
204
|
+
declare const Like: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
205
|
+
|
|
206
|
+
declare const LikeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
207
|
+
|
|
208
|
+
declare const NotAllowed: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
209
|
+
|
|
210
|
+
declare const RadioEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
211
|
+
|
|
212
|
+
declare const RadioFilled: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
213
|
+
|
|
214
|
+
declare const Minus$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
215
|
+
|
|
216
|
+
declare const SettingsSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
217
|
+
|
|
218
|
+
declare const Settings: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
219
|
+
|
|
220
|
+
declare const Share: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
221
|
+
|
|
222
|
+
declare const CircleCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
223
|
+
|
|
224
|
+
declare const CircleClear: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
225
|
+
|
|
226
|
+
declare const CircleInfo: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
227
|
+
|
|
228
|
+
declare const CircleMinus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
229
|
+
|
|
230
|
+
declare const CirclePlus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
231
|
+
|
|
232
|
+
declare const CircleQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
233
|
+
|
|
234
|
+
declare const CircleWarning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
235
|
+
|
|
236
|
+
declare const CircleSolidCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
237
|
+
|
|
238
|
+
declare const CircleSolidClear: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
239
|
+
|
|
240
|
+
declare const CircleSolidMinus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
241
|
+
|
|
242
|
+
declare const CircleSolidPlus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
243
|
+
|
|
244
|
+
declare const CircleSolidQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
245
|
+
|
|
246
|
+
declare const CircleSolidWarning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
247
|
+
|
|
248
|
+
declare const CircleSolidStyledCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
249
|
+
|
|
146
250
|
declare const Actions_Check: typeof Check;
|
|
147
251
|
declare const Actions_ClearLight: typeof ClearLight;
|
|
148
252
|
declare const Actions_LightExclamation: typeof LightExclamation;
|
|
@@ -151,6 +255,37 @@ declare const Actions_LightCheck: typeof LightCheck;
|
|
|
151
255
|
declare const Actions_Question: typeof Question;
|
|
152
256
|
declare const Actions_Close: typeof Close;
|
|
153
257
|
declare const Actions_Trash: typeof Trash;
|
|
258
|
+
declare const Actions_Warning: typeof Warning;
|
|
259
|
+
declare const Actions_Edit: typeof Edit;
|
|
260
|
+
declare const Actions_SignOut: typeof SignOut;
|
|
261
|
+
declare const Actions_Add: typeof Add;
|
|
262
|
+
type Actions_CopyProps = CopyProps;
|
|
263
|
+
declare const Actions_Copy: typeof Copy;
|
|
264
|
+
declare const Actions_CheckboxEmpty: typeof CheckboxEmpty;
|
|
265
|
+
declare const Actions_CheckboxLight: typeof CheckboxLight;
|
|
266
|
+
declare const Actions_CheckboxSolid: typeof CheckboxSolid;
|
|
267
|
+
declare const Actions_Like: typeof Like;
|
|
268
|
+
declare const Actions_LikeSolid: typeof LikeSolid;
|
|
269
|
+
declare const Actions_NotAllowed: typeof NotAllowed;
|
|
270
|
+
declare const Actions_RadioEmpty: typeof RadioEmpty;
|
|
271
|
+
declare const Actions_RadioFilled: typeof RadioFilled;
|
|
272
|
+
declare const Actions_SettingsSolid: typeof SettingsSolid;
|
|
273
|
+
declare const Actions_Settings: typeof Settings;
|
|
274
|
+
declare const Actions_Share: typeof Share;
|
|
275
|
+
declare const Actions_CircleCheck: typeof CircleCheck;
|
|
276
|
+
declare const Actions_CircleClear: typeof CircleClear;
|
|
277
|
+
declare const Actions_CircleInfo: typeof CircleInfo;
|
|
278
|
+
declare const Actions_CircleMinus: typeof CircleMinus;
|
|
279
|
+
declare const Actions_CirclePlus: typeof CirclePlus;
|
|
280
|
+
declare const Actions_CircleQuestion: typeof CircleQuestion;
|
|
281
|
+
declare const Actions_CircleWarning: typeof CircleWarning;
|
|
282
|
+
declare const Actions_CircleSolidCheck: typeof CircleSolidCheck;
|
|
283
|
+
declare const Actions_CircleSolidClear: typeof CircleSolidClear;
|
|
284
|
+
declare const Actions_CircleSolidMinus: typeof CircleSolidMinus;
|
|
285
|
+
declare const Actions_CircleSolidPlus: typeof CircleSolidPlus;
|
|
286
|
+
declare const Actions_CircleSolidQuestion: typeof CircleSolidQuestion;
|
|
287
|
+
declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
|
|
288
|
+
declare const Actions_CircleSolidStyledCheck: typeof CircleSolidStyledCheck;
|
|
154
289
|
declare namespace Actions {
|
|
155
290
|
export {
|
|
156
291
|
Actions_Check as Check,
|
|
@@ -161,6 +296,38 @@ declare namespace Actions {
|
|
|
161
296
|
Actions_Question as Question,
|
|
162
297
|
Actions_Close as Close,
|
|
163
298
|
Actions_Trash as Trash,
|
|
299
|
+
Actions_Warning as Warning,
|
|
300
|
+
Actions_Edit as Edit,
|
|
301
|
+
Actions_SignOut as SignOut,
|
|
302
|
+
Actions_Add as Add,
|
|
303
|
+
Actions_CopyProps as CopyProps,
|
|
304
|
+
Actions_Copy as Copy,
|
|
305
|
+
Actions_CheckboxEmpty as CheckboxEmpty,
|
|
306
|
+
Actions_CheckboxLight as CheckboxLight,
|
|
307
|
+
Actions_CheckboxSolid as CheckboxSolid,
|
|
308
|
+
Actions_Like as Like,
|
|
309
|
+
Actions_LikeSolid as LikeSolid,
|
|
310
|
+
Actions_NotAllowed as NotAllowed,
|
|
311
|
+
Actions_RadioEmpty as RadioEmpty,
|
|
312
|
+
Actions_RadioFilled as RadioFilled,
|
|
313
|
+
Minus$1 as Minus,
|
|
314
|
+
Actions_SettingsSolid as SettingsSolid,
|
|
315
|
+
Actions_Settings as Settings,
|
|
316
|
+
Actions_Share as Share,
|
|
317
|
+
Actions_CircleCheck as CircleCheck,
|
|
318
|
+
Actions_CircleClear as CircleClear,
|
|
319
|
+
Actions_CircleInfo as CircleInfo,
|
|
320
|
+
Actions_CircleMinus as CircleMinus,
|
|
321
|
+
Actions_CirclePlus as CirclePlus,
|
|
322
|
+
Actions_CircleQuestion as CircleQuestion,
|
|
323
|
+
Actions_CircleWarning as CircleWarning,
|
|
324
|
+
Actions_CircleSolidCheck as CircleSolidCheck,
|
|
325
|
+
Actions_CircleSolidClear as CircleSolidClear,
|
|
326
|
+
Actions_CircleSolidMinus as CircleSolidMinus,
|
|
327
|
+
Actions_CircleSolidPlus as CircleSolidPlus,
|
|
328
|
+
Actions_CircleSolidQuestion as CircleSolidQuestion,
|
|
329
|
+
Actions_CircleSolidWarning as CircleSolidWarning,
|
|
330
|
+
Actions_CircleSolidStyledCheck as CircleSolidStyledCheck,
|
|
164
331
|
};
|
|
165
332
|
}
|
|
166
333
|
|
|
@@ -169,31 +336,78 @@ declare const FitPredictor$1: ({ height, width, fill }: IconProps) => JSX.Elemen
|
|
|
169
336
|
interface LoadingProps extends IconProps {
|
|
170
337
|
backgroundColor: string;
|
|
171
338
|
}
|
|
172
|
-
declare const Loading: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
339
|
+
declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
173
340
|
|
|
174
341
|
declare const Shapermint: ({ height, width }: IconProps) => JSX.Element;
|
|
175
342
|
|
|
176
343
|
declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
|
|
177
344
|
|
|
345
|
+
declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
|
|
346
|
+
|
|
347
|
+
declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
348
|
+
|
|
349
|
+
declare const Chat: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
350
|
+
|
|
351
|
+
declare const Email: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
352
|
+
|
|
353
|
+
declare const CallUs: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
354
|
+
|
|
355
|
+
declare const SignForm: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
356
|
+
|
|
357
|
+
declare const QrCode: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
358
|
+
|
|
359
|
+
declare const FreeExchange: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
360
|
+
|
|
361
|
+
declare const ShopNow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
362
|
+
|
|
363
|
+
declare const HasselFreeReturns: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
364
|
+
|
|
365
|
+
declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
366
|
+
|
|
367
|
+
declare const FitGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
368
|
+
|
|
178
369
|
type Other_LoadingProps = LoadingProps;
|
|
179
|
-
declare const Other_Loading: typeof Loading;
|
|
180
370
|
declare const Other_Shapermint: typeof Shapermint;
|
|
181
371
|
declare const Other_McAfee: typeof McAfee;
|
|
372
|
+
declare const Other_GetDiscount: typeof GetDiscount;
|
|
373
|
+
declare const Other_ShapermintLogo: typeof ShapermintLogo;
|
|
374
|
+
declare const Other_Chat: typeof Chat;
|
|
375
|
+
declare const Other_Email: typeof Email;
|
|
376
|
+
declare const Other_CallUs: typeof CallUs;
|
|
377
|
+
declare const Other_SignForm: typeof SignForm;
|
|
378
|
+
declare const Other_QrCode: typeof QrCode;
|
|
379
|
+
declare const Other_FreeExchange: typeof FreeExchange;
|
|
380
|
+
declare const Other_ShopNow: typeof ShopNow;
|
|
381
|
+
declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
|
|
382
|
+
declare const Other_Play: typeof Play;
|
|
383
|
+
declare const Other_FitGuarantee: typeof FitGuarantee;
|
|
182
384
|
declare namespace Other {
|
|
183
385
|
export {
|
|
184
386
|
FitPredictor$1 as FitPredictor,
|
|
185
387
|
Other_LoadingProps as LoadingProps,
|
|
186
|
-
|
|
388
|
+
Loading$1 as Loading,
|
|
187
389
|
Other_Shapermint as Shapermint,
|
|
188
390
|
Other_McAfee as McAfee,
|
|
391
|
+
Other_GetDiscount as GetDiscount,
|
|
392
|
+
Other_ShapermintLogo as ShapermintLogo,
|
|
393
|
+
Other_Chat as Chat,
|
|
394
|
+
Other_Email as Email,
|
|
395
|
+
Other_CallUs as CallUs,
|
|
396
|
+
Other_SignForm as SignForm,
|
|
397
|
+
Other_QrCode as QrCode,
|
|
398
|
+
Other_FreeExchange as FreeExchange,
|
|
399
|
+
Other_ShopNow as ShopNow,
|
|
400
|
+
Other_HasselFreeReturns as HasselFreeReturns,
|
|
401
|
+
Other_Play as Play,
|
|
402
|
+
Other_FitGuarantee as FitGuarantee,
|
|
189
403
|
};
|
|
190
404
|
}
|
|
191
405
|
|
|
192
406
|
declare const ChevronDown: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
193
407
|
|
|
194
|
-
declare const ChevronLeft: ({ height, width, fill, opacity }: IconWithOpacityProps) => JSX.Element;
|
|
408
|
+
declare const ChevronLeft: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
|
|
195
409
|
|
|
196
|
-
declare const ChevronRight: ({ height, width, fill, opacity }: IconWithOpacityProps) => JSX.Element;
|
|
410
|
+
declare const ChevronRight: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
|
|
197
411
|
|
|
198
412
|
declare const ChevronRightVariant: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
199
413
|
|
|
@@ -203,6 +417,28 @@ declare const ChevronUpSolid: ({ height, width, fill }: IconProps) => JSX.Elemen
|
|
|
203
417
|
|
|
204
418
|
declare const CircleUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
205
419
|
|
|
420
|
+
declare const CircleChevronLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
421
|
+
|
|
422
|
+
declare const CircleChevronRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
423
|
+
|
|
424
|
+
declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
425
|
+
|
|
426
|
+
declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
427
|
+
|
|
428
|
+
declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
429
|
+
|
|
430
|
+
declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
431
|
+
|
|
432
|
+
declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
433
|
+
|
|
434
|
+
declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
435
|
+
|
|
436
|
+
declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
437
|
+
|
|
438
|
+
declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
439
|
+
|
|
440
|
+
declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
441
|
+
|
|
206
442
|
declare const Arrows_ChevronDown: typeof ChevronDown;
|
|
207
443
|
declare const Arrows_ChevronLeft: typeof ChevronLeft;
|
|
208
444
|
declare const Arrows_ChevronRight: typeof ChevronRight;
|
|
@@ -210,6 +446,17 @@ declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
|
|
|
210
446
|
declare const Arrows_ChevronUp: typeof ChevronUp;
|
|
211
447
|
declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
|
|
212
448
|
declare const Arrows_CircleUp: typeof CircleUp;
|
|
449
|
+
declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
|
|
450
|
+
declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
|
|
451
|
+
declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
|
|
452
|
+
declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
|
|
453
|
+
declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
|
|
454
|
+
declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
|
|
455
|
+
declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
|
|
456
|
+
declare const Arrows_CircleLineUp: typeof CircleLineUp;
|
|
457
|
+
declare const Arrows_CircleLineDown: typeof CircleLineDown;
|
|
458
|
+
declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
|
|
459
|
+
declare const Arrows_CircleLineRight: typeof CircleLineRight;
|
|
213
460
|
declare namespace Arrows {
|
|
214
461
|
export {
|
|
215
462
|
Arrows_ChevronDown as ChevronDown,
|
|
@@ -219,6 +466,17 @@ declare namespace Arrows {
|
|
|
219
466
|
Arrows_ChevronUp as ChevronUp,
|
|
220
467
|
Arrows_ChevronUpSolid as ChevronUpSolid,
|
|
221
468
|
Arrows_CircleUp as CircleUp,
|
|
469
|
+
Arrows_CircleChevronLeft as CircleChevronLeft,
|
|
470
|
+
Arrows_CircleChevronRight as CircleChevronRight,
|
|
471
|
+
Arrows_CircleChevronDown as CircleChevronDown,
|
|
472
|
+
Arrows_CircleChevronUp as CircleChevronUp,
|
|
473
|
+
Arrows_ChevronDownVariant as ChevronDownVariant,
|
|
474
|
+
Arrows_ChevronUpVariant as ChevronUpVariant,
|
|
475
|
+
Arrows_ChevronLeftVariant as ChevronLeftVariant,
|
|
476
|
+
Arrows_CircleLineUp as CircleLineUp,
|
|
477
|
+
Arrows_CircleLineDown as CircleLineDown,
|
|
478
|
+
Arrows_CircleLineLeft as CircleLineLeft,
|
|
479
|
+
Arrows_CircleLineRight as CircleLineRight,
|
|
222
480
|
};
|
|
223
481
|
}
|
|
224
482
|
|
|
@@ -242,6 +500,18 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
|
|
|
242
500
|
|
|
243
501
|
declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
244
502
|
|
|
503
|
+
declare const LightBulb$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
504
|
+
|
|
505
|
+
declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
506
|
+
|
|
507
|
+
declare const CircleNumber: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
508
|
+
|
|
509
|
+
declare const SizeEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
510
|
+
|
|
511
|
+
declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
512
|
+
|
|
513
|
+
declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
514
|
+
|
|
245
515
|
declare const PDP_Clock: typeof Clock;
|
|
246
516
|
declare const PDP_FlagUSA: typeof FlagUSA;
|
|
247
517
|
declare const PDP_Minus: typeof Minus;
|
|
@@ -252,6 +522,11 @@ declare const PDP_StarEmpty: typeof StarEmpty;
|
|
|
252
522
|
declare const PDP_StarHalf: typeof StarHalf;
|
|
253
523
|
declare const PDP_Stopwatch: typeof Stopwatch;
|
|
254
524
|
declare const PDP_Shipping: typeof Shipping;
|
|
525
|
+
declare const PDP_ErrorCross: typeof ErrorCross;
|
|
526
|
+
declare const PDP_CircleNumber: typeof CircleNumber;
|
|
527
|
+
declare const PDP_SizeEmpty: typeof SizeEmpty;
|
|
528
|
+
declare const PDP_PlayMini: typeof PlayMini;
|
|
529
|
+
declare const PDP_ShippingEmpty: typeof ShippingEmpty;
|
|
255
530
|
declare namespace PDP {
|
|
256
531
|
export {
|
|
257
532
|
PDP_Clock as Clock,
|
|
@@ -264,6 +539,12 @@ declare namespace PDP {
|
|
|
264
539
|
PDP_StarHalf as StarHalf,
|
|
265
540
|
PDP_Stopwatch as Stopwatch,
|
|
266
541
|
PDP_Shipping as Shipping,
|
|
542
|
+
LightBulb$1 as LightBulb,
|
|
543
|
+
PDP_ErrorCross as ErrorCross,
|
|
544
|
+
PDP_CircleNumber as CircleNumber,
|
|
545
|
+
PDP_SizeEmpty as SizeEmpty,
|
|
546
|
+
PDP_PlayMini as PlayMini,
|
|
547
|
+
PDP_ShippingEmpty as ShippingEmpty,
|
|
267
548
|
};
|
|
268
549
|
}
|
|
269
550
|
|
|
@@ -281,6 +562,8 @@ declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
281
562
|
|
|
282
563
|
declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
283
564
|
|
|
565
|
+
declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
566
|
+
|
|
284
567
|
declare const SocialMedia_Facebook: typeof Facebook;
|
|
285
568
|
declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
|
|
286
569
|
declare const SocialMedia_Instagram: typeof Instagram;
|
|
@@ -288,6 +571,7 @@ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
|
|
|
288
571
|
declare const SocialMedia_Pinterest: typeof Pinterest;
|
|
289
572
|
declare const SocialMedia_Twitter: typeof Twitter;
|
|
290
573
|
declare const SocialMedia_Youtube: typeof Youtube;
|
|
574
|
+
declare const SocialMedia_Interaction: typeof Interaction;
|
|
291
575
|
declare namespace SocialMedia {
|
|
292
576
|
export {
|
|
293
577
|
SocialMedia_Facebook as Facebook,
|
|
@@ -297,14 +581,15 @@ declare namespace SocialMedia {
|
|
|
297
581
|
SocialMedia_Pinterest as Pinterest,
|
|
298
582
|
SocialMedia_Twitter as Twitter,
|
|
299
583
|
SocialMedia_Youtube as Youtube,
|
|
584
|
+
SocialMedia_Interaction as Interaction,
|
|
300
585
|
};
|
|
301
586
|
}
|
|
302
587
|
|
|
303
|
-
declare const Search: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
588
|
+
declare const Search: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
304
589
|
|
|
305
590
|
declare const User: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
306
591
|
|
|
307
|
-
declare const ShoppingBag: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
592
|
+
declare const ShoppingBag: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
308
593
|
|
|
309
594
|
declare const ShoppingCart: FC<IconProps>;
|
|
310
595
|
|
|
@@ -312,12 +597,64 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
312
597
|
|
|
313
598
|
declare const Hamburger: FC<IconProps>;
|
|
314
599
|
|
|
600
|
+
declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
601
|
+
|
|
602
|
+
declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
603
|
+
|
|
604
|
+
declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
605
|
+
|
|
606
|
+
declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
607
|
+
|
|
608
|
+
declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
609
|
+
|
|
610
|
+
declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
611
|
+
|
|
612
|
+
declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
613
|
+
|
|
614
|
+
declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
615
|
+
|
|
616
|
+
declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
617
|
+
|
|
618
|
+
declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
619
|
+
|
|
620
|
+
declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
621
|
+
|
|
622
|
+
declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
623
|
+
|
|
624
|
+
declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
625
|
+
|
|
626
|
+
declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
627
|
+
|
|
628
|
+
declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
629
|
+
|
|
630
|
+
declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
631
|
+
|
|
632
|
+
declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
633
|
+
|
|
634
|
+
declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
635
|
+
|
|
315
636
|
declare const Navigation_Search: typeof Search;
|
|
316
637
|
declare const Navigation_User: typeof User;
|
|
317
638
|
declare const Navigation_ShoppingBag: typeof ShoppingBag;
|
|
318
639
|
declare const Navigation_ShoppingCart: typeof ShoppingCart;
|
|
319
640
|
declare const Navigation_MapMarker: typeof MapMarker;
|
|
320
641
|
declare const Navigation_Hamburger: typeof Hamburger;
|
|
642
|
+
declare const Navigation_AddressInformation: typeof AddressInformation;
|
|
643
|
+
declare const Navigation_ClubMembership: typeof ClubMembership;
|
|
644
|
+
declare const Navigation_Benefits: typeof Benefits;
|
|
645
|
+
declare const Navigation_Home: typeof Home;
|
|
646
|
+
declare const Navigation_HomeSolid: typeof HomeSolid;
|
|
647
|
+
declare const Navigation_ShoppingBagV2: typeof ShoppingBagV2;
|
|
648
|
+
declare const Navigation_UserSolid: typeof UserSolid;
|
|
649
|
+
declare const Navigation_SlideDotSolid: typeof SlideDotSolid;
|
|
650
|
+
declare const Navigation_Ellipsis: typeof Ellipsis;
|
|
651
|
+
declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
|
|
652
|
+
declare const Navigation_Lock: typeof Lock;
|
|
653
|
+
declare const Navigation_LockSolid: typeof LockSolid;
|
|
654
|
+
declare const Navigation_Loading: typeof Loading;
|
|
655
|
+
declare const Navigation_MapSolid: typeof MapSolid;
|
|
656
|
+
declare const Navigation_UserV2: typeof UserV2;
|
|
657
|
+
declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
|
|
321
658
|
declare namespace Navigation {
|
|
322
659
|
export {
|
|
323
660
|
Navigation_Search as Search,
|
|
@@ -326,6 +663,24 @@ declare namespace Navigation {
|
|
|
326
663
|
Navigation_ShoppingCart as ShoppingCart,
|
|
327
664
|
Navigation_MapMarker as MapMarker,
|
|
328
665
|
Navigation_Hamburger as Hamburger,
|
|
666
|
+
Navigation_AddressInformation as AddressInformation,
|
|
667
|
+
Navigation_ClubMembership as ClubMembership,
|
|
668
|
+
Navigation_Benefits as Benefits,
|
|
669
|
+
Navigation_Home as Home,
|
|
670
|
+
Navigation_HomeSolid as HomeSolid,
|
|
671
|
+
Navigation_ShoppingBagV2 as ShoppingBagV2,
|
|
672
|
+
Navigation_UserSolid as UserSolid,
|
|
673
|
+
SlideDot$1 as SlideDot,
|
|
674
|
+
Navigation_SlideDotSolid as SlideDotSolid,
|
|
675
|
+
Navigation_Ellipsis as Ellipsis,
|
|
676
|
+
Navigation_EllipsisHorizontal as EllipsisHorizontal,
|
|
677
|
+
Filters$1 as Filters,
|
|
678
|
+
Navigation_Lock as Lock,
|
|
679
|
+
Navigation_LockSolid as LockSolid,
|
|
680
|
+
Navigation_Loading as Loading,
|
|
681
|
+
Navigation_MapSolid as MapSolid,
|
|
682
|
+
Navigation_UserV2 as UserV2,
|
|
683
|
+
Navigation_ShoppingCartV2 as ShoppingCartV2,
|
|
329
684
|
};
|
|
330
685
|
}
|
|
331
686
|
|
|
@@ -342,22 +697,65 @@ interface IconWrapperProps {
|
|
|
342
697
|
viewBoxX: number;
|
|
343
698
|
viewBoxY: number;
|
|
344
699
|
children: React.ReactNode;
|
|
345
|
-
|
|
700
|
+
testId?: string;
|
|
346
701
|
fill?: string;
|
|
347
702
|
}
|
|
348
703
|
|
|
349
|
-
declare const Mail: ({ height, width }: IconWrapperProps) => JSX.Element;
|
|
704
|
+
declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
|
|
705
|
+
|
|
706
|
+
declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
707
|
+
|
|
708
|
+
declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
709
|
+
|
|
710
|
+
declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
711
|
+
|
|
712
|
+
declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
713
|
+
|
|
714
|
+
declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
715
|
+
|
|
716
|
+
declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
717
|
+
|
|
718
|
+
declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
719
|
+
|
|
720
|
+
declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
721
|
+
|
|
722
|
+
declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
723
|
+
|
|
724
|
+
declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
725
|
+
|
|
726
|
+
declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
350
727
|
|
|
351
728
|
declare const Messaging_QuestionCircle: typeof QuestionCircle;
|
|
352
729
|
declare const Messaging_Messenger: typeof Messenger;
|
|
353
730
|
declare const Messaging_Comment: typeof Comment;
|
|
354
731
|
declare const Messaging_Mail: typeof Mail;
|
|
732
|
+
declare const Messaging_QuoteLeft: typeof QuoteLeft;
|
|
733
|
+
declare const Messaging_QuoteRight: typeof QuoteRight;
|
|
734
|
+
declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
|
|
735
|
+
declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
|
|
736
|
+
declare const Messaging_Light: typeof Light;
|
|
737
|
+
declare const Messaging_LightBulb: typeof LightBulb;
|
|
738
|
+
declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
|
|
739
|
+
declare const Messaging_CommentDots: typeof CommentDots;
|
|
740
|
+
declare const Messaging_CommentLight: typeof CommentLight;
|
|
741
|
+
declare const Messaging_CommentMoney: typeof CommentMoney;
|
|
355
742
|
declare namespace Messaging {
|
|
356
743
|
export {
|
|
357
744
|
Messaging_QuestionCircle as QuestionCircle,
|
|
358
745
|
Messaging_Messenger as Messenger,
|
|
359
746
|
Messaging_Comment as Comment,
|
|
360
747
|
Messaging_Mail as Mail,
|
|
748
|
+
Community$1 as Community,
|
|
749
|
+
Messaging_QuoteLeft as QuoteLeft,
|
|
750
|
+
Messaging_QuoteRight as QuoteRight,
|
|
751
|
+
Messaging_QuoteSolidLeft as QuoteSolidLeft,
|
|
752
|
+
Messaging_QuoteSolidRight as QuoteSolidRight,
|
|
753
|
+
Messaging_Light as Light,
|
|
754
|
+
Messaging_LightBulb as LightBulb,
|
|
755
|
+
Messaging_LightBulbSolid as LightBulbSolid,
|
|
756
|
+
Messaging_CommentDots as CommentDots,
|
|
757
|
+
Messaging_CommentLight as CommentLight,
|
|
758
|
+
Messaging_CommentMoney as CommentMoney,
|
|
361
759
|
};
|
|
362
760
|
}
|
|
363
761
|
|
|
@@ -418,14 +816,79 @@ declare namespace SlideDots {
|
|
|
418
816
|
|
|
419
817
|
declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
|
|
420
818
|
|
|
819
|
+
declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
|
|
820
|
+
|
|
821
|
+
declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
822
|
+
|
|
823
|
+
declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
|
|
824
|
+
|
|
825
|
+
declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
|
|
826
|
+
|
|
827
|
+
declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
828
|
+
|
|
829
|
+
declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
|
|
830
|
+
|
|
421
831
|
declare const Emoji_Thinking: typeof Thinking;
|
|
832
|
+
declare const Emoji_SmilingV2: typeof SmilingV2;
|
|
833
|
+
declare const Emoji_Grinning: typeof Grinning;
|
|
834
|
+
declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
|
|
835
|
+
declare const Emoji_BlowingKiss: typeof BlowingKiss;
|
|
836
|
+
declare const Emoji_Frowning: typeof Frowning;
|
|
837
|
+
declare const Emoji_Relieved: typeof Relieved;
|
|
422
838
|
declare namespace Emoji {
|
|
423
839
|
export {
|
|
424
840
|
Emoji_Thinking as Thinking,
|
|
841
|
+
Emoji_SmilingV2 as SmilingV2,
|
|
842
|
+
Emoji_Grinning as Grinning,
|
|
843
|
+
Emoji_GrinningWithSweat as GrinningWithSweat,
|
|
844
|
+
Emoji_BlowingKiss as BlowingKiss,
|
|
845
|
+
Emoji_Frowning as Frowning,
|
|
846
|
+
Emoji_Relieved as Relieved,
|
|
847
|
+
};
|
|
848
|
+
}
|
|
849
|
+
|
|
850
|
+
declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
851
|
+
|
|
852
|
+
declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
853
|
+
|
|
854
|
+
declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
855
|
+
|
|
856
|
+
declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
857
|
+
|
|
858
|
+
declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
859
|
+
|
|
860
|
+
declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
861
|
+
|
|
862
|
+
declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
863
|
+
|
|
864
|
+
declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
865
|
+
|
|
866
|
+
declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
867
|
+
|
|
868
|
+
declare const MyAccount_FreeShipping: typeof FreeShipping;
|
|
869
|
+
declare const MyAccount_PersonalStylist: typeof PersonalStylist;
|
|
870
|
+
declare const MyAccount_Community: typeof Community;
|
|
871
|
+
declare const MyAccount_VIP: typeof VIP;
|
|
872
|
+
declare const MyAccount_DealsOffers: typeof DealsOffers;
|
|
873
|
+
declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
|
|
874
|
+
declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
|
|
875
|
+
declare const MyAccount_Profile: typeof Profile;
|
|
876
|
+
declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
|
|
877
|
+
declare namespace MyAccount {
|
|
878
|
+
export {
|
|
879
|
+
MyAccount_FreeShipping as FreeShipping,
|
|
880
|
+
MyAccount_PersonalStylist as PersonalStylist,
|
|
881
|
+
MyAccount_Community as Community,
|
|
882
|
+
MyAccount_VIP as VIP,
|
|
883
|
+
MyAccount_DealsOffers as DealsOffers,
|
|
884
|
+
MyAccount_StyleFashionContent as StyleFashionContent,
|
|
885
|
+
MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
|
|
886
|
+
MyAccount_Profile as Profile,
|
|
887
|
+
MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
|
|
425
888
|
};
|
|
426
889
|
}
|
|
427
890
|
|
|
428
|
-
declare type IconType = ({ height, width, fill }: IconProps) => JSX.Element;
|
|
891
|
+
declare type IconType = ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
429
892
|
declare const Icon: {
|
|
430
893
|
Custom: typeof Custom;
|
|
431
894
|
Arrows: typeof Arrows;
|
|
@@ -439,6 +902,7 @@ declare const Icon: {
|
|
|
439
902
|
Payment: typeof Payment;
|
|
440
903
|
SlideDots: typeof SlideDots;
|
|
441
904
|
Emoji: typeof Emoji;
|
|
905
|
+
MyAccount: typeof MyAccount;
|
|
442
906
|
};
|
|
443
907
|
|
|
444
908
|
interface CardBodyProps {
|
|
@@ -455,7 +919,7 @@ interface borderProps {
|
|
|
455
919
|
}
|
|
456
920
|
interface CardProps {
|
|
457
921
|
children: ReactNode;
|
|
458
|
-
backgroundColor
|
|
922
|
+
backgroundColor?: string;
|
|
459
923
|
widthAuto?: boolean;
|
|
460
924
|
border?: borderProps;
|
|
461
925
|
flex?: boolean;
|
|
@@ -495,6 +959,21 @@ declare type UncontrolledProps<T> = {
|
|
|
495
959
|
declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
|
|
496
960
|
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, }: SimpleDropdownProps<T>): JSX.Element;
|
|
497
961
|
|
|
962
|
+
interface DialogPositionProps {
|
|
963
|
+
top: string;
|
|
964
|
+
right: string;
|
|
965
|
+
}
|
|
966
|
+
interface DialogDropdownProps {
|
|
967
|
+
options: {
|
|
968
|
+
label: string;
|
|
969
|
+
value: string;
|
|
970
|
+
}[];
|
|
971
|
+
position: DialogPositionProps;
|
|
972
|
+
style?: React.CSSProperties;
|
|
973
|
+
className?: string;
|
|
974
|
+
}
|
|
975
|
+
declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
|
|
976
|
+
|
|
498
977
|
interface SizeSelectorProps {
|
|
499
978
|
label: string;
|
|
500
979
|
sizes: SizeOption[];
|
|
@@ -545,8 +1024,9 @@ interface DiscountTagProps {
|
|
|
545
1024
|
borderColor?: string;
|
|
546
1025
|
textColor?: string;
|
|
547
1026
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1027
|
+
style?: React.CSSProperties;
|
|
548
1028
|
}
|
|
549
|
-
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, }: DiscountTagProps) => JSX.Element;
|
|
1029
|
+
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
|
|
550
1030
|
|
|
551
1031
|
interface PriceLabelProps {
|
|
552
1032
|
finalPrice: string | number;
|
|
@@ -554,8 +1034,15 @@ interface PriceLabelProps {
|
|
|
554
1034
|
color?: string;
|
|
555
1035
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
556
1036
|
discount?: DiscountTagProps;
|
|
1037
|
+
finalPriceStyled?: boolean;
|
|
1038
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1039
|
+
originalPriceStyled?: boolean;
|
|
1040
|
+
originalPriceUnderlined?: boolean;
|
|
1041
|
+
testId?: string;
|
|
557
1042
|
}
|
|
558
|
-
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, size, }: PriceLabelProps) => JSX.Element;
|
|
1043
|
+
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
1044
|
+
|
|
1045
|
+
declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
559
1046
|
|
|
560
1047
|
interface ColorPickerProps {
|
|
561
1048
|
options: ColorPickerOption[];
|
|
@@ -577,12 +1064,17 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
|
|
|
577
1064
|
interface ProductGalleryProps {
|
|
578
1065
|
images: ImageType[];
|
|
579
1066
|
selectedValue?: ImageType;
|
|
580
|
-
|
|
581
|
-
|
|
1067
|
+
topTag?: JSX.Element;
|
|
1068
|
+
bottomTag?: JSX.Element;
|
|
582
1069
|
productImageDataTestId?: string;
|
|
583
1070
|
previewListDataTestId?: string;
|
|
1071
|
+
thumbnailPosition?: 'vertical' | 'horizontal';
|
|
1072
|
+
borderRadiusVariant?: boolean;
|
|
1073
|
+
previewImgBorderColor?: string;
|
|
1074
|
+
ctaText?: string;
|
|
1075
|
+
ctaAction?: () => void;
|
|
584
1076
|
}
|
|
585
|
-
declare const ProductGallery: ({ images, selectedValue,
|
|
1077
|
+
declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, }: ProductGalleryProps) => JSX.Element;
|
|
586
1078
|
|
|
587
1079
|
interface RatingProps {
|
|
588
1080
|
rating: number;
|
|
@@ -590,8 +1082,10 @@ interface RatingProps {
|
|
|
590
1082
|
reviews: number;
|
|
591
1083
|
reviewsText: string;
|
|
592
1084
|
wrapWithParenthesis?: boolean;
|
|
1085
|
+
underline?: boolean;
|
|
1086
|
+
reviewsContainerId?: string;
|
|
593
1087
|
}
|
|
594
|
-
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
|
|
1088
|
+
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
|
|
595
1089
|
|
|
596
1090
|
interface FitPredictorProps {
|
|
597
1091
|
onClick: () => void;
|
|
@@ -629,20 +1123,27 @@ declare const Tooltip: ({ children, position, text, align, onClick, header, }: T
|
|
|
629
1123
|
|
|
630
1124
|
interface AccordionProps {
|
|
631
1125
|
defaultOpen?: boolean;
|
|
1126
|
+
forceOpenHandler?: boolean;
|
|
1127
|
+
forceOpenValue?: boolean;
|
|
1128
|
+
titleColor?: string;
|
|
632
1129
|
variant: 'simple' | 'box';
|
|
633
1130
|
header: ReactNode;
|
|
1131
|
+
headerOnOpen?: ReactNode;
|
|
634
1132
|
content: ReactNode;
|
|
635
1133
|
disabled?: boolean;
|
|
1134
|
+
innerHTML?: boolean;
|
|
636
1135
|
openIcon: IconType;
|
|
637
1136
|
closeIcon: IconType;
|
|
1137
|
+
onClick?: (index: number) => void;
|
|
638
1138
|
}
|
|
639
|
-
declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
|
|
1139
|
+
declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
|
|
640
1140
|
|
|
641
1141
|
declare const ThemeProvider: FC<{
|
|
642
1142
|
theme: Theme;
|
|
643
1143
|
children: ReactNode;
|
|
644
1144
|
}>;
|
|
645
1145
|
declare const useTheme: () => Theme;
|
|
1146
|
+
|
|
646
1147
|
declare const ThemeVariables: FC<{
|
|
647
1148
|
theme: Theme;
|
|
648
1149
|
Container?: ElementType;
|
|
@@ -743,6 +1244,10 @@ declare type ThemeComponent = {
|
|
|
743
1244
|
border: string;
|
|
744
1245
|
borderRadius: string;
|
|
745
1246
|
fontWeight: number;
|
|
1247
|
+
lineHeight: string;
|
|
1248
|
+
letterSpacing: string;
|
|
1249
|
+
minWidth: string;
|
|
1250
|
+
minHeight: string;
|
|
746
1251
|
size: {
|
|
747
1252
|
small: {
|
|
748
1253
|
fontSize: string;
|
|
@@ -789,6 +1294,12 @@ declare type ThemeComponent = {
|
|
|
789
1294
|
lineHeight: string;
|
|
790
1295
|
border: string;
|
|
791
1296
|
boxShadow: string;
|
|
1297
|
+
errorBorder: string;
|
|
1298
|
+
};
|
|
1299
|
+
inputPlaceholder: {
|
|
1300
|
+
fontSize: string;
|
|
1301
|
+
padding: string;
|
|
1302
|
+
focusBorder: string;
|
|
792
1303
|
};
|
|
793
1304
|
inputCustom: {
|
|
794
1305
|
button: {
|
|
@@ -821,6 +1332,12 @@ declare type ThemeComponent = {
|
|
|
821
1332
|
border: string;
|
|
822
1333
|
color: string;
|
|
823
1334
|
};
|
|
1335
|
+
noStock: {
|
|
1336
|
+
fontWeight: number;
|
|
1337
|
+
background: string;
|
|
1338
|
+
border: string;
|
|
1339
|
+
color: string;
|
|
1340
|
+
};
|
|
824
1341
|
disabled: {
|
|
825
1342
|
border: string;
|
|
826
1343
|
};
|
|
@@ -874,10 +1391,13 @@ declare type ThemeComponent = {
|
|
|
874
1391
|
};
|
|
875
1392
|
card: {
|
|
876
1393
|
borderRadius: string;
|
|
1394
|
+
backgroundColor: string;
|
|
877
1395
|
};
|
|
878
1396
|
radio: {
|
|
879
1397
|
borderColor: string;
|
|
880
1398
|
background: string;
|
|
1399
|
+
textSize: string;
|
|
1400
|
+
lineHeight: string;
|
|
881
1401
|
size: {
|
|
882
1402
|
small: {
|
|
883
1403
|
borderWidth: string;
|
|
@@ -906,6 +1426,7 @@ declare type ThemeComponent = {
|
|
|
906
1426
|
};
|
|
907
1427
|
};
|
|
908
1428
|
label: {
|
|
1429
|
+
color: string;
|
|
909
1430
|
fontSize: {
|
|
910
1431
|
small: string;
|
|
911
1432
|
medium: string;
|
|
@@ -1019,6 +1540,7 @@ declare type ThemeComponent = {
|
|
|
1019
1540
|
options: {
|
|
1020
1541
|
borderColor: string;
|
|
1021
1542
|
color: string;
|
|
1543
|
+
borderRadius: string;
|
|
1022
1544
|
};
|
|
1023
1545
|
};
|
|
1024
1546
|
modal: {
|
|
@@ -1032,6 +1554,168 @@ declare type ThemeComponent = {
|
|
|
1032
1554
|
selectedContrast: string;
|
|
1033
1555
|
tagColor: string;
|
|
1034
1556
|
};
|
|
1557
|
+
slideNavigation: {
|
|
1558
|
+
slideDots: {
|
|
1559
|
+
unselectedDotColor: string;
|
|
1560
|
+
selectedDotColor: string;
|
|
1561
|
+
dotsOpacity: number;
|
|
1562
|
+
};
|
|
1563
|
+
};
|
|
1564
|
+
beforeAfter: {
|
|
1565
|
+
size: {
|
|
1566
|
+
small: {
|
|
1567
|
+
image: {
|
|
1568
|
+
minHeight: string;
|
|
1569
|
+
minWidth: string;
|
|
1570
|
+
mobile: {
|
|
1571
|
+
minHeight: string;
|
|
1572
|
+
minWidth: string;
|
|
1573
|
+
};
|
|
1574
|
+
};
|
|
1575
|
+
imageContainer: {
|
|
1576
|
+
maxWidth: string;
|
|
1577
|
+
padding: string;
|
|
1578
|
+
mobile: {
|
|
1579
|
+
maxWidth: string;
|
|
1580
|
+
};
|
|
1581
|
+
};
|
|
1582
|
+
userInfoText: {
|
|
1583
|
+
fontSize: string;
|
|
1584
|
+
mobile: {
|
|
1585
|
+
fontSize: string;
|
|
1586
|
+
};
|
|
1587
|
+
};
|
|
1588
|
+
};
|
|
1589
|
+
medium: {
|
|
1590
|
+
image: {
|
|
1591
|
+
minHeight: string;
|
|
1592
|
+
minWidth: string;
|
|
1593
|
+
mobile: {
|
|
1594
|
+
minHeight: string;
|
|
1595
|
+
minWidth: string;
|
|
1596
|
+
};
|
|
1597
|
+
};
|
|
1598
|
+
imageContainer: {
|
|
1599
|
+
maxWidth: string;
|
|
1600
|
+
padding: string;
|
|
1601
|
+
mobile: {
|
|
1602
|
+
maxWidth: string;
|
|
1603
|
+
};
|
|
1604
|
+
};
|
|
1605
|
+
userInfoText: {
|
|
1606
|
+
fontSize: string;
|
|
1607
|
+
mobile: {
|
|
1608
|
+
fontSize: string;
|
|
1609
|
+
};
|
|
1610
|
+
};
|
|
1611
|
+
};
|
|
1612
|
+
large: {
|
|
1613
|
+
image: {
|
|
1614
|
+
minHeight: string;
|
|
1615
|
+
minWidth: string;
|
|
1616
|
+
mobile: {
|
|
1617
|
+
minHeight: string;
|
|
1618
|
+
minWidth: string;
|
|
1619
|
+
};
|
|
1620
|
+
};
|
|
1621
|
+
imageContainer: {
|
|
1622
|
+
maxWidth: string;
|
|
1623
|
+
padding: string;
|
|
1624
|
+
mobile: {
|
|
1625
|
+
maxWidth: string;
|
|
1626
|
+
};
|
|
1627
|
+
};
|
|
1628
|
+
userInfoText: {
|
|
1629
|
+
fontSize: string;
|
|
1630
|
+
mobile: {
|
|
1631
|
+
fontSize: string;
|
|
1632
|
+
};
|
|
1633
|
+
};
|
|
1634
|
+
};
|
|
1635
|
+
};
|
|
1636
|
+
};
|
|
1637
|
+
total: {
|
|
1638
|
+
basicTotal: {
|
|
1639
|
+
amount: {
|
|
1640
|
+
color: string;
|
|
1641
|
+
fontSize: string;
|
|
1642
|
+
};
|
|
1643
|
+
currency: {
|
|
1644
|
+
color: string;
|
|
1645
|
+
fontSize: string;
|
|
1646
|
+
lineHeight: string;
|
|
1647
|
+
alignSelf?: string;
|
|
1648
|
+
};
|
|
1649
|
+
savings: {
|
|
1650
|
+
textFontSize: string;
|
|
1651
|
+
textLineHeight: string;
|
|
1652
|
+
amountFontSize: string;
|
|
1653
|
+
amountFontWeight: number;
|
|
1654
|
+
amountLineHeight: string;
|
|
1655
|
+
color?: string;
|
|
1656
|
+
};
|
|
1657
|
+
};
|
|
1658
|
+
};
|
|
1659
|
+
subTotal: {
|
|
1660
|
+
basicSubTotal: {
|
|
1661
|
+
family: string;
|
|
1662
|
+
size: string;
|
|
1663
|
+
weight: number;
|
|
1664
|
+
lineHeight: string;
|
|
1665
|
+
color: string;
|
|
1666
|
+
};
|
|
1667
|
+
};
|
|
1668
|
+
pricing: {
|
|
1669
|
+
priceLabel: {
|
|
1670
|
+
price: {
|
|
1671
|
+
size: ComponentSize$1.Small | ComponentSize$1.Medium | ComponentSize$1.Large;
|
|
1672
|
+
originalPriceColor: string;
|
|
1673
|
+
actualPriceColor: string;
|
|
1674
|
+
};
|
|
1675
|
+
};
|
|
1676
|
+
};
|
|
1677
|
+
orderSummary: {
|
|
1678
|
+
headingTextAlign: string;
|
|
1679
|
+
backgroundColor: string;
|
|
1680
|
+
maxWidth?: string;
|
|
1681
|
+
padding?: string;
|
|
1682
|
+
borderRadius?: string;
|
|
1683
|
+
onMobile: {
|
|
1684
|
+
maxWidth?: string;
|
|
1685
|
+
padding?: string;
|
|
1686
|
+
backgroundColor?: string;
|
|
1687
|
+
};
|
|
1688
|
+
};
|
|
1689
|
+
expressCheckout: {
|
|
1690
|
+
fontFamily: string;
|
|
1691
|
+
fontWeight: number;
|
|
1692
|
+
lineHeight: string;
|
|
1693
|
+
};
|
|
1694
|
+
copyrightText: {
|
|
1695
|
+
fontSize: string;
|
|
1696
|
+
fontWeight: number;
|
|
1697
|
+
lineHeight: string;
|
|
1698
|
+
color: string;
|
|
1699
|
+
};
|
|
1700
|
+
textButton: {
|
|
1701
|
+
fontWeight: number;
|
|
1702
|
+
lineHeight: string;
|
|
1703
|
+
};
|
|
1704
|
+
deliveryDetails: {
|
|
1705
|
+
note: {
|
|
1706
|
+
accentColor: string;
|
|
1707
|
+
color: string;
|
|
1708
|
+
backgroundColor: string;
|
|
1709
|
+
};
|
|
1710
|
+
SectionDetails?: {
|
|
1711
|
+
marginLeft: string;
|
|
1712
|
+
};
|
|
1713
|
+
};
|
|
1714
|
+
text: {
|
|
1715
|
+
orderHeader: {
|
|
1716
|
+
color: string;
|
|
1717
|
+
};
|
|
1718
|
+
};
|
|
1035
1719
|
};
|
|
1036
1720
|
declare type ThemeTypography = {
|
|
1037
1721
|
config: {
|
|
@@ -1058,6 +1742,11 @@ declare type ThemeAssets = {
|
|
|
1058
1742
|
images: {
|
|
1059
1743
|
favicon: string;
|
|
1060
1744
|
logo: string;
|
|
1745
|
+
logoSize?: {
|
|
1746
|
+
width: string;
|
|
1747
|
+
height: string;
|
|
1748
|
+
};
|
|
1749
|
+
logoMobile?: string;
|
|
1061
1750
|
};
|
|
1062
1751
|
[key: string]: any;
|
|
1063
1752
|
};
|
|
@@ -1068,11 +1757,12 @@ interface CheckboxProps {
|
|
|
1068
1757
|
size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1069
1758
|
text: string;
|
|
1070
1759
|
checked?: boolean;
|
|
1760
|
+
blockUncheck?: boolean;
|
|
1071
1761
|
id: string;
|
|
1072
1762
|
backgroundColor?: string;
|
|
1073
1763
|
variant: 'primary' | 'secondary';
|
|
1074
1764
|
}
|
|
1075
|
-
declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, }: CheckboxProps) => JSX.Element;
|
|
1765
|
+
declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, blockUncheck, }: CheckboxProps) => JSX.Element;
|
|
1076
1766
|
|
|
1077
1767
|
interface RadioGroupInputProps {
|
|
1078
1768
|
name: string;
|
|
@@ -1105,10 +1795,11 @@ interface MinimalisticProps {
|
|
|
1105
1795
|
discount: number;
|
|
1106
1796
|
offText: string;
|
|
1107
1797
|
widthAuto?: boolean;
|
|
1798
|
+
testId?: string;
|
|
1108
1799
|
}
|
|
1109
1800
|
|
|
1110
1801
|
declare const Bundle: {
|
|
1111
|
-
Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, }: MinimalisticProps) => JSX.Element;
|
|
1802
|
+
Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, testId, }: MinimalisticProps) => JSX.Element;
|
|
1112
1803
|
Simple: ({ title, freeShippingText, price, anyQtyForText, backgroundColor, widthAuto, }: SimpleProps) => JSX.Element;
|
|
1113
1804
|
};
|
|
1114
1805
|
|
|
@@ -1116,16 +1807,18 @@ interface CategoryTagProps {
|
|
|
1116
1807
|
text: string;
|
|
1117
1808
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1118
1809
|
className?: string;
|
|
1810
|
+
styledBorder?: boolean;
|
|
1119
1811
|
}
|
|
1120
|
-
declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1812
|
+
declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1121
1813
|
|
|
1122
1814
|
interface SeasonOfferTagProps {
|
|
1123
1815
|
text: string;
|
|
1124
1816
|
backgroundColor?: string;
|
|
1125
1817
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1126
1818
|
className?: string;
|
|
1819
|
+
styledBorder?: boolean;
|
|
1127
1820
|
}
|
|
1128
|
-
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1821
|
+
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1129
1822
|
|
|
1130
1823
|
interface TimeProps {
|
|
1131
1824
|
hours: number;
|
|
@@ -1138,7 +1831,14 @@ interface TimerProps extends TimeProps {
|
|
|
1138
1831
|
}
|
|
1139
1832
|
declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
|
|
1140
1833
|
|
|
1141
|
-
interface
|
|
1834
|
+
interface BaseInputCommonProps {
|
|
1835
|
+
id?: string;
|
|
1836
|
+
value?: string;
|
|
1837
|
+
innerRef?: React.Ref<HTMLInputElement>;
|
|
1838
|
+
onBlur?: () => void;
|
|
1839
|
+
onFocus?: () => void;
|
|
1840
|
+
onChange?: (value: string, event: any) => void;
|
|
1841
|
+
hideClear?: boolean;
|
|
1142
1842
|
defaultValue?: string;
|
|
1143
1843
|
maxLength?: number;
|
|
1144
1844
|
placeholder?: string;
|
|
@@ -1148,16 +1848,13 @@ interface BaseInputCommmonProps {
|
|
|
1148
1848
|
required?: string;
|
|
1149
1849
|
children?: React.ReactNode;
|
|
1150
1850
|
size?: 'regular' | 'small';
|
|
1851
|
+
inlinePlaceholder?: boolean;
|
|
1852
|
+
hasError?: boolean;
|
|
1853
|
+
inputType?: 'text' | 'email' | 'password' | 'url';
|
|
1854
|
+
name?: string;
|
|
1855
|
+
autoFocus?: boolean;
|
|
1151
1856
|
}
|
|
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;
|
|
1857
|
+
declare type BaseInputProps = BaseInputCommonProps;
|
|
1161
1858
|
|
|
1162
1859
|
declare type BasePlusIconProps = BaseInputProps & {
|
|
1163
1860
|
Icon: IconType;
|
|
@@ -1181,6 +1878,7 @@ interface BaseCTAProps {
|
|
|
1181
1878
|
size?: ComponentSize;
|
|
1182
1879
|
text: string;
|
|
1183
1880
|
type?: ButtonType;
|
|
1881
|
+
inline?: boolean;
|
|
1184
1882
|
testId?: string;
|
|
1185
1883
|
}
|
|
1186
1884
|
|
|
@@ -1195,7 +1893,7 @@ declare type CustomProps = BaseInputProps & {
|
|
|
1195
1893
|
};
|
|
1196
1894
|
|
|
1197
1895
|
declare const Input: {
|
|
1198
|
-
Simple: ({ value, onChange,
|
|
1896
|
+
Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, ...rest }: BaseInputCommonProps) => JSX.Element;
|
|
1199
1897
|
Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
|
|
1200
1898
|
SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
|
|
1201
1899
|
SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
|
|
@@ -1255,7 +1953,7 @@ declare type detail = {
|
|
|
1255
1953
|
details: string;
|
|
1256
1954
|
};
|
|
1257
1955
|
interface orderUpdate extends detail {
|
|
1258
|
-
keepMeUpdated
|
|
1956
|
+
keepMeUpdated?: {
|
|
1259
1957
|
title: string;
|
|
1260
1958
|
onClick: () => void;
|
|
1261
1959
|
};
|
|
@@ -1268,9 +1966,9 @@ interface DeliveryDetailsProps {
|
|
|
1268
1966
|
note?: {
|
|
1269
1967
|
importantNoteText: string;
|
|
1270
1968
|
text: string;
|
|
1271
|
-
accentColor
|
|
1272
|
-
backgroundColor
|
|
1273
|
-
color
|
|
1969
|
+
accentColor?: string;
|
|
1970
|
+
backgroundColor?: string;
|
|
1971
|
+
color?: string;
|
|
1274
1972
|
};
|
|
1275
1973
|
}
|
|
1276
1974
|
declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
|
|
@@ -1278,19 +1976,28 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
|
|
|
1278
1976
|
interface ScrollToTopProps {
|
|
1279
1977
|
scrollToTopText: string;
|
|
1280
1978
|
onClick: () => void;
|
|
1979
|
+
fill?: string;
|
|
1281
1980
|
}
|
|
1282
|
-
declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
|
|
1981
|
+
declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
|
|
1283
1982
|
|
|
1284
1983
|
interface OrderBarProps {
|
|
1285
1984
|
message: string;
|
|
1985
|
+
color?: string;
|
|
1286
1986
|
}
|
|
1287
|
-
declare const OrderBar: ({ message }: OrderBarProps) => JSX.Element;
|
|
1987
|
+
declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
|
|
1988
|
+
|
|
1989
|
+
interface TableProps$1 {
|
|
1990
|
+
headers: string[];
|
|
1991
|
+
data: string[][];
|
|
1992
|
+
}
|
|
1993
|
+
declare const SizeTable: ({ headers, data }: TableProps$1) => JSX.Element;
|
|
1288
1994
|
|
|
1289
1995
|
interface TableProps {
|
|
1290
1996
|
headers: string[];
|
|
1291
1997
|
data: string[][];
|
|
1998
|
+
newSizeTableCss?: boolean;
|
|
1292
1999
|
}
|
|
1293
|
-
declare const
|
|
2000
|
+
declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
|
|
1294
2001
|
|
|
1295
2002
|
interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
|
|
1296
2003
|
color?: string;
|
|
@@ -1298,6 +2005,7 @@ interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
|
|
|
1298
2005
|
interface ProductOrderItemProps {
|
|
1299
2006
|
title: string;
|
|
1300
2007
|
subtitle: string;
|
|
2008
|
+
className?: string;
|
|
1301
2009
|
image: {
|
|
1302
2010
|
src: string;
|
|
1303
2011
|
alt: string;
|
|
@@ -1308,10 +2016,11 @@ interface ProductOrderItemProps {
|
|
|
1308
2016
|
text: string;
|
|
1309
2017
|
backgroundColor: string;
|
|
1310
2018
|
};
|
|
2019
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1311
2020
|
}
|
|
1312
|
-
declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
|
|
2021
|
+
declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
|
|
1313
2022
|
|
|
1314
|
-
interface ReviewProps {
|
|
2023
|
+
interface ReviewProps$1 {
|
|
1315
2024
|
reviewerName: string;
|
|
1316
2025
|
date: Date;
|
|
1317
2026
|
rating: number;
|
|
@@ -1321,27 +2030,32 @@ interface ReviewProps {
|
|
|
1321
2030
|
};
|
|
1322
2031
|
title: string;
|
|
1323
2032
|
description: string;
|
|
1324
|
-
|
|
2033
|
+
images?: {
|
|
1325
2034
|
src: string;
|
|
1326
2035
|
alt: string;
|
|
1327
|
-
};
|
|
2036
|
+
}[];
|
|
2037
|
+
reviewVariant?: string;
|
|
2038
|
+
onClickImage?: (image: string) => void;
|
|
1328
2039
|
}
|
|
1329
|
-
declare const Review: ({ reviewerName, date, rating, stars, title, description,
|
|
2040
|
+
declare const Review$1: ({ reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, }: ReviewProps$1) => JSX.Element;
|
|
1330
2041
|
|
|
1331
2042
|
interface SliderNavigationProps {
|
|
1332
|
-
children: JSX.Element[]
|
|
2043
|
+
children: JSX.Element | JSX.Element[] | StyledComponent<any>;
|
|
1333
2044
|
infinite: boolean;
|
|
1334
2045
|
adaptiveHeight: boolean;
|
|
1335
|
-
dotsSize
|
|
1336
|
-
dotListMarginTop
|
|
2046
|
+
dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
2047
|
+
dotListMarginTop?: number;
|
|
1337
2048
|
initialSlide?: number;
|
|
1338
2049
|
arrows?: {
|
|
1339
2050
|
arrowWidth: number;
|
|
1340
2051
|
arrowHeight: number;
|
|
1341
2052
|
arrowPadding: number;
|
|
1342
2053
|
};
|
|
2054
|
+
dots?: boolean;
|
|
2055
|
+
slidesToShow?: number;
|
|
2056
|
+
speed?: number;
|
|
1343
2057
|
}
|
|
1344
|
-
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2058
|
+
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1345
2059
|
|
|
1346
2060
|
interface DropdownListIconsProps {
|
|
1347
2061
|
items: DropdownListIconsItem[];
|
|
@@ -1395,8 +2109,8 @@ interface ProductItemProps {
|
|
|
1395
2109
|
price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
|
|
1396
2110
|
rating: Pick<RatingProps, 'rating' | 'reviews'>;
|
|
1397
2111
|
tags?: {
|
|
1398
|
-
categoryTagText
|
|
1399
|
-
seasonOfferTagText
|
|
2112
|
+
categoryTagText?: string;
|
|
2113
|
+
seasonOfferTagText?: string;
|
|
1400
2114
|
};
|
|
1401
2115
|
alignName?: 'left' | 'center';
|
|
1402
2116
|
url?: string;
|
|
@@ -1405,6 +2119,13 @@ interface ProductItemProps {
|
|
|
1405
2119
|
|
|
1406
2120
|
interface ProductItemSmallMobileProps extends ProductItemProps {
|
|
1407
2121
|
size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
|
|
2122
|
+
imageHover?: ImageProps;
|
|
2123
|
+
topTag?: JSX.Element;
|
|
2124
|
+
bottomTag?: JSX.Element;
|
|
2125
|
+
onClick?: () => void;
|
|
2126
|
+
priceDisplayType?: 'default' | 'styled';
|
|
2127
|
+
priceAtBottom?: boolean;
|
|
2128
|
+
priceLoading?: boolean;
|
|
1408
2129
|
}
|
|
1409
2130
|
|
|
1410
2131
|
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
|
|
@@ -1413,7 +2134,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
|
|
|
1413
2134
|
};
|
|
1414
2135
|
|
|
1415
2136
|
declare const Collection: {
|
|
1416
|
-
ProductItemMobile: ({ title, image, price, rating, size,
|
|
2137
|
+
ProductItemMobile: ({ title, image, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, priceAtBottom, priceLoading, }: ProductItemSmallMobileProps) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
1417
2138
|
withProductGrid: typeof withProductGrid;
|
|
1418
2139
|
};
|
|
1419
2140
|
|
|
@@ -1474,10 +2195,13 @@ interface PaginationProps {
|
|
|
1474
2195
|
underlineActive?: boolean;
|
|
1475
2196
|
boldActive?: boolean;
|
|
1476
2197
|
disabled?: boolean;
|
|
2198
|
+
showReducedPages?: boolean;
|
|
1477
2199
|
}
|
|
1478
|
-
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
|
|
2200
|
+
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
|
|
2201
|
+
|
|
2202
|
+
declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
|
|
1479
2203
|
|
|
1480
|
-
declare const Text:
|
|
2204
|
+
declare const Text: ({ variant, children, testId, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1481
2205
|
declare type TextHeroProps = {
|
|
1482
2206
|
variant: 'hero1' | 'hero2' | 'hero3';
|
|
1483
2207
|
weight?: 'heavy' | 'bold' | 'demi';
|
|
@@ -1487,6 +2211,7 @@ declare type TextHeroProps = {
|
|
|
1487
2211
|
wide?: never;
|
|
1488
2212
|
original?: never;
|
|
1489
2213
|
allCaps?: never;
|
|
2214
|
+
href: never;
|
|
1490
2215
|
};
|
|
1491
2216
|
declare type TextDisplayProps = {
|
|
1492
2217
|
variant: 'display1' | 'display2';
|
|
@@ -1497,6 +2222,7 @@ declare type TextDisplayProps = {
|
|
|
1497
2222
|
wide?: never;
|
|
1498
2223
|
original?: never;
|
|
1499
2224
|
allCaps?: never;
|
|
2225
|
+
href: never;
|
|
1500
2226
|
};
|
|
1501
2227
|
declare type TextHeadingProps = {
|
|
1502
2228
|
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
|
|
@@ -1507,6 +2233,7 @@ declare type TextHeadingProps = {
|
|
|
1507
2233
|
wide?: never;
|
|
1508
2234
|
original?: never;
|
|
1509
2235
|
allCaps?: never;
|
|
2236
|
+
href?: never;
|
|
1510
2237
|
};
|
|
1511
2238
|
declare type TextBodyProps = {
|
|
1512
2239
|
variant: 'body';
|
|
@@ -1517,6 +2244,7 @@ declare type TextBodyProps = {
|
|
|
1517
2244
|
wide?: never;
|
|
1518
2245
|
original?: never;
|
|
1519
2246
|
allCaps?: never;
|
|
2247
|
+
href?: never;
|
|
1520
2248
|
};
|
|
1521
2249
|
declare type TextButtonProps = {
|
|
1522
2250
|
variant: 'button';
|
|
@@ -1527,6 +2255,7 @@ declare type TextButtonProps = {
|
|
|
1527
2255
|
wide?: boolean;
|
|
1528
2256
|
original?: never;
|
|
1529
2257
|
allCaps?: never;
|
|
2258
|
+
href?: never;
|
|
1530
2259
|
};
|
|
1531
2260
|
declare type TextPricingProps = {
|
|
1532
2261
|
variant: 'pricing';
|
|
@@ -1537,6 +2266,7 @@ declare type TextPricingProps = {
|
|
|
1537
2266
|
wide?: never;
|
|
1538
2267
|
original?: boolean;
|
|
1539
2268
|
allCaps?: never;
|
|
2269
|
+
href?: never;
|
|
1540
2270
|
};
|
|
1541
2271
|
declare type TextLinkProps = {
|
|
1542
2272
|
variant: 'link';
|
|
@@ -1547,9 +2277,11 @@ declare type TextLinkProps = {
|
|
|
1547
2277
|
wide?: never;
|
|
1548
2278
|
original?: never;
|
|
1549
2279
|
allCaps?: never;
|
|
1550
|
-
|
|
2280
|
+
href?: string;
|
|
2281
|
+
};
|
|
1551
2282
|
declare type TextLabelProps = {
|
|
1552
2283
|
variant: 'label';
|
|
2284
|
+
color?: string;
|
|
1553
2285
|
weight?: 'regular' | 'demi';
|
|
1554
2286
|
size?: 'regular' | 'small';
|
|
1555
2287
|
underline?: never;
|
|
@@ -1557,6 +2289,7 @@ declare type TextLabelProps = {
|
|
|
1557
2289
|
wide?: never;
|
|
1558
2290
|
original?: never;
|
|
1559
2291
|
allCaps?: never;
|
|
2292
|
+
href?: never;
|
|
1560
2293
|
} & LabelHTMLAttributes<'label'>;
|
|
1561
2294
|
declare type TextTagProps = {
|
|
1562
2295
|
variant: 'tag';
|
|
@@ -1567,10 +2300,13 @@ declare type TextTagProps = {
|
|
|
1567
2300
|
wide?: never;
|
|
1568
2301
|
original?: never;
|
|
1569
2302
|
allCaps?: boolean;
|
|
2303
|
+
href?: never;
|
|
1570
2304
|
};
|
|
1571
|
-
declare type TextProps = AriaAttributes & {
|
|
2305
|
+
declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
|
|
2306
|
+
children: ReactNode;
|
|
1572
2307
|
style?: CSSProperties;
|
|
1573
2308
|
className?: string;
|
|
2309
|
+
testId?: string;
|
|
1574
2310
|
} & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
|
|
1575
2311
|
|
|
1576
2312
|
interface SearchBarProps {
|
|
@@ -1578,20 +2314,29 @@ interface SearchBarProps {
|
|
|
1578
2314
|
resultOptions: SearchBarOptionItem[];
|
|
1579
2315
|
onChange: (text: string) => void;
|
|
1580
2316
|
onSearch: (term: string) => void;
|
|
2317
|
+
onClose: () => void;
|
|
1581
2318
|
resultsPanelDataTestId?: string;
|
|
1582
2319
|
allResults?: number;
|
|
2320
|
+
initialTerm?: string;
|
|
2321
|
+
shouldClear?: boolean;
|
|
2322
|
+
isBlogSearchBar?: boolean;
|
|
2323
|
+
ariaLabel?: string;
|
|
2324
|
+
placeholder?: string;
|
|
2325
|
+
id?: string;
|
|
2326
|
+
autoComplete?: string;
|
|
1583
2327
|
}
|
|
1584
|
-
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, resultsPanelDataTestId, allResults, }: SearchBarProps) => JSX.Element;
|
|
2328
|
+
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
|
|
1585
2329
|
|
|
1586
2330
|
interface ProductGalleryMobileProps {
|
|
1587
2331
|
images: ImageType[];
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
2332
|
+
customClick?: boolean;
|
|
2333
|
+
topTag?: JSX.Element;
|
|
2334
|
+
bottomTag?: JSX.Element;
|
|
1591
2335
|
productImageDataTestId?: string;
|
|
1592
|
-
|
|
2336
|
+
borderRadiusVariant?: boolean;
|
|
2337
|
+
selectedValue?: ImageType;
|
|
1593
2338
|
}
|
|
1594
|
-
declare const ProductGalleryMobile: ({ images,
|
|
2339
|
+
declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps) => JSX.Element;
|
|
1595
2340
|
|
|
1596
2341
|
interface RadioProps {
|
|
1597
2342
|
name: string;
|
|
@@ -1608,6 +2353,8 @@ declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange
|
|
|
1608
2353
|
declare type PortalProps = {
|
|
1609
2354
|
id: string;
|
|
1610
2355
|
className?: string;
|
|
2356
|
+
overflow?: boolean;
|
|
2357
|
+
style?: CSSProperties;
|
|
1611
2358
|
};
|
|
1612
2359
|
declare const Portal: FC<PortalProps>;
|
|
1613
2360
|
|
|
@@ -1615,13 +2362,17 @@ declare type ModalProps = {
|
|
|
1615
2362
|
id: string;
|
|
1616
2363
|
dismissable?: boolean;
|
|
1617
2364
|
maxFullScreen?: boolean;
|
|
2365
|
+
padding?: string;
|
|
1618
2366
|
};
|
|
2367
|
+
interface ContainerProps {
|
|
2368
|
+
maxFullScreen: boolean;
|
|
2369
|
+
opened?: boolean;
|
|
2370
|
+
padding?: string;
|
|
2371
|
+
}
|
|
1619
2372
|
declare const Overlay: _emotion_styled.StyledComponent<{
|
|
1620
2373
|
theme?: _emotion_react.Theme | undefined;
|
|
1621
2374
|
as?: React.ElementType<any> | undefined;
|
|
1622
|
-
} & {
|
|
1623
|
-
opened?: boolean | undefined;
|
|
1624
|
-
}, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
2375
|
+
} & Pick<ContainerProps, "opened">, React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
1625
2376
|
declare const Modal: FC<ModalProps>;
|
|
1626
2377
|
declare const modalEvent: (id: string, detail: Omit<Events['modal'], 'id'>) => void;
|
|
1627
2378
|
declare const useModalEvent: (id: string, cb: (event: CustomEvent<Events['modal']>) => void) => void;
|
|
@@ -1668,8 +2419,9 @@ declare type QuantityPickerPropsUncontrolled = {
|
|
|
1668
2419
|
declare type QuantityPickerProps = {
|
|
1669
2420
|
initialValue?: number;
|
|
1670
2421
|
maxValue?: number;
|
|
2422
|
+
testId?: string;
|
|
1671
2423
|
} & (QuantityPickerPropsControlled | QuantityPickerPropsUncontrolled);
|
|
1672
|
-
declare const QuantityPicker: ({ initialValue, maxValue, value, onChange, }: QuantityPickerProps) => JSX.Element;
|
|
2424
|
+
declare const QuantityPicker: ({ initialValue, maxValue, value, testId, onChange, }: QuantityPickerProps) => JSX.Element;
|
|
1673
2425
|
|
|
1674
2426
|
declare type SpacingProps = {
|
|
1675
2427
|
size: number;
|
|
@@ -1694,12 +2446,13 @@ interface PackSelectorProps {
|
|
|
1694
2446
|
packs: PackOption[];
|
|
1695
2447
|
selectedValue: PackOption;
|
|
1696
2448
|
onChange: (size: PackOption) => void;
|
|
2449
|
+
currencyCode?: string;
|
|
1697
2450
|
}
|
|
1698
2451
|
declare const PackSelector: FC<PackSelectorProps>;
|
|
1699
2452
|
|
|
1700
2453
|
interface FiltersProps {
|
|
1701
|
-
|
|
1702
|
-
onChange: (
|
|
2454
|
+
values: Filter[];
|
|
2455
|
+
onChange: (newValues: Filter[], filtersState?: FilterChange) => void;
|
|
1703
2456
|
tagsColor?: string;
|
|
1704
2457
|
filterByText: string;
|
|
1705
2458
|
clearAllText: string;
|
|
@@ -1708,8 +2461,9 @@ interface FiltersProps {
|
|
|
1708
2461
|
applyText: string;
|
|
1709
2462
|
mobileBackArrowClick: () => void;
|
|
1710
2463
|
mobileApplyButtonClick: () => void;
|
|
2464
|
+
onResetValues: () => void;
|
|
1711
2465
|
}
|
|
1712
|
-
declare const Filters: ({
|
|
2466
|
+
declare const Filters: ({ values, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, onResetValues, }: FiltersProps) => JSX.Element;
|
|
1713
2467
|
|
|
1714
2468
|
interface SearchNavigationProps {
|
|
1715
2469
|
returnText?: string;
|
|
@@ -1719,6 +2473,153 @@ interface SearchNavigationProps {
|
|
|
1719
2473
|
}
|
|
1720
2474
|
declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
|
|
1721
2475
|
|
|
2476
|
+
interface TabProps$1 {
|
|
2477
|
+
title: string;
|
|
2478
|
+
content: ReactNode;
|
|
2479
|
+
}
|
|
2480
|
+
interface TabsProps {
|
|
2481
|
+
backgroundColor?: string;
|
|
2482
|
+
initialSelected?: string;
|
|
2483
|
+
tabsMaxWidth?: string;
|
|
2484
|
+
tabs: TabProps$1[];
|
|
2485
|
+
}
|
|
2486
|
+
declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
|
|
2487
|
+
|
|
2488
|
+
interface TabProps {
|
|
2489
|
+
title: string;
|
|
2490
|
+
titleSize?: string;
|
|
2491
|
+
selectedTitleWeight?: number;
|
|
2492
|
+
height?: string;
|
|
2493
|
+
selected?: boolean;
|
|
2494
|
+
color?: string;
|
|
2495
|
+
tabsMaxWidth?: string;
|
|
2496
|
+
onClick: (clickedTab: string) => void;
|
|
2497
|
+
}
|
|
2498
|
+
declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
|
|
2499
|
+
|
|
2500
|
+
interface IconList {
|
|
2501
|
+
backgroundColor: string;
|
|
2502
|
+
iconColor: string;
|
|
2503
|
+
iconName: string;
|
|
2504
|
+
iconTitle: string;
|
|
2505
|
+
iconSizeDesktop?: number;
|
|
2506
|
+
iconSizeMobile?: number;
|
|
2507
|
+
iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
2508
|
+
iconTitleStyle?: string;
|
|
2509
|
+
iconStyle?: string;
|
|
2510
|
+
isTitleInnerHtml?: boolean;
|
|
2511
|
+
}
|
|
2512
|
+
declare const IconsWithTitle: ({ iconName, iconTitle, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconList) => JSX.Element | null;
|
|
2513
|
+
|
|
2514
|
+
interface NoteProps {
|
|
2515
|
+
accentColor?: string;
|
|
2516
|
+
color?: string;
|
|
2517
|
+
backgroundColor?: string;
|
|
2518
|
+
importantNoteText: string;
|
|
2519
|
+
text: string;
|
|
2520
|
+
}
|
|
2521
|
+
declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
|
|
2522
|
+
|
|
2523
|
+
interface TextWithImageProps {
|
|
2524
|
+
title: string;
|
|
2525
|
+
text?: string;
|
|
2526
|
+
children?: ReactNode;
|
|
2527
|
+
buttomText: string;
|
|
2528
|
+
backgroundColor: string;
|
|
2529
|
+
imageLeftSide?: boolean;
|
|
2530
|
+
URLLink?: string;
|
|
2531
|
+
onButtonClick?: () => void;
|
|
2532
|
+
isRedirectionURL: boolean;
|
|
2533
|
+
btnBGColor?: string;
|
|
2534
|
+
btnHoverBGColor?: string;
|
|
2535
|
+
imgVideo: imageVideoProps;
|
|
2536
|
+
contentAfterButton?: React.ReactNode;
|
|
2537
|
+
titleStyle?: React.CSSProperties;
|
|
2538
|
+
textStyle?: React.CSSProperties;
|
|
2539
|
+
buttonWideOnMobile?: boolean;
|
|
2540
|
+
}
|
|
2541
|
+
declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2542
|
+
|
|
2543
|
+
interface AccordionOptionsProps {
|
|
2544
|
+
titleColor: string;
|
|
2545
|
+
accordions: AccordionProps[];
|
|
2546
|
+
}
|
|
2547
|
+
declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
|
|
2548
|
+
|
|
2549
|
+
interface ShortBannerProps {
|
|
2550
|
+
title: string;
|
|
2551
|
+
bannerText: string;
|
|
2552
|
+
backgroundColor: string;
|
|
2553
|
+
alignCenter?: boolean;
|
|
2554
|
+
widthAuto?: boolean;
|
|
2555
|
+
textColor: string;
|
|
2556
|
+
}
|
|
2557
|
+
declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
|
|
2558
|
+
|
|
2559
|
+
interface BeforeAfterCardProps {
|
|
2560
|
+
name: string;
|
|
2561
|
+
age: string;
|
|
2562
|
+
months: string;
|
|
2563
|
+
beforeImage: string;
|
|
2564
|
+
afterImage: string;
|
|
2565
|
+
alignCenter?: boolean;
|
|
2566
|
+
imageBorderRadius?: string;
|
|
2567
|
+
size?: ComponentSize;
|
|
2568
|
+
}
|
|
2569
|
+
declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
|
|
2570
|
+
|
|
2571
|
+
interface ImageCardWithDescriptionProps {
|
|
2572
|
+
image: string;
|
|
2573
|
+
title?: string;
|
|
2574
|
+
description?: string;
|
|
2575
|
+
titlePosition?: 'center' | 'left';
|
|
2576
|
+
}
|
|
2577
|
+
declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
|
|
2578
|
+
|
|
2579
|
+
interface Checkpoint {
|
|
2580
|
+
day: string;
|
|
2581
|
+
date: string;
|
|
2582
|
+
statusMessage: string;
|
|
2583
|
+
}
|
|
2584
|
+
interface TrackingProgressProps {
|
|
2585
|
+
checkPoints: Checkpoint[];
|
|
2586
|
+
amountOfCheckPoints: number;
|
|
2587
|
+
}
|
|
2588
|
+
declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
|
|
2589
|
+
|
|
2590
|
+
interface ReviewsHeaderProps {
|
|
2591
|
+
title?: string;
|
|
2592
|
+
rating: number;
|
|
2593
|
+
reviews: number;
|
|
2594
|
+
reviewsText: string;
|
|
2595
|
+
reviewsSummary: string[];
|
|
2596
|
+
onClickReview: (reveiw: string) => void;
|
|
2597
|
+
}
|
|
2598
|
+
declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
|
|
2599
|
+
|
|
2600
|
+
interface ReviewProps {
|
|
2601
|
+
reviewerName: string;
|
|
2602
|
+
date: Date;
|
|
2603
|
+
rating: number;
|
|
2604
|
+
stars: {
|
|
2605
|
+
color: string;
|
|
2606
|
+
size: ComponentSize.Medium | ComponentSize.Small;
|
|
2607
|
+
};
|
|
2608
|
+
title: string;
|
|
2609
|
+
description: string;
|
|
2610
|
+
image?: {
|
|
2611
|
+
src: string;
|
|
2612
|
+
alt: string;
|
|
2613
|
+
};
|
|
2614
|
+
modalId: string;
|
|
2615
|
+
maxFullScreen?: boolean;
|
|
2616
|
+
verified?: boolean;
|
|
2617
|
+
productImage?: string;
|
|
2618
|
+
productTitle?: string;
|
|
2619
|
+
productLink?: string;
|
|
2620
|
+
}
|
|
2621
|
+
declare const Review: ({ reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, }: ReviewProps) => JSX.Element;
|
|
2622
|
+
|
|
1722
2623
|
declare global {
|
|
1723
2624
|
interface Events {
|
|
1724
2625
|
modal: {
|
|
@@ -1758,4 +2659,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1758
2659
|
currency?: string | undefined;
|
|
1759
2660
|
}) => string;
|
|
1760
2661
|
|
|
1761
|
-
export { Accordion, AmazonButton, AssetsProvider, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection,
|
|
2662
|
+
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, 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 };
|