@trafilea/afrodita-components 5.0.0-beta.19 → 5.0.0-beta.190
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 +1042 -77
- package/build/index.esm.css +4 -1
- package/build/index.esm.js +8167 -4922
- package/build/index.esm.js.map +1 -1
- package/build/index.js +8189 -4924
- 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,14 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { IconProps as IconProps$1 } from 'src/types/types';
|
|
3
|
-
import React, { FC, ReactNode, ElementType, CSSProperties, AriaAttributes,
|
|
3
|
+
import React, { FC, ReactNode, ElementType, CSSProperties, AriaAttributes, HTMLAttributes, LabelHTMLAttributes, RefObject } from 'react';
|
|
4
4
|
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
5
|
-
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
6
5
|
import * as _emotion_styled from '@emotion/styled';
|
|
6
|
+
import { StyledComponent } from '@emotion/styled';
|
|
7
|
+
export { default as styled } from '@emotion/styled';
|
|
8
|
+
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
7
9
|
import * as _emotion_react from '@emotion/react';
|
|
10
|
+
import { ComponentSize as ComponentSize$1 } from 'src/types/enums';
|
|
11
|
+
import facepaint from 'facepaint';
|
|
8
12
|
|
|
9
13
|
declare enum CardSectionType {
|
|
10
14
|
Header = 0,
|
|
@@ -57,11 +61,7 @@ declare type SizeOption = {
|
|
|
57
61
|
label: string;
|
|
58
62
|
description: string;
|
|
59
63
|
disabled?: boolean;
|
|
60
|
-
|
|
61
|
-
declare type Color = {
|
|
62
|
-
primaryColor: string;
|
|
63
|
-
secondaryColor?: string;
|
|
64
|
-
tertiaryColor?: string;
|
|
64
|
+
noStock?: boolean;
|
|
65
65
|
};
|
|
66
66
|
declare type Pattern = {
|
|
67
67
|
url: string;
|
|
@@ -69,8 +69,9 @@ declare type Pattern = {
|
|
|
69
69
|
declare type ColorPickerOption = {
|
|
70
70
|
label: string;
|
|
71
71
|
description: string;
|
|
72
|
+
noStock?: boolean;
|
|
72
73
|
meta: {
|
|
73
|
-
color?:
|
|
74
|
+
color?: string[];
|
|
74
75
|
pattern?: Pattern;
|
|
75
76
|
};
|
|
76
77
|
};
|
|
@@ -101,7 +102,20 @@ declare type Filter = {
|
|
|
101
102
|
title: string;
|
|
102
103
|
columns: number;
|
|
103
104
|
isOpenByDefault?: boolean;
|
|
104
|
-
|
|
105
|
+
isLinkOption?: boolean;
|
|
106
|
+
link?: string;
|
|
107
|
+
color?: string;
|
|
108
|
+
isMultiselect: boolean;
|
|
109
|
+
type?: string;
|
|
110
|
+
items: Array<{
|
|
111
|
+
label: string;
|
|
112
|
+
checked?: boolean;
|
|
113
|
+
isLinkItem?: boolean;
|
|
114
|
+
link?: string;
|
|
115
|
+
blockUncheck?: boolean;
|
|
116
|
+
value?: string;
|
|
117
|
+
}>;
|
|
118
|
+
showInMobile: boolean;
|
|
105
119
|
};
|
|
106
120
|
declare type FilterChange = {
|
|
107
121
|
sectionIndex: number;
|
|
@@ -112,18 +126,53 @@ interface SearchBarOptionItem {
|
|
|
112
126
|
src: string;
|
|
113
127
|
price: string;
|
|
114
128
|
title: string;
|
|
129
|
+
optionUrl: string;
|
|
130
|
+
}
|
|
131
|
+
interface imageVideoProps {
|
|
132
|
+
imageLink: string;
|
|
133
|
+
isVideo?: {
|
|
134
|
+
videoTitle?: string;
|
|
135
|
+
videoSubtitle?: string;
|
|
136
|
+
textColor?: string;
|
|
137
|
+
videoLink?: string;
|
|
138
|
+
};
|
|
139
|
+
isMobile?: boolean;
|
|
115
140
|
}
|
|
116
141
|
|
|
117
142
|
declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
118
143
|
|
|
119
144
|
declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
120
145
|
|
|
146
|
+
declare const Smiling: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
147
|
+
|
|
148
|
+
declare const BulletOne: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
149
|
+
|
|
150
|
+
declare const BulletTwo: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
151
|
+
|
|
152
|
+
declare const BulletThree: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
153
|
+
|
|
154
|
+
declare const ThumbsUp: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
155
|
+
|
|
156
|
+
declare const ThumbsDown: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
157
|
+
|
|
121
158
|
declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
|
|
122
159
|
declare const Custom_Frown: typeof Frown;
|
|
160
|
+
declare const Custom_Smiling: typeof Smiling;
|
|
161
|
+
declare const Custom_BulletOne: typeof BulletOne;
|
|
162
|
+
declare const Custom_BulletTwo: typeof BulletTwo;
|
|
163
|
+
declare const Custom_BulletThree: typeof BulletThree;
|
|
164
|
+
declare const Custom_ThumbsUp: typeof ThumbsUp;
|
|
165
|
+
declare const Custom_ThumbsDown: typeof ThumbsDown;
|
|
123
166
|
declare namespace Custom {
|
|
124
167
|
export {
|
|
125
168
|
Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
|
|
126
169
|
Custom_Frown as Frown,
|
|
170
|
+
Custom_Smiling as Smiling,
|
|
171
|
+
Custom_BulletOne as BulletOne,
|
|
172
|
+
Custom_BulletTwo as BulletTwo,
|
|
173
|
+
Custom_BulletThree as BulletThree,
|
|
174
|
+
Custom_ThumbsUp as ThumbsUp,
|
|
175
|
+
Custom_ThumbsDown as ThumbsDown,
|
|
127
176
|
};
|
|
128
177
|
}
|
|
129
178
|
|
|
@@ -144,6 +193,71 @@ declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
144
193
|
|
|
145
194
|
declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
146
195
|
|
|
196
|
+
declare const Warning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
197
|
+
|
|
198
|
+
declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
199
|
+
|
|
200
|
+
declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
201
|
+
|
|
202
|
+
declare const Add: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
203
|
+
|
|
204
|
+
interface CopyProps extends IconProps {
|
|
205
|
+
stroke?: string;
|
|
206
|
+
}
|
|
207
|
+
declare const Copy: ({ height, width, fill, stroke }: CopyProps) => JSX.Element;
|
|
208
|
+
|
|
209
|
+
declare const CheckboxEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
210
|
+
|
|
211
|
+
declare const CheckboxLight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
212
|
+
|
|
213
|
+
declare const CheckboxSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
214
|
+
|
|
215
|
+
declare const Like: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
216
|
+
|
|
217
|
+
declare const LikeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
218
|
+
|
|
219
|
+
declare const NotAllowed: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
220
|
+
|
|
221
|
+
declare const RadioEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
222
|
+
|
|
223
|
+
declare const RadioFilled: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
224
|
+
|
|
225
|
+
declare const Minus$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
226
|
+
|
|
227
|
+
declare const SettingsSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
228
|
+
|
|
229
|
+
declare const Settings: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
230
|
+
|
|
231
|
+
declare const Share: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
232
|
+
|
|
233
|
+
declare const CircleCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
234
|
+
|
|
235
|
+
declare const CircleClear: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
236
|
+
|
|
237
|
+
declare const CircleInfo: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
238
|
+
|
|
239
|
+
declare const CircleMinus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
240
|
+
|
|
241
|
+
declare const CirclePlus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
242
|
+
|
|
243
|
+
declare const CircleQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
244
|
+
|
|
245
|
+
declare const CircleWarning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
246
|
+
|
|
247
|
+
declare const CircleSolidCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
248
|
+
|
|
249
|
+
declare const CircleSolidClear: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
250
|
+
|
|
251
|
+
declare const CircleSolidMinus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
252
|
+
|
|
253
|
+
declare const CircleSolidPlus: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
254
|
+
|
|
255
|
+
declare const CircleSolidQuestion: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
256
|
+
|
|
257
|
+
declare const CircleSolidWarning: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
258
|
+
|
|
259
|
+
declare const CircleSolidStyledCheck: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
260
|
+
|
|
147
261
|
declare const Actions_Check: typeof Check;
|
|
148
262
|
declare const Actions_ClearLight: typeof ClearLight;
|
|
149
263
|
declare const Actions_LightExclamation: typeof LightExclamation;
|
|
@@ -152,6 +266,37 @@ declare const Actions_LightCheck: typeof LightCheck;
|
|
|
152
266
|
declare const Actions_Question: typeof Question;
|
|
153
267
|
declare const Actions_Close: typeof Close;
|
|
154
268
|
declare const Actions_Trash: typeof Trash;
|
|
269
|
+
declare const Actions_Warning: typeof Warning;
|
|
270
|
+
declare const Actions_Edit: typeof Edit;
|
|
271
|
+
declare const Actions_SignOut: typeof SignOut;
|
|
272
|
+
declare const Actions_Add: typeof Add;
|
|
273
|
+
type Actions_CopyProps = CopyProps;
|
|
274
|
+
declare const Actions_Copy: typeof Copy;
|
|
275
|
+
declare const Actions_CheckboxEmpty: typeof CheckboxEmpty;
|
|
276
|
+
declare const Actions_CheckboxLight: typeof CheckboxLight;
|
|
277
|
+
declare const Actions_CheckboxSolid: typeof CheckboxSolid;
|
|
278
|
+
declare const Actions_Like: typeof Like;
|
|
279
|
+
declare const Actions_LikeSolid: typeof LikeSolid;
|
|
280
|
+
declare const Actions_NotAllowed: typeof NotAllowed;
|
|
281
|
+
declare const Actions_RadioEmpty: typeof RadioEmpty;
|
|
282
|
+
declare const Actions_RadioFilled: typeof RadioFilled;
|
|
283
|
+
declare const Actions_SettingsSolid: typeof SettingsSolid;
|
|
284
|
+
declare const Actions_Settings: typeof Settings;
|
|
285
|
+
declare const Actions_Share: typeof Share;
|
|
286
|
+
declare const Actions_CircleCheck: typeof CircleCheck;
|
|
287
|
+
declare const Actions_CircleClear: typeof CircleClear;
|
|
288
|
+
declare const Actions_CircleInfo: typeof CircleInfo;
|
|
289
|
+
declare const Actions_CircleMinus: typeof CircleMinus;
|
|
290
|
+
declare const Actions_CirclePlus: typeof CirclePlus;
|
|
291
|
+
declare const Actions_CircleQuestion: typeof CircleQuestion;
|
|
292
|
+
declare const Actions_CircleWarning: typeof CircleWarning;
|
|
293
|
+
declare const Actions_CircleSolidCheck: typeof CircleSolidCheck;
|
|
294
|
+
declare const Actions_CircleSolidClear: typeof CircleSolidClear;
|
|
295
|
+
declare const Actions_CircleSolidMinus: typeof CircleSolidMinus;
|
|
296
|
+
declare const Actions_CircleSolidPlus: typeof CircleSolidPlus;
|
|
297
|
+
declare const Actions_CircleSolidQuestion: typeof CircleSolidQuestion;
|
|
298
|
+
declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
|
|
299
|
+
declare const Actions_CircleSolidStyledCheck: typeof CircleSolidStyledCheck;
|
|
155
300
|
declare namespace Actions {
|
|
156
301
|
export {
|
|
157
302
|
Actions_Check as Check,
|
|
@@ -162,6 +307,38 @@ declare namespace Actions {
|
|
|
162
307
|
Actions_Question as Question,
|
|
163
308
|
Actions_Close as Close,
|
|
164
309
|
Actions_Trash as Trash,
|
|
310
|
+
Actions_Warning as Warning,
|
|
311
|
+
Actions_Edit as Edit,
|
|
312
|
+
Actions_SignOut as SignOut,
|
|
313
|
+
Actions_Add as Add,
|
|
314
|
+
Actions_CopyProps as CopyProps,
|
|
315
|
+
Actions_Copy as Copy,
|
|
316
|
+
Actions_CheckboxEmpty as CheckboxEmpty,
|
|
317
|
+
Actions_CheckboxLight as CheckboxLight,
|
|
318
|
+
Actions_CheckboxSolid as CheckboxSolid,
|
|
319
|
+
Actions_Like as Like,
|
|
320
|
+
Actions_LikeSolid as LikeSolid,
|
|
321
|
+
Actions_NotAllowed as NotAllowed,
|
|
322
|
+
Actions_RadioEmpty as RadioEmpty,
|
|
323
|
+
Actions_RadioFilled as RadioFilled,
|
|
324
|
+
Minus$1 as Minus,
|
|
325
|
+
Actions_SettingsSolid as SettingsSolid,
|
|
326
|
+
Actions_Settings as Settings,
|
|
327
|
+
Actions_Share as Share,
|
|
328
|
+
Actions_CircleCheck as CircleCheck,
|
|
329
|
+
Actions_CircleClear as CircleClear,
|
|
330
|
+
Actions_CircleInfo as CircleInfo,
|
|
331
|
+
Actions_CircleMinus as CircleMinus,
|
|
332
|
+
Actions_CirclePlus as CirclePlus,
|
|
333
|
+
Actions_CircleQuestion as CircleQuestion,
|
|
334
|
+
Actions_CircleWarning as CircleWarning,
|
|
335
|
+
Actions_CircleSolidCheck as CircleSolidCheck,
|
|
336
|
+
Actions_CircleSolidClear as CircleSolidClear,
|
|
337
|
+
Actions_CircleSolidMinus as CircleSolidMinus,
|
|
338
|
+
Actions_CircleSolidPlus as CircleSolidPlus,
|
|
339
|
+
Actions_CircleSolidQuestion as CircleSolidQuestion,
|
|
340
|
+
Actions_CircleSolidWarning as CircleSolidWarning,
|
|
341
|
+
Actions_CircleSolidStyledCheck as CircleSolidStyledCheck,
|
|
165
342
|
};
|
|
166
343
|
}
|
|
167
344
|
|
|
@@ -170,23 +347,70 @@ declare const FitPredictor$1: ({ height, width, fill }: IconProps) => JSX.Elemen
|
|
|
170
347
|
interface LoadingProps extends IconProps {
|
|
171
348
|
backgroundColor: string;
|
|
172
349
|
}
|
|
173
|
-
declare const Loading: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
350
|
+
declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
174
351
|
|
|
175
352
|
declare const Shapermint: ({ height, width }: IconProps) => JSX.Element;
|
|
176
353
|
|
|
177
354
|
declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
|
|
178
355
|
|
|
356
|
+
declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
|
|
357
|
+
|
|
358
|
+
declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
359
|
+
|
|
360
|
+
declare const Chat: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
361
|
+
|
|
362
|
+
declare const Email: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
363
|
+
|
|
364
|
+
declare const CallUs: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
365
|
+
|
|
366
|
+
declare const SignForm: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
367
|
+
|
|
368
|
+
declare const QrCode: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
369
|
+
|
|
370
|
+
declare const FreeExchange: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
371
|
+
|
|
372
|
+
declare const ShopNow: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
373
|
+
|
|
374
|
+
declare const HasselFreeReturns: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
375
|
+
|
|
376
|
+
declare const Play: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
377
|
+
|
|
378
|
+
declare const FitGuarantee: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
379
|
+
|
|
179
380
|
type Other_LoadingProps = LoadingProps;
|
|
180
|
-
declare const Other_Loading: typeof Loading;
|
|
181
381
|
declare const Other_Shapermint: typeof Shapermint;
|
|
182
382
|
declare const Other_McAfee: typeof McAfee;
|
|
383
|
+
declare const Other_GetDiscount: typeof GetDiscount;
|
|
384
|
+
declare const Other_ShapermintLogo: typeof ShapermintLogo;
|
|
385
|
+
declare const Other_Chat: typeof Chat;
|
|
386
|
+
declare const Other_Email: typeof Email;
|
|
387
|
+
declare const Other_CallUs: typeof CallUs;
|
|
388
|
+
declare const Other_SignForm: typeof SignForm;
|
|
389
|
+
declare const Other_QrCode: typeof QrCode;
|
|
390
|
+
declare const Other_FreeExchange: typeof FreeExchange;
|
|
391
|
+
declare const Other_ShopNow: typeof ShopNow;
|
|
392
|
+
declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
|
|
393
|
+
declare const Other_Play: typeof Play;
|
|
394
|
+
declare const Other_FitGuarantee: typeof FitGuarantee;
|
|
183
395
|
declare namespace Other {
|
|
184
396
|
export {
|
|
185
397
|
FitPredictor$1 as FitPredictor,
|
|
186
398
|
Other_LoadingProps as LoadingProps,
|
|
187
|
-
|
|
399
|
+
Loading$1 as Loading,
|
|
188
400
|
Other_Shapermint as Shapermint,
|
|
189
401
|
Other_McAfee as McAfee,
|
|
402
|
+
Other_GetDiscount as GetDiscount,
|
|
403
|
+
Other_ShapermintLogo as ShapermintLogo,
|
|
404
|
+
Other_Chat as Chat,
|
|
405
|
+
Other_Email as Email,
|
|
406
|
+
Other_CallUs as CallUs,
|
|
407
|
+
Other_SignForm as SignForm,
|
|
408
|
+
Other_QrCode as QrCode,
|
|
409
|
+
Other_FreeExchange as FreeExchange,
|
|
410
|
+
Other_ShopNow as ShopNow,
|
|
411
|
+
Other_HasselFreeReturns as HasselFreeReturns,
|
|
412
|
+
Other_Play as Play,
|
|
413
|
+
Other_FitGuarantee as FitGuarantee,
|
|
190
414
|
};
|
|
191
415
|
}
|
|
192
416
|
|
|
@@ -204,6 +428,28 @@ declare const ChevronUpSolid: ({ height, width, fill }: IconProps) => JSX.Elemen
|
|
|
204
428
|
|
|
205
429
|
declare const CircleUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
206
430
|
|
|
431
|
+
declare const CircleChevronLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
432
|
+
|
|
433
|
+
declare const CircleChevronRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
434
|
+
|
|
435
|
+
declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
436
|
+
|
|
437
|
+
declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
438
|
+
|
|
439
|
+
declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
440
|
+
|
|
441
|
+
declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
442
|
+
|
|
443
|
+
declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
444
|
+
|
|
445
|
+
declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
446
|
+
|
|
447
|
+
declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
448
|
+
|
|
449
|
+
declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
450
|
+
|
|
451
|
+
declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
452
|
+
|
|
207
453
|
declare const Arrows_ChevronDown: typeof ChevronDown;
|
|
208
454
|
declare const Arrows_ChevronLeft: typeof ChevronLeft;
|
|
209
455
|
declare const Arrows_ChevronRight: typeof ChevronRight;
|
|
@@ -211,6 +457,17 @@ declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
|
|
|
211
457
|
declare const Arrows_ChevronUp: typeof ChevronUp;
|
|
212
458
|
declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
|
|
213
459
|
declare const Arrows_CircleUp: typeof CircleUp;
|
|
460
|
+
declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
|
|
461
|
+
declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
|
|
462
|
+
declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
|
|
463
|
+
declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
|
|
464
|
+
declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
|
|
465
|
+
declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
|
|
466
|
+
declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
|
|
467
|
+
declare const Arrows_CircleLineUp: typeof CircleLineUp;
|
|
468
|
+
declare const Arrows_CircleLineDown: typeof CircleLineDown;
|
|
469
|
+
declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
|
|
470
|
+
declare const Arrows_CircleLineRight: typeof CircleLineRight;
|
|
214
471
|
declare namespace Arrows {
|
|
215
472
|
export {
|
|
216
473
|
Arrows_ChevronDown as ChevronDown,
|
|
@@ -220,6 +477,17 @@ declare namespace Arrows {
|
|
|
220
477
|
Arrows_ChevronUp as ChevronUp,
|
|
221
478
|
Arrows_ChevronUpSolid as ChevronUpSolid,
|
|
222
479
|
Arrows_CircleUp as CircleUp,
|
|
480
|
+
Arrows_CircleChevronLeft as CircleChevronLeft,
|
|
481
|
+
Arrows_CircleChevronRight as CircleChevronRight,
|
|
482
|
+
Arrows_CircleChevronDown as CircleChevronDown,
|
|
483
|
+
Arrows_CircleChevronUp as CircleChevronUp,
|
|
484
|
+
Arrows_ChevronDownVariant as ChevronDownVariant,
|
|
485
|
+
Arrows_ChevronUpVariant as ChevronUpVariant,
|
|
486
|
+
Arrows_ChevronLeftVariant as ChevronLeftVariant,
|
|
487
|
+
Arrows_CircleLineUp as CircleLineUp,
|
|
488
|
+
Arrows_CircleLineDown as CircleLineDown,
|
|
489
|
+
Arrows_CircleLineLeft as CircleLineLeft,
|
|
490
|
+
Arrows_CircleLineRight as CircleLineRight,
|
|
223
491
|
};
|
|
224
492
|
}
|
|
225
493
|
|
|
@@ -243,6 +511,18 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
|
|
|
243
511
|
|
|
244
512
|
declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
245
513
|
|
|
514
|
+
declare const LightBulb$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
515
|
+
|
|
516
|
+
declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
517
|
+
|
|
518
|
+
declare const CircleNumber: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
519
|
+
|
|
520
|
+
declare const SizeEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
521
|
+
|
|
522
|
+
declare const PlayMini: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
523
|
+
|
|
524
|
+
declare const ShippingEmpty: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
525
|
+
|
|
246
526
|
declare const PDP_Clock: typeof Clock;
|
|
247
527
|
declare const PDP_FlagUSA: typeof FlagUSA;
|
|
248
528
|
declare const PDP_Minus: typeof Minus;
|
|
@@ -253,6 +533,11 @@ declare const PDP_StarEmpty: typeof StarEmpty;
|
|
|
253
533
|
declare const PDP_StarHalf: typeof StarHalf;
|
|
254
534
|
declare const PDP_Stopwatch: typeof Stopwatch;
|
|
255
535
|
declare const PDP_Shipping: typeof Shipping;
|
|
536
|
+
declare const PDP_ErrorCross: typeof ErrorCross;
|
|
537
|
+
declare const PDP_CircleNumber: typeof CircleNumber;
|
|
538
|
+
declare const PDP_SizeEmpty: typeof SizeEmpty;
|
|
539
|
+
declare const PDP_PlayMini: typeof PlayMini;
|
|
540
|
+
declare const PDP_ShippingEmpty: typeof ShippingEmpty;
|
|
256
541
|
declare namespace PDP {
|
|
257
542
|
export {
|
|
258
543
|
PDP_Clock as Clock,
|
|
@@ -265,6 +550,12 @@ declare namespace PDP {
|
|
|
265
550
|
PDP_StarHalf as StarHalf,
|
|
266
551
|
PDP_Stopwatch as Stopwatch,
|
|
267
552
|
PDP_Shipping as Shipping,
|
|
553
|
+
LightBulb$1 as LightBulb,
|
|
554
|
+
PDP_ErrorCross as ErrorCross,
|
|
555
|
+
PDP_CircleNumber as CircleNumber,
|
|
556
|
+
PDP_SizeEmpty as SizeEmpty,
|
|
557
|
+
PDP_PlayMini as PlayMini,
|
|
558
|
+
PDP_ShippingEmpty as ShippingEmpty,
|
|
268
559
|
};
|
|
269
560
|
}
|
|
270
561
|
|
|
@@ -282,6 +573,8 @@ declare const Twitter: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
282
573
|
|
|
283
574
|
declare const Youtube: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
284
575
|
|
|
576
|
+
declare const Interaction: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
577
|
+
|
|
285
578
|
declare const SocialMedia_Facebook: typeof Facebook;
|
|
286
579
|
declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
|
|
287
580
|
declare const SocialMedia_Instagram: typeof Instagram;
|
|
@@ -289,6 +582,7 @@ declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
|
|
|
289
582
|
declare const SocialMedia_Pinterest: typeof Pinterest;
|
|
290
583
|
declare const SocialMedia_Twitter: typeof Twitter;
|
|
291
584
|
declare const SocialMedia_Youtube: typeof Youtube;
|
|
585
|
+
declare const SocialMedia_Interaction: typeof Interaction;
|
|
292
586
|
declare namespace SocialMedia {
|
|
293
587
|
export {
|
|
294
588
|
SocialMedia_Facebook as Facebook,
|
|
@@ -298,14 +592,15 @@ declare namespace SocialMedia {
|
|
|
298
592
|
SocialMedia_Pinterest as Pinterest,
|
|
299
593
|
SocialMedia_Twitter as Twitter,
|
|
300
594
|
SocialMedia_Youtube as Youtube,
|
|
595
|
+
SocialMedia_Interaction as Interaction,
|
|
301
596
|
};
|
|
302
597
|
}
|
|
303
598
|
|
|
304
|
-
declare const Search: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
599
|
+
declare const Search: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
305
600
|
|
|
306
601
|
declare const User: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
307
602
|
|
|
308
|
-
declare const ShoppingBag: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
603
|
+
declare const ShoppingBag: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
309
604
|
|
|
310
605
|
declare const ShoppingCart: FC<IconProps>;
|
|
311
606
|
|
|
@@ -313,12 +608,64 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
313
608
|
|
|
314
609
|
declare const Hamburger: FC<IconProps>;
|
|
315
610
|
|
|
611
|
+
declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
612
|
+
|
|
613
|
+
declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
614
|
+
|
|
615
|
+
declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
616
|
+
|
|
617
|
+
declare const Home: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
618
|
+
|
|
619
|
+
declare const HomeSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
620
|
+
|
|
621
|
+
declare const ShoppingBagV2: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
622
|
+
|
|
623
|
+
declare const UserSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
624
|
+
|
|
625
|
+
declare const SlideDot$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
626
|
+
|
|
627
|
+
declare const SlideDotSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
628
|
+
|
|
629
|
+
declare const Ellipsis: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
630
|
+
|
|
631
|
+
declare const EllipsisHorizontal: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
632
|
+
|
|
633
|
+
declare const Filters$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
634
|
+
|
|
635
|
+
declare const Lock: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
636
|
+
|
|
637
|
+
declare const LockSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
638
|
+
|
|
639
|
+
declare const Loading: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
640
|
+
|
|
641
|
+
declare const MapSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
642
|
+
|
|
643
|
+
declare const UserV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
644
|
+
|
|
645
|
+
declare const ShoppingCartV2: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
646
|
+
|
|
316
647
|
declare const Navigation_Search: typeof Search;
|
|
317
648
|
declare const Navigation_User: typeof User;
|
|
318
649
|
declare const Navigation_ShoppingBag: typeof ShoppingBag;
|
|
319
650
|
declare const Navigation_ShoppingCart: typeof ShoppingCart;
|
|
320
651
|
declare const Navigation_MapMarker: typeof MapMarker;
|
|
321
652
|
declare const Navigation_Hamburger: typeof Hamburger;
|
|
653
|
+
declare const Navigation_AddressInformation: typeof AddressInformation;
|
|
654
|
+
declare const Navigation_ClubMembership: typeof ClubMembership;
|
|
655
|
+
declare const Navigation_Benefits: typeof Benefits;
|
|
656
|
+
declare const Navigation_Home: typeof Home;
|
|
657
|
+
declare const Navigation_HomeSolid: typeof HomeSolid;
|
|
658
|
+
declare const Navigation_ShoppingBagV2: typeof ShoppingBagV2;
|
|
659
|
+
declare const Navigation_UserSolid: typeof UserSolid;
|
|
660
|
+
declare const Navigation_SlideDotSolid: typeof SlideDotSolid;
|
|
661
|
+
declare const Navigation_Ellipsis: typeof Ellipsis;
|
|
662
|
+
declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
|
|
663
|
+
declare const Navigation_Lock: typeof Lock;
|
|
664
|
+
declare const Navigation_LockSolid: typeof LockSolid;
|
|
665
|
+
declare const Navigation_Loading: typeof Loading;
|
|
666
|
+
declare const Navigation_MapSolid: typeof MapSolid;
|
|
667
|
+
declare const Navigation_UserV2: typeof UserV2;
|
|
668
|
+
declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
|
|
322
669
|
declare namespace Navigation {
|
|
323
670
|
export {
|
|
324
671
|
Navigation_Search as Search,
|
|
@@ -327,6 +674,24 @@ declare namespace Navigation {
|
|
|
327
674
|
Navigation_ShoppingCart as ShoppingCart,
|
|
328
675
|
Navigation_MapMarker as MapMarker,
|
|
329
676
|
Navigation_Hamburger as Hamburger,
|
|
677
|
+
Navigation_AddressInformation as AddressInformation,
|
|
678
|
+
Navigation_ClubMembership as ClubMembership,
|
|
679
|
+
Navigation_Benefits as Benefits,
|
|
680
|
+
Navigation_Home as Home,
|
|
681
|
+
Navigation_HomeSolid as HomeSolid,
|
|
682
|
+
Navigation_ShoppingBagV2 as ShoppingBagV2,
|
|
683
|
+
Navigation_UserSolid as UserSolid,
|
|
684
|
+
SlideDot$1 as SlideDot,
|
|
685
|
+
Navigation_SlideDotSolid as SlideDotSolid,
|
|
686
|
+
Navigation_Ellipsis as Ellipsis,
|
|
687
|
+
Navigation_EllipsisHorizontal as EllipsisHorizontal,
|
|
688
|
+
Filters$1 as Filters,
|
|
689
|
+
Navigation_Lock as Lock,
|
|
690
|
+
Navigation_LockSolid as LockSolid,
|
|
691
|
+
Navigation_Loading as Loading,
|
|
692
|
+
Navigation_MapSolid as MapSolid,
|
|
693
|
+
Navigation_UserV2 as UserV2,
|
|
694
|
+
Navigation_ShoppingCartV2 as ShoppingCartV2,
|
|
330
695
|
};
|
|
331
696
|
}
|
|
332
697
|
|
|
@@ -347,18 +712,61 @@ interface IconWrapperProps {
|
|
|
347
712
|
fill?: string;
|
|
348
713
|
}
|
|
349
714
|
|
|
350
|
-
declare const Mail: ({ height, width }: IconWrapperProps) => JSX.Element;
|
|
715
|
+
declare const Mail: ({ height, width, }: Pick<IconWrapperProps, 'width' | 'height'>) => JSX.Element;
|
|
716
|
+
|
|
717
|
+
declare const Community$1: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
718
|
+
|
|
719
|
+
declare const QuoteLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
720
|
+
|
|
721
|
+
declare const QuoteRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
722
|
+
|
|
723
|
+
declare const QuoteSolidLeft: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
724
|
+
|
|
725
|
+
declare const QuoteSolidRight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
726
|
+
|
|
727
|
+
declare const Light: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
728
|
+
|
|
729
|
+
declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
730
|
+
|
|
731
|
+
declare const LightBulbSolid: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
732
|
+
|
|
733
|
+
declare const CommentDots: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
734
|
+
|
|
735
|
+
declare const CommentLight: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
736
|
+
|
|
737
|
+
declare const CommentMoney: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
351
738
|
|
|
352
739
|
declare const Messaging_QuestionCircle: typeof QuestionCircle;
|
|
353
740
|
declare const Messaging_Messenger: typeof Messenger;
|
|
354
741
|
declare const Messaging_Comment: typeof Comment;
|
|
355
742
|
declare const Messaging_Mail: typeof Mail;
|
|
743
|
+
declare const Messaging_QuoteLeft: typeof QuoteLeft;
|
|
744
|
+
declare const Messaging_QuoteRight: typeof QuoteRight;
|
|
745
|
+
declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
|
|
746
|
+
declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
|
|
747
|
+
declare const Messaging_Light: typeof Light;
|
|
748
|
+
declare const Messaging_LightBulb: typeof LightBulb;
|
|
749
|
+
declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
|
|
750
|
+
declare const Messaging_CommentDots: typeof CommentDots;
|
|
751
|
+
declare const Messaging_CommentLight: typeof CommentLight;
|
|
752
|
+
declare const Messaging_CommentMoney: typeof CommentMoney;
|
|
356
753
|
declare namespace Messaging {
|
|
357
754
|
export {
|
|
358
755
|
Messaging_QuestionCircle as QuestionCircle,
|
|
359
756
|
Messaging_Messenger as Messenger,
|
|
360
757
|
Messaging_Comment as Comment,
|
|
361
758
|
Messaging_Mail as Mail,
|
|
759
|
+
Community$1 as Community,
|
|
760
|
+
Messaging_QuoteLeft as QuoteLeft,
|
|
761
|
+
Messaging_QuoteRight as QuoteRight,
|
|
762
|
+
Messaging_QuoteSolidLeft as QuoteSolidLeft,
|
|
763
|
+
Messaging_QuoteSolidRight as QuoteSolidRight,
|
|
764
|
+
Messaging_Light as Light,
|
|
765
|
+
Messaging_LightBulb as LightBulb,
|
|
766
|
+
Messaging_LightBulbSolid as LightBulbSolid,
|
|
767
|
+
Messaging_CommentDots as CommentDots,
|
|
768
|
+
Messaging_CommentLight as CommentLight,
|
|
769
|
+
Messaging_CommentMoney as CommentMoney,
|
|
362
770
|
};
|
|
363
771
|
}
|
|
364
772
|
|
|
@@ -419,10 +827,79 @@ declare namespace SlideDots {
|
|
|
419
827
|
|
|
420
828
|
declare const Thinking: ({ height, width }: IconProps$1) => JSX.Element;
|
|
421
829
|
|
|
830
|
+
declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
|
|
831
|
+
|
|
832
|
+
declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
833
|
+
|
|
834
|
+
declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
|
|
835
|
+
|
|
836
|
+
declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
|
|
837
|
+
|
|
838
|
+
declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
839
|
+
|
|
840
|
+
declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
|
|
841
|
+
|
|
422
842
|
declare const Emoji_Thinking: typeof Thinking;
|
|
843
|
+
declare const Emoji_SmilingV2: typeof SmilingV2;
|
|
844
|
+
declare const Emoji_Grinning: typeof Grinning;
|
|
845
|
+
declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
|
|
846
|
+
declare const Emoji_BlowingKiss: typeof BlowingKiss;
|
|
847
|
+
declare const Emoji_Frowning: typeof Frowning;
|
|
848
|
+
declare const Emoji_Relieved: typeof Relieved;
|
|
423
849
|
declare namespace Emoji {
|
|
424
850
|
export {
|
|
425
851
|
Emoji_Thinking as Thinking,
|
|
852
|
+
Emoji_SmilingV2 as SmilingV2,
|
|
853
|
+
Emoji_Grinning as Grinning,
|
|
854
|
+
Emoji_GrinningWithSweat as GrinningWithSweat,
|
|
855
|
+
Emoji_BlowingKiss as BlowingKiss,
|
|
856
|
+
Emoji_Frowning as Frowning,
|
|
857
|
+
Emoji_Relieved as Relieved,
|
|
858
|
+
};
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
862
|
+
|
|
863
|
+
declare const PersonalStylist: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
864
|
+
|
|
865
|
+
declare const Community: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
866
|
+
|
|
867
|
+
declare const VIP: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
868
|
+
|
|
869
|
+
declare const DealsOffers: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
870
|
+
|
|
871
|
+
declare const StyleFashionContent: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
872
|
+
|
|
873
|
+
declare const MembersOnlyDiscount: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
874
|
+
|
|
875
|
+
declare const Profile: ({ height, width, fill, testId }: IconProps) => JSX.Element;
|
|
876
|
+
|
|
877
|
+
declare const MembersOnlyDiscountOpposite: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
878
|
+
|
|
879
|
+
declare const PriorityShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
880
|
+
|
|
881
|
+
declare const MyAccount_FreeShipping: typeof FreeShipping;
|
|
882
|
+
declare const MyAccount_PersonalStylist: typeof PersonalStylist;
|
|
883
|
+
declare const MyAccount_Community: typeof Community;
|
|
884
|
+
declare const MyAccount_VIP: typeof VIP;
|
|
885
|
+
declare const MyAccount_DealsOffers: typeof DealsOffers;
|
|
886
|
+
declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
|
|
887
|
+
declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
|
|
888
|
+
declare const MyAccount_Profile: typeof Profile;
|
|
889
|
+
declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
|
|
890
|
+
declare const MyAccount_PriorityShipping: typeof PriorityShipping;
|
|
891
|
+
declare namespace MyAccount {
|
|
892
|
+
export {
|
|
893
|
+
MyAccount_FreeShipping as FreeShipping,
|
|
894
|
+
MyAccount_PersonalStylist as PersonalStylist,
|
|
895
|
+
MyAccount_Community as Community,
|
|
896
|
+
MyAccount_VIP as VIP,
|
|
897
|
+
MyAccount_DealsOffers as DealsOffers,
|
|
898
|
+
MyAccount_StyleFashionContent as StyleFashionContent,
|
|
899
|
+
MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
|
|
900
|
+
MyAccount_Profile as Profile,
|
|
901
|
+
MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
|
|
902
|
+
MyAccount_PriorityShipping as PriorityShipping,
|
|
426
903
|
};
|
|
427
904
|
}
|
|
428
905
|
|
|
@@ -440,6 +917,7 @@ declare const Icon: {
|
|
|
440
917
|
Payment: typeof Payment;
|
|
441
918
|
SlideDots: typeof SlideDots;
|
|
442
919
|
Emoji: typeof Emoji;
|
|
920
|
+
MyAccount: typeof MyAccount;
|
|
443
921
|
};
|
|
444
922
|
|
|
445
923
|
interface CardBodyProps {
|
|
@@ -456,7 +934,7 @@ interface borderProps {
|
|
|
456
934
|
}
|
|
457
935
|
interface CardProps {
|
|
458
936
|
children: ReactNode;
|
|
459
|
-
backgroundColor
|
|
937
|
+
backgroundColor?: string;
|
|
460
938
|
widthAuto?: boolean;
|
|
461
939
|
border?: borderProps;
|
|
462
940
|
flex?: boolean;
|
|
@@ -496,6 +974,21 @@ declare type UncontrolledProps<T> = {
|
|
|
496
974
|
declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
|
|
497
975
|
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, }: SimpleDropdownProps<T>): JSX.Element;
|
|
498
976
|
|
|
977
|
+
interface DialogPositionProps {
|
|
978
|
+
top: string;
|
|
979
|
+
right: string;
|
|
980
|
+
}
|
|
981
|
+
interface DialogDropdownProps {
|
|
982
|
+
options: {
|
|
983
|
+
label: string;
|
|
984
|
+
value: string;
|
|
985
|
+
}[];
|
|
986
|
+
position: DialogPositionProps;
|
|
987
|
+
style?: React.CSSProperties;
|
|
988
|
+
className?: string;
|
|
989
|
+
}
|
|
990
|
+
declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
|
|
991
|
+
|
|
499
992
|
interface SizeSelectorProps {
|
|
500
993
|
label: string;
|
|
501
994
|
sizes: SizeOption[];
|
|
@@ -525,6 +1018,7 @@ interface BaseButtonProps {
|
|
|
525
1018
|
inline?: boolean;
|
|
526
1019
|
uppercase?: boolean;
|
|
527
1020
|
testId?: string;
|
|
1021
|
+
id?: string;
|
|
528
1022
|
}
|
|
529
1023
|
|
|
530
1024
|
declare type BaseProps = Pick<BaseButtonProps, 'disabled' | 'type' | 'onClick'>;
|
|
@@ -546,8 +1040,9 @@ interface DiscountTagProps {
|
|
|
546
1040
|
borderColor?: string;
|
|
547
1041
|
textColor?: string;
|
|
548
1042
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1043
|
+
style?: React.CSSProperties;
|
|
549
1044
|
}
|
|
550
|
-
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, }: DiscountTagProps) => JSX.Element;
|
|
1045
|
+
declare const DiscountTag: ({ discount, offText, disabled, backgroundColor, borderColor, textColor, size, style, }: DiscountTagProps) => JSX.Element;
|
|
551
1046
|
|
|
552
1047
|
interface PriceLabelProps {
|
|
553
1048
|
finalPrice: string | number;
|
|
@@ -555,9 +1050,15 @@ interface PriceLabelProps {
|
|
|
555
1050
|
color?: string;
|
|
556
1051
|
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
557
1052
|
discount?: DiscountTagProps;
|
|
1053
|
+
finalPriceStyled?: boolean;
|
|
1054
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1055
|
+
originalPriceStyled?: boolean;
|
|
1056
|
+
originalPriceUnderlined?: boolean;
|
|
558
1057
|
testId?: string;
|
|
559
1058
|
}
|
|
560
|
-
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, size, }: PriceLabelProps) => JSX.Element;
|
|
1059
|
+
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
1060
|
+
|
|
1061
|
+
declare const PriceLabelV2: ({ finalPrice, originalPrice, discount, color, testId, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
561
1062
|
|
|
562
1063
|
interface ColorPickerProps {
|
|
563
1064
|
options: ColorPickerOption[];
|
|
@@ -579,12 +1080,17 @@ declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: M
|
|
|
579
1080
|
interface ProductGalleryProps {
|
|
580
1081
|
images: ImageType[];
|
|
581
1082
|
selectedValue?: ImageType;
|
|
582
|
-
|
|
583
|
-
|
|
1083
|
+
topTag?: JSX.Element;
|
|
1084
|
+
bottomTag?: JSX.Element;
|
|
584
1085
|
productImageDataTestId?: string;
|
|
585
1086
|
previewListDataTestId?: string;
|
|
1087
|
+
thumbnailPosition?: 'vertical' | 'horizontal';
|
|
1088
|
+
borderRadiusVariant?: boolean;
|
|
1089
|
+
previewImgBorderColor?: string;
|
|
1090
|
+
ctaText?: string;
|
|
1091
|
+
ctaAction?: () => void;
|
|
586
1092
|
}
|
|
587
|
-
declare const ProductGallery: ({ images, selectedValue,
|
|
1093
|
+
declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, }: ProductGalleryProps) => JSX.Element;
|
|
588
1094
|
|
|
589
1095
|
interface RatingProps {
|
|
590
1096
|
rating: number;
|
|
@@ -592,8 +1098,10 @@ interface RatingProps {
|
|
|
592
1098
|
reviews: number;
|
|
593
1099
|
reviewsText: string;
|
|
594
1100
|
wrapWithParenthesis?: boolean;
|
|
1101
|
+
underline?: boolean;
|
|
1102
|
+
reviewsContainerId?: string;
|
|
595
1103
|
}
|
|
596
|
-
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, }: RatingProps) => JSX.Element;
|
|
1104
|
+
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
|
|
597
1105
|
|
|
598
1106
|
interface FitPredictorProps {
|
|
599
1107
|
onClick: () => void;
|
|
@@ -620,31 +1128,45 @@ interface TooltipProps {
|
|
|
620
1128
|
children: React.ReactNode;
|
|
621
1129
|
position: ComponentPosition;
|
|
622
1130
|
align?: 'start' | 'center' | 'end';
|
|
623
|
-
|
|
1131
|
+
content?: {
|
|
1132
|
+
text: string;
|
|
1133
|
+
color?: string;
|
|
1134
|
+
};
|
|
1135
|
+
backgroundColor?: string;
|
|
1136
|
+
maxWidth?: string;
|
|
624
1137
|
header?: {
|
|
625
1138
|
title: string;
|
|
626
|
-
|
|
1139
|
+
titleColor?: string;
|
|
1140
|
+
Icon?: IconType;
|
|
1141
|
+
iconFill?: string;
|
|
627
1142
|
};
|
|
628
1143
|
onClick?: () => void;
|
|
629
1144
|
}
|
|
630
|
-
declare const Tooltip: ({ children, position,
|
|
1145
|
+
declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
|
|
631
1146
|
|
|
632
1147
|
interface AccordionProps {
|
|
633
1148
|
defaultOpen?: boolean;
|
|
1149
|
+
forceOpenHandler?: boolean;
|
|
1150
|
+
forceOpenValue?: boolean;
|
|
1151
|
+
titleColor?: string;
|
|
634
1152
|
variant: 'simple' | 'box';
|
|
635
1153
|
header: ReactNode;
|
|
1154
|
+
headerOnOpen?: ReactNode;
|
|
636
1155
|
content: ReactNode;
|
|
637
1156
|
disabled?: boolean;
|
|
1157
|
+
innerHTML?: boolean;
|
|
638
1158
|
openIcon: IconType;
|
|
639
1159
|
closeIcon: IconType;
|
|
1160
|
+
onClick?: (index: number) => void;
|
|
640
1161
|
}
|
|
641
|
-
declare const Accordion: ({ header, content, defaultOpen, variant, disabled, openIcon, closeIcon, }: AccordionProps) => JSX.Element;
|
|
1162
|
+
declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
|
|
642
1163
|
|
|
643
1164
|
declare const ThemeProvider: FC<{
|
|
644
1165
|
theme: Theme;
|
|
645
1166
|
children: ReactNode;
|
|
646
1167
|
}>;
|
|
647
1168
|
declare const useTheme: () => Theme;
|
|
1169
|
+
|
|
648
1170
|
declare const ThemeVariables: FC<{
|
|
649
1171
|
theme: Theme;
|
|
650
1172
|
Container?: ElementType;
|
|
@@ -702,6 +1224,7 @@ declare type ThemeColors = {
|
|
|
702
1224
|
50: ThemeBasicPallete;
|
|
703
1225
|
100: ThemeBasicPallete;
|
|
704
1226
|
150: ThemeBasicPallete;
|
|
1227
|
+
175: ThemeBasicPallete;
|
|
705
1228
|
200: ThemeBasicPallete;
|
|
706
1229
|
250: ThemeBasicPallete;
|
|
707
1230
|
300: ThemeBasicPallete;
|
|
@@ -745,6 +1268,10 @@ declare type ThemeComponent = {
|
|
|
745
1268
|
border: string;
|
|
746
1269
|
borderRadius: string;
|
|
747
1270
|
fontWeight: number;
|
|
1271
|
+
lineHeight: string;
|
|
1272
|
+
letterSpacing: string;
|
|
1273
|
+
minWidth: string;
|
|
1274
|
+
minHeight: string;
|
|
748
1275
|
size: {
|
|
749
1276
|
small: {
|
|
750
1277
|
fontSize: string;
|
|
@@ -791,6 +1318,12 @@ declare type ThemeComponent = {
|
|
|
791
1318
|
lineHeight: string;
|
|
792
1319
|
border: string;
|
|
793
1320
|
boxShadow: string;
|
|
1321
|
+
errorBorder: string;
|
|
1322
|
+
};
|
|
1323
|
+
inputPlaceholder: {
|
|
1324
|
+
fontSize: string;
|
|
1325
|
+
padding: string;
|
|
1326
|
+
focusBorder: string;
|
|
794
1327
|
};
|
|
795
1328
|
inputCustom: {
|
|
796
1329
|
button: {
|
|
@@ -823,6 +1356,12 @@ declare type ThemeComponent = {
|
|
|
823
1356
|
border: string;
|
|
824
1357
|
color: string;
|
|
825
1358
|
};
|
|
1359
|
+
noStock: {
|
|
1360
|
+
fontWeight: number;
|
|
1361
|
+
background: string;
|
|
1362
|
+
border: string;
|
|
1363
|
+
color: string;
|
|
1364
|
+
};
|
|
826
1365
|
disabled: {
|
|
827
1366
|
border: string;
|
|
828
1367
|
};
|
|
@@ -876,10 +1415,13 @@ declare type ThemeComponent = {
|
|
|
876
1415
|
};
|
|
877
1416
|
card: {
|
|
878
1417
|
borderRadius: string;
|
|
1418
|
+
backgroundColor: string;
|
|
879
1419
|
};
|
|
880
1420
|
radio: {
|
|
881
1421
|
borderColor: string;
|
|
882
1422
|
background: string;
|
|
1423
|
+
textSize: string;
|
|
1424
|
+
lineHeight: string;
|
|
883
1425
|
size: {
|
|
884
1426
|
small: {
|
|
885
1427
|
borderWidth: string;
|
|
@@ -908,6 +1450,7 @@ declare type ThemeComponent = {
|
|
|
908
1450
|
};
|
|
909
1451
|
};
|
|
910
1452
|
label: {
|
|
1453
|
+
color: string;
|
|
911
1454
|
fontSize: {
|
|
912
1455
|
small: string;
|
|
913
1456
|
medium: string;
|
|
@@ -1021,6 +1564,7 @@ declare type ThemeComponent = {
|
|
|
1021
1564
|
options: {
|
|
1022
1565
|
borderColor: string;
|
|
1023
1566
|
color: string;
|
|
1567
|
+
borderRadius: string;
|
|
1024
1568
|
};
|
|
1025
1569
|
};
|
|
1026
1570
|
modal: {
|
|
@@ -1034,6 +1578,168 @@ declare type ThemeComponent = {
|
|
|
1034
1578
|
selectedContrast: string;
|
|
1035
1579
|
tagColor: string;
|
|
1036
1580
|
};
|
|
1581
|
+
slideNavigation: {
|
|
1582
|
+
slideDots: {
|
|
1583
|
+
unselectedDotColor: string;
|
|
1584
|
+
selectedDotColor: string;
|
|
1585
|
+
dotsOpacity: number;
|
|
1586
|
+
};
|
|
1587
|
+
};
|
|
1588
|
+
beforeAfter: {
|
|
1589
|
+
size: {
|
|
1590
|
+
small: {
|
|
1591
|
+
image: {
|
|
1592
|
+
minHeight: string;
|
|
1593
|
+
minWidth: string;
|
|
1594
|
+
mobile: {
|
|
1595
|
+
minHeight: string;
|
|
1596
|
+
minWidth: string;
|
|
1597
|
+
};
|
|
1598
|
+
};
|
|
1599
|
+
imageContainer: {
|
|
1600
|
+
maxWidth: string;
|
|
1601
|
+
padding: string;
|
|
1602
|
+
mobile: {
|
|
1603
|
+
maxWidth: string;
|
|
1604
|
+
};
|
|
1605
|
+
};
|
|
1606
|
+
userInfoText: {
|
|
1607
|
+
fontSize: string;
|
|
1608
|
+
mobile: {
|
|
1609
|
+
fontSize: string;
|
|
1610
|
+
};
|
|
1611
|
+
};
|
|
1612
|
+
};
|
|
1613
|
+
medium: {
|
|
1614
|
+
image: {
|
|
1615
|
+
minHeight: string;
|
|
1616
|
+
minWidth: string;
|
|
1617
|
+
mobile: {
|
|
1618
|
+
minHeight: string;
|
|
1619
|
+
minWidth: string;
|
|
1620
|
+
};
|
|
1621
|
+
};
|
|
1622
|
+
imageContainer: {
|
|
1623
|
+
maxWidth: string;
|
|
1624
|
+
padding: string;
|
|
1625
|
+
mobile: {
|
|
1626
|
+
maxWidth: string;
|
|
1627
|
+
};
|
|
1628
|
+
};
|
|
1629
|
+
userInfoText: {
|
|
1630
|
+
fontSize: string;
|
|
1631
|
+
mobile: {
|
|
1632
|
+
fontSize: string;
|
|
1633
|
+
};
|
|
1634
|
+
};
|
|
1635
|
+
};
|
|
1636
|
+
large: {
|
|
1637
|
+
image: {
|
|
1638
|
+
minHeight: string;
|
|
1639
|
+
minWidth: string;
|
|
1640
|
+
mobile: {
|
|
1641
|
+
minHeight: string;
|
|
1642
|
+
minWidth: string;
|
|
1643
|
+
};
|
|
1644
|
+
};
|
|
1645
|
+
imageContainer: {
|
|
1646
|
+
maxWidth: string;
|
|
1647
|
+
padding: string;
|
|
1648
|
+
mobile: {
|
|
1649
|
+
maxWidth: string;
|
|
1650
|
+
};
|
|
1651
|
+
};
|
|
1652
|
+
userInfoText: {
|
|
1653
|
+
fontSize: string;
|
|
1654
|
+
mobile: {
|
|
1655
|
+
fontSize: string;
|
|
1656
|
+
};
|
|
1657
|
+
};
|
|
1658
|
+
};
|
|
1659
|
+
};
|
|
1660
|
+
};
|
|
1661
|
+
total: {
|
|
1662
|
+
basicTotal: {
|
|
1663
|
+
amount: {
|
|
1664
|
+
color: string;
|
|
1665
|
+
fontSize: string;
|
|
1666
|
+
};
|
|
1667
|
+
currency: {
|
|
1668
|
+
color: string;
|
|
1669
|
+
fontSize: string;
|
|
1670
|
+
lineHeight: string;
|
|
1671
|
+
alignSelf?: string;
|
|
1672
|
+
};
|
|
1673
|
+
savings: {
|
|
1674
|
+
textFontSize: string;
|
|
1675
|
+
textLineHeight: string;
|
|
1676
|
+
amountFontSize: string;
|
|
1677
|
+
amountFontWeight: number;
|
|
1678
|
+
amountLineHeight: string;
|
|
1679
|
+
color?: string;
|
|
1680
|
+
};
|
|
1681
|
+
};
|
|
1682
|
+
};
|
|
1683
|
+
subTotal: {
|
|
1684
|
+
basicSubTotal: {
|
|
1685
|
+
family: string;
|
|
1686
|
+
size: string;
|
|
1687
|
+
weight: number;
|
|
1688
|
+
lineHeight: string;
|
|
1689
|
+
color: string;
|
|
1690
|
+
};
|
|
1691
|
+
};
|
|
1692
|
+
pricing: {
|
|
1693
|
+
priceLabel: {
|
|
1694
|
+
price: {
|
|
1695
|
+
size: ComponentSize$1.Small | ComponentSize$1.Medium | ComponentSize$1.Large;
|
|
1696
|
+
originalPriceColor: string;
|
|
1697
|
+
actualPriceColor: string;
|
|
1698
|
+
};
|
|
1699
|
+
};
|
|
1700
|
+
};
|
|
1701
|
+
orderSummary: {
|
|
1702
|
+
headingTextAlign: string;
|
|
1703
|
+
backgroundColor: string;
|
|
1704
|
+
maxWidth?: string;
|
|
1705
|
+
padding?: string;
|
|
1706
|
+
borderRadius?: string;
|
|
1707
|
+
onMobile: {
|
|
1708
|
+
maxWidth?: string;
|
|
1709
|
+
padding?: string;
|
|
1710
|
+
backgroundColor?: string;
|
|
1711
|
+
};
|
|
1712
|
+
};
|
|
1713
|
+
expressCheckout: {
|
|
1714
|
+
fontFamily: string;
|
|
1715
|
+
fontWeight: number;
|
|
1716
|
+
lineHeight: string;
|
|
1717
|
+
};
|
|
1718
|
+
copyrightText: {
|
|
1719
|
+
fontSize: string;
|
|
1720
|
+
fontWeight: number;
|
|
1721
|
+
lineHeight: string;
|
|
1722
|
+
color: string;
|
|
1723
|
+
};
|
|
1724
|
+
textButton: {
|
|
1725
|
+
fontWeight: number;
|
|
1726
|
+
lineHeight: string;
|
|
1727
|
+
};
|
|
1728
|
+
deliveryDetails: {
|
|
1729
|
+
note: {
|
|
1730
|
+
accentColor: string;
|
|
1731
|
+
color: string;
|
|
1732
|
+
backgroundColor: string;
|
|
1733
|
+
};
|
|
1734
|
+
SectionDetails?: {
|
|
1735
|
+
marginLeft: string;
|
|
1736
|
+
};
|
|
1737
|
+
};
|
|
1738
|
+
text: {
|
|
1739
|
+
orderHeader: {
|
|
1740
|
+
color: string;
|
|
1741
|
+
};
|
|
1742
|
+
};
|
|
1037
1743
|
};
|
|
1038
1744
|
declare type ThemeTypography = {
|
|
1039
1745
|
config: {
|
|
@@ -1060,6 +1766,11 @@ declare type ThemeAssets = {
|
|
|
1060
1766
|
images: {
|
|
1061
1767
|
favicon: string;
|
|
1062
1768
|
logo: string;
|
|
1769
|
+
logoSize?: {
|
|
1770
|
+
width: string;
|
|
1771
|
+
height: string;
|
|
1772
|
+
};
|
|
1773
|
+
logoMobile?: string;
|
|
1063
1774
|
};
|
|
1064
1775
|
[key: string]: any;
|
|
1065
1776
|
};
|
|
@@ -1070,11 +1781,12 @@ interface CheckboxProps {
|
|
|
1070
1781
|
size?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1071
1782
|
text: string;
|
|
1072
1783
|
checked?: boolean;
|
|
1784
|
+
blockUncheck?: boolean;
|
|
1073
1785
|
id: string;
|
|
1074
1786
|
backgroundColor?: string;
|
|
1075
|
-
variant: 'primary' | 'secondary';
|
|
1787
|
+
variant: 'primary' | 'secondary' | 'color';
|
|
1076
1788
|
}
|
|
1077
|
-
declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, }: CheckboxProps) => JSX.Element;
|
|
1789
|
+
declare const Checkbox: ({ disabled, onChange, size, text, checked, id, variant, blockUncheck, backgroundColor, }: CheckboxProps) => JSX.Element;
|
|
1078
1790
|
|
|
1079
1791
|
interface RadioGroupInputProps {
|
|
1080
1792
|
name: string;
|
|
@@ -1119,16 +1831,18 @@ interface CategoryTagProps {
|
|
|
1119
1831
|
text: string;
|
|
1120
1832
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1121
1833
|
className?: string;
|
|
1834
|
+
styledBorder?: boolean;
|
|
1122
1835
|
}
|
|
1123
|
-
declare const CategoryTag: ({ text, size, className }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1836
|
+
declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1124
1837
|
|
|
1125
1838
|
interface SeasonOfferTagProps {
|
|
1126
1839
|
text: string;
|
|
1127
1840
|
backgroundColor?: string;
|
|
1128
1841
|
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1129
1842
|
className?: string;
|
|
1843
|
+
styledBorder?: boolean;
|
|
1130
1844
|
}
|
|
1131
|
-
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1845
|
+
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1132
1846
|
|
|
1133
1847
|
interface TimeProps {
|
|
1134
1848
|
hours: number;
|
|
@@ -1141,7 +1855,14 @@ interface TimerProps extends TimeProps {
|
|
|
1141
1855
|
}
|
|
1142
1856
|
declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
|
|
1143
1857
|
|
|
1144
|
-
interface
|
|
1858
|
+
interface BaseInputCommonProps {
|
|
1859
|
+
id?: string;
|
|
1860
|
+
value?: string;
|
|
1861
|
+
innerRef?: React.Ref<HTMLInputElement>;
|
|
1862
|
+
onBlur?: () => void;
|
|
1863
|
+
onFocus?: () => void;
|
|
1864
|
+
onChange?: (value: string, event: any) => void;
|
|
1865
|
+
hideClear?: boolean;
|
|
1145
1866
|
defaultValue?: string;
|
|
1146
1867
|
maxLength?: number;
|
|
1147
1868
|
placeholder?: string;
|
|
@@ -1151,16 +1872,13 @@ interface BaseInputCommmonProps {
|
|
|
1151
1872
|
required?: string;
|
|
1152
1873
|
children?: React.ReactNode;
|
|
1153
1874
|
size?: 'regular' | 'small';
|
|
1875
|
+
inlinePlaceholder?: boolean;
|
|
1876
|
+
hasError?: boolean;
|
|
1877
|
+
inputType?: 'text' | 'email' | 'password' | 'url';
|
|
1878
|
+
name?: string;
|
|
1879
|
+
autoFocus?: boolean;
|
|
1154
1880
|
}
|
|
1155
|
-
|
|
1156
|
-
value: string;
|
|
1157
|
-
onChange: (value: string) => void;
|
|
1158
|
-
}
|
|
1159
|
-
interface BaseInputUncontrolled extends BaseInputCommmonProps {
|
|
1160
|
-
value?: never;
|
|
1161
|
-
onChange?: (value: string) => void;
|
|
1162
|
-
}
|
|
1163
|
-
declare type BaseInputProps = BaseInputControlled | BaseInputUncontrolled;
|
|
1881
|
+
declare type BaseInputProps = BaseInputCommonProps;
|
|
1164
1882
|
|
|
1165
1883
|
declare type BasePlusIconProps = BaseInputProps & {
|
|
1166
1884
|
Icon: IconType;
|
|
@@ -1199,7 +1917,7 @@ declare type CustomProps = BaseInputProps & {
|
|
|
1199
1917
|
};
|
|
1200
1918
|
|
|
1201
1919
|
declare const Input: {
|
|
1202
|
-
Simple: ({ value, onChange,
|
|
1920
|
+
Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, ...rest }: BaseInputCommonProps) => JSX.Element;
|
|
1203
1921
|
Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
|
|
1204
1922
|
SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
|
|
1205
1923
|
SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
|
|
@@ -1259,7 +1977,7 @@ declare type detail = {
|
|
|
1259
1977
|
details: string;
|
|
1260
1978
|
};
|
|
1261
1979
|
interface orderUpdate extends detail {
|
|
1262
|
-
keepMeUpdated
|
|
1980
|
+
keepMeUpdated?: {
|
|
1263
1981
|
title: string;
|
|
1264
1982
|
onClick: () => void;
|
|
1265
1983
|
};
|
|
@@ -1272,9 +1990,9 @@ interface DeliveryDetailsProps {
|
|
|
1272
1990
|
note?: {
|
|
1273
1991
|
importantNoteText: string;
|
|
1274
1992
|
text: string;
|
|
1275
|
-
accentColor
|
|
1276
|
-
backgroundColor
|
|
1277
|
-
color
|
|
1993
|
+
accentColor?: string;
|
|
1994
|
+
backgroundColor?: string;
|
|
1995
|
+
color?: string;
|
|
1278
1996
|
};
|
|
1279
1997
|
}
|
|
1280
1998
|
declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
|
|
@@ -1282,26 +2000,36 @@ declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, i
|
|
|
1282
2000
|
interface ScrollToTopProps {
|
|
1283
2001
|
scrollToTopText: string;
|
|
1284
2002
|
onClick: () => void;
|
|
2003
|
+
fill?: string;
|
|
1285
2004
|
}
|
|
1286
|
-
declare const ScrollToTop: ({ scrollToTopText, onClick }: ScrollToTopProps) => JSX.Element;
|
|
2005
|
+
declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
|
|
1287
2006
|
|
|
1288
2007
|
interface OrderBarProps {
|
|
1289
2008
|
message: string;
|
|
2009
|
+
color?: string;
|
|
1290
2010
|
}
|
|
1291
|
-
declare const OrderBar: ({ message }: OrderBarProps) => JSX.Element;
|
|
2011
|
+
declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
|
|
2012
|
+
|
|
2013
|
+
interface TableProps$1 {
|
|
2014
|
+
headers: string[];
|
|
2015
|
+
data: string[][];
|
|
2016
|
+
}
|
|
2017
|
+
declare const SizeTable: ({ headers, data }: TableProps$1) => JSX.Element;
|
|
1292
2018
|
|
|
1293
2019
|
interface TableProps {
|
|
1294
2020
|
headers: string[];
|
|
1295
2021
|
data: string[][];
|
|
2022
|
+
newSizeTableCss?: boolean;
|
|
1296
2023
|
}
|
|
1297
|
-
declare const
|
|
2024
|
+
declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps) => JSX.Element;
|
|
1298
2025
|
|
|
1299
2026
|
interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
|
|
1300
2027
|
color?: string;
|
|
1301
2028
|
}
|
|
1302
2029
|
interface ProductOrderItemProps {
|
|
1303
|
-
title: string;
|
|
2030
|
+
title: React.ReactNode | string;
|
|
1304
2031
|
subtitle: string;
|
|
2032
|
+
className?: string;
|
|
1305
2033
|
image: {
|
|
1306
2034
|
src: string;
|
|
1307
2035
|
alt: string;
|
|
@@ -1312,10 +2040,12 @@ interface ProductOrderItemProps {
|
|
|
1312
2040
|
text: string;
|
|
1313
2041
|
backgroundColor: string;
|
|
1314
2042
|
};
|
|
2043
|
+
finalPriceStyle?: React.CSSProperties;
|
|
1315
2044
|
}
|
|
1316
|
-
declare const SimpleOrderItem: ({ title, subtitle, image, price, tag, quantity, }: ProductOrderItemProps) => JSX.Element;
|
|
2045
|
+
declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
|
|
1317
2046
|
|
|
1318
|
-
interface ReviewProps {
|
|
2047
|
+
interface ReviewProps$1 {
|
|
2048
|
+
reviewId: string;
|
|
1319
2049
|
reviewerName: string;
|
|
1320
2050
|
date: Date;
|
|
1321
2051
|
rating: number;
|
|
@@ -1325,27 +2055,35 @@ interface ReviewProps {
|
|
|
1325
2055
|
};
|
|
1326
2056
|
title: string;
|
|
1327
2057
|
description: string;
|
|
1328
|
-
|
|
2058
|
+
images?: {
|
|
1329
2059
|
src: string;
|
|
1330
2060
|
alt: string;
|
|
1331
|
-
};
|
|
2061
|
+
}[];
|
|
2062
|
+
reviewVariant?: string;
|
|
2063
|
+
onClickImage?: (image: string) => void;
|
|
2064
|
+
helpfulActionText?: string;
|
|
2065
|
+
helpfulAction?: (id: string) => void;
|
|
2066
|
+
helpfulCount?: number;
|
|
1332
2067
|
}
|
|
1333
|
-
declare const Review: ({ reviewerName, date, rating, stars, title, description,
|
|
2068
|
+
declare const Review$1: ({ reviewId, reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, helpfulActionText, helpfulAction, helpfulCount, }: ReviewProps$1) => JSX.Element;
|
|
1334
2069
|
|
|
1335
2070
|
interface SliderNavigationProps {
|
|
1336
|
-
children: JSX.Element[]
|
|
2071
|
+
children: JSX.Element | JSX.Element[] | StyledComponent<any>;
|
|
1337
2072
|
infinite: boolean;
|
|
1338
2073
|
adaptiveHeight: boolean;
|
|
1339
|
-
dotsSize
|
|
1340
|
-
dotListMarginTop
|
|
2074
|
+
dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
2075
|
+
dotListMarginTop?: number;
|
|
1341
2076
|
initialSlide?: number;
|
|
1342
2077
|
arrows?: {
|
|
1343
2078
|
arrowWidth: number;
|
|
1344
2079
|
arrowHeight: number;
|
|
1345
2080
|
arrowPadding: number;
|
|
1346
2081
|
};
|
|
2082
|
+
dots?: boolean;
|
|
2083
|
+
slidesToShow?: number;
|
|
2084
|
+
speed?: number;
|
|
1347
2085
|
}
|
|
1348
|
-
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2086
|
+
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1349
2087
|
|
|
1350
2088
|
interface DropdownListIconsProps {
|
|
1351
2089
|
items: DropdownListIconsItem[];
|
|
@@ -1399,8 +2137,8 @@ interface ProductItemProps {
|
|
|
1399
2137
|
price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
|
|
1400
2138
|
rating: Pick<RatingProps, 'rating' | 'reviews'>;
|
|
1401
2139
|
tags?: {
|
|
1402
|
-
categoryTagText
|
|
1403
|
-
seasonOfferTagText
|
|
2140
|
+
categoryTagText?: string;
|
|
2141
|
+
seasonOfferTagText?: string;
|
|
1404
2142
|
};
|
|
1405
2143
|
alignName?: 'left' | 'center';
|
|
1406
2144
|
url?: string;
|
|
@@ -1409,6 +2147,18 @@ interface ProductItemProps {
|
|
|
1409
2147
|
|
|
1410
2148
|
interface ProductItemSmallMobileProps extends ProductItemProps {
|
|
1411
2149
|
size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
|
|
2150
|
+
imageHover?: ImageProps;
|
|
2151
|
+
topTag?: JSX.Element;
|
|
2152
|
+
bottomTag?: JSX.Element;
|
|
2153
|
+
onClick?: () => void;
|
|
2154
|
+
priceDisplayType?: 'default' | 'styled';
|
|
2155
|
+
priceAtBottom?: boolean;
|
|
2156
|
+
priceLoading?: boolean;
|
|
2157
|
+
colorPicker?: {
|
|
2158
|
+
display: boolean;
|
|
2159
|
+
position: string;
|
|
2160
|
+
component: JSX.Element | JSX.Element[] | undefined;
|
|
2161
|
+
};
|
|
1412
2162
|
}
|
|
1413
2163
|
|
|
1414
2164
|
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
|
|
@@ -1417,7 +2167,7 @@ declare function withProductGrid<P extends ProductItemProps>(ProductItemComponen
|
|
|
1417
2167
|
};
|
|
1418
2168
|
|
|
1419
2169
|
declare const Collection: {
|
|
1420
|
-
ProductItemMobile: ({ title, image, price, rating, size,
|
|
2170
|
+
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;
|
|
1421
2171
|
withProductGrid: typeof withProductGrid;
|
|
1422
2172
|
};
|
|
1423
2173
|
|
|
@@ -1478,10 +2228,13 @@ interface PaginationProps {
|
|
|
1478
2228
|
underlineActive?: boolean;
|
|
1479
2229
|
boldActive?: boolean;
|
|
1480
2230
|
disabled?: boolean;
|
|
2231
|
+
showReducedPages?: boolean;
|
|
1481
2232
|
}
|
|
1482
|
-
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
|
|
2233
|
+
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
|
|
2234
|
+
|
|
2235
|
+
declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
|
|
1483
2236
|
|
|
1484
|
-
declare const Text:
|
|
2237
|
+
declare const Text: ({ variant, children, testId, asSpan, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1485
2238
|
declare type TextHeroProps = {
|
|
1486
2239
|
variant: 'hero1' | 'hero2' | 'hero3';
|
|
1487
2240
|
weight?: 'heavy' | 'bold' | 'demi';
|
|
@@ -1491,6 +2244,7 @@ declare type TextHeroProps = {
|
|
|
1491
2244
|
wide?: never;
|
|
1492
2245
|
original?: never;
|
|
1493
2246
|
allCaps?: never;
|
|
2247
|
+
href: never;
|
|
1494
2248
|
};
|
|
1495
2249
|
declare type TextDisplayProps = {
|
|
1496
2250
|
variant: 'display1' | 'display2';
|
|
@@ -1501,6 +2255,7 @@ declare type TextDisplayProps = {
|
|
|
1501
2255
|
wide?: never;
|
|
1502
2256
|
original?: never;
|
|
1503
2257
|
allCaps?: never;
|
|
2258
|
+
href: never;
|
|
1504
2259
|
};
|
|
1505
2260
|
declare type TextHeadingProps = {
|
|
1506
2261
|
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
|
|
@@ -1511,6 +2266,7 @@ declare type TextHeadingProps = {
|
|
|
1511
2266
|
wide?: never;
|
|
1512
2267
|
original?: never;
|
|
1513
2268
|
allCaps?: never;
|
|
2269
|
+
href?: never;
|
|
1514
2270
|
};
|
|
1515
2271
|
declare type TextBodyProps = {
|
|
1516
2272
|
variant: 'body';
|
|
@@ -1521,6 +2277,7 @@ declare type TextBodyProps = {
|
|
|
1521
2277
|
wide?: never;
|
|
1522
2278
|
original?: never;
|
|
1523
2279
|
allCaps?: never;
|
|
2280
|
+
href?: never;
|
|
1524
2281
|
};
|
|
1525
2282
|
declare type TextButtonProps = {
|
|
1526
2283
|
variant: 'button';
|
|
@@ -1531,6 +2288,7 @@ declare type TextButtonProps = {
|
|
|
1531
2288
|
wide?: boolean;
|
|
1532
2289
|
original?: never;
|
|
1533
2290
|
allCaps?: never;
|
|
2291
|
+
href?: never;
|
|
1534
2292
|
};
|
|
1535
2293
|
declare type TextPricingProps = {
|
|
1536
2294
|
variant: 'pricing';
|
|
@@ -1541,6 +2299,7 @@ declare type TextPricingProps = {
|
|
|
1541
2299
|
wide?: never;
|
|
1542
2300
|
original?: boolean;
|
|
1543
2301
|
allCaps?: never;
|
|
2302
|
+
href?: never;
|
|
1544
2303
|
};
|
|
1545
2304
|
declare type TextLinkProps = {
|
|
1546
2305
|
variant: 'link';
|
|
@@ -1551,9 +2310,11 @@ declare type TextLinkProps = {
|
|
|
1551
2310
|
wide?: never;
|
|
1552
2311
|
original?: never;
|
|
1553
2312
|
allCaps?: never;
|
|
1554
|
-
|
|
2313
|
+
href?: string;
|
|
2314
|
+
};
|
|
1555
2315
|
declare type TextLabelProps = {
|
|
1556
2316
|
variant: 'label';
|
|
2317
|
+
color?: string;
|
|
1557
2318
|
weight?: 'regular' | 'demi';
|
|
1558
2319
|
size?: 'regular' | 'small';
|
|
1559
2320
|
underline?: never;
|
|
@@ -1561,6 +2322,7 @@ declare type TextLabelProps = {
|
|
|
1561
2322
|
wide?: never;
|
|
1562
2323
|
original?: never;
|
|
1563
2324
|
allCaps?: never;
|
|
2325
|
+
href?: never;
|
|
1564
2326
|
} & LabelHTMLAttributes<'label'>;
|
|
1565
2327
|
declare type TextTagProps = {
|
|
1566
2328
|
variant: 'tag';
|
|
@@ -1571,11 +2333,15 @@ declare type TextTagProps = {
|
|
|
1571
2333
|
wide?: never;
|
|
1572
2334
|
original?: never;
|
|
1573
2335
|
allCaps?: boolean;
|
|
2336
|
+
href?: never;
|
|
1574
2337
|
};
|
|
1575
|
-
declare type TextProps = AriaAttributes & {
|
|
2338
|
+
declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
|
|
2339
|
+
children: ReactNode;
|
|
1576
2340
|
style?: CSSProperties;
|
|
1577
2341
|
className?: string;
|
|
1578
2342
|
testId?: string;
|
|
2343
|
+
asSpan?: boolean;
|
|
2344
|
+
color?: string;
|
|
1579
2345
|
} & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
|
|
1580
2346
|
|
|
1581
2347
|
interface SearchBarProps {
|
|
@@ -1583,20 +2349,29 @@ interface SearchBarProps {
|
|
|
1583
2349
|
resultOptions: SearchBarOptionItem[];
|
|
1584
2350
|
onChange: (text: string) => void;
|
|
1585
2351
|
onSearch: (term: string) => void;
|
|
2352
|
+
onClose: () => void;
|
|
1586
2353
|
resultsPanelDataTestId?: string;
|
|
1587
2354
|
allResults?: number;
|
|
2355
|
+
initialTerm?: string;
|
|
2356
|
+
shouldClear?: boolean;
|
|
2357
|
+
isBlogSearchBar?: boolean;
|
|
2358
|
+
ariaLabel?: string;
|
|
2359
|
+
placeholder?: string;
|
|
2360
|
+
id?: string;
|
|
2361
|
+
autoComplete?: string;
|
|
1588
2362
|
}
|
|
1589
|
-
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, resultsPanelDataTestId, allResults, }: SearchBarProps) => JSX.Element;
|
|
2363
|
+
declare const SearchBar: ({ suggestions, resultOptions, onChange, onSearch, onClose, resultsPanelDataTestId, allResults, initialTerm, shouldClear, isBlogSearchBar, ariaLabel, placeholder, id, autoComplete, }: SearchBarProps) => JSX.Element;
|
|
1590
2364
|
|
|
1591
|
-
interface ProductGalleryMobileProps {
|
|
2365
|
+
interface ProductGalleryMobileProps$1 {
|
|
1592
2366
|
images: ImageType[];
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
2367
|
+
customClick?: boolean;
|
|
2368
|
+
topTag?: JSX.Element;
|
|
2369
|
+
bottomTag?: JSX.Element;
|
|
1596
2370
|
productImageDataTestId?: string;
|
|
1597
|
-
|
|
2371
|
+
borderRadiusVariant?: boolean;
|
|
2372
|
+
selectedValue?: ImageType;
|
|
1598
2373
|
}
|
|
1599
|
-
declare const ProductGalleryMobile: ({ images,
|
|
2374
|
+
declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps$1) => JSX.Element;
|
|
1600
2375
|
|
|
1601
2376
|
interface RadioProps {
|
|
1602
2377
|
name: string;
|
|
@@ -1613,6 +2388,8 @@ declare const RadioInput: ({ name, value, id, label, checked, disabled, onChange
|
|
|
1613
2388
|
declare type PortalProps = {
|
|
1614
2389
|
id: string;
|
|
1615
2390
|
className?: string;
|
|
2391
|
+
overflow?: boolean;
|
|
2392
|
+
style?: CSSProperties;
|
|
1616
2393
|
};
|
|
1617
2394
|
declare const Portal: FC<PortalProps>;
|
|
1618
2395
|
|
|
@@ -1620,10 +2397,12 @@ declare type ModalProps = {
|
|
|
1620
2397
|
id: string;
|
|
1621
2398
|
dismissable?: boolean;
|
|
1622
2399
|
maxFullScreen?: boolean;
|
|
2400
|
+
padding?: string;
|
|
1623
2401
|
};
|
|
1624
2402
|
interface ContainerProps {
|
|
1625
2403
|
maxFullScreen: boolean;
|
|
1626
2404
|
opened?: boolean;
|
|
2405
|
+
padding?: string;
|
|
1627
2406
|
}
|
|
1628
2407
|
declare const Overlay: _emotion_styled.StyledComponent<{
|
|
1629
2408
|
theme?: _emotion_react.Theme | undefined;
|
|
@@ -1686,6 +2465,26 @@ declare type SpacingProps = {
|
|
|
1686
2465
|
};
|
|
1687
2466
|
declare const Spacing: FC<SpacingProps>;
|
|
1688
2467
|
|
|
2468
|
+
interface PackOption$1 {
|
|
2469
|
+
label: string;
|
|
2470
|
+
description: string;
|
|
2471
|
+
meta: {
|
|
2472
|
+
discountPercentage: number;
|
|
2473
|
+
originalPrice: number;
|
|
2474
|
+
price: number;
|
|
2475
|
+
quantity: number;
|
|
2476
|
+
icon: string;
|
|
2477
|
+
tag?: string;
|
|
2478
|
+
};
|
|
2479
|
+
}
|
|
2480
|
+
interface PackSelectorProps$1 {
|
|
2481
|
+
packs: PackOption$1[];
|
|
2482
|
+
selectedValue: PackOption$1;
|
|
2483
|
+
onChange: (size: PackOption$1) => void;
|
|
2484
|
+
currencyCode?: string;
|
|
2485
|
+
}
|
|
2486
|
+
declare const PackSelector: FC<PackSelectorProps$1>;
|
|
2487
|
+
|
|
1689
2488
|
interface PackOption {
|
|
1690
2489
|
label: string;
|
|
1691
2490
|
description: string;
|
|
@@ -1702,12 +2501,13 @@ interface PackSelectorProps {
|
|
|
1702
2501
|
packs: PackOption[];
|
|
1703
2502
|
selectedValue: PackOption;
|
|
1704
2503
|
onChange: (size: PackOption) => void;
|
|
2504
|
+
currencyCode?: string;
|
|
1705
2505
|
}
|
|
1706
|
-
declare const
|
|
2506
|
+
declare const PackSelectorV2: FC<PackSelectorProps>;
|
|
1707
2507
|
|
|
1708
2508
|
interface FiltersProps {
|
|
1709
|
-
|
|
1710
|
-
onChange: (
|
|
2509
|
+
values: Filter[];
|
|
2510
|
+
onChange: (newValues: Filter[], filtersState?: FilterChange) => void;
|
|
1711
2511
|
tagsColor?: string;
|
|
1712
2512
|
filterByText: string;
|
|
1713
2513
|
clearAllText: string;
|
|
@@ -1718,7 +2518,7 @@ interface FiltersProps {
|
|
|
1718
2518
|
mobileApplyButtonClick: () => void;
|
|
1719
2519
|
onResetValues: () => void;
|
|
1720
2520
|
}
|
|
1721
|
-
declare const Filters: ({
|
|
2521
|
+
declare const Filters: ({ values, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, onResetValues, }: FiltersProps) => JSX.Element;
|
|
1722
2522
|
|
|
1723
2523
|
interface SearchNavigationProps {
|
|
1724
2524
|
returnText?: string;
|
|
@@ -1728,6 +2528,169 @@ interface SearchNavigationProps {
|
|
|
1728
2528
|
}
|
|
1729
2529
|
declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
|
|
1730
2530
|
|
|
2531
|
+
interface TabProps$1 {
|
|
2532
|
+
title: string;
|
|
2533
|
+
content: ReactNode;
|
|
2534
|
+
}
|
|
2535
|
+
interface TabsProps {
|
|
2536
|
+
backgroundColor?: string;
|
|
2537
|
+
initialSelected?: string;
|
|
2538
|
+
tabsMaxWidth?: string;
|
|
2539
|
+
tabs: TabProps$1[];
|
|
2540
|
+
}
|
|
2541
|
+
declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
|
|
2542
|
+
|
|
2543
|
+
interface TabProps {
|
|
2544
|
+
title: string;
|
|
2545
|
+
titleSize?: string;
|
|
2546
|
+
selectedTitleWeight?: number;
|
|
2547
|
+
height?: string;
|
|
2548
|
+
selected?: boolean;
|
|
2549
|
+
color?: string;
|
|
2550
|
+
tabsMaxWidth?: string;
|
|
2551
|
+
onClick: (clickedTab: string) => void;
|
|
2552
|
+
}
|
|
2553
|
+
declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps) => JSX.Element;
|
|
2554
|
+
|
|
2555
|
+
interface IconList {
|
|
2556
|
+
backgroundColor: string;
|
|
2557
|
+
iconColor: string;
|
|
2558
|
+
iconName: string;
|
|
2559
|
+
iconTitle: string;
|
|
2560
|
+
iconSizeDesktop?: number;
|
|
2561
|
+
iconSizeMobile?: number;
|
|
2562
|
+
iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
2563
|
+
iconTitleStyle?: string;
|
|
2564
|
+
iconStyle?: string;
|
|
2565
|
+
isTitleInnerHtml?: boolean;
|
|
2566
|
+
}
|
|
2567
|
+
declare const IconsWithTitle: ({ iconName, iconTitle, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconList) => JSX.Element | null;
|
|
2568
|
+
|
|
2569
|
+
interface NoteProps {
|
|
2570
|
+
accentColor?: string;
|
|
2571
|
+
color?: string;
|
|
2572
|
+
backgroundColor?: string;
|
|
2573
|
+
importantNoteText: string;
|
|
2574
|
+
text: string;
|
|
2575
|
+
}
|
|
2576
|
+
declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
|
|
2577
|
+
|
|
2578
|
+
interface TextWithImageProps {
|
|
2579
|
+
title: string;
|
|
2580
|
+
text?: string;
|
|
2581
|
+
children?: ReactNode;
|
|
2582
|
+
buttomText: string;
|
|
2583
|
+
backgroundColor: string;
|
|
2584
|
+
imageLeftSide?: boolean;
|
|
2585
|
+
URLLink?: string;
|
|
2586
|
+
onButtonClick?: () => void;
|
|
2587
|
+
isRedirectionURL: boolean;
|
|
2588
|
+
btnBGColor?: string;
|
|
2589
|
+
btnHoverBGColor?: string;
|
|
2590
|
+
imgVideo: imageVideoProps;
|
|
2591
|
+
contentAfterButton?: React.ReactNode;
|
|
2592
|
+
titleStyle?: React.CSSProperties;
|
|
2593
|
+
textStyle?: React.CSSProperties;
|
|
2594
|
+
buttonWideOnMobile?: boolean;
|
|
2595
|
+
}
|
|
2596
|
+
declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2597
|
+
|
|
2598
|
+
interface AccordionOptionsProps {
|
|
2599
|
+
titleColor: string;
|
|
2600
|
+
accordions: AccordionProps[];
|
|
2601
|
+
}
|
|
2602
|
+
declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
|
|
2603
|
+
|
|
2604
|
+
interface ShortBannerProps {
|
|
2605
|
+
title: string;
|
|
2606
|
+
bannerText: string;
|
|
2607
|
+
backgroundColor: string;
|
|
2608
|
+
alignCenter?: boolean;
|
|
2609
|
+
widthAuto?: boolean;
|
|
2610
|
+
textColor: string;
|
|
2611
|
+
}
|
|
2612
|
+
declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
|
|
2613
|
+
|
|
2614
|
+
interface BeforeAfterCardProps {
|
|
2615
|
+
name: string;
|
|
2616
|
+
age: string;
|
|
2617
|
+
months: string;
|
|
2618
|
+
beforeImage: string;
|
|
2619
|
+
afterImage: string;
|
|
2620
|
+
alignCenter?: boolean;
|
|
2621
|
+
imageBorderRadius?: string;
|
|
2622
|
+
size?: ComponentSize;
|
|
2623
|
+
}
|
|
2624
|
+
declare const BeforeAfterCard: ({ name, age, months, beforeImage, afterImage, alignCenter, imageBorderRadius, size, }: BeforeAfterCardProps) => JSX.Element;
|
|
2625
|
+
|
|
2626
|
+
interface ImageCardWithDescriptionProps {
|
|
2627
|
+
image: string;
|
|
2628
|
+
title?: string;
|
|
2629
|
+
description?: string;
|
|
2630
|
+
titlePosition?: 'center' | 'left';
|
|
2631
|
+
}
|
|
2632
|
+
declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
|
|
2633
|
+
|
|
2634
|
+
interface Checkpoint {
|
|
2635
|
+
day: string;
|
|
2636
|
+
date: string;
|
|
2637
|
+
statusMessage: string;
|
|
2638
|
+
}
|
|
2639
|
+
interface TrackingProgressProps {
|
|
2640
|
+
checkPoints: Checkpoint[];
|
|
2641
|
+
amountOfCheckPoints: number;
|
|
2642
|
+
}
|
|
2643
|
+
declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
|
|
2644
|
+
|
|
2645
|
+
interface ReviewsHeaderProps {
|
|
2646
|
+
title?: string;
|
|
2647
|
+
rating: number;
|
|
2648
|
+
reviews: number;
|
|
2649
|
+
reviewsText: string;
|
|
2650
|
+
reviewsSummary: string[];
|
|
2651
|
+
onClickReview: (reveiw: string) => void;
|
|
2652
|
+
}
|
|
2653
|
+
declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
|
|
2654
|
+
|
|
2655
|
+
interface ReviewProps {
|
|
2656
|
+
reviewId: string;
|
|
2657
|
+
reviewerName: string;
|
|
2658
|
+
date: Date;
|
|
2659
|
+
rating: number;
|
|
2660
|
+
stars: {
|
|
2661
|
+
color: string;
|
|
2662
|
+
size: ComponentSize.Medium | ComponentSize.Small;
|
|
2663
|
+
};
|
|
2664
|
+
title: string;
|
|
2665
|
+
description: string;
|
|
2666
|
+
image?: {
|
|
2667
|
+
src: string;
|
|
2668
|
+
alt: string;
|
|
2669
|
+
};
|
|
2670
|
+
modalId: string;
|
|
2671
|
+
maxFullScreen?: boolean;
|
|
2672
|
+
verified?: boolean;
|
|
2673
|
+
productImage?: string;
|
|
2674
|
+
productTitle?: string;
|
|
2675
|
+
productLink?: string;
|
|
2676
|
+
helpfulCount?: number;
|
|
2677
|
+
helpfulAction?: (id: string) => void;
|
|
2678
|
+
notHelpfulCount?: number;
|
|
2679
|
+
notHelpfulAction?: (id: string) => void;
|
|
2680
|
+
}
|
|
2681
|
+
declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps) => JSX.Element;
|
|
2682
|
+
|
|
2683
|
+
interface ProductGalleryMobileProps {
|
|
2684
|
+
images: ImageType[];
|
|
2685
|
+
selectedValue?: ImageType;
|
|
2686
|
+
topTag?: JSX.Element;
|
|
2687
|
+
bottomTag?: JSX.Element;
|
|
2688
|
+
productImageDataTestId?: string;
|
|
2689
|
+
slideDotsDataTestId?: string;
|
|
2690
|
+
borderRadiusVariant?: boolean;
|
|
2691
|
+
}
|
|
2692
|
+
declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
|
|
2693
|
+
|
|
1731
2694
|
declare global {
|
|
1732
2695
|
interface Events {
|
|
1733
2696
|
modal: {
|
|
@@ -1767,4 +2730,6 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1767
2730
|
currency?: string | undefined;
|
|
1768
2731
|
}) => string;
|
|
1769
2732
|
|
|
1770
|
-
|
|
2733
|
+
declare const mediaQueries: facepaint.DynamicStyleFunction;
|
|
2734
|
+
|
|
2735
|
+
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, PackSelectorV2, Pagination, PaginatorBlog, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, PriceLabelV2, ProductGallery, ProductGalleryMobile, ProductGalleryMobileV2, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review$1 as Review, Review as ReviewDetail, ReviewsHeader, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, ShortBanner, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeChartTable, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Tab, Tabs, Text, TextButton, TextWithImage, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, TrackingProgress, WithTestId, decimalFormat, formatPrice, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, mediaQueries, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|