@trafilea/afrodita-components 5.0.0 → 6.0.0
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 +1 -1
- package/build/index.d.ts +2166 -1503
- package/build/index.esm.css +1 -1
- package/build/index.esm.js +9041 -8126
- package/build/index.esm.js.map +1 -1
- package/build/index.js +8858 -7922
- package/build/index.js.map +1 -1
- package/build/theme/revel.theme.d.ts +166 -13
- package/build/theme/revel.theme.js +151 -17
- package/build/theme/shapermint.theme.d.ts +166 -13
- package/build/theme/shapermint.theme.js +139 -19
- package/build/theme/thespadr.theme.d.ts +758 -0
- package/build/theme/thespadr.theme.js +1059 -0
- package/build/theme/truekind.theme.d.ts +166 -13
- package/build/theme/truekind.theme.js +159 -30
- package/package.json +3 -2
package/build/index.d.ts
CHANGED
|
@@ -1,645 +1,660 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import
|
|
3
|
-
import
|
|
2
|
+
import * as React$1 from 'react';
|
|
3
|
+
import React__default, { FC, SVGProps, ReactNode, CSSProperties, ElementType, ReactFragment, AriaAttributes, HTMLAttributes, LabelHTMLAttributes, RefObject } from 'react';
|
|
4
|
+
import { ComponentSize as ComponentSize$1 } from 'src/types/enums';
|
|
5
|
+
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
6
|
+
import { TextProps as TextProps$1 } from 'src/components/text/Text';
|
|
4
7
|
import * as _emotion_react_jsx_runtime from '@emotion/react/jsx-runtime';
|
|
5
8
|
import * as _emotion_styled from '@emotion/styled';
|
|
6
9
|
import { StyledComponent } from '@emotion/styled';
|
|
7
10
|
export { default as styled } from '@emotion/styled';
|
|
8
|
-
import * as _emotion_react_types_jsx_namespace from '@emotion/react/types/jsx-namespace';
|
|
9
11
|
import * as _emotion_react from '@emotion/react';
|
|
10
|
-
import {
|
|
12
|
+
import { Theme as Theme$1 } from '@emotion/react';
|
|
13
|
+
export { Global, css } from '@emotion/react';
|
|
14
|
+
import { IconProps as IconProps$1 } from 'src/types/types';
|
|
15
|
+
import facepaint from 'facepaint';
|
|
11
16
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
Medium = "medium",
|
|
19
|
-
Small = "small",
|
|
20
|
-
XSmall = "xsmall"
|
|
21
|
-
}
|
|
22
|
-
declare enum ComponentPosition {
|
|
23
|
-
Top = 0,
|
|
24
|
-
Bottom = 1,
|
|
25
|
-
Left = 2,
|
|
26
|
-
Right = 3
|
|
17
|
+
interface HurryUpProps {
|
|
18
|
+
hurryUpText: string;
|
|
19
|
+
backgroundColor?: string;
|
|
20
|
+
showTimer?: boolean;
|
|
21
|
+
iconSize?: number;
|
|
22
|
+
textPosition?: 'left' | 'right' | 'center';
|
|
27
23
|
}
|
|
28
|
-
declare
|
|
29
|
-
Error = 0,
|
|
30
|
-
Valid = 1,
|
|
31
|
-
Empty = 2
|
|
32
|
-
}
|
|
24
|
+
declare const HurryUp: ({ hurryUpText, backgroundColor, iconSize, textPosition, showTimer, }: HurryUpProps) => JSX.Element;
|
|
33
25
|
|
|
34
|
-
interface
|
|
35
|
-
width?: number;
|
|
36
|
-
height?: number;
|
|
37
|
-
fill?: string;
|
|
38
|
-
title?: string;
|
|
39
|
-
testId?: string;
|
|
40
|
-
}
|
|
41
|
-
declare type ButtonType = 'button' | 'submit' | 'reset';
|
|
42
|
-
interface CTAProps {
|
|
43
|
-
onClick: () => void;
|
|
44
|
-
disabled?: boolean;
|
|
45
|
-
wide?: boolean | false;
|
|
46
|
-
size?: ComponentSize;
|
|
47
|
-
text: string;
|
|
48
|
-
type?: ButtonType;
|
|
49
|
-
className?: string;
|
|
50
|
-
testId?: string;
|
|
51
|
-
inline?: boolean;
|
|
52
|
-
}
|
|
53
|
-
declare type DropdownOption<T> = {
|
|
54
|
-
key: string;
|
|
55
|
-
label: string;
|
|
56
|
-
value: T;
|
|
57
|
-
disabled: boolean;
|
|
58
|
-
};
|
|
59
|
-
declare type SizeOption = {
|
|
60
|
-
label: string;
|
|
61
|
-
description: string;
|
|
62
|
-
disabled?: boolean;
|
|
63
|
-
noStock?: boolean;
|
|
64
|
-
};
|
|
65
|
-
declare type Pattern = {
|
|
66
|
-
url: string;
|
|
67
|
-
};
|
|
68
|
-
declare type ColorPickerOption = {
|
|
26
|
+
interface PackOption$1 {
|
|
69
27
|
label: string;
|
|
70
28
|
description: string;
|
|
71
|
-
noStock?: boolean;
|
|
72
29
|
meta: {
|
|
73
|
-
|
|
74
|
-
|
|
30
|
+
discountPercentage: number;
|
|
31
|
+
originalPrice: number;
|
|
32
|
+
price: number;
|
|
33
|
+
quantity: number;
|
|
34
|
+
icon: string;
|
|
35
|
+
tag?: string;
|
|
75
36
|
};
|
|
76
|
-
};
|
|
77
|
-
declare type RadioGroupOption = {
|
|
78
|
-
value: string;
|
|
79
|
-
label: string;
|
|
80
|
-
};
|
|
81
|
-
declare type ImageType = {
|
|
82
|
-
key: string;
|
|
83
|
-
imageUrl: string;
|
|
84
|
-
alt: string;
|
|
85
|
-
};
|
|
86
|
-
interface IconWithOpacityProps extends IconProps {
|
|
87
|
-
opacity?: number;
|
|
88
|
-
}
|
|
89
|
-
interface WithTestId {
|
|
90
|
-
testId?: string;
|
|
91
37
|
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
description: string;
|
|
98
|
-
callback: () => void;
|
|
99
|
-
};
|
|
100
|
-
declare type Filter = {
|
|
101
|
-
title: string;
|
|
102
|
-
columns: number;
|
|
103
|
-
isOpenByDefault?: boolean;
|
|
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;
|
|
116
|
-
};
|
|
117
|
-
declare type FilterChange = {
|
|
118
|
-
sectionIndex: number;
|
|
119
|
-
itemIndex: number;
|
|
120
|
-
checked?: boolean;
|
|
121
|
-
};
|
|
122
|
-
interface SearchBarOptionItem {
|
|
123
|
-
src: string;
|
|
124
|
-
price: string;
|
|
125
|
-
title: string;
|
|
126
|
-
optionUrl: string;
|
|
38
|
+
interface PackSelectorProps$1 {
|
|
39
|
+
packs: PackOption$1[];
|
|
40
|
+
selectedValue: PackOption$1;
|
|
41
|
+
onChange: (size: PackOption$1) => void;
|
|
42
|
+
currencyCode?: string;
|
|
127
43
|
}
|
|
128
|
-
|
|
129
|
-
imageLink: string;
|
|
130
|
-
isVideo?: {
|
|
131
|
-
videoTitle?: string;
|
|
132
|
-
videoSubtitle?: string;
|
|
133
|
-
textColor?: string;
|
|
134
|
-
videoLink?: string;
|
|
135
|
-
};
|
|
136
|
-
isMobile?: boolean;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
declare const SixtyDaysGuarantee: ({ height, width, fill, title }: IconProps) => JSX.Element;
|
|
140
|
-
|
|
141
|
-
declare const Frown: ({ height, width, fill, title }: IconProps$1) => JSX.Element;
|
|
44
|
+
declare const PackSelectorV2: FC<PackSelectorProps$1>;
|
|
142
45
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
46
|
+
interface AbsorbencyLevelProps {
|
|
47
|
+
dropTotal: number;
|
|
48
|
+
drops: number;
|
|
49
|
+
absorbencyTitle: string;
|
|
50
|
+
absorbencyDescription: string;
|
|
51
|
+
}
|
|
52
|
+
declare const AbsorbencyLevel: ({ dropTotal, drops, absorbencyTitle, absorbencyDescription, }: AbsorbencyLevelProps) => JSX.Element;
|
|
148
53
|
|
|
149
|
-
declare
|
|
54
|
+
declare type StyledIconProps = {
|
|
55
|
+
backgroundColor?: string;
|
|
56
|
+
opacity?: number | string;
|
|
57
|
+
};
|
|
150
58
|
|
|
151
|
-
declare
|
|
59
|
+
declare type Actions$1 = 'actions/add' | 'actions/check_box_empty' | 'actions/check_box_light' | 'actions/check_box_solid' | 'actions/check' | 'actions/circle_check' | 'actions/circle_clear' | 'actions/circle_info' | 'actions/circle_minus' | 'actions/circle_plus' | 'actions/circle_question' | 'actions/circle_solid_check' | 'actions/circle_solid_clear' | 'actions/circle_solid_info' | 'actions/circle_solid_minus' | 'actions/circle_solid_plus' | 'actions/circle_solid_question' | 'actions/circle_solid_styled_check' | 'actions/circle_solid_warning' | 'actions/circle_warning' | 'actions/clear_light' | 'actions/close' | 'actions/copy_outlined' | 'actions/copy' | 'actions/edit' | 'actions/light_check' | 'actions/light_exclamation' | 'actions/like_solid' | 'actions/like' | 'actions/minus' | 'actions/not_allowed' | 'actions/question' | 'actions/radio_empty' | 'actions/radio_filled' | 'actions/settings_solid' | 'actions/settings' | 'actions/share' | 'actions/signout' | 'actions/trash' | 'actions/warning';
|
|
60
|
+
declare type Arrows$1 = 'arrows/chevron_down' | 'arrows/chevron_down_variant' | 'arrows/chevron_left' | 'arrows/chevron_left_lite' | 'arrows/chevron_left_variant' | 'arrows/chevron_right' | 'arrows/chevron_right_lite' | 'arrows/chevron_right_variant' | 'arrows/chevron_up' | 'arrows/chevron_up_solid' | 'arrows/chevron_up_variant' | 'arrows/circle_chevron_down' | 'arrows/circle_chevron_left' | 'arrows/circle_chevron_right' | 'arrows/circle_chevron_up' | 'arrows/circle_line_down' | 'arrows/circle_line_left' | 'arrows/circle_line_right' | 'arrows/circle_line_up' | 'arrows/circle_up' | 'arrows/double_arrow_up';
|
|
61
|
+
declare type Custom$1 = 'custom/atom' | 'custom/bra' | 'custom/bubbles' | 'custom/bullet_one' | 'custom/bullet_three' | 'custom/bullet_two' | 'custom/certified' | 'custom/clinically_tested' | 'custom/cruelty_free' | 'custom/fair_advantages' | 'custom/frown' | 'custom/frown' | 'custom/money_flow' | 'custom/new_sixty_days_guarantee' | 'custom/packs_and_bundles' | 'custom/seamless_support_bra' | 'custom/sixty_days_bold' | 'custom/sixty_days_guarantee' | 'custom/smiling' | 'custom/thumbs_down' | 'custom/thumbs_up' | 'custom/underwear' | 'custom/wire_free_comfort';
|
|
62
|
+
declare type Download$1 = 'download/apple_store' | 'download/google_play';
|
|
63
|
+
declare type Emoji$1 = 'emoji/blowing_kiss' | 'emoji/frowning' | 'emoji/grinning' | 'emoji/grinning_with_sweat' | 'emoji/relieved' | 'emoji/smiling_v2' | 'emoji/thinking';
|
|
64
|
+
declare type Messaging$1 = 'messaging/ada_chat' | 'messaging/comment' | 'messaging/comment_dots' | 'messaging/comment_light' | 'messaging/comment_money' | 'messaging/community' | 'messaging/light' | 'messaging/light_bulb' | 'messaging/light_bulb_solid' | 'messaging/mail' | 'messaging/messenger' | 'messaging/question_circle' | 'messaging/quote_left' | 'messaging/quote_right' | 'messaging/quote_solid_left' | 'messaging/quote_solid_right';
|
|
65
|
+
declare type MyAccount$1 = 'myaccount/birthday_gifts' | 'myaccount/community' | 'myaccount/deals_offers' | 'myaccount/free_returns' | 'myaccount/free_shipping' | 'myaccount/guard' | 'myaccount/members_only_discount' | 'myaccount/members_only_discount_opposite' | 'myaccount/personal_stylist' | 'myaccount/priority_shipping' | 'myaccount/profile' | 'myaccount/sale_tag' | 'myaccount/style_fashion_content' | 'myaccount/vip';
|
|
66
|
+
declare type Navigation$1 = 'navigation/address_information' | 'navigation/benefits' | 'navigation/club_membership' | 'navigation/ellipsis' | 'navigation/ellipsis_horizontal' | 'navigation/filters' | 'navigation/hamburger' | 'navigation/home' | 'navigation/home_solid' | 'navigation/loading' | 'navigation/lock' | 'navigation/lock_solid' | 'navigation/map_marker' | 'navigation/map_solid' | 'navigation/menu_lines' | 'navigation/search' | 'navigation/shaperbox' | 'navigation/shopping_bag' | 'navigation/shopping_bag_v2' | 'navigation/shopping_bag_v3' | 'navigation/shopping_cart' | 'navigation/shopping_cart_v2' | 'navigation/slide_dot' | 'navigation/slide_dot_solid' | 'navigation/user' | 'navigation/user_solid' | 'navigation/user_v2';
|
|
67
|
+
declare type Other$1 = 'other/bod_con_label' | 'other/bod_con_mobile_label' | 'other/call_us' | 'other/chat' | 'other/email' | 'other/express_shipping' | 'other/fit_guarantee' | 'other/fit_predictor' | 'other/free_exchange' | 'other/get_discount' | 'other/hassel_free_returns' | 'other/loading' | 'other/mc_afee' | 'other/play' | 'other/qr_code' | 'other/question_with_circle' | 'other/revel_beauty' | 'other/shapermint' | 'other/shapermint_club_icon' | 'other/shapermint_club_icon2' | 'other/shapermint_club_label' | 'other/shapermint_club_mobile_label' | 'other/shapermint_logo' | 'other/shm_club' | 'other/shop_now' | 'other/sign_form' | 'other/sixty_days_tsd' | 'other/the_bod_con' | 'other/the_spa_dr';
|
|
68
|
+
declare type Payment$1 = 'payment/amazon' | 'payment/amex' | 'payment/jcb' | 'payment/klarna' | 'payment/master_card' | 'payment/paypal' | 'payment/visa';
|
|
69
|
+
declare type PDP$1 = 'pdp/circle_number' | 'pdp/clock' | 'pdp/drop' | 'pdp/drop_empty' | 'pdp/error_cross' | 'pdp/flag_usa' | 'pdp/hours' | 'pdp/klarna_logo' | 'pdp/light_bulb' | 'pdp/minus' | 'pdp/moon' | 'pdp/new_clock' | 'pdp/play_mini' | 'pdp/plus' | 'pdp/rule' | 'pdp/shipping' | 'pdp/shipping_empty' | 'pdp/size_empty' | 'pdp/size_empty_v2' | 'pdp/star' | 'pdp/stars' | 'pdp/star_empty' | 'pdp/star_half' | 'pdp/stopwatch' | 'pdp/trust_badge';
|
|
70
|
+
declare type SlideDots$1 = 'slidedots/slide_dot';
|
|
71
|
+
declare type SocialMedia$1 = 'socialmedia/facebook' | 'socialmedia/facebook_solid' | 'socialmedia/instagram' | 'socialmedia/instagram_solid' | 'socialmedia/interaction' | 'socialmedia/pinterest' | 'socialmedia/twitter' | 'socialmedia/youtube';
|
|
72
|
+
declare type IconName = Actions$1 | Arrows$1 | Custom$1 | Download$1 | Emoji$1 | Messaging$1 | MyAccount$1 | Navigation$1 | Other$1 | Payment$1 | PDP$1 | SlideDots$1 | SocialMedia$1;
|
|
73
|
+
|
|
74
|
+
declare type Props$2 = {
|
|
75
|
+
width?: number | string;
|
|
76
|
+
height?: number | string;
|
|
77
|
+
title?: string;
|
|
78
|
+
testId?: string;
|
|
79
|
+
fill?: string;
|
|
80
|
+
name: IconName;
|
|
81
|
+
svgProps?: Omit<SVGProps<SVGElement>, 'ref'>;
|
|
82
|
+
className?: string;
|
|
83
|
+
} & StyledIconProps;
|
|
84
|
+
declare const Icon$1: React__default.FC<Props$2>;
|
|
152
85
|
|
|
153
|
-
declare
|
|
86
|
+
declare type Props$1 = Omit<Props$2, 'name'>;
|
|
87
|
+
declare type IconComponent = React__default.FC<Props$1>;
|
|
154
88
|
|
|
155
|
-
declare const
|
|
156
|
-
declare const Custom_Frown: typeof Frown;
|
|
157
|
-
declare const Custom_Smiling: typeof Smiling;
|
|
158
|
-
declare const Custom_BulletOne: typeof BulletOne;
|
|
159
|
-
declare const Custom_BulletTwo: typeof BulletTwo;
|
|
160
|
-
declare const Custom_BulletThree: typeof BulletThree;
|
|
161
|
-
declare const Custom_ThumbsUp: typeof ThumbsUp;
|
|
162
|
-
declare const Custom_ThumbsDown: typeof ThumbsDown;
|
|
163
|
-
declare namespace Custom {
|
|
164
|
-
export {
|
|
165
|
-
Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
|
|
166
|
-
Custom_Frown as Frown,
|
|
167
|
-
Custom_Smiling as Smiling,
|
|
168
|
-
Custom_BulletOne as BulletOne,
|
|
169
|
-
Custom_BulletTwo as BulletTwo,
|
|
170
|
-
Custom_BulletThree as BulletThree,
|
|
171
|
-
Custom_ThumbsUp as ThumbsUp,
|
|
172
|
-
Custom_ThumbsDown as ThumbsDown,
|
|
173
|
-
};
|
|
174
|
-
}
|
|
89
|
+
declare const Add: IconComponent;
|
|
175
90
|
|
|
176
|
-
declare const Check:
|
|
91
|
+
declare const Check: IconComponent;
|
|
177
92
|
|
|
178
|
-
declare const
|
|
93
|
+
declare const CheckboxEmpty: IconComponent;
|
|
179
94
|
|
|
180
|
-
declare const
|
|
95
|
+
declare const CheckboxLight: IconComponent;
|
|
181
96
|
|
|
182
|
-
|
|
183
|
-
strokeWidth?: number;
|
|
184
|
-
}
|
|
185
|
-
declare const LightCheck: ({ height, width, fill, strokeWidth }: LightCheckProps) => JSX.Element;
|
|
97
|
+
declare const CheckboxSolid: IconComponent;
|
|
186
98
|
|
|
187
|
-
declare const
|
|
99
|
+
declare const CircleCheck: IconComponent;
|
|
188
100
|
|
|
189
|
-
declare const
|
|
101
|
+
declare const CircleClear: IconComponent;
|
|
190
102
|
|
|
191
|
-
declare const
|
|
103
|
+
declare const CircleInfo: IconComponent;
|
|
192
104
|
|
|
193
|
-
declare const
|
|
105
|
+
declare const CircleMinus: IconComponent;
|
|
194
106
|
|
|
195
|
-
declare const
|
|
107
|
+
declare const CirclePlus: IconComponent;
|
|
196
108
|
|
|
197
|
-
declare const
|
|
109
|
+
declare const CircleQuestion: IconComponent;
|
|
198
110
|
|
|
199
|
-
declare const
|
|
111
|
+
declare const CircleSolidCheck: IconComponent;
|
|
200
112
|
|
|
201
|
-
|
|
202
|
-
stroke?: string;
|
|
203
|
-
}
|
|
204
|
-
declare const Copy: ({ height, width, fill, stroke }: CopyProps) => JSX.Element;
|
|
113
|
+
declare const CircleSolidClear: IconComponent;
|
|
205
114
|
|
|
206
|
-
declare const
|
|
115
|
+
declare const CircleSolidMinus: IconComponent;
|
|
207
116
|
|
|
208
|
-
declare const
|
|
117
|
+
declare const CircleSolidPlus: IconComponent;
|
|
209
118
|
|
|
210
|
-
declare const
|
|
119
|
+
declare const CircleSolidQuestion: IconComponent;
|
|
211
120
|
|
|
212
|
-
declare const
|
|
121
|
+
declare const CircleSolidStyledCheck: IconComponent;
|
|
213
122
|
|
|
214
|
-
declare const
|
|
123
|
+
declare const CircleSolidWarning: IconComponent;
|
|
215
124
|
|
|
216
|
-
declare const
|
|
125
|
+
declare const CircleWarning: IconComponent;
|
|
217
126
|
|
|
218
|
-
declare const
|
|
127
|
+
declare const ClearLight: IconComponent;
|
|
219
128
|
|
|
220
|
-
declare const
|
|
129
|
+
declare const Close: IconComponent;
|
|
221
130
|
|
|
222
|
-
declare const
|
|
131
|
+
declare const Copy: IconComponent;
|
|
223
132
|
|
|
224
|
-
declare const
|
|
133
|
+
declare const CopyOutlined: IconComponent;
|
|
225
134
|
|
|
226
|
-
declare const
|
|
135
|
+
declare const Edit: IconComponent;
|
|
227
136
|
|
|
228
|
-
declare const
|
|
137
|
+
declare const LightCheck: IconComponent;
|
|
229
138
|
|
|
230
|
-
declare const
|
|
139
|
+
declare const LightExclamation: IconComponent;
|
|
231
140
|
|
|
232
|
-
declare const
|
|
141
|
+
declare const Like: IconComponent;
|
|
233
142
|
|
|
234
|
-
declare const
|
|
143
|
+
declare const LikeSolid: IconComponent;
|
|
235
144
|
|
|
236
|
-
declare const
|
|
145
|
+
declare const Minus$1: IconComponent;
|
|
237
146
|
|
|
238
|
-
declare const
|
|
147
|
+
declare const NotAllowed: IconComponent;
|
|
239
148
|
|
|
240
|
-
declare const
|
|
149
|
+
declare const Question: IconComponent;
|
|
241
150
|
|
|
242
|
-
declare const
|
|
151
|
+
declare const RadioEmpty: IconComponent;
|
|
243
152
|
|
|
244
|
-
declare const
|
|
153
|
+
declare const RadioFilled: IconComponent;
|
|
245
154
|
|
|
246
|
-
declare const
|
|
155
|
+
declare const Settings: IconComponent;
|
|
247
156
|
|
|
248
|
-
declare const
|
|
157
|
+
declare const SettingsSolid: IconComponent;
|
|
249
158
|
|
|
250
|
-
declare const
|
|
159
|
+
declare const Share: IconComponent;
|
|
251
160
|
|
|
252
|
-
declare const
|
|
161
|
+
declare const SignOut: IconComponent;
|
|
253
162
|
|
|
254
|
-
declare const
|
|
163
|
+
declare const Trash: IconComponent;
|
|
255
164
|
|
|
256
|
-
declare const
|
|
165
|
+
declare const Warning: IconComponent;
|
|
257
166
|
|
|
258
|
-
declare const Actions_Check: typeof Check;
|
|
259
|
-
declare const Actions_ClearLight: typeof ClearLight;
|
|
260
|
-
declare const Actions_LightExclamation: typeof LightExclamation;
|
|
261
|
-
type Actions_LightCheckProps = LightCheckProps;
|
|
262
|
-
declare const Actions_LightCheck: typeof LightCheck;
|
|
263
|
-
declare const Actions_Question: typeof Question;
|
|
264
|
-
declare const Actions_Close: typeof Close;
|
|
265
|
-
declare const Actions_Trash: typeof Trash;
|
|
266
|
-
declare const Actions_Warning: typeof Warning;
|
|
267
|
-
declare const Actions_Edit: typeof Edit;
|
|
268
|
-
declare const Actions_SignOut: typeof SignOut;
|
|
269
167
|
declare const Actions_Add: typeof Add;
|
|
270
|
-
|
|
271
|
-
declare const Actions_Copy: typeof Copy;
|
|
168
|
+
declare const Actions_Check: typeof Check;
|
|
272
169
|
declare const Actions_CheckboxEmpty: typeof CheckboxEmpty;
|
|
273
170
|
declare const Actions_CheckboxLight: typeof CheckboxLight;
|
|
274
171
|
declare const Actions_CheckboxSolid: typeof CheckboxSolid;
|
|
275
|
-
declare const Actions_Like: typeof Like;
|
|
276
|
-
declare const Actions_LikeSolid: typeof LikeSolid;
|
|
277
|
-
declare const Actions_NotAllowed: typeof NotAllowed;
|
|
278
|
-
declare const Actions_RadioEmpty: typeof RadioEmpty;
|
|
279
|
-
declare const Actions_RadioFilled: typeof RadioFilled;
|
|
280
|
-
declare const Actions_SettingsSolid: typeof SettingsSolid;
|
|
281
|
-
declare const Actions_Settings: typeof Settings;
|
|
282
|
-
declare const Actions_Share: typeof Share;
|
|
283
172
|
declare const Actions_CircleCheck: typeof CircleCheck;
|
|
284
173
|
declare const Actions_CircleClear: typeof CircleClear;
|
|
285
174
|
declare const Actions_CircleInfo: typeof CircleInfo;
|
|
286
175
|
declare const Actions_CircleMinus: typeof CircleMinus;
|
|
287
176
|
declare const Actions_CirclePlus: typeof CirclePlus;
|
|
288
177
|
declare const Actions_CircleQuestion: typeof CircleQuestion;
|
|
289
|
-
declare const Actions_CircleWarning: typeof CircleWarning;
|
|
290
178
|
declare const Actions_CircleSolidCheck: typeof CircleSolidCheck;
|
|
291
179
|
declare const Actions_CircleSolidClear: typeof CircleSolidClear;
|
|
292
180
|
declare const Actions_CircleSolidMinus: typeof CircleSolidMinus;
|
|
293
181
|
declare const Actions_CircleSolidPlus: typeof CircleSolidPlus;
|
|
294
182
|
declare const Actions_CircleSolidQuestion: typeof CircleSolidQuestion;
|
|
295
|
-
declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
|
|
296
183
|
declare const Actions_CircleSolidStyledCheck: typeof CircleSolidStyledCheck;
|
|
184
|
+
declare const Actions_CircleSolidWarning: typeof CircleSolidWarning;
|
|
185
|
+
declare const Actions_CircleWarning: typeof CircleWarning;
|
|
186
|
+
declare const Actions_ClearLight: typeof ClearLight;
|
|
187
|
+
declare const Actions_Close: typeof Close;
|
|
188
|
+
declare const Actions_Copy: typeof Copy;
|
|
189
|
+
declare const Actions_CopyOutlined: typeof CopyOutlined;
|
|
190
|
+
declare const Actions_Edit: typeof Edit;
|
|
191
|
+
declare const Actions_LightCheck: typeof LightCheck;
|
|
192
|
+
declare const Actions_LightExclamation: typeof LightExclamation;
|
|
193
|
+
declare const Actions_Like: typeof Like;
|
|
194
|
+
declare const Actions_LikeSolid: typeof LikeSolid;
|
|
195
|
+
declare const Actions_NotAllowed: typeof NotAllowed;
|
|
196
|
+
declare const Actions_Question: typeof Question;
|
|
197
|
+
declare const Actions_RadioEmpty: typeof RadioEmpty;
|
|
198
|
+
declare const Actions_RadioFilled: typeof RadioFilled;
|
|
199
|
+
declare const Actions_Settings: typeof Settings;
|
|
200
|
+
declare const Actions_SettingsSolid: typeof SettingsSolid;
|
|
201
|
+
declare const Actions_Share: typeof Share;
|
|
202
|
+
declare const Actions_SignOut: typeof SignOut;
|
|
203
|
+
declare const Actions_Trash: typeof Trash;
|
|
204
|
+
declare const Actions_Warning: typeof Warning;
|
|
297
205
|
declare namespace Actions {
|
|
298
206
|
export {
|
|
299
|
-
Actions_Check as Check,
|
|
300
|
-
Actions_ClearLight as ClearLight,
|
|
301
|
-
Actions_LightExclamation as LightExclamation,
|
|
302
|
-
Actions_LightCheckProps as LightCheckProps,
|
|
303
|
-
Actions_LightCheck as LightCheck,
|
|
304
|
-
Actions_Question as Question,
|
|
305
|
-
Actions_Close as Close,
|
|
306
|
-
Actions_Trash as Trash,
|
|
307
|
-
Actions_Warning as Warning,
|
|
308
|
-
Actions_Edit as Edit,
|
|
309
|
-
Actions_SignOut as SignOut,
|
|
310
207
|
Actions_Add as Add,
|
|
311
|
-
|
|
312
|
-
Actions_Copy as Copy,
|
|
208
|
+
Actions_Check as Check,
|
|
313
209
|
Actions_CheckboxEmpty as CheckboxEmpty,
|
|
314
210
|
Actions_CheckboxLight as CheckboxLight,
|
|
315
211
|
Actions_CheckboxSolid as CheckboxSolid,
|
|
316
|
-
Actions_Like as Like,
|
|
317
|
-
Actions_LikeSolid as LikeSolid,
|
|
318
|
-
Actions_NotAllowed as NotAllowed,
|
|
319
|
-
Actions_RadioEmpty as RadioEmpty,
|
|
320
|
-
Actions_RadioFilled as RadioFilled,
|
|
321
|
-
Minus$1 as Minus,
|
|
322
|
-
Actions_SettingsSolid as SettingsSolid,
|
|
323
|
-
Actions_Settings as Settings,
|
|
324
|
-
Actions_Share as Share,
|
|
325
212
|
Actions_CircleCheck as CircleCheck,
|
|
326
213
|
Actions_CircleClear as CircleClear,
|
|
327
214
|
Actions_CircleInfo as CircleInfo,
|
|
328
215
|
Actions_CircleMinus as CircleMinus,
|
|
329
216
|
Actions_CirclePlus as CirclePlus,
|
|
330
217
|
Actions_CircleQuestion as CircleQuestion,
|
|
331
|
-
Actions_CircleWarning as CircleWarning,
|
|
332
218
|
Actions_CircleSolidCheck as CircleSolidCheck,
|
|
333
219
|
Actions_CircleSolidClear as CircleSolidClear,
|
|
334
220
|
Actions_CircleSolidMinus as CircleSolidMinus,
|
|
335
221
|
Actions_CircleSolidPlus as CircleSolidPlus,
|
|
336
222
|
Actions_CircleSolidQuestion as CircleSolidQuestion,
|
|
337
|
-
Actions_CircleSolidWarning as CircleSolidWarning,
|
|
338
223
|
Actions_CircleSolidStyledCheck as CircleSolidStyledCheck,
|
|
224
|
+
Actions_CircleSolidWarning as CircleSolidWarning,
|
|
225
|
+
Actions_CircleWarning as CircleWarning,
|
|
226
|
+
Actions_ClearLight as ClearLight,
|
|
227
|
+
Actions_Close as Close,
|
|
228
|
+
Actions_Copy as Copy,
|
|
229
|
+
Actions_CopyOutlined as CopyOutlined,
|
|
230
|
+
Actions_Edit as Edit,
|
|
231
|
+
Actions_LightCheck as LightCheck,
|
|
232
|
+
Actions_LightExclamation as LightExclamation,
|
|
233
|
+
Actions_Like as Like,
|
|
234
|
+
Actions_LikeSolid as LikeSolid,
|
|
235
|
+
Minus$1 as Minus,
|
|
236
|
+
Actions_NotAllowed as NotAllowed,
|
|
237
|
+
Actions_Question as Question,
|
|
238
|
+
Actions_RadioEmpty as RadioEmpty,
|
|
239
|
+
Actions_RadioFilled as RadioFilled,
|
|
240
|
+
Actions_Settings as Settings,
|
|
241
|
+
Actions_SettingsSolid as SettingsSolid,
|
|
242
|
+
Actions_Share as Share,
|
|
243
|
+
Actions_SignOut as SignOut,
|
|
244
|
+
Actions_Trash as Trash,
|
|
245
|
+
Actions_Warning as Warning,
|
|
339
246
|
};
|
|
340
247
|
}
|
|
341
248
|
|
|
342
|
-
declare const
|
|
249
|
+
declare const ChevronDown: IconComponent;
|
|
343
250
|
|
|
344
|
-
|
|
345
|
-
backgroundColor: string;
|
|
346
|
-
}
|
|
347
|
-
declare const Loading$1: ({ height, width, fill, backgroundColor }: LoadingProps) => JSX.Element;
|
|
251
|
+
declare const ChevronDownVariant: IconComponent;
|
|
348
252
|
|
|
349
|
-
declare const
|
|
253
|
+
declare const ChevronLeft: IconComponent;
|
|
350
254
|
|
|
351
|
-
declare const
|
|
255
|
+
declare const ChevronLeftLite: IconComponent;
|
|
352
256
|
|
|
353
|
-
declare const
|
|
257
|
+
declare const ChevronLeftVariant: IconComponent;
|
|
354
258
|
|
|
355
|
-
declare const
|
|
259
|
+
declare const ChevronRight: IconComponent;
|
|
356
260
|
|
|
357
|
-
declare const
|
|
261
|
+
declare const ChevronRightLite: IconComponent;
|
|
358
262
|
|
|
359
|
-
declare const
|
|
263
|
+
declare const ChevronRightVariant: IconComponent;
|
|
360
264
|
|
|
361
|
-
declare const
|
|
265
|
+
declare const ChevronUp: IconComponent;
|
|
362
266
|
|
|
363
|
-
declare const
|
|
267
|
+
declare const ChevronUpSolid: IconComponent;
|
|
364
268
|
|
|
365
|
-
declare const
|
|
269
|
+
declare const ChevronUpVariant: IconComponent;
|
|
366
270
|
|
|
367
|
-
declare const
|
|
271
|
+
declare const CircleChevronDown: IconComponent;
|
|
368
272
|
|
|
369
|
-
declare const
|
|
273
|
+
declare const CircleChevronLeft: IconComponent;
|
|
370
274
|
|
|
371
|
-
declare const
|
|
275
|
+
declare const CircleChevronRight: IconComponent;
|
|
372
276
|
|
|
373
|
-
declare const
|
|
277
|
+
declare const CircleChevronUp: IconComponent;
|
|
374
278
|
|
|
375
|
-
declare const
|
|
279
|
+
declare const CircleLineDown: IconComponent;
|
|
376
280
|
|
|
377
|
-
|
|
378
|
-
declare const Other_Shapermint: typeof Shapermint;
|
|
379
|
-
declare const Other_McAfee: typeof McAfee;
|
|
380
|
-
declare const Other_GetDiscount: typeof GetDiscount;
|
|
381
|
-
declare const Other_ShapermintLogo: typeof ShapermintLogo;
|
|
382
|
-
declare const Other_Chat: typeof Chat;
|
|
383
|
-
declare const Other_Email: typeof Email;
|
|
384
|
-
declare const Other_CallUs: typeof CallUs;
|
|
385
|
-
declare const Other_SignForm: typeof SignForm;
|
|
386
|
-
declare const Other_QrCode: typeof QrCode;
|
|
387
|
-
declare const Other_FreeExchange: typeof FreeExchange;
|
|
388
|
-
declare const Other_ShopNow: typeof ShopNow;
|
|
389
|
-
declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
|
|
390
|
-
declare const Other_Play: typeof Play;
|
|
391
|
-
declare const Other_FitGuarantee: typeof FitGuarantee;
|
|
392
|
-
declare namespace Other {
|
|
393
|
-
export {
|
|
394
|
-
FitPredictor$1 as FitPredictor,
|
|
395
|
-
Other_LoadingProps as LoadingProps,
|
|
396
|
-
Loading$1 as Loading,
|
|
397
|
-
Other_Shapermint as Shapermint,
|
|
398
|
-
Other_McAfee as McAfee,
|
|
399
|
-
Other_GetDiscount as GetDiscount,
|
|
400
|
-
Other_ShapermintLogo as ShapermintLogo,
|
|
401
|
-
Other_Chat as Chat,
|
|
402
|
-
Other_Email as Email,
|
|
403
|
-
Other_CallUs as CallUs,
|
|
404
|
-
Other_SignForm as SignForm,
|
|
405
|
-
Other_QrCode as QrCode,
|
|
406
|
-
Other_FreeExchange as FreeExchange,
|
|
407
|
-
Other_ShopNow as ShopNow,
|
|
408
|
-
Other_HasselFreeReturns as HasselFreeReturns,
|
|
409
|
-
Other_Play as Play,
|
|
410
|
-
Other_FitGuarantee as FitGuarantee,
|
|
411
|
-
};
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
declare const ChevronDown: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
415
|
-
|
|
416
|
-
declare const ChevronLeft: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
|
|
417
|
-
|
|
418
|
-
declare const ChevronRight: ({ height, width, fill, opacity, testId }: IconWithOpacityProps) => JSX.Element;
|
|
419
|
-
|
|
420
|
-
declare const ChevronRightVariant: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
421
|
-
|
|
422
|
-
declare const ChevronUp: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
281
|
+
declare const CircleLineLeft: IconComponent;
|
|
423
282
|
|
|
424
|
-
declare const
|
|
283
|
+
declare const CircleLineRight: IconComponent;
|
|
425
284
|
|
|
426
|
-
declare const
|
|
285
|
+
declare const CircleLineUp: IconComponent;
|
|
427
286
|
|
|
428
|
-
declare const
|
|
287
|
+
declare const CircleUp: IconComponent;
|
|
429
288
|
|
|
430
|
-
declare const
|
|
431
|
-
|
|
432
|
-
declare const CircleChevronDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
433
|
-
|
|
434
|
-
declare const CircleChevronUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
435
|
-
|
|
436
|
-
declare const ChevronDownVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
437
|
-
|
|
438
|
-
declare const ChevronUpVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
439
|
-
|
|
440
|
-
declare const ChevronLeftVariant: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
441
|
-
|
|
442
|
-
declare const CircleLineUp: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
443
|
-
|
|
444
|
-
declare const CircleLineDown: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
445
|
-
|
|
446
|
-
declare const CircleLineLeft: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
447
|
-
|
|
448
|
-
declare const CircleLineRight: ({ width, height, fill }: IconProps) => JSX.Element;
|
|
289
|
+
declare const DoubleArrowUp: IconComponent;
|
|
449
290
|
|
|
450
291
|
declare const Arrows_ChevronDown: typeof ChevronDown;
|
|
292
|
+
declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
|
|
451
293
|
declare const Arrows_ChevronLeft: typeof ChevronLeft;
|
|
294
|
+
declare const Arrows_ChevronLeftLite: typeof ChevronLeftLite;
|
|
295
|
+
declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
|
|
452
296
|
declare const Arrows_ChevronRight: typeof ChevronRight;
|
|
297
|
+
declare const Arrows_ChevronRightLite: typeof ChevronRightLite;
|
|
453
298
|
declare const Arrows_ChevronRightVariant: typeof ChevronRightVariant;
|
|
454
299
|
declare const Arrows_ChevronUp: typeof ChevronUp;
|
|
455
300
|
declare const Arrows_ChevronUpSolid: typeof ChevronUpSolid;
|
|
456
|
-
declare const
|
|
301
|
+
declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
|
|
302
|
+
declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
|
|
457
303
|
declare const Arrows_CircleChevronLeft: typeof CircleChevronLeft;
|
|
458
304
|
declare const Arrows_CircleChevronRight: typeof CircleChevronRight;
|
|
459
|
-
declare const Arrows_CircleChevronDown: typeof CircleChevronDown;
|
|
460
305
|
declare const Arrows_CircleChevronUp: typeof CircleChevronUp;
|
|
461
|
-
declare const Arrows_ChevronDownVariant: typeof ChevronDownVariant;
|
|
462
|
-
declare const Arrows_ChevronUpVariant: typeof ChevronUpVariant;
|
|
463
|
-
declare const Arrows_ChevronLeftVariant: typeof ChevronLeftVariant;
|
|
464
|
-
declare const Arrows_CircleLineUp: typeof CircleLineUp;
|
|
465
306
|
declare const Arrows_CircleLineDown: typeof CircleLineDown;
|
|
466
307
|
declare const Arrows_CircleLineLeft: typeof CircleLineLeft;
|
|
467
308
|
declare const Arrows_CircleLineRight: typeof CircleLineRight;
|
|
309
|
+
declare const Arrows_CircleLineUp: typeof CircleLineUp;
|
|
310
|
+
declare const Arrows_CircleUp: typeof CircleUp;
|
|
311
|
+
declare const Arrows_DoubleArrowUp: typeof DoubleArrowUp;
|
|
468
312
|
declare namespace Arrows {
|
|
469
313
|
export {
|
|
470
314
|
Arrows_ChevronDown as ChevronDown,
|
|
315
|
+
Arrows_ChevronDownVariant as ChevronDownVariant,
|
|
471
316
|
Arrows_ChevronLeft as ChevronLeft,
|
|
317
|
+
Arrows_ChevronLeftLite as ChevronLeftLite,
|
|
318
|
+
Arrows_ChevronLeftVariant as ChevronLeftVariant,
|
|
472
319
|
Arrows_ChevronRight as ChevronRight,
|
|
320
|
+
Arrows_ChevronRightLite as ChevronRightLite,
|
|
473
321
|
Arrows_ChevronRightVariant as ChevronRightVariant,
|
|
474
322
|
Arrows_ChevronUp as ChevronUp,
|
|
475
323
|
Arrows_ChevronUpSolid as ChevronUpSolid,
|
|
476
|
-
|
|
324
|
+
Arrows_ChevronUpVariant as ChevronUpVariant,
|
|
325
|
+
Arrows_CircleChevronDown as CircleChevronDown,
|
|
477
326
|
Arrows_CircleChevronLeft as CircleChevronLeft,
|
|
478
327
|
Arrows_CircleChevronRight as CircleChevronRight,
|
|
479
|
-
Arrows_CircleChevronDown as CircleChevronDown,
|
|
480
328
|
Arrows_CircleChevronUp as CircleChevronUp,
|
|
481
|
-
Arrows_ChevronDownVariant as ChevronDownVariant,
|
|
482
|
-
Arrows_ChevronUpVariant as ChevronUpVariant,
|
|
483
|
-
Arrows_ChevronLeftVariant as ChevronLeftVariant,
|
|
484
|
-
Arrows_CircleLineUp as CircleLineUp,
|
|
485
329
|
Arrows_CircleLineDown as CircleLineDown,
|
|
486
330
|
Arrows_CircleLineLeft as CircleLineLeft,
|
|
487
331
|
Arrows_CircleLineRight as CircleLineRight,
|
|
332
|
+
Arrows_CircleLineUp as CircleLineUp,
|
|
333
|
+
Arrows_CircleUp as CircleUp,
|
|
334
|
+
Arrows_DoubleArrowUp as DoubleArrowUp,
|
|
488
335
|
};
|
|
489
336
|
}
|
|
490
337
|
|
|
491
|
-
declare const
|
|
338
|
+
declare const SixtyDaysGuarantee: IconComponent;
|
|
492
339
|
|
|
493
|
-
declare const
|
|
340
|
+
declare const Bra: IconComponent;
|
|
494
341
|
|
|
495
|
-
declare const
|
|
342
|
+
declare const Underwear: IconComponent;
|
|
496
343
|
|
|
497
|
-
declare const
|
|
344
|
+
declare const PacksAndBundles: IconComponent;
|
|
498
345
|
|
|
499
|
-
declare const
|
|
346
|
+
declare const SeamlessSupportBra: IconComponent;
|
|
500
347
|
|
|
501
|
-
declare const
|
|
348
|
+
declare const WireFreeComfort: IconComponent;
|
|
502
349
|
|
|
503
|
-
declare const
|
|
350
|
+
declare const SixtyDaysBold: IconComponent;
|
|
504
351
|
|
|
505
|
-
declare const
|
|
352
|
+
declare const Frown: IconComponent;
|
|
506
353
|
|
|
507
|
-
declare const
|
|
354
|
+
declare const Smiling: IconComponent;
|
|
508
355
|
|
|
509
|
-
declare const
|
|
356
|
+
declare const BulletOne: IconComponent;
|
|
510
357
|
|
|
511
|
-
declare const
|
|
358
|
+
declare const BulletTwo: IconComponent;
|
|
512
359
|
|
|
513
|
-
declare const
|
|
360
|
+
declare const BulletThree: IconComponent;
|
|
514
361
|
|
|
515
|
-
declare const
|
|
362
|
+
declare const ThumbsUp: IconComponent;
|
|
516
363
|
|
|
517
|
-
declare const
|
|
364
|
+
declare const ThumbsDown: IconComponent;
|
|
518
365
|
|
|
519
|
-
declare const
|
|
366
|
+
declare const Atom: IconComponent;
|
|
520
367
|
|
|
521
|
-
declare const
|
|
368
|
+
declare const Bubbles: IconComponent;
|
|
522
369
|
|
|
523
|
-
declare const
|
|
524
|
-
|
|
525
|
-
declare const
|
|
526
|
-
|
|
527
|
-
declare const
|
|
528
|
-
|
|
529
|
-
declare const
|
|
530
|
-
|
|
531
|
-
declare const
|
|
532
|
-
|
|
533
|
-
declare const
|
|
534
|
-
|
|
535
|
-
declare const
|
|
536
|
-
declare const
|
|
537
|
-
declare const
|
|
538
|
-
declare
|
|
370
|
+
declare const FairAdvantages: IconComponent;
|
|
371
|
+
|
|
372
|
+
declare const MoneyFlow: IconComponent;
|
|
373
|
+
|
|
374
|
+
declare const ClinicallyTested: IconComponent;
|
|
375
|
+
|
|
376
|
+
declare const CrueltyFree: IconComponent;
|
|
377
|
+
|
|
378
|
+
declare const Certified: IconComponent;
|
|
379
|
+
|
|
380
|
+
declare const NewSixtyDaysGuarantee: IconComponent;
|
|
381
|
+
|
|
382
|
+
declare const Custom_SixtyDaysGuarantee: typeof SixtyDaysGuarantee;
|
|
383
|
+
declare const Custom_Bra: typeof Bra;
|
|
384
|
+
declare const Custom_Underwear: typeof Underwear;
|
|
385
|
+
declare const Custom_PacksAndBundles: typeof PacksAndBundles;
|
|
386
|
+
declare const Custom_SeamlessSupportBra: typeof SeamlessSupportBra;
|
|
387
|
+
declare const Custom_WireFreeComfort: typeof WireFreeComfort;
|
|
388
|
+
declare const Custom_SixtyDaysBold: typeof SixtyDaysBold;
|
|
389
|
+
declare const Custom_Frown: typeof Frown;
|
|
390
|
+
declare const Custom_Smiling: typeof Smiling;
|
|
391
|
+
declare const Custom_BulletOne: typeof BulletOne;
|
|
392
|
+
declare const Custom_BulletTwo: typeof BulletTwo;
|
|
393
|
+
declare const Custom_BulletThree: typeof BulletThree;
|
|
394
|
+
declare const Custom_ThumbsUp: typeof ThumbsUp;
|
|
395
|
+
declare const Custom_ThumbsDown: typeof ThumbsDown;
|
|
396
|
+
declare const Custom_Atom: typeof Atom;
|
|
397
|
+
declare const Custom_Bubbles: typeof Bubbles;
|
|
398
|
+
declare const Custom_FairAdvantages: typeof FairAdvantages;
|
|
399
|
+
declare const Custom_MoneyFlow: typeof MoneyFlow;
|
|
400
|
+
declare const Custom_ClinicallyTested: typeof ClinicallyTested;
|
|
401
|
+
declare const Custom_CrueltyFree: typeof CrueltyFree;
|
|
402
|
+
declare const Custom_Certified: typeof Certified;
|
|
403
|
+
declare const Custom_NewSixtyDaysGuarantee: typeof NewSixtyDaysGuarantee;
|
|
404
|
+
declare namespace Custom {
|
|
539
405
|
export {
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
406
|
+
Custom_SixtyDaysGuarantee as SixtyDaysGuarantee,
|
|
407
|
+
Custom_Bra as Bra,
|
|
408
|
+
Custom_Underwear as Underwear,
|
|
409
|
+
Custom_PacksAndBundles as PacksAndBundles,
|
|
410
|
+
Custom_SeamlessSupportBra as SeamlessSupportBra,
|
|
411
|
+
Custom_WireFreeComfort as WireFreeComfort,
|
|
412
|
+
Custom_SixtyDaysBold as SixtyDaysBold,
|
|
413
|
+
Custom_Frown as Frown,
|
|
414
|
+
Custom_Smiling as Smiling,
|
|
415
|
+
Custom_BulletOne as BulletOne,
|
|
416
|
+
Custom_BulletTwo as BulletTwo,
|
|
417
|
+
Custom_BulletThree as BulletThree,
|
|
418
|
+
Custom_ThumbsUp as ThumbsUp,
|
|
419
|
+
Custom_ThumbsDown as ThumbsDown,
|
|
420
|
+
Custom_Atom as Atom,
|
|
421
|
+
Custom_Bubbles as Bubbles,
|
|
422
|
+
Custom_FairAdvantages as FairAdvantages,
|
|
423
|
+
Custom_MoneyFlow as MoneyFlow,
|
|
424
|
+
Custom_ClinicallyTested as ClinicallyTested,
|
|
425
|
+
Custom_CrueltyFree as CrueltyFree,
|
|
426
|
+
Custom_Certified as Certified,
|
|
427
|
+
Custom_NewSixtyDaysGuarantee as NewSixtyDaysGuarantee,
|
|
428
|
+
};
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
declare const AppleStore: IconComponent;
|
|
432
|
+
|
|
433
|
+
declare const GooglePlay: IconComponent;
|
|
434
|
+
|
|
435
|
+
declare const Download_AppleStore: typeof AppleStore;
|
|
436
|
+
declare const Download_GooglePlay: typeof GooglePlay;
|
|
437
|
+
declare namespace Download {
|
|
438
|
+
export {
|
|
439
|
+
Download_AppleStore as AppleStore,
|
|
440
|
+
Download_GooglePlay as GooglePlay,
|
|
441
|
+
};
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
declare const Thinking: IconComponent;
|
|
445
|
+
|
|
446
|
+
declare const SmilingV2: IconComponent;
|
|
447
|
+
|
|
448
|
+
declare const Grinning: IconComponent;
|
|
449
|
+
|
|
450
|
+
declare const GrinningWithSweat: IconComponent;
|
|
451
|
+
|
|
452
|
+
declare const BlowingKiss: IconComponent;
|
|
453
|
+
|
|
454
|
+
declare const Frowning: IconComponent;
|
|
455
|
+
|
|
456
|
+
declare const Relieved: IconComponent;
|
|
457
|
+
|
|
458
|
+
declare const Emoji_Thinking: typeof Thinking;
|
|
459
|
+
declare const Emoji_SmilingV2: typeof SmilingV2;
|
|
460
|
+
declare const Emoji_Grinning: typeof Grinning;
|
|
461
|
+
declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
|
|
462
|
+
declare const Emoji_BlowingKiss: typeof BlowingKiss;
|
|
463
|
+
declare const Emoji_Frowning: typeof Frowning;
|
|
464
|
+
declare const Emoji_Relieved: typeof Relieved;
|
|
465
|
+
declare namespace Emoji {
|
|
466
|
+
export {
|
|
467
|
+
Emoji_Thinking as Thinking,
|
|
468
|
+
Emoji_SmilingV2 as SmilingV2,
|
|
469
|
+
Emoji_Grinning as Grinning,
|
|
470
|
+
Emoji_GrinningWithSweat as GrinningWithSweat,
|
|
471
|
+
Emoji_BlowingKiss as BlowingKiss,
|
|
472
|
+
Emoji_Frowning as Frowning,
|
|
473
|
+
Emoji_Relieved as Relieved,
|
|
474
|
+
};
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
declare const AdaChat: IconComponent;
|
|
478
|
+
|
|
479
|
+
declare const QuestionCircle: IconComponent;
|
|
480
|
+
|
|
481
|
+
declare const Messenger: IconComponent;
|
|
482
|
+
|
|
483
|
+
declare const Comment: IconComponent;
|
|
484
|
+
|
|
485
|
+
declare const Mail: IconComponent;
|
|
486
|
+
|
|
487
|
+
declare const Community$1: IconComponent;
|
|
488
|
+
|
|
489
|
+
declare const QuoteLeft: IconComponent;
|
|
490
|
+
|
|
491
|
+
declare const QuoteRight: IconComponent;
|
|
492
|
+
|
|
493
|
+
declare const QuoteSolidLeft: IconComponent;
|
|
494
|
+
|
|
495
|
+
declare const QuoteSolidRight: IconComponent;
|
|
496
|
+
|
|
497
|
+
declare const Light: IconComponent;
|
|
498
|
+
|
|
499
|
+
declare const LightBulb$1: IconComponent;
|
|
500
|
+
|
|
501
|
+
declare const LightBulbSolid: IconComponent;
|
|
502
|
+
|
|
503
|
+
declare const CommentDots: IconComponent;
|
|
504
|
+
|
|
505
|
+
declare const CommentLight: IconComponent;
|
|
506
|
+
|
|
507
|
+
declare const CommentMoney: IconComponent;
|
|
508
|
+
|
|
509
|
+
declare const Messaging_AdaChat: typeof AdaChat;
|
|
510
|
+
declare const Messaging_QuestionCircle: typeof QuestionCircle;
|
|
511
|
+
declare const Messaging_Messenger: typeof Messenger;
|
|
512
|
+
declare const Messaging_Comment: typeof Comment;
|
|
513
|
+
declare const Messaging_Mail: typeof Mail;
|
|
514
|
+
declare const Messaging_QuoteLeft: typeof QuoteLeft;
|
|
515
|
+
declare const Messaging_QuoteRight: typeof QuoteRight;
|
|
516
|
+
declare const Messaging_QuoteSolidLeft: typeof QuoteSolidLeft;
|
|
517
|
+
declare const Messaging_QuoteSolidRight: typeof QuoteSolidRight;
|
|
518
|
+
declare const Messaging_Light: typeof Light;
|
|
519
|
+
declare const Messaging_LightBulbSolid: typeof LightBulbSolid;
|
|
520
|
+
declare const Messaging_CommentDots: typeof CommentDots;
|
|
521
|
+
declare const Messaging_CommentLight: typeof CommentLight;
|
|
522
|
+
declare const Messaging_CommentMoney: typeof CommentMoney;
|
|
523
|
+
declare namespace Messaging {
|
|
524
|
+
export {
|
|
525
|
+
Messaging_AdaChat as AdaChat,
|
|
526
|
+
Messaging_QuestionCircle as QuestionCircle,
|
|
527
|
+
Messaging_Messenger as Messenger,
|
|
528
|
+
Messaging_Comment as Comment,
|
|
529
|
+
Messaging_Mail as Mail,
|
|
530
|
+
Community$1 as Community,
|
|
531
|
+
Messaging_QuoteLeft as QuoteLeft,
|
|
532
|
+
Messaging_QuoteRight as QuoteRight,
|
|
533
|
+
Messaging_QuoteSolidLeft as QuoteSolidLeft,
|
|
534
|
+
Messaging_QuoteSolidRight as QuoteSolidRight,
|
|
535
|
+
Messaging_Light as Light,
|
|
550
536
|
LightBulb$1 as LightBulb,
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
PDP_ShippingEmpty as ShippingEmpty,
|
|
537
|
+
Messaging_LightBulbSolid as LightBulbSolid,
|
|
538
|
+
Messaging_CommentDots as CommentDots,
|
|
539
|
+
Messaging_CommentLight as CommentLight,
|
|
540
|
+
Messaging_CommentMoney as CommentMoney,
|
|
556
541
|
};
|
|
557
542
|
}
|
|
558
543
|
|
|
559
|
-
declare const
|
|
544
|
+
declare const FreeShipping: IconComponent;
|
|
560
545
|
|
|
561
|
-
declare const
|
|
546
|
+
declare const PersonalStylist: IconComponent;
|
|
562
547
|
|
|
563
|
-
declare const
|
|
548
|
+
declare const Community: IconComponent;
|
|
564
549
|
|
|
565
|
-
declare const
|
|
550
|
+
declare const VIP: IconComponent;
|
|
566
551
|
|
|
567
|
-
declare const
|
|
552
|
+
declare const DealsOffers: IconComponent;
|
|
568
553
|
|
|
569
|
-
declare const
|
|
554
|
+
declare const StyleFashionContent: IconComponent;
|
|
570
555
|
|
|
571
|
-
declare const
|
|
556
|
+
declare const MembersOnlyDiscount: IconComponent;
|
|
572
557
|
|
|
573
|
-
declare const
|
|
558
|
+
declare const Profile: IconComponent;
|
|
574
559
|
|
|
575
|
-
declare const
|
|
576
|
-
|
|
577
|
-
declare const
|
|
578
|
-
|
|
579
|
-
declare const
|
|
580
|
-
|
|
581
|
-
declare const
|
|
582
|
-
|
|
583
|
-
declare
|
|
560
|
+
declare const MembersOnlyDiscountOpposite: IconComponent;
|
|
561
|
+
|
|
562
|
+
declare const PriorityShipping: IconComponent;
|
|
563
|
+
|
|
564
|
+
declare const Guard: IconComponent;
|
|
565
|
+
|
|
566
|
+
declare const BirthdayGifts: IconComponent;
|
|
567
|
+
|
|
568
|
+
declare const SaleTag: IconComponent;
|
|
569
|
+
|
|
570
|
+
declare const FreeReturns: IconComponent;
|
|
571
|
+
|
|
572
|
+
declare const MyAccount_FreeShipping: typeof FreeShipping;
|
|
573
|
+
declare const MyAccount_PersonalStylist: typeof PersonalStylist;
|
|
574
|
+
declare const MyAccount_Community: typeof Community;
|
|
575
|
+
declare const MyAccount_VIP: typeof VIP;
|
|
576
|
+
declare const MyAccount_DealsOffers: typeof DealsOffers;
|
|
577
|
+
declare const MyAccount_StyleFashionContent: typeof StyleFashionContent;
|
|
578
|
+
declare const MyAccount_MembersOnlyDiscount: typeof MembersOnlyDiscount;
|
|
579
|
+
declare const MyAccount_Profile: typeof Profile;
|
|
580
|
+
declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
|
|
581
|
+
declare const MyAccount_PriorityShipping: typeof PriorityShipping;
|
|
582
|
+
declare const MyAccount_Guard: typeof Guard;
|
|
583
|
+
declare const MyAccount_BirthdayGifts: typeof BirthdayGifts;
|
|
584
|
+
declare const MyAccount_SaleTag: typeof SaleTag;
|
|
585
|
+
declare const MyAccount_FreeReturns: typeof FreeReturns;
|
|
586
|
+
declare namespace MyAccount {
|
|
584
587
|
export {
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
588
|
+
MyAccount_FreeShipping as FreeShipping,
|
|
589
|
+
MyAccount_PersonalStylist as PersonalStylist,
|
|
590
|
+
MyAccount_Community as Community,
|
|
591
|
+
MyAccount_VIP as VIP,
|
|
592
|
+
MyAccount_DealsOffers as DealsOffers,
|
|
593
|
+
MyAccount_StyleFashionContent as StyleFashionContent,
|
|
594
|
+
MyAccount_MembersOnlyDiscount as MembersOnlyDiscount,
|
|
595
|
+
MyAccount_Profile as Profile,
|
|
596
|
+
MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
|
|
597
|
+
MyAccount_PriorityShipping as PriorityShipping,
|
|
598
|
+
MyAccount_Guard as Guard,
|
|
599
|
+
MyAccount_BirthdayGifts as BirthdayGifts,
|
|
600
|
+
MyAccount_SaleTag as SaleTag,
|
|
601
|
+
MyAccount_FreeReturns as FreeReturns,
|
|
593
602
|
};
|
|
594
603
|
}
|
|
595
604
|
|
|
596
|
-
declare const Search:
|
|
605
|
+
declare const Search: IconComponent;
|
|
606
|
+
|
|
607
|
+
declare const User: IconComponent;
|
|
608
|
+
|
|
609
|
+
declare const ShoppingBag: IconComponent;
|
|
597
610
|
|
|
598
|
-
declare const
|
|
611
|
+
declare const ShoppingCart: IconComponent;
|
|
599
612
|
|
|
600
|
-
declare const
|
|
613
|
+
declare const MapMarker: IconComponent;
|
|
601
614
|
|
|
602
|
-
declare const
|
|
615
|
+
declare const Hamburger: IconComponent;
|
|
603
616
|
|
|
604
|
-
declare const
|
|
617
|
+
declare const AddressInformation: IconComponent;
|
|
605
618
|
|
|
606
|
-
declare const
|
|
619
|
+
declare const ClubMembership: IconComponent;
|
|
607
620
|
|
|
608
|
-
declare const
|
|
621
|
+
declare const Benefits: IconComponent;
|
|
609
622
|
|
|
610
|
-
declare const
|
|
623
|
+
declare const Home: IconComponent;
|
|
611
624
|
|
|
612
|
-
declare const
|
|
625
|
+
declare const HomeSolid: IconComponent;
|
|
613
626
|
|
|
614
|
-
declare const
|
|
627
|
+
declare const ShoppingBagV2: IconComponent;
|
|
615
628
|
|
|
616
|
-
declare const
|
|
629
|
+
declare const UserSolid: IconComponent;
|
|
617
630
|
|
|
618
|
-
declare const
|
|
631
|
+
declare const SlideDot$1: IconComponent;
|
|
619
632
|
|
|
620
|
-
declare const
|
|
633
|
+
declare const SlideDotSolid: IconComponent;
|
|
621
634
|
|
|
622
|
-
declare const
|
|
635
|
+
declare const Ellipsis: IconComponent;
|
|
623
636
|
|
|
624
|
-
declare const
|
|
637
|
+
declare const EllipsisHorizontal: IconComponent;
|
|
625
638
|
|
|
626
|
-
declare const
|
|
639
|
+
declare const Filters$1: IconComponent;
|
|
627
640
|
|
|
628
|
-
declare const
|
|
641
|
+
declare const Lock: IconComponent;
|
|
629
642
|
|
|
630
|
-
declare const
|
|
643
|
+
declare const LockSolid: IconComponent;
|
|
631
644
|
|
|
632
|
-
declare const
|
|
645
|
+
declare const Loading$1: IconComponent;
|
|
633
646
|
|
|
634
|
-
declare const
|
|
647
|
+
declare const MapSolid: IconComponent;
|
|
635
648
|
|
|
636
|
-
declare const
|
|
649
|
+
declare const MenuLines: IconComponent;
|
|
637
650
|
|
|
638
|
-
declare const
|
|
651
|
+
declare const UserV2: IconComponent;
|
|
639
652
|
|
|
640
|
-
declare const
|
|
653
|
+
declare const ShoppingCartV2: IconComponent;
|
|
641
654
|
|
|
642
|
-
declare const
|
|
655
|
+
declare const ShoppingBagV3: IconComponent;
|
|
656
|
+
|
|
657
|
+
declare const Shaperbox: IconComponent;
|
|
643
658
|
|
|
644
659
|
declare const Navigation_Search: typeof Search;
|
|
645
660
|
declare const Navigation_User: typeof User;
|
|
@@ -659,10 +674,12 @@ declare const Navigation_Ellipsis: typeof Ellipsis;
|
|
|
659
674
|
declare const Navigation_EllipsisHorizontal: typeof EllipsisHorizontal;
|
|
660
675
|
declare const Navigation_Lock: typeof Lock;
|
|
661
676
|
declare const Navigation_LockSolid: typeof LockSolid;
|
|
662
|
-
declare const Navigation_Loading: typeof Loading;
|
|
663
677
|
declare const Navigation_MapSolid: typeof MapSolid;
|
|
678
|
+
declare const Navigation_MenuLines: typeof MenuLines;
|
|
664
679
|
declare const Navigation_UserV2: typeof UserV2;
|
|
665
680
|
declare const Navigation_ShoppingCartV2: typeof ShoppingCartV2;
|
|
681
|
+
declare const Navigation_ShoppingBagV3: typeof ShoppingBagV3;
|
|
682
|
+
declare const Navigation_Shaperbox: typeof Shaperbox;
|
|
666
683
|
declare namespace Navigation {
|
|
667
684
|
export {
|
|
668
685
|
Navigation_Search as Search,
|
|
@@ -685,114 +702,253 @@ declare namespace Navigation {
|
|
|
685
702
|
Filters$1 as Filters,
|
|
686
703
|
Navigation_Lock as Lock,
|
|
687
704
|
Navigation_LockSolid as LockSolid,
|
|
688
|
-
|
|
705
|
+
Loading$1 as Loading,
|
|
689
706
|
Navigation_MapSolid as MapSolid,
|
|
707
|
+
Navigation_MenuLines as MenuLines,
|
|
690
708
|
Navigation_UserV2 as UserV2,
|
|
691
709
|
Navigation_ShoppingCartV2 as ShoppingCartV2,
|
|
710
|
+
Navigation_ShoppingBagV3 as ShoppingBagV3,
|
|
711
|
+
Navigation_Shaperbox as Shaperbox,
|
|
692
712
|
};
|
|
693
713
|
}
|
|
694
714
|
|
|
695
|
-
declare const
|
|
715
|
+
declare const BodConLabel: IconComponent;
|
|
696
716
|
|
|
697
|
-
declare const
|
|
717
|
+
declare const BodConMobileLabel: IconComponent;
|
|
698
718
|
|
|
699
|
-
declare const
|
|
719
|
+
declare const CallUs: IconComponent;
|
|
700
720
|
|
|
701
|
-
|
|
702
|
-
width?: number;
|
|
703
|
-
height?: number;
|
|
704
|
-
title?: string;
|
|
705
|
-
viewBoxX: number;
|
|
706
|
-
viewBoxY: number;
|
|
707
|
-
children: React.ReactNode;
|
|
708
|
-
testId?: string;
|
|
709
|
-
fill?: string;
|
|
710
|
-
}
|
|
721
|
+
declare const Chat: IconComponent;
|
|
711
722
|
|
|
712
|
-
declare const
|
|
723
|
+
declare const Email: IconComponent;
|
|
713
724
|
|
|
714
|
-
declare const
|
|
725
|
+
declare const ExpressShipping: IconComponent;
|
|
715
726
|
|
|
716
|
-
declare const
|
|
727
|
+
declare const FitGuarantee$1: IconComponent;
|
|
717
728
|
|
|
718
|
-
declare const
|
|
729
|
+
declare const FitPredictor$1: IconComponent;
|
|
719
730
|
|
|
720
|
-
declare const
|
|
731
|
+
declare const FreeExchange: IconComponent;
|
|
721
732
|
|
|
722
|
-
declare const
|
|
733
|
+
declare const GetDiscount: IconComponent;
|
|
723
734
|
|
|
724
|
-
declare const
|
|
735
|
+
declare const HasselFreeReturns: IconComponent;
|
|
725
736
|
|
|
726
|
-
declare const
|
|
737
|
+
declare const Loading: IconComponent;
|
|
727
738
|
|
|
728
|
-
declare const
|
|
739
|
+
declare const McAfee: IconComponent;
|
|
729
740
|
|
|
730
|
-
declare const
|
|
741
|
+
declare const Play: IconComponent;
|
|
731
742
|
|
|
732
|
-
declare const
|
|
743
|
+
declare const QrCode: IconComponent;
|
|
733
744
|
|
|
734
|
-
declare const
|
|
745
|
+
declare const QuestionWithCircle: IconComponent;
|
|
735
746
|
|
|
736
|
-
declare const
|
|
737
|
-
|
|
738
|
-
declare const
|
|
739
|
-
|
|
740
|
-
declare const
|
|
741
|
-
|
|
742
|
-
declare const
|
|
743
|
-
|
|
744
|
-
declare const
|
|
745
|
-
|
|
746
|
-
declare const
|
|
747
|
-
|
|
748
|
-
declare const
|
|
749
|
-
|
|
750
|
-
declare
|
|
747
|
+
declare const RevelBeauty: IconComponent;
|
|
748
|
+
|
|
749
|
+
declare const Shapermint: IconComponent;
|
|
750
|
+
|
|
751
|
+
declare const ShapermintClubIcon: IconComponent;
|
|
752
|
+
|
|
753
|
+
declare const ShapermintClubIcon2: IconComponent;
|
|
754
|
+
|
|
755
|
+
declare const ShapermintClubLabel: IconComponent;
|
|
756
|
+
|
|
757
|
+
declare const ShapermintClubMobileLabel: IconComponent;
|
|
758
|
+
|
|
759
|
+
declare const ShapermintLogo: IconComponent;
|
|
760
|
+
|
|
761
|
+
declare const ShmClub: IconComponent;
|
|
762
|
+
|
|
763
|
+
declare const ShopNow: IconComponent;
|
|
764
|
+
|
|
765
|
+
declare const SignForm: IconComponent;
|
|
766
|
+
|
|
767
|
+
declare const SixtyDaysTSD: IconComponent;
|
|
768
|
+
|
|
769
|
+
declare const TheBodCon: IconComponent;
|
|
770
|
+
|
|
771
|
+
declare const TheSpaDr: IconComponent;
|
|
772
|
+
|
|
773
|
+
declare const Other_BodConLabel: typeof BodConLabel;
|
|
774
|
+
declare const Other_BodConMobileLabel: typeof BodConMobileLabel;
|
|
775
|
+
declare const Other_CallUs: typeof CallUs;
|
|
776
|
+
declare const Other_Chat: typeof Chat;
|
|
777
|
+
declare const Other_Email: typeof Email;
|
|
778
|
+
declare const Other_ExpressShipping: typeof ExpressShipping;
|
|
779
|
+
declare const Other_FreeExchange: typeof FreeExchange;
|
|
780
|
+
declare const Other_GetDiscount: typeof GetDiscount;
|
|
781
|
+
declare const Other_HasselFreeReturns: typeof HasselFreeReturns;
|
|
782
|
+
declare const Other_Loading: typeof Loading;
|
|
783
|
+
declare const Other_McAfee: typeof McAfee;
|
|
784
|
+
declare const Other_Play: typeof Play;
|
|
785
|
+
declare const Other_QrCode: typeof QrCode;
|
|
786
|
+
declare const Other_QuestionWithCircle: typeof QuestionWithCircle;
|
|
787
|
+
declare const Other_RevelBeauty: typeof RevelBeauty;
|
|
788
|
+
declare const Other_Shapermint: typeof Shapermint;
|
|
789
|
+
declare const Other_ShapermintClubIcon: typeof ShapermintClubIcon;
|
|
790
|
+
declare const Other_ShapermintClubIcon2: typeof ShapermintClubIcon2;
|
|
791
|
+
declare const Other_ShapermintClubLabel: typeof ShapermintClubLabel;
|
|
792
|
+
declare const Other_ShapermintClubMobileLabel: typeof ShapermintClubMobileLabel;
|
|
793
|
+
declare const Other_ShapermintLogo: typeof ShapermintLogo;
|
|
794
|
+
declare const Other_ShmClub: typeof ShmClub;
|
|
795
|
+
declare const Other_ShopNow: typeof ShopNow;
|
|
796
|
+
declare const Other_SignForm: typeof SignForm;
|
|
797
|
+
declare const Other_SixtyDaysTSD: typeof SixtyDaysTSD;
|
|
798
|
+
declare const Other_TheBodCon: typeof TheBodCon;
|
|
799
|
+
declare const Other_TheSpaDr: typeof TheSpaDr;
|
|
800
|
+
declare namespace Other {
|
|
751
801
|
export {
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
802
|
+
Other_BodConLabel as BodConLabel,
|
|
803
|
+
Other_BodConMobileLabel as BodConMobileLabel,
|
|
804
|
+
Other_CallUs as CallUs,
|
|
805
|
+
Other_Chat as Chat,
|
|
806
|
+
Other_Email as Email,
|
|
807
|
+
Other_ExpressShipping as ExpressShipping,
|
|
808
|
+
FitGuarantee$1 as FitGuarantee,
|
|
809
|
+
FitPredictor$1 as FitPredictor,
|
|
810
|
+
Other_FreeExchange as FreeExchange,
|
|
811
|
+
Other_GetDiscount as GetDiscount,
|
|
812
|
+
Other_HasselFreeReturns as HasselFreeReturns,
|
|
813
|
+
Other_Loading as Loading,
|
|
814
|
+
Other_McAfee as McAfee,
|
|
815
|
+
Other_Play as Play,
|
|
816
|
+
Other_QrCode as QrCode,
|
|
817
|
+
Other_QuestionWithCircle as QuestionWithCircle,
|
|
818
|
+
Other_RevelBeauty as RevelBeauty,
|
|
819
|
+
Other_Shapermint as Shapermint,
|
|
820
|
+
Other_ShapermintClubIcon as ShapermintClubIcon,
|
|
821
|
+
Other_ShapermintClubIcon2 as ShapermintClubIcon2,
|
|
822
|
+
Other_ShapermintClubLabel as ShapermintClubLabel,
|
|
823
|
+
Other_ShapermintClubMobileLabel as ShapermintClubMobileLabel,
|
|
824
|
+
Other_ShapermintLogo as ShapermintLogo,
|
|
825
|
+
Other_ShmClub as ShmClub,
|
|
826
|
+
Other_ShopNow as ShopNow,
|
|
827
|
+
Other_SignForm as SignForm,
|
|
828
|
+
Other_SixtyDaysTSD as SixtyDaysTSD,
|
|
829
|
+
Other_TheBodCon as TheBodCon,
|
|
830
|
+
Other_TheSpaDr as TheSpaDr,
|
|
767
831
|
};
|
|
768
832
|
}
|
|
769
833
|
|
|
770
|
-
declare const
|
|
834
|
+
declare const Clock: IconComponent;
|
|
771
835
|
|
|
772
|
-
declare const
|
|
836
|
+
declare const FlagUSA: IconComponent;
|
|
773
837
|
|
|
774
|
-
declare const
|
|
775
|
-
|
|
776
|
-
declare
|
|
838
|
+
declare const Minus: IconComponent;
|
|
839
|
+
|
|
840
|
+
declare const Plus: IconComponent;
|
|
841
|
+
|
|
842
|
+
declare const Rule: IconComponent;
|
|
843
|
+
|
|
844
|
+
declare const Star: IconComponent;
|
|
845
|
+
|
|
846
|
+
declare const StarEmpty: IconComponent;
|
|
847
|
+
|
|
848
|
+
declare const StarHalf: IconComponent;
|
|
849
|
+
|
|
850
|
+
declare const Stopwatch: IconComponent;
|
|
851
|
+
|
|
852
|
+
declare const Shipping: IconComponent;
|
|
853
|
+
|
|
854
|
+
declare const LightBulb: IconComponent;
|
|
855
|
+
|
|
856
|
+
declare const ErrorCross: IconComponent;
|
|
857
|
+
|
|
858
|
+
declare const CircleNumber: IconComponent;
|
|
859
|
+
|
|
860
|
+
declare const SizeEmpty: IconComponent;
|
|
861
|
+
|
|
862
|
+
declare const SizeEmptyV2: IconComponent;
|
|
863
|
+
|
|
864
|
+
declare const PlayMini: IconComponent;
|
|
865
|
+
|
|
866
|
+
declare const ShippingEmpty: IconComponent;
|
|
867
|
+
|
|
868
|
+
declare const Drop: IconComponent;
|
|
869
|
+
|
|
870
|
+
declare const DropEmpty: IconComponent;
|
|
871
|
+
|
|
872
|
+
declare const Stars: IconComponent;
|
|
873
|
+
|
|
874
|
+
declare const Moon: IconComponent;
|
|
875
|
+
|
|
876
|
+
declare const Hours: IconComponent;
|
|
877
|
+
|
|
878
|
+
declare const NewClock: IconComponent;
|
|
879
|
+
|
|
880
|
+
declare const KlarnaLogo: IconComponent;
|
|
881
|
+
|
|
882
|
+
declare const TrustBadge: IconComponent;
|
|
883
|
+
|
|
884
|
+
declare const PDP_Clock: typeof Clock;
|
|
885
|
+
declare const PDP_FlagUSA: typeof FlagUSA;
|
|
886
|
+
declare const PDP_Minus: typeof Minus;
|
|
887
|
+
declare const PDP_Plus: typeof Plus;
|
|
888
|
+
declare const PDP_Rule: typeof Rule;
|
|
889
|
+
declare const PDP_Star: typeof Star;
|
|
890
|
+
declare const PDP_StarEmpty: typeof StarEmpty;
|
|
891
|
+
declare const PDP_StarHalf: typeof StarHalf;
|
|
892
|
+
declare const PDP_Stopwatch: typeof Stopwatch;
|
|
893
|
+
declare const PDP_Shipping: typeof Shipping;
|
|
894
|
+
declare const PDP_LightBulb: typeof LightBulb;
|
|
895
|
+
declare const PDP_ErrorCross: typeof ErrorCross;
|
|
896
|
+
declare const PDP_CircleNumber: typeof CircleNumber;
|
|
897
|
+
declare const PDP_SizeEmpty: typeof SizeEmpty;
|
|
898
|
+
declare const PDP_SizeEmptyV2: typeof SizeEmptyV2;
|
|
899
|
+
declare const PDP_PlayMini: typeof PlayMini;
|
|
900
|
+
declare const PDP_ShippingEmpty: typeof ShippingEmpty;
|
|
901
|
+
declare const PDP_Drop: typeof Drop;
|
|
902
|
+
declare const PDP_DropEmpty: typeof DropEmpty;
|
|
903
|
+
declare const PDP_Stars: typeof Stars;
|
|
904
|
+
declare const PDP_Moon: typeof Moon;
|
|
905
|
+
declare const PDP_Hours: typeof Hours;
|
|
906
|
+
declare const PDP_NewClock: typeof NewClock;
|
|
907
|
+
declare const PDP_KlarnaLogo: typeof KlarnaLogo;
|
|
908
|
+
declare const PDP_TrustBadge: typeof TrustBadge;
|
|
909
|
+
declare namespace PDP {
|
|
777
910
|
export {
|
|
778
|
-
|
|
779
|
-
|
|
911
|
+
PDP_Clock as Clock,
|
|
912
|
+
PDP_FlagUSA as FlagUSA,
|
|
913
|
+
PDP_Minus as Minus,
|
|
914
|
+
PDP_Plus as Plus,
|
|
915
|
+
PDP_Rule as Rule,
|
|
916
|
+
PDP_Star as Star,
|
|
917
|
+
PDP_StarEmpty as StarEmpty,
|
|
918
|
+
PDP_StarHalf as StarHalf,
|
|
919
|
+
PDP_Stopwatch as Stopwatch,
|
|
920
|
+
PDP_Shipping as Shipping,
|
|
921
|
+
PDP_LightBulb as LightBulb,
|
|
922
|
+
PDP_ErrorCross as ErrorCross,
|
|
923
|
+
PDP_CircleNumber as CircleNumber,
|
|
924
|
+
PDP_SizeEmpty as SizeEmpty,
|
|
925
|
+
PDP_SizeEmptyV2 as SizeEmptyV2,
|
|
926
|
+
PDP_PlayMini as PlayMini,
|
|
927
|
+
PDP_ShippingEmpty as ShippingEmpty,
|
|
928
|
+
PDP_Drop as Drop,
|
|
929
|
+
PDP_DropEmpty as DropEmpty,
|
|
930
|
+
PDP_Stars as Stars,
|
|
931
|
+
PDP_Moon as Moon,
|
|
932
|
+
PDP_Hours as Hours,
|
|
933
|
+
PDP_NewClock as NewClock,
|
|
934
|
+
PDP_KlarnaLogo as KlarnaLogo,
|
|
935
|
+
PDP_TrustBadge as TrustBadge,
|
|
780
936
|
};
|
|
781
937
|
}
|
|
782
938
|
|
|
783
|
-
declare const Visa:
|
|
939
|
+
declare const Visa: IconComponent;
|
|
784
940
|
|
|
785
|
-
declare const MasterCard:
|
|
941
|
+
declare const MasterCard: IconComponent;
|
|
786
942
|
|
|
787
|
-
declare const Amex:
|
|
943
|
+
declare const Amex: IconComponent;
|
|
788
944
|
|
|
789
|
-
declare const JCB:
|
|
945
|
+
declare const JCB: IconComponent;
|
|
790
946
|
|
|
791
|
-
declare const Paypal:
|
|
947
|
+
declare const Paypal: IconComponent;
|
|
792
948
|
|
|
793
|
-
declare const Klarna:
|
|
949
|
+
declare const Klarna: IconComponent;
|
|
794
950
|
|
|
795
|
-
declare const Amazon:
|
|
951
|
+
declare const Amazon: IconComponent;
|
|
796
952
|
|
|
797
953
|
declare const Payment_Visa: typeof Visa;
|
|
798
954
|
declare const Payment_MasterCard: typeof MasterCard;
|
|
@@ -813,7 +969,7 @@ declare namespace Payment {
|
|
|
813
969
|
};
|
|
814
970
|
}
|
|
815
971
|
|
|
816
|
-
declare const SlideDot:
|
|
972
|
+
declare const SlideDot: IconComponent;
|
|
817
973
|
|
|
818
974
|
declare const SlideDots_SlideDot: typeof SlideDot;
|
|
819
975
|
declare namespace SlideDots {
|
|
@@ -822,81 +978,44 @@ declare namespace SlideDots {
|
|
|
822
978
|
};
|
|
823
979
|
}
|
|
824
980
|
|
|
825
|
-
declare const
|
|
826
|
-
|
|
827
|
-
declare const SmilingV2: ({ height, width }: IconProps$1) => JSX.Element;
|
|
828
|
-
|
|
829
|
-
declare const Grinning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
830
|
-
|
|
831
|
-
declare const GrinningWithSweat: ({ height, width }: IconProps$1) => JSX.Element;
|
|
832
|
-
|
|
833
|
-
declare const BlowingKiss: ({ height, width }: IconProps$1) => JSX.Element;
|
|
834
|
-
|
|
835
|
-
declare const Frowning: ({ height, width }: IconProps$1) => JSX.Element;
|
|
836
|
-
|
|
837
|
-
declare const Relieved: ({ height, width }: IconProps$1) => JSX.Element;
|
|
838
|
-
|
|
839
|
-
declare const Emoji_Thinking: typeof Thinking;
|
|
840
|
-
declare const Emoji_SmilingV2: typeof SmilingV2;
|
|
841
|
-
declare const Emoji_Grinning: typeof Grinning;
|
|
842
|
-
declare const Emoji_GrinningWithSweat: typeof GrinningWithSweat;
|
|
843
|
-
declare const Emoji_BlowingKiss: typeof BlowingKiss;
|
|
844
|
-
declare const Emoji_Frowning: typeof Frowning;
|
|
845
|
-
declare const Emoji_Relieved: typeof Relieved;
|
|
846
|
-
declare namespace Emoji {
|
|
847
|
-
export {
|
|
848
|
-
Emoji_Thinking as Thinking,
|
|
849
|
-
Emoji_SmilingV2 as SmilingV2,
|
|
850
|
-
Emoji_Grinning as Grinning,
|
|
851
|
-
Emoji_GrinningWithSweat as GrinningWithSweat,
|
|
852
|
-
Emoji_BlowingKiss as BlowingKiss,
|
|
853
|
-
Emoji_Frowning as Frowning,
|
|
854
|
-
Emoji_Relieved as Relieved,
|
|
855
|
-
};
|
|
856
|
-
}
|
|
857
|
-
|
|
858
|
-
declare const FreeShipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
981
|
+
declare const Facebook: IconComponent;
|
|
859
982
|
|
|
860
|
-
declare const
|
|
983
|
+
declare const FacebookSolid: IconComponent;
|
|
861
984
|
|
|
862
|
-
declare const
|
|
985
|
+
declare const Instagram: IconComponent;
|
|
863
986
|
|
|
864
|
-
declare const
|
|
987
|
+
declare const InstagramSolid: IconComponent;
|
|
865
988
|
|
|
866
|
-
declare const
|
|
989
|
+
declare const Pinterest: IconComponent;
|
|
867
990
|
|
|
868
|
-
declare const
|
|
991
|
+
declare const Twitter: IconComponent;
|
|
869
992
|
|
|
870
|
-
declare const
|
|
993
|
+
declare const Youtube: IconComponent;
|
|
871
994
|
|
|
872
|
-
declare const
|
|
995
|
+
declare const Interaction: IconComponent;
|
|
873
996
|
|
|
874
|
-
declare const
|
|
875
|
-
|
|
876
|
-
declare const
|
|
877
|
-
declare const
|
|
878
|
-
declare const
|
|
879
|
-
declare const
|
|
880
|
-
declare const
|
|
881
|
-
declare const
|
|
882
|
-
declare
|
|
883
|
-
declare const MyAccount_Profile: typeof Profile;
|
|
884
|
-
declare const MyAccount_MembersOnlyDiscountOpposite: typeof MembersOnlyDiscountOpposite;
|
|
885
|
-
declare namespace MyAccount {
|
|
997
|
+
declare const SocialMedia_Facebook: typeof Facebook;
|
|
998
|
+
declare const SocialMedia_FacebookSolid: typeof FacebookSolid;
|
|
999
|
+
declare const SocialMedia_Instagram: typeof Instagram;
|
|
1000
|
+
declare const SocialMedia_InstagramSolid: typeof InstagramSolid;
|
|
1001
|
+
declare const SocialMedia_Pinterest: typeof Pinterest;
|
|
1002
|
+
declare const SocialMedia_Twitter: typeof Twitter;
|
|
1003
|
+
declare const SocialMedia_Youtube: typeof Youtube;
|
|
1004
|
+
declare const SocialMedia_Interaction: typeof Interaction;
|
|
1005
|
+
declare namespace SocialMedia {
|
|
886
1006
|
export {
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
MyAccount_MembersOnlyDiscountOpposite as MembersOnlyDiscountOpposite,
|
|
1007
|
+
SocialMedia_Facebook as Facebook,
|
|
1008
|
+
SocialMedia_FacebookSolid as FacebookSolid,
|
|
1009
|
+
SocialMedia_Instagram as Instagram,
|
|
1010
|
+
SocialMedia_InstagramSolid as InstagramSolid,
|
|
1011
|
+
SocialMedia_Pinterest as Pinterest,
|
|
1012
|
+
SocialMedia_Twitter as Twitter,
|
|
1013
|
+
SocialMedia_Youtube as Youtube,
|
|
1014
|
+
SocialMedia_Interaction as Interaction,
|
|
896
1015
|
};
|
|
897
1016
|
}
|
|
898
1017
|
|
|
899
|
-
declare type IconType =
|
|
1018
|
+
declare type IconType = IconComponent;
|
|
900
1019
|
declare const Icon: {
|
|
901
1020
|
Custom: typeof Custom;
|
|
902
1021
|
Arrows: typeof Arrows;
|
|
@@ -913,260 +1032,180 @@ declare const Icon: {
|
|
|
913
1032
|
MyAccount: typeof MyAccount;
|
|
914
1033
|
};
|
|
915
1034
|
|
|
916
|
-
interface
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
1035
|
+
interface AccordionProps {
|
|
1036
|
+
defaultOpen?: boolean;
|
|
1037
|
+
forceOpenHandler?: boolean;
|
|
1038
|
+
forceOpenValue?: boolean;
|
|
1039
|
+
titleColor?: string;
|
|
1040
|
+
variant: 'simple' | 'box';
|
|
1041
|
+
header: ReactNode;
|
|
1042
|
+
headerOnOpen?: ReactNode;
|
|
1043
|
+
content: ReactNode;
|
|
1044
|
+
disabled?: boolean;
|
|
1045
|
+
innerHTML?: boolean;
|
|
1046
|
+
controlIconPos?: 'right' | 'bottom';
|
|
1047
|
+
backgroundCover?: {
|
|
1048
|
+
value: boolean;
|
|
1049
|
+
iconBgColor?: string;
|
|
1050
|
+
};
|
|
1051
|
+
openIcon: IconType;
|
|
1052
|
+
closeIcon: IconType;
|
|
1053
|
+
onClick?: (index: number) => void;
|
|
927
1054
|
}
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
flex?: boolean;
|
|
1055
|
+
declare const Accordion: ({ header, headerOnOpen, content, defaultOpen, forceOpenHandler, forceOpenValue, titleColor, variant, disabled, innerHTML, backgroundCover, controlIconPos, openIcon, closeIcon, onClick, }: AccordionProps) => JSX.Element;
|
|
1056
|
+
|
|
1057
|
+
interface AccordionOptionsProps {
|
|
1058
|
+
titleColor: string;
|
|
1059
|
+
accordions: AccordionProps[];
|
|
934
1060
|
}
|
|
935
|
-
declare const
|
|
936
|
-
Header: ({ children }: CardSectionProps) => JSX.Element;
|
|
937
|
-
Footer: ({ children }: CardSectionProps) => JSX.Element;
|
|
938
|
-
Body: ({ children }: CardBodyProps) => JSX.Element;
|
|
939
|
-
};
|
|
1061
|
+
declare const AccordionOptions: ({ titleColor, accordions }: AccordionOptionsProps) => JSX.Element;
|
|
940
1062
|
|
|
941
|
-
declare
|
|
1063
|
+
declare type AutoshipProps = {
|
|
1064
|
+
singlePurchaseLabel: string;
|
|
1065
|
+
subscriptionLabel: string;
|
|
1066
|
+
tooltipContent?: {
|
|
1067
|
+
text: string;
|
|
1068
|
+
color?: string;
|
|
1069
|
+
};
|
|
1070
|
+
tooltipHeader?: {
|
|
1071
|
+
title: string;
|
|
1072
|
+
};
|
|
1073
|
+
pricing?: {
|
|
1074
|
+
originalPrice: number;
|
|
1075
|
+
discountedPrice: number;
|
|
1076
|
+
discountPercentage: number;
|
|
1077
|
+
};
|
|
1078
|
+
frequencyValues?: Array<number>;
|
|
1079
|
+
frequencyUnit?: string;
|
|
1080
|
+
autoshipBenefits: string[];
|
|
1081
|
+
onChange: (values: {
|
|
1082
|
+
subscriptionPeriod: number;
|
|
1083
|
+
autoship: boolean;
|
|
1084
|
+
originalPrice: number;
|
|
1085
|
+
discountedPrice: number;
|
|
1086
|
+
}) => void;
|
|
1087
|
+
className?: string;
|
|
1088
|
+
};
|
|
1089
|
+
declare const Autoship: React.FC<AutoshipProps>;
|
|
942
1090
|
|
|
943
|
-
declare
|
|
1091
|
+
declare enum BeforeAfterVariant {
|
|
1092
|
+
UserInfoText = "UserInfoText",
|
|
1093
|
+
ResultFeedback = "ResultFeedback"
|
|
1094
|
+
}
|
|
1095
|
+
declare type NewSize = 'small' | 'medium' | 'large';
|
|
1096
|
+
declare const componentSizeMapper: {
|
|
1097
|
+
[size in ComponentSize$1]: NewSize;
|
|
1098
|
+
};
|
|
944
1099
|
|
|
945
|
-
declare
|
|
1100
|
+
declare type BeforeAfterCardProps = {
|
|
1101
|
+
name: string;
|
|
1102
|
+
age?: string;
|
|
1103
|
+
months?: string;
|
|
1104
|
+
beforeImage: string;
|
|
1105
|
+
afterImage: string;
|
|
1106
|
+
alignCenter?: boolean;
|
|
1107
|
+
imageBorderRadius?: string;
|
|
1108
|
+
size?: ComponentSize$1;
|
|
1109
|
+
variant?: BeforeAfterVariant;
|
|
1110
|
+
description?: string;
|
|
1111
|
+
reviewDays?: string;
|
|
1112
|
+
};
|
|
1113
|
+
declare const BeforeAfterCard: React__default.FC<BeforeAfterCardProps>;
|
|
946
1114
|
|
|
947
|
-
|
|
948
|
-
declare type OnChange<T> = (option: Value<T>) => void;
|
|
949
|
-
declare type CommonProps<T> = {
|
|
950
|
-
options: Value<T>[];
|
|
951
|
-
disabled?: boolean;
|
|
952
|
-
wide?: boolean;
|
|
953
|
-
label?: string;
|
|
954
|
-
sort?: boolean;
|
|
955
|
-
initialValue?: Value<T>;
|
|
956
|
-
placeHolder: string;
|
|
957
|
-
testId?: string;
|
|
958
|
-
};
|
|
959
|
-
declare type ControlledProps<T> = {
|
|
960
|
-
value: Value<T>;
|
|
961
|
-
onChange: OnChange<T>;
|
|
962
|
-
} & CommonProps<T>;
|
|
963
|
-
declare type UncontrolledProps<T> = {
|
|
964
|
-
value?: never;
|
|
965
|
-
onChange?: OnChange<T>;
|
|
966
|
-
} & CommonProps<T>;
|
|
967
|
-
declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
|
|
968
|
-
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, }: SimpleDropdownProps<T>): JSX.Element;
|
|
969
|
-
|
|
970
|
-
interface DialogPositionProps {
|
|
971
|
-
top: string;
|
|
972
|
-
right: string;
|
|
973
|
-
}
|
|
974
|
-
interface DialogDropdownProps {
|
|
975
|
-
options: {
|
|
976
|
-
label: string;
|
|
977
|
-
value: string;
|
|
978
|
-
}[];
|
|
979
|
-
position: DialogPositionProps;
|
|
980
|
-
style?: React.CSSProperties;
|
|
981
|
-
className?: string;
|
|
982
|
-
}
|
|
983
|
-
declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
|
|
984
|
-
|
|
985
|
-
interface SizeSelectorProps {
|
|
986
|
-
label: string;
|
|
987
|
-
sizes: SizeOption[];
|
|
988
|
-
selectedValue: SizeOption;
|
|
989
|
-
onChange: (size: SizeOption) => void;
|
|
990
|
-
inline?: boolean;
|
|
991
|
-
width?: string;
|
|
992
|
-
}
|
|
993
|
-
declare const SizeSelector: ({ label, sizes, selectedValue, onChange, inline, width, }: SizeSelectorProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
994
|
-
|
|
995
|
-
interface SizeFitGuideProps {
|
|
1115
|
+
interface SimpleProps {
|
|
996
1116
|
title: string;
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
interface BaseButtonProps {
|
|
1004
|
-
children: React.ReactNode;
|
|
1005
|
-
renderLeading?: React.ReactNode;
|
|
1006
|
-
renderTrailing?: React.ReactNode;
|
|
1007
|
-
disabled?: boolean;
|
|
1008
|
-
type?: ButtonType;
|
|
1009
|
-
onClick: () => void;
|
|
1010
|
-
className?: string;
|
|
1011
|
-
inline?: boolean;
|
|
1012
|
-
uppercase?: boolean;
|
|
1013
|
-
testId?: string;
|
|
1117
|
+
freeShippingText: string;
|
|
1118
|
+
price: string;
|
|
1119
|
+
anyQtyForText: string;
|
|
1120
|
+
backgroundColor: string;
|
|
1121
|
+
widthAuto?: boolean;
|
|
1014
1122
|
}
|
|
1015
1123
|
|
|
1016
|
-
|
|
1017
|
-
interface TextButtonProps$1 extends BaseProps {
|
|
1018
|
-
text: string;
|
|
1019
|
-
LeadingIcon?: IconType;
|
|
1020
|
-
TrailingIcon?: IconType;
|
|
1021
|
-
iconColor?: string;
|
|
1022
|
-
size?: ComponentSize;
|
|
1023
|
-
uppercase?: boolean;
|
|
1024
|
-
}
|
|
1025
|
-
declare const TextButton: ({ text, LeadingIcon, TrailingIcon, iconColor, disabled, type, size, uppercase, onClick, }: TextButtonProps$1) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1026
|
-
|
|
1027
|
-
interface DiscountTagProps {
|
|
1028
|
-
discount: number;
|
|
1029
|
-
offText: string;
|
|
1030
|
-
disabled?: boolean;
|
|
1124
|
+
interface MinimalisticProps {
|
|
1031
1125
|
backgroundColor?: string;
|
|
1032
1126
|
borderColor?: string;
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
color?: string;
|
|
1043
|
-
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1044
|
-
discount?: DiscountTagProps;
|
|
1045
|
-
finalPriceStyled?: boolean;
|
|
1046
|
-
finalPriceStyle?: React.CSSProperties;
|
|
1047
|
-
originalPriceStyled?: boolean;
|
|
1048
|
-
originalPriceUnderlined?: boolean;
|
|
1127
|
+
originalPrice: string;
|
|
1128
|
+
price: string;
|
|
1129
|
+
savingPrice: string;
|
|
1130
|
+
getMorePayLessText: string;
|
|
1131
|
+
youAreSavingText: string;
|
|
1132
|
+
getQtyForText: string;
|
|
1133
|
+
discount: number;
|
|
1134
|
+
offText: string;
|
|
1135
|
+
widthAuto?: boolean;
|
|
1049
1136
|
testId?: string;
|
|
1050
|
-
}
|
|
1051
|
-
declare const PriceLabel: ({ finalPrice, originalPrice, discount, color, testId, finalPriceStyled, finalPriceStyle, originalPriceStyled, originalPriceUnderlined, size, }: PriceLabelProps) => JSX.Element;
|
|
1137
|
+
}
|
|
1052
1138
|
|
|
1053
|
-
declare const
|
|
1139
|
+
declare const Bundle: {
|
|
1140
|
+
Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, testId, }: MinimalisticProps) => JSX.Element;
|
|
1141
|
+
Simple: ({ title, freeShippingText, price, anyQtyForText, backgroundColor, widthAuto, }: SimpleProps) => JSX.Element;
|
|
1142
|
+
};
|
|
1054
1143
|
|
|
1055
|
-
interface
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1144
|
+
interface BuyNowPayLaterProps {
|
|
1145
|
+
displayBNPL: boolean;
|
|
1146
|
+
installments: number;
|
|
1147
|
+
installmentPrice: string;
|
|
1148
|
+
iconFolder?: string;
|
|
1149
|
+
iconName: string;
|
|
1150
|
+
showLogo?: boolean;
|
|
1151
|
+
iconColor?: string;
|
|
1152
|
+
fontSize?: string;
|
|
1061
1153
|
}
|
|
1062
|
-
declare const
|
|
1154
|
+
declare const BuyNowPayLater: ({ displayBNPL, installments, installmentPrice, iconFolder, iconName, showLogo, iconColor, fontSize, }: BuyNowPayLaterProps) => JSX.Element | null;
|
|
1063
1155
|
|
|
1064
|
-
interface
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
onChange: (color: Set<ColorPickerOption>) => void;
|
|
1069
|
-
}
|
|
1070
|
-
declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: MultiColorPickerProps) => JSX.Element;
|
|
1156
|
+
interface CloseButtonProps {
|
|
1157
|
+
onClick: () => void;
|
|
1158
|
+
size: number;
|
|
1159
|
+
}
|
|
1071
1160
|
|
|
1072
|
-
interface
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
topTag?: JSX.Element;
|
|
1076
|
-
bottomTag?: JSX.Element;
|
|
1077
|
-
productImageDataTestId?: string;
|
|
1078
|
-
previewListDataTestId?: string;
|
|
1079
|
-
thumbnailPosition?: 'vertical' | 'horizontal';
|
|
1080
|
-
borderRadiusVariant?: boolean;
|
|
1081
|
-
previewImgBorderColor?: string;
|
|
1082
|
-
ctaText?: string;
|
|
1083
|
-
ctaAction?: () => void;
|
|
1084
|
-
}
|
|
1085
|
-
declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, }: ProductGalleryProps) => JSX.Element;
|
|
1161
|
+
interface DescriptionProps {
|
|
1162
|
+
text: string;
|
|
1163
|
+
}
|
|
1086
1164
|
|
|
1087
|
-
interface
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
reviews: number;
|
|
1091
|
-
reviewsText: string;
|
|
1092
|
-
wrapWithParenthesis?: boolean;
|
|
1093
|
-
underline?: boolean;
|
|
1094
|
-
reviewsContainerId?: string;
|
|
1095
|
-
}
|
|
1096
|
-
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
|
|
1165
|
+
interface PromoProps {
|
|
1166
|
+
text: string;
|
|
1167
|
+
}
|
|
1097
1168
|
|
|
1098
|
-
interface
|
|
1099
|
-
|
|
1169
|
+
interface OfferBannerProps {
|
|
1170
|
+
discountAppliedText: string;
|
|
1171
|
+
backgroundColor: string;
|
|
1100
1172
|
}
|
|
1101
|
-
declare const
|
|
1173
|
+
declare const OfferBanner: ({ discountAppliedText, backgroundColor }: OfferBannerProps) => JSX.Element;
|
|
1102
1174
|
|
|
1103
|
-
interface
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
widthAuto?: boolean;
|
|
1107
|
-
percent?: number;
|
|
1108
|
-
}
|
|
1109
|
-
declare const ProgressBar: ({ description, fillColor, widthAuto, percent, }: ProgressBarProps) => JSX.Element;
|
|
1175
|
+
interface TitleProps {
|
|
1176
|
+
title: string;
|
|
1177
|
+
}
|
|
1110
1178
|
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
}
|
|
1117
|
-
|
|
1179
|
+
declare const CartProductItem: {
|
|
1180
|
+
Title: ({ title }: TitleProps) => JSX.Element;
|
|
1181
|
+
Tag: ({ discountAppliedText, backgroundColor }: OfferBannerProps) => JSX.Element;
|
|
1182
|
+
Promo: ({ text }: PromoProps) => JSX.Element;
|
|
1183
|
+
Description: ({ text }: DescriptionProps) => JSX.Element;
|
|
1184
|
+
CloseButton: ({ onClick, size }: CloseButtonProps) => JSX.Element;
|
|
1185
|
+
};
|
|
1118
1186
|
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
align?: 'start' | 'center' | 'end';
|
|
1123
|
-
content?: {
|
|
1124
|
-
text: string;
|
|
1125
|
-
color?: string;
|
|
1126
|
-
};
|
|
1127
|
-
backgroundColor?: string;
|
|
1128
|
-
maxWidth?: string;
|
|
1129
|
-
header?: {
|
|
1130
|
-
title: string;
|
|
1131
|
-
titleColor?: string;
|
|
1132
|
-
Icon?: IconType;
|
|
1133
|
-
iconFill?: string;
|
|
1134
|
-
};
|
|
1135
|
-
onClick?: () => void;
|
|
1187
|
+
declare enum CardSectionType {
|
|
1188
|
+
Header = 0,
|
|
1189
|
+
Footer = 1
|
|
1136
1190
|
}
|
|
1137
|
-
declare
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
disabled?: boolean;
|
|
1149
|
-
innerHTML?: boolean;
|
|
1150
|
-
openIcon: IconType;
|
|
1151
|
-
closeIcon: IconType;
|
|
1152
|
-
onClick?: (index: number) => void;
|
|
1191
|
+
declare enum ComponentSize {
|
|
1192
|
+
Large = "large",
|
|
1193
|
+
Medium = "medium",
|
|
1194
|
+
Small = "small",
|
|
1195
|
+
XSmall = "xsmall"
|
|
1196
|
+
}
|
|
1197
|
+
declare enum ComponentPosition {
|
|
1198
|
+
Top = 0,
|
|
1199
|
+
Bottom = 1,
|
|
1200
|
+
Left = 2,
|
|
1201
|
+
Right = 3
|
|
1153
1202
|
}
|
|
1154
|
-
declare
|
|
1203
|
+
declare enum InputValidationType {
|
|
1204
|
+
Error = 0,
|
|
1205
|
+
Valid = 1,
|
|
1206
|
+
Empty = 2
|
|
1207
|
+
}
|
|
1155
1208
|
|
|
1156
|
-
declare const ThemeProvider: FC<{
|
|
1157
|
-
theme: Theme;
|
|
1158
|
-
children: ReactNode;
|
|
1159
|
-
}>;
|
|
1160
|
-
declare const useTheme: () => Theme;
|
|
1161
|
-
|
|
1162
|
-
declare const ThemeVariables: FC<{
|
|
1163
|
-
theme: Theme;
|
|
1164
|
-
Container?: ElementType;
|
|
1165
|
-
}>;
|
|
1166
|
-
declare const AssetsProvider: FC<{
|
|
1167
|
-
assets: ThemeAssets;
|
|
1168
|
-
}>;
|
|
1169
|
-
declare const useThemeAssets: () => ThemeAssets;
|
|
1170
1209
|
declare type Theme = {
|
|
1171
1210
|
name: string;
|
|
1172
1211
|
fontSizes: number[];
|
|
@@ -1188,6 +1227,7 @@ declare type Theme = {
|
|
|
1188
1227
|
};
|
|
1189
1228
|
declare type ThemeBreakpoints = {
|
|
1190
1229
|
mobile: number;
|
|
1230
|
+
tablet?: number;
|
|
1191
1231
|
desktop: number;
|
|
1192
1232
|
};
|
|
1193
1233
|
declare type ThemeBasicPallete = {
|
|
@@ -1195,7 +1235,7 @@ declare type ThemeBasicPallete = {
|
|
|
1195
1235
|
contrast: string;
|
|
1196
1236
|
};
|
|
1197
1237
|
declare type ThemeColorPallete = ThemeBasicPallete & {
|
|
1198
|
-
soft
|
|
1238
|
+
soft?: ThemeBasicPallete;
|
|
1199
1239
|
};
|
|
1200
1240
|
declare type ThemeColorPrimaryPallete = ThemeColorPallete & {
|
|
1201
1241
|
20: ThemeColorPallete;
|
|
@@ -1207,6 +1247,7 @@ declare type ThemeColors = {
|
|
|
1207
1247
|
pallete: {
|
|
1208
1248
|
primary: ThemeColorPrimaryPallete;
|
|
1209
1249
|
secondary: ThemeColorPrimaryPallete;
|
|
1250
|
+
tertiary?: ThemeColorPrimaryPallete;
|
|
1210
1251
|
} & Partial<Record<string, ThemeColorPallete>>;
|
|
1211
1252
|
shades: {
|
|
1212
1253
|
black: ThemeBasicPallete;
|
|
@@ -1216,6 +1257,7 @@ declare type ThemeColors = {
|
|
|
1216
1257
|
50: ThemeBasicPallete;
|
|
1217
1258
|
100: ThemeBasicPallete;
|
|
1218
1259
|
150: ThemeBasicPallete;
|
|
1260
|
+
175: ThemeBasicPallete;
|
|
1219
1261
|
200: ThemeBasicPallete;
|
|
1220
1262
|
250: ThemeBasicPallete;
|
|
1221
1263
|
300: ThemeBasicPallete;
|
|
@@ -1244,6 +1286,8 @@ declare type ThemeColors = {
|
|
|
1244
1286
|
color: string;
|
|
1245
1287
|
disabled: string;
|
|
1246
1288
|
highlight: string;
|
|
1289
|
+
shadow?: string;
|
|
1290
|
+
isChecked?: string;
|
|
1247
1291
|
};
|
|
1248
1292
|
background: {
|
|
1249
1293
|
color: string;
|
|
@@ -1550,12 +1594,20 @@ declare type ThemeComponent = {
|
|
|
1550
1594
|
fontWeight: number;
|
|
1551
1595
|
lineHeight: string;
|
|
1552
1596
|
padding: string;
|
|
1597
|
+
optionPadding: string;
|
|
1553
1598
|
color: string;
|
|
1554
1599
|
fill: string;
|
|
1600
|
+
borderWidth?: string;
|
|
1555
1601
|
options: {
|
|
1556
1602
|
borderColor: string;
|
|
1557
1603
|
color: string;
|
|
1558
1604
|
borderRadius: string;
|
|
1605
|
+
borderRadiusV2?: string;
|
|
1606
|
+
backgroundColor?: string;
|
|
1607
|
+
};
|
|
1608
|
+
optionsWrapper: {
|
|
1609
|
+
borderRadius: string;
|
|
1610
|
+
overflow: string;
|
|
1559
1611
|
};
|
|
1560
1612
|
};
|
|
1561
1613
|
modal: {
|
|
@@ -1662,11 +1714,7 @@ declare type ThemeComponent = {
|
|
|
1662
1714
|
alignSelf?: string;
|
|
1663
1715
|
};
|
|
1664
1716
|
savings: {
|
|
1665
|
-
textFontSize: string;
|
|
1666
|
-
textLineHeight: string;
|
|
1667
|
-
amountFontSize: string;
|
|
1668
1717
|
amountFontWeight: number;
|
|
1669
|
-
amountLineHeight: string;
|
|
1670
1718
|
color?: string;
|
|
1671
1719
|
};
|
|
1672
1720
|
};
|
|
@@ -1683,18 +1731,38 @@ declare type ThemeComponent = {
|
|
|
1683
1731
|
pricing: {
|
|
1684
1732
|
priceLabel: {
|
|
1685
1733
|
price: {
|
|
1686
|
-
size: ComponentSize
|
|
1734
|
+
size: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
1687
1735
|
originalPriceColor: string;
|
|
1688
1736
|
actualPriceColor: string;
|
|
1737
|
+
defaultFontSize?: {
|
|
1738
|
+
large: string;
|
|
1739
|
+
medium: string;
|
|
1740
|
+
small: string;
|
|
1741
|
+
};
|
|
1742
|
+
smallFontSize?: {
|
|
1743
|
+
large: string;
|
|
1744
|
+
medium: string;
|
|
1745
|
+
small: string;
|
|
1746
|
+
};
|
|
1747
|
+
largeFontSize?: {
|
|
1748
|
+
large: string;
|
|
1749
|
+
medium: string;
|
|
1750
|
+
small: string;
|
|
1751
|
+
};
|
|
1752
|
+
discountFontSize?: {
|
|
1753
|
+
large: string;
|
|
1754
|
+
medium: string;
|
|
1755
|
+
small: string;
|
|
1756
|
+
};
|
|
1689
1757
|
};
|
|
1690
1758
|
};
|
|
1691
1759
|
};
|
|
1692
1760
|
orderSummary: {
|
|
1693
1761
|
headingTextAlign: string;
|
|
1694
|
-
backgroundColor
|
|
1695
|
-
maxWidth?: string;
|
|
1762
|
+
backgroundColor?: string;
|
|
1696
1763
|
padding?: string;
|
|
1697
1764
|
borderRadius?: string;
|
|
1765
|
+
maxWidth?: string;
|
|
1698
1766
|
onMobile: {
|
|
1699
1767
|
maxWidth?: string;
|
|
1700
1768
|
padding?: string;
|
|
@@ -1702,9 +1770,9 @@ declare type ThemeComponent = {
|
|
|
1702
1770
|
};
|
|
1703
1771
|
};
|
|
1704
1772
|
expressCheckout: {
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1773
|
+
button: {
|
|
1774
|
+
borderRadius: string;
|
|
1775
|
+
};
|
|
1708
1776
|
};
|
|
1709
1777
|
copyrightText: {
|
|
1710
1778
|
fontSize: string;
|
|
@@ -1712,24 +1780,126 @@ declare type ThemeComponent = {
|
|
|
1712
1780
|
lineHeight: string;
|
|
1713
1781
|
color: string;
|
|
1714
1782
|
};
|
|
1783
|
+
thankyouFooterText: {
|
|
1784
|
+
fontSize: string;
|
|
1785
|
+
fontWeight: string;
|
|
1786
|
+
lineHeight: string;
|
|
1787
|
+
};
|
|
1715
1788
|
textButton: {
|
|
1716
1789
|
fontWeight: number;
|
|
1717
1790
|
lineHeight: string;
|
|
1718
1791
|
};
|
|
1719
1792
|
deliveryDetails: {
|
|
1793
|
+
title: {
|
|
1794
|
+
fontSize: string;
|
|
1795
|
+
lineHeight: string;
|
|
1796
|
+
fontWeight: number;
|
|
1797
|
+
};
|
|
1720
1798
|
note: {
|
|
1721
1799
|
accentColor: string;
|
|
1722
1800
|
color: string;
|
|
1723
1801
|
backgroundColor: string;
|
|
1724
1802
|
};
|
|
1725
|
-
|
|
1726
|
-
|
|
1803
|
+
sectionTitle: {
|
|
1804
|
+
fontSize: string;
|
|
1805
|
+
lineHeight: string;
|
|
1806
|
+
fontWeight: number;
|
|
1807
|
+
};
|
|
1808
|
+
sectionDetails: {
|
|
1809
|
+
fontSize: string;
|
|
1810
|
+
lineHeight: string;
|
|
1811
|
+
fontWeight: number;
|
|
1812
|
+
marginLeft?: string;
|
|
1727
1813
|
};
|
|
1728
1814
|
};
|
|
1729
1815
|
text: {
|
|
1730
1816
|
orderHeader: {
|
|
1731
1817
|
color: string;
|
|
1732
1818
|
};
|
|
1819
|
+
fitGuarantee: {
|
|
1820
|
+
titleFontSize?: string;
|
|
1821
|
+
titleFontWeight?: number | string;
|
|
1822
|
+
fontWeight: number | string;
|
|
1823
|
+
};
|
|
1824
|
+
offerBanner: {
|
|
1825
|
+
borderRadius: string;
|
|
1826
|
+
};
|
|
1827
|
+
};
|
|
1828
|
+
orderBar: {
|
|
1829
|
+
backgroundColor: string;
|
|
1830
|
+
fontColor: string;
|
|
1831
|
+
};
|
|
1832
|
+
banner: {
|
|
1833
|
+
outlineColor: string;
|
|
1834
|
+
filledColor: string;
|
|
1835
|
+
fontColor: string;
|
|
1836
|
+
};
|
|
1837
|
+
offerTitleText: {
|
|
1838
|
+
size: string;
|
|
1839
|
+
weight: number;
|
|
1840
|
+
lineHeight: string;
|
|
1841
|
+
};
|
|
1842
|
+
linePrice: {
|
|
1843
|
+
color: string;
|
|
1844
|
+
badge: {
|
|
1845
|
+
color: string;
|
|
1846
|
+
borderRadius: string;
|
|
1847
|
+
};
|
|
1848
|
+
};
|
|
1849
|
+
divider: {
|
|
1850
|
+
color: string;
|
|
1851
|
+
};
|
|
1852
|
+
checkout: {
|
|
1853
|
+
paymentInformation: {
|
|
1854
|
+
borderRadius?: string;
|
|
1855
|
+
};
|
|
1856
|
+
creditCardSection: {
|
|
1857
|
+
borderRadius?: string;
|
|
1858
|
+
};
|
|
1859
|
+
};
|
|
1860
|
+
upsell: {
|
|
1861
|
+
banner: {
|
|
1862
|
+
outlined: {
|
|
1863
|
+
color?: string;
|
|
1864
|
+
};
|
|
1865
|
+
};
|
|
1866
|
+
price: {
|
|
1867
|
+
colors: {
|
|
1868
|
+
regular: string;
|
|
1869
|
+
deal: string;
|
|
1870
|
+
each: string;
|
|
1871
|
+
badgeBG: string;
|
|
1872
|
+
badgeColor: string;
|
|
1873
|
+
};
|
|
1874
|
+
};
|
|
1875
|
+
hurryTimeCard: {
|
|
1876
|
+
backgroundColor: string;
|
|
1877
|
+
};
|
|
1878
|
+
guaranteedFit?: {
|
|
1879
|
+
backgroundColor: string;
|
|
1880
|
+
};
|
|
1881
|
+
};
|
|
1882
|
+
thankyou: {
|
|
1883
|
+
orderBanner?: {
|
|
1884
|
+
text: {
|
|
1885
|
+
left: string;
|
|
1886
|
+
};
|
|
1887
|
+
};
|
|
1888
|
+
emailSection: {
|
|
1889
|
+
backgroundColor?: string;
|
|
1890
|
+
};
|
|
1891
|
+
socialIcon: {
|
|
1892
|
+
color?: string;
|
|
1893
|
+
};
|
|
1894
|
+
orderId: {
|
|
1895
|
+
color: string;
|
|
1896
|
+
};
|
|
1897
|
+
};
|
|
1898
|
+
hurryUp: {
|
|
1899
|
+
borderRadius?: string;
|
|
1900
|
+
};
|
|
1901
|
+
qtyPicker: {
|
|
1902
|
+
borderRadius: string;
|
|
1733
1903
|
};
|
|
1734
1904
|
};
|
|
1735
1905
|
declare type ThemeTypography = {
|
|
@@ -1754,6 +1924,7 @@ declare type ThemeFonts = {
|
|
|
1754
1924
|
}>;
|
|
1755
1925
|
};
|
|
1756
1926
|
declare type ThemeAssets = {
|
|
1927
|
+
cdn: string;
|
|
1757
1928
|
images: {
|
|
1758
1929
|
favicon: string;
|
|
1759
1930
|
logo: string;
|
|
@@ -1762,10 +1933,40 @@ declare type ThemeAssets = {
|
|
|
1762
1933
|
height: string;
|
|
1763
1934
|
};
|
|
1764
1935
|
logoMobile?: string;
|
|
1936
|
+
checkoutLogo?: {
|
|
1937
|
+
url: string;
|
|
1938
|
+
width: string;
|
|
1939
|
+
height: string;
|
|
1940
|
+
};
|
|
1941
|
+
upsellLogo?: {
|
|
1942
|
+
url: string;
|
|
1943
|
+
width: string;
|
|
1944
|
+
height: string;
|
|
1945
|
+
};
|
|
1946
|
+
tyLogo?: {
|
|
1947
|
+
url: string;
|
|
1948
|
+
width: string;
|
|
1949
|
+
height: string;
|
|
1950
|
+
};
|
|
1765
1951
|
};
|
|
1766
1952
|
[key: string]: any;
|
|
1767
1953
|
};
|
|
1768
1954
|
|
|
1955
|
+
declare const ThemeProvider: FC<{
|
|
1956
|
+
theme: Theme$1;
|
|
1957
|
+
children: ReactNode;
|
|
1958
|
+
}>;
|
|
1959
|
+
declare const useTheme: () => Theme$1;
|
|
1960
|
+
|
|
1961
|
+
declare const ThemeVariables: FC<{
|
|
1962
|
+
theme: Theme$1;
|
|
1963
|
+
Container?: ElementType;
|
|
1964
|
+
}>;
|
|
1965
|
+
declare const AssetsProvider: FC<{
|
|
1966
|
+
assets: ThemeAssets;
|
|
1967
|
+
}>;
|
|
1968
|
+
declare const useThemeAssets: () => ThemeAssets;
|
|
1969
|
+
|
|
1769
1970
|
interface CheckboxProps {
|
|
1770
1971
|
disabled?: boolean;
|
|
1771
1972
|
onChange: (checked: boolean) => void;
|
|
@@ -1775,193 +1976,336 @@ interface CheckboxProps {
|
|
|
1775
1976
|
blockUncheck?: boolean;
|
|
1776
1977
|
id: string;
|
|
1777
1978
|
backgroundColor?: string;
|
|
1778
|
-
variant: 'primary' | 'secondary';
|
|
1979
|
+
variant: 'primary' | 'secondary' | 'color';
|
|
1779
1980
|
}
|
|
1780
|
-
declare const Checkbox:
|
|
1981
|
+
declare const Checkbox: React__default.FC<CheckboxProps>;
|
|
1781
1982
|
|
|
1782
|
-
interface
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1983
|
+
interface ImageStyleProps {
|
|
1984
|
+
height?: string;
|
|
1985
|
+
width?: string;
|
|
1986
|
+
borderRadius?: string;
|
|
1987
|
+
objectFit?: string;
|
|
1988
|
+
objectPosition?: string;
|
|
1989
|
+
className?: string;
|
|
1789
1990
|
}
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
widthAuto?: boolean;
|
|
1799
|
-
}
|
|
1991
|
+
interface ImageProps extends ImageStyleProps {
|
|
1992
|
+
src: string;
|
|
1993
|
+
alt: string;
|
|
1994
|
+
srcSet?: string;
|
|
1995
|
+
sizes?: string;
|
|
1996
|
+
loading?: 'lazy' | 'eager';
|
|
1997
|
+
}
|
|
1998
|
+
declare const Image: ({ src, srcSet, sizes, loading, alt, height, width, borderRadius, objectFit, objectPosition, className, }: ImageProps) => JSX.Element;
|
|
1800
1999
|
|
|
1801
|
-
interface
|
|
1802
|
-
backgroundColor?: string;
|
|
1803
|
-
borderColor?: string;
|
|
1804
|
-
originalPrice: string;
|
|
1805
|
-
price: string;
|
|
1806
|
-
savingPrice: string;
|
|
1807
|
-
getMorePayLessText: string;
|
|
1808
|
-
youAreSavingText: string;
|
|
1809
|
-
getQtyForText: string;
|
|
2000
|
+
interface DiscountTagProps {
|
|
1810
2001
|
discount: number;
|
|
1811
2002
|
offText: string;
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
declare const Bundle: {
|
|
1817
|
-
Minimalistic: ({ backgroundColor, borderColor, originalPrice, price, savingPrice, getMorePayLessText, youAreSavingText, getQtyForText, discount, offText, widthAuto, testId, }: MinimalisticProps) => JSX.Element;
|
|
1818
|
-
Simple: ({ title, freeShippingText, price, anyQtyForText, backgroundColor, widthAuto, }: SimpleProps) => JSX.Element;
|
|
1819
|
-
};
|
|
1820
|
-
|
|
1821
|
-
interface CategoryTagProps {
|
|
1822
|
-
text: string;
|
|
1823
|
-
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
1824
|
-
className?: string;
|
|
1825
|
-
styledBorder?: boolean;
|
|
1826
|
-
}
|
|
1827
|
-
declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1828
|
-
|
|
1829
|
-
interface SeasonOfferTagProps {
|
|
1830
|
-
text: string;
|
|
2003
|
+
savings?: string;
|
|
2004
|
+
showSavings?: boolean;
|
|
2005
|
+
disabled?: boolean;
|
|
1831
2006
|
backgroundColor?: string;
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
2007
|
+
borderColor?: string;
|
|
2008
|
+
textColor?: string;
|
|
2009
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2010
|
+
style?: React__default.CSSProperties;
|
|
2011
|
+
bordersRounded?: boolean;
|
|
1835
2012
|
}
|
|
1836
|
-
declare const
|
|
2013
|
+
declare const DiscountTag: ({ discount, offText, savings, showSavings, disabled, backgroundColor, borderColor, textColor, size, style, bordersRounded, }: DiscountTagProps) => JSX.Element;
|
|
1837
2014
|
|
|
1838
|
-
interface
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
2015
|
+
interface ClubOfferTagProps {
|
|
2016
|
+
clubOfferText?: string;
|
|
2017
|
+
className?: string;
|
|
2018
|
+
disabled?: boolean;
|
|
2019
|
+
backgroundColor?: string;
|
|
2020
|
+
borderColor?: string;
|
|
2021
|
+
textColor?: string;
|
|
2022
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2023
|
+
style?: React__default.CSSProperties;
|
|
1846
2024
|
}
|
|
1847
|
-
declare const
|
|
2025
|
+
declare const ClubOfferTag: ({ clubOfferText, className, disabled, backgroundColor, borderColor, textColor, size, style, }: ClubOfferTagProps) => JSX.Element;
|
|
1848
2026
|
|
|
1849
|
-
interface
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
required?: string;
|
|
1864
|
-
children?: React.ReactNode;
|
|
1865
|
-
size?: 'regular' | 'small';
|
|
1866
|
-
inlinePlaceholder?: boolean;
|
|
1867
|
-
hasError?: boolean;
|
|
1868
|
-
inputType?: 'text' | 'email' | 'password' | 'url';
|
|
1869
|
-
name?: string;
|
|
1870
|
-
autoFocus?: boolean;
|
|
2027
|
+
interface PriceLabelProps {
|
|
2028
|
+
finalPrice: string | number;
|
|
2029
|
+
originalPrice?: string | number;
|
|
2030
|
+
color?: string;
|
|
2031
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2032
|
+
discount?: DiscountTagProps;
|
|
2033
|
+
clubOffer?: ClubOfferTagProps;
|
|
2034
|
+
finalPriceStyled?: boolean;
|
|
2035
|
+
finalPriceStyle?: React__default.CSSProperties;
|
|
2036
|
+
originalPriceStyled?: boolean;
|
|
2037
|
+
originalPriceUnderlined?: boolean;
|
|
2038
|
+
testId?: string;
|
|
2039
|
+
clubStyle?: boolean;
|
|
2040
|
+
bordersRounded?: boolean;
|
|
1871
2041
|
}
|
|
1872
|
-
declare
|
|
2042
|
+
declare const PriceLabel: React__default.FC<PriceLabelProps>;
|
|
1873
2043
|
|
|
1874
|
-
declare type
|
|
1875
|
-
|
|
1876
|
-
};
|
|
2044
|
+
declare type Props = PriceLabelProps & {
|
|
2045
|
+
savingsDisplay?: boolean;
|
|
2046
|
+
};
|
|
2047
|
+
declare const PriceLabelV2: React__default.FC<Props>;
|
|
1877
2048
|
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
}
|
|
2049
|
+
interface RatingProps {
|
|
2050
|
+
rating: number;
|
|
2051
|
+
size?: ComponentSize;
|
|
2052
|
+
reviews?: number;
|
|
2053
|
+
reviewsText?: string;
|
|
2054
|
+
wrapWithParenthesis?: boolean;
|
|
2055
|
+
underline?: boolean;
|
|
2056
|
+
reviewsContainerId?: string;
|
|
2057
|
+
}
|
|
2058
|
+
declare const Rating: ({ size, reviews, reviewsText, rating, wrapWithParenthesis, underline, reviewsContainerId, }: RatingProps) => JSX.Element;
|
|
1887
2059
|
|
|
1888
|
-
interface
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
2060
|
+
interface ProductItemProps {
|
|
2061
|
+
title: string;
|
|
2062
|
+
image: ImageProps;
|
|
2063
|
+
price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
|
|
2064
|
+
rating: Pick<RatingProps, 'rating' | 'reviews'>;
|
|
2065
|
+
tags?: {
|
|
2066
|
+
categoryTagText?: string;
|
|
2067
|
+
seasonOfferTagText?: string;
|
|
2068
|
+
};
|
|
2069
|
+
alignName?: 'left' | 'center';
|
|
2070
|
+
url?: string;
|
|
1892
2071
|
className?: string;
|
|
1893
|
-
size?: ComponentSize;
|
|
1894
|
-
text: string;
|
|
1895
|
-
type?: ButtonType;
|
|
1896
|
-
inline?: boolean;
|
|
1897
|
-
testId?: string;
|
|
1898
2072
|
}
|
|
1899
2073
|
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
declare const Input: {
|
|
1911
|
-
Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, ...rest }: BaseInputCommonProps) => JSX.Element;
|
|
1912
|
-
Custom: ({ onClick, text, variant, ...rest }: CustomProps) => JSX.Element;
|
|
1913
|
-
SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
|
|
1914
|
-
SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
|
|
1915
|
-
};
|
|
1916
|
-
|
|
1917
|
-
interface PaymentMethodsProps {
|
|
1918
|
-
Icon: IconType;
|
|
1919
|
-
width: string;
|
|
1920
|
-
height: string;
|
|
2074
|
+
interface ProductItemSmallMobileProps$1 extends ProductItemProps {
|
|
2075
|
+
titleStyle?: Pick<TextProps$1, 'variant' | 'weight' | 'size'>;
|
|
2076
|
+
ImageBorderRadius?: string;
|
|
2077
|
+
hasSpacing?: boolean;
|
|
2078
|
+
textContainerGap?: string;
|
|
2079
|
+
customSizeRating?: ComponentSize.XSmall | ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large | '';
|
|
2080
|
+
size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
|
|
2081
|
+
imageHover?: ImageProps;
|
|
2082
|
+
topTag?: JSX.Element;
|
|
2083
|
+
bottomTag?: JSX.Element;
|
|
1921
2084
|
onClick?: () => void;
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
2085
|
+
originalPriceStyled?: boolean;
|
|
2086
|
+
priceDisplayType?: 'default' | 'styled';
|
|
2087
|
+
priceAtBottom?: boolean;
|
|
2088
|
+
priceLoading?: boolean;
|
|
2089
|
+
noFollow?: boolean;
|
|
2090
|
+
colorPicker?: {
|
|
2091
|
+
display: boolean;
|
|
2092
|
+
position: string;
|
|
2093
|
+
component: JSX.Element | JSX.Element[] | undefined;
|
|
2094
|
+
};
|
|
2095
|
+
isBNPL?: {
|
|
2096
|
+
displayBNPL: boolean;
|
|
2097
|
+
installments: number;
|
|
2098
|
+
installmentPrice: string;
|
|
2099
|
+
iconFolder?: string;
|
|
2100
|
+
iconName: string;
|
|
2101
|
+
showLogo?: boolean;
|
|
2102
|
+
iconColor: string;
|
|
2103
|
+
fontSize: string;
|
|
2104
|
+
};
|
|
2105
|
+
hasStrength?: {
|
|
2106
|
+
strength: number;
|
|
2107
|
+
description: string;
|
|
2108
|
+
};
|
|
2109
|
+
clubPrice?: string;
|
|
2110
|
+
showClubPriceLabel?: boolean;
|
|
2111
|
+
}
|
|
1930
2112
|
|
|
1931
|
-
|
|
2113
|
+
interface ProductItemSmallMobileProps extends ProductItemProps {
|
|
2114
|
+
size: ComponentSize.Medium | ComponentSize.Small | ComponentSize.Large;
|
|
2115
|
+
imageHover?: ImageProps;
|
|
2116
|
+
topTag?: JSX.Element;
|
|
2117
|
+
bottomTag?: JSX.Element;
|
|
2118
|
+
onClick?: () => void;
|
|
2119
|
+
priceDisplayType?: 'default' | 'styled';
|
|
2120
|
+
priceAtBottom?: boolean;
|
|
2121
|
+
priceLoading?: boolean;
|
|
2122
|
+
noFollow?: boolean;
|
|
2123
|
+
colorPicker?: {
|
|
2124
|
+
display: boolean;
|
|
2125
|
+
position: string;
|
|
2126
|
+
component: JSX.Element | JSX.Element[] | undefined;
|
|
2127
|
+
};
|
|
2128
|
+
isBNPL?: {
|
|
2129
|
+
displayBNPL: boolean;
|
|
2130
|
+
installments: number;
|
|
2131
|
+
installmentPrice: string;
|
|
2132
|
+
iconFolder?: string;
|
|
2133
|
+
iconName: string;
|
|
2134
|
+
showLogo?: boolean;
|
|
2135
|
+
iconColor: string;
|
|
2136
|
+
fontSize: string;
|
|
2137
|
+
};
|
|
2138
|
+
hasStrength?: {
|
|
2139
|
+
strength: number;
|
|
2140
|
+
description: string;
|
|
2141
|
+
};
|
|
2142
|
+
clubPrice?: string;
|
|
2143
|
+
showClubPriceLabel?: boolean;
|
|
2144
|
+
isRatingLoading?: boolean;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React__default.FC<P>, data: ProductItemProps[]): {
|
|
2148
|
+
(props: Omit<P, 'title' | 'image' | 'price' | 'rating'>): JSX.Element;
|
|
2149
|
+
displayName: string;
|
|
2150
|
+
};
|
|
2151
|
+
|
|
2152
|
+
declare const Collection: {
|
|
2153
|
+
ProductItemMobile: React$1.FC<ProductItemSmallMobileProps>;
|
|
2154
|
+
withProductGrid: typeof withProductGrid;
|
|
2155
|
+
ProductItemTK: ({ title, titleStyle, hasSpacing, textContainerGap, customSizeRating, image, ImageBorderRadius, imageHover, price, rating, size, alignName, url, className, topTag, bottomTag, onClick, priceDisplayType, originalPriceStyled, priceAtBottom, priceLoading, noFollow, colorPicker, isBNPL, hasStrength, clubPrice, showClubPriceLabel, }: ProductItemSmallMobileProps$1) => _emotion_react_types_jsx_namespace.EmotionJSX.Element;
|
|
2156
|
+
};
|
|
2157
|
+
|
|
2158
|
+
interface IconProps {
|
|
2159
|
+
width?: number | string;
|
|
2160
|
+
height?: number | string;
|
|
2161
|
+
fill?: string;
|
|
2162
|
+
title?: string;
|
|
2163
|
+
testId?: string;
|
|
2164
|
+
}
|
|
2165
|
+
declare type ButtonType = 'button' | 'submit' | 'reset';
|
|
2166
|
+
interface CTAProps {
|
|
2167
|
+
onClick: () => void;
|
|
2168
|
+
disabled?: boolean;
|
|
2169
|
+
wide?: boolean | false;
|
|
2170
|
+
size?: ComponentSize;
|
|
2171
|
+
text: string;
|
|
2172
|
+
type?: ButtonType;
|
|
2173
|
+
className?: string;
|
|
2174
|
+
testId?: string;
|
|
2175
|
+
inline?: boolean;
|
|
2176
|
+
}
|
|
2177
|
+
declare type DropdownOption<T> = {
|
|
2178
|
+
key: string;
|
|
2179
|
+
label: string;
|
|
2180
|
+
value: T;
|
|
2181
|
+
disabled: boolean;
|
|
2182
|
+
};
|
|
2183
|
+
declare type SizeOption = {
|
|
2184
|
+
label: string;
|
|
2185
|
+
description: string;
|
|
2186
|
+
disabled?: boolean;
|
|
2187
|
+
noStock?: boolean;
|
|
2188
|
+
};
|
|
2189
|
+
declare type Pattern = {
|
|
2190
|
+
url: string;
|
|
2191
|
+
};
|
|
2192
|
+
declare type ColorPickerOption = {
|
|
1932
2193
|
label: string;
|
|
2194
|
+
description: string;
|
|
2195
|
+
noStock?: boolean;
|
|
2196
|
+
meta: {
|
|
2197
|
+
color?: string[];
|
|
2198
|
+
pattern?: Pattern;
|
|
2199
|
+
};
|
|
2200
|
+
};
|
|
2201
|
+
declare type RadioGroupOption = {
|
|
1933
2202
|
value: string;
|
|
2203
|
+
label: string | ReactFragment;
|
|
1934
2204
|
};
|
|
1935
|
-
declare type
|
|
1936
|
-
|
|
1937
|
-
|
|
2205
|
+
declare type ImageType = {
|
|
2206
|
+
key: string;
|
|
2207
|
+
imageUrl: string;
|
|
2208
|
+
alt: string;
|
|
2209
|
+
thumbnailUrl?: string;
|
|
1938
2210
|
};
|
|
1939
|
-
interface
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
2211
|
+
interface IconWithOpacityProps extends IconProps {
|
|
2212
|
+
opacity?: number;
|
|
2213
|
+
}
|
|
2214
|
+
interface WithTestId {
|
|
2215
|
+
testId?: string;
|
|
2216
|
+
}
|
|
2217
|
+
declare type DropdownListIconsItem = {
|
|
2218
|
+
Icon: IconType;
|
|
2219
|
+
items: DropdownListIconsSubItem[];
|
|
2220
|
+
};
|
|
2221
|
+
declare type DropdownListIconsSubItem = {
|
|
2222
|
+
description: string;
|
|
2223
|
+
callback: () => void;
|
|
2224
|
+
};
|
|
2225
|
+
declare type Filter = {
|
|
2226
|
+
title: string;
|
|
2227
|
+
columns: number;
|
|
2228
|
+
isOpenByDefault?: boolean;
|
|
2229
|
+
isLinkOption?: boolean;
|
|
2230
|
+
link?: string;
|
|
2231
|
+
color?: string;
|
|
2232
|
+
isMultiselect: boolean;
|
|
2233
|
+
type?: string;
|
|
2234
|
+
items: Array<{
|
|
2235
|
+
label: string;
|
|
2236
|
+
checked?: boolean;
|
|
2237
|
+
isLinkItem?: boolean;
|
|
2238
|
+
link?: string;
|
|
2239
|
+
blockUncheck?: boolean;
|
|
2240
|
+
value?: string;
|
|
2241
|
+
}>;
|
|
2242
|
+
showInMobile: boolean;
|
|
2243
|
+
};
|
|
2244
|
+
declare type FilterChange = {
|
|
2245
|
+
sectionIndex: number;
|
|
2246
|
+
itemIndex: number;
|
|
2247
|
+
checked?: boolean;
|
|
2248
|
+
};
|
|
2249
|
+
interface SearchBarOptionItem {
|
|
2250
|
+
src: string;
|
|
2251
|
+
price: string;
|
|
2252
|
+
title: string;
|
|
2253
|
+
optionUrl: string;
|
|
2254
|
+
}
|
|
2255
|
+
interface imageVideoProps {
|
|
2256
|
+
imageLink: string;
|
|
2257
|
+
isVideo?: {
|
|
2258
|
+
videoTitle?: string;
|
|
2259
|
+
videoSubtitle?: string;
|
|
2260
|
+
textColor?: string;
|
|
2261
|
+
videoLink?: string;
|
|
1948
2262
|
};
|
|
2263
|
+
isMobile?: boolean;
|
|
1949
2264
|
}
|
|
1950
2265
|
|
|
1951
|
-
interface
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
2266
|
+
interface MultiColorPickerProps {
|
|
2267
|
+
options?: ColorPickerOption[];
|
|
2268
|
+
label: string;
|
|
2269
|
+
selectedValue?: ColorPickerOption;
|
|
2270
|
+
onChange: (color: Set<ColorPickerOption>) => void;
|
|
2271
|
+
}
|
|
2272
|
+
declare const MultiColorPicker: ({ options, label, selectedValue, onChange, }: MultiColorPickerProps) => JSX.Element;
|
|
2273
|
+
|
|
2274
|
+
interface ColorPickerProps {
|
|
2275
|
+
options: ColorPickerOption[];
|
|
2276
|
+
selectedValue?: ColorPickerOption;
|
|
2277
|
+
label: string;
|
|
2278
|
+
onChange: (color: ColorPickerOption) => void;
|
|
2279
|
+
inline?: boolean;
|
|
2280
|
+
}
|
|
2281
|
+
declare const SingleColorPicker: ({ options, selectedValue, label, onChange, inline, }: ColorPickerProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2282
|
+
|
|
2283
|
+
interface CrossSellCheckboxProps extends rightToLeftProps {
|
|
2284
|
+
imageURL: string;
|
|
2285
|
+
title: string;
|
|
2286
|
+
description: string;
|
|
2287
|
+
freeShippingText: string;
|
|
2288
|
+
onChange: (checked: Boolean) => void;
|
|
2289
|
+
}
|
|
2290
|
+
interface rightToLeftProps {
|
|
2291
|
+
rightToLeft: boolean;
|
|
2292
|
+
}
|
|
2293
|
+
declare const CrossSellCheckbox: ({ imageURL, title, description, freeShippingText, rightToLeft, onChange, }: CrossSellCheckboxProps) => JSX.Element;
|
|
2294
|
+
|
|
2295
|
+
type index_d_CrossSellCheckboxProps = CrossSellCheckboxProps;
|
|
2296
|
+
declare const index_d_CrossSellCheckbox: typeof CrossSellCheckbox;
|
|
2297
|
+
declare namespace index_d {
|
|
2298
|
+
export {
|
|
2299
|
+
index_d_CrossSellCheckboxProps as CrossSellCheckboxProps,
|
|
2300
|
+
index_d_CrossSellCheckbox as CrossSellCheckbox,
|
|
2301
|
+
};
|
|
1959
2302
|
}
|
|
1960
2303
|
|
|
1961
|
-
declare const
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
2304
|
+
declare const ButtonPrimary: ({ testId, ...props }: CTAProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2305
|
+
|
|
2306
|
+
declare const ButtonSecondary: (props: CTAProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2307
|
+
|
|
2308
|
+
declare const ButtonSecondaryOutline: (props: CTAProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
1965
2309
|
|
|
1966
2310
|
declare type detail = {
|
|
1967
2311
|
title: string;
|
|
@@ -1988,368 +2332,260 @@ interface DeliveryDetailsProps {
|
|
|
1988
2332
|
}
|
|
1989
2333
|
declare const DeliveryDetails: ({ deliveryDetailsText, arrivingBy, shippingTo, instantOrderUpdate, note, }: DeliveryDetailsProps) => JSX.Element;
|
|
1990
2334
|
|
|
1991
|
-
interface
|
|
1992
|
-
|
|
1993
|
-
onClick: () => void;
|
|
1994
|
-
fill?: string;
|
|
1995
|
-
}
|
|
1996
|
-
declare const ScrollToTop: ({ scrollToTopText, onClick, fill }: ScrollToTopProps) => JSX.Element;
|
|
1997
|
-
|
|
1998
|
-
interface OrderBarProps {
|
|
1999
|
-
message: string;
|
|
2335
|
+
interface NoteProps {
|
|
2336
|
+
accentColor?: string;
|
|
2000
2337
|
color?: string;
|
|
2338
|
+
backgroundColor?: string;
|
|
2339
|
+
importantNoteText: string;
|
|
2340
|
+
text: string;
|
|
2001
2341
|
}
|
|
2002
|
-
declare const
|
|
2342
|
+
declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
|
|
2003
2343
|
|
|
2004
|
-
interface
|
|
2005
|
-
|
|
2006
|
-
|
|
2344
|
+
interface DrawerProps {
|
|
2345
|
+
children: React__default.ReactNode;
|
|
2346
|
+
isOpen: boolean;
|
|
2347
|
+
onClose?: () => void;
|
|
2348
|
+
onOpen?: () => void;
|
|
2349
|
+
onClickOutside?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
2350
|
+
backgroundColor?: string;
|
|
2351
|
+
backdropColor?: string;
|
|
2352
|
+
position?: 'left' | 'right';
|
|
2353
|
+
width?: string;
|
|
2007
2354
|
}
|
|
2008
|
-
declare const
|
|
2355
|
+
declare const Drawer: ({ children, isOpen, onClose, onOpen, backgroundColor, backdropColor, position, width, onClickOutside, }: DrawerProps) => JSX.Element | null;
|
|
2009
2356
|
|
|
2010
|
-
interface
|
|
2011
|
-
|
|
2012
|
-
data: string[][];
|
|
2013
|
-
newSizeTableCss?: boolean;
|
|
2357
|
+
interface DropdownListIconsProps {
|
|
2358
|
+
items: DropdownListIconsItem[];
|
|
2014
2359
|
}
|
|
2015
|
-
declare const
|
|
2360
|
+
declare const DropdownListIcons: ({ items }: DropdownListIconsProps) => JSX.Element;
|
|
2016
2361
|
|
|
2017
|
-
interface
|
|
2018
|
-
|
|
2362
|
+
interface DropdownProps {
|
|
2363
|
+
options: SelectedOption[];
|
|
2364
|
+
defaultLabel: string;
|
|
2365
|
+
onOptionSelect: (option: string) => void;
|
|
2019
2366
|
}
|
|
2020
|
-
interface
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
className?: string;
|
|
2024
|
-
image: {
|
|
2025
|
-
src: string;
|
|
2026
|
-
alt: string;
|
|
2027
|
-
};
|
|
2028
|
-
quantity?: number;
|
|
2029
|
-
price: Price;
|
|
2030
|
-
tag?: {
|
|
2031
|
-
text: string;
|
|
2032
|
-
backgroundColor: string;
|
|
2033
|
-
};
|
|
2034
|
-
finalPriceStyle?: React.CSSProperties;
|
|
2367
|
+
interface SelectedOption {
|
|
2368
|
+
size: string;
|
|
2369
|
+
detail: string;
|
|
2035
2370
|
}
|
|
2036
|
-
declare const
|
|
2371
|
+
declare const SizeDropdown: React__default.FC<DropdownProps>;
|
|
2037
2372
|
|
|
2038
|
-
interface
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
};
|
|
2047
|
-
title: string;
|
|
2048
|
-
description: string;
|
|
2049
|
-
images?: {
|
|
2050
|
-
src: string;
|
|
2051
|
-
alt: string;
|
|
2373
|
+
interface DialogPositionProps {
|
|
2374
|
+
top: string;
|
|
2375
|
+
right: string;
|
|
2376
|
+
}
|
|
2377
|
+
interface DialogDropdownProps {
|
|
2378
|
+
options: {
|
|
2379
|
+
label: string;
|
|
2380
|
+
value: string;
|
|
2052
2381
|
}[];
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
helpfulAction?: (id: string) => void;
|
|
2057
|
-
helpfulCount?: number;
|
|
2382
|
+
position: DialogPositionProps;
|
|
2383
|
+
style?: React__default.CSSProperties;
|
|
2384
|
+
className?: string;
|
|
2058
2385
|
}
|
|
2059
|
-
declare const
|
|
2386
|
+
declare const DropdownDialog: ({ options, position: { top, right }, style, className, }: DialogDropdownProps) => JSX.Element;
|
|
2060
2387
|
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
arrowPadding: number;
|
|
2072
|
-
};
|
|
2073
|
-
dots?: boolean;
|
|
2074
|
-
slidesToShow?: number;
|
|
2075
|
-
speed?: number;
|
|
2076
|
-
}
|
|
2077
|
-
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2388
|
+
declare type FilteringDropdownProps<T> = {
|
|
2389
|
+
options: DropdownOption<T>[];
|
|
2390
|
+
disabled?: boolean;
|
|
2391
|
+
wide?: boolean;
|
|
2392
|
+
onChange: (options: DropdownOption<T>[]) => void;
|
|
2393
|
+
filter?: boolean;
|
|
2394
|
+
sliceAfter?: number;
|
|
2395
|
+
placeHolder: string;
|
|
2396
|
+
};
|
|
2397
|
+
declare function FilteringDropdown<T>({ options, disabled, placeHolder, wide, sliceAfter, filter, onChange, }: FilteringDropdownProps<T>): JSX.Element;
|
|
2078
2398
|
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2399
|
+
declare type Value<T> = DropdownOption<T>;
|
|
2400
|
+
declare type OnChange<T> = (option: Value<T>) => void;
|
|
2401
|
+
declare type CommonProps<T> = {
|
|
2402
|
+
options: Value<T>[];
|
|
2403
|
+
disabled?: boolean;
|
|
2404
|
+
wide?: boolean;
|
|
2405
|
+
label?: string;
|
|
2406
|
+
sort?: boolean;
|
|
2407
|
+
initialValue?: Value<T>;
|
|
2408
|
+
placeHolder: string;
|
|
2409
|
+
testId?: string;
|
|
2410
|
+
required?: string;
|
|
2411
|
+
showRequiredPlaceholder?: boolean;
|
|
2412
|
+
};
|
|
2413
|
+
declare type ControlledProps<T> = {
|
|
2414
|
+
value: Value<T>;
|
|
2415
|
+
onChange: OnChange<T>;
|
|
2416
|
+
} & CommonProps<T>;
|
|
2417
|
+
declare type UncontrolledProps<T> = {
|
|
2418
|
+
value?: never;
|
|
2419
|
+
onChange?: OnChange<T>;
|
|
2420
|
+
} & CommonProps<T>;
|
|
2421
|
+
declare type SimpleDropdownProps<T> = UncontrolledProps<T> | ControlledProps<T>;
|
|
2422
|
+
declare function SimpleDropdown<T>({ options, disabled, initialValue, placeHolder, label, wide, sort, onChange, value, testId, required, showRequiredPlaceholder, }: SimpleDropdownProps<T>): JSX.Element;
|
|
2083
2423
|
|
|
2084
|
-
interface
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2424
|
+
interface FiltersProps {
|
|
2425
|
+
values: Filter[];
|
|
2426
|
+
onChange: (newValues: Filter[], filtersState?: FilterChange) => void;
|
|
2427
|
+
tagsColor?: string;
|
|
2428
|
+
filterByText: string;
|
|
2429
|
+
clearAllText: string;
|
|
2430
|
+
filtersSelectText: string;
|
|
2431
|
+
isMobile: boolean;
|
|
2432
|
+
applyText: string;
|
|
2433
|
+
mobileBackArrowClick: () => void;
|
|
2434
|
+
mobileApplyButtonClick: () => void;
|
|
2435
|
+
onResetValues: () => void;
|
|
2095
2436
|
}
|
|
2096
|
-
declare const
|
|
2437
|
+
declare const Filters: ({ values, onChange, tagsColor, filterByText, clearAllText, isMobile, filtersSelectText, applyText, mobileApplyButtonClick, mobileBackArrowClick, onResetValues, }: FiltersProps) => JSX.Element;
|
|
2097
2438
|
|
|
2098
|
-
interface
|
|
2099
|
-
|
|
2439
|
+
interface TagsProps {
|
|
2440
|
+
color?: string;
|
|
2441
|
+
items: string[];
|
|
2442
|
+
onCloseClick: (index: number) => void;
|
|
2100
2443
|
}
|
|
2101
|
-
declare const
|
|
2102
|
-
declare const PaypalButton: ({ onClick }: AmazonPaypalBtnProps) => JSX.Element;
|
|
2444
|
+
declare const Tags: ({ color, items, onCloseClick }: TagsProps) => JSX.Element;
|
|
2103
2445
|
|
|
2104
|
-
interface
|
|
2105
|
-
|
|
2446
|
+
interface FitGuaranteeProps {
|
|
2447
|
+
backgroundColor?: string;
|
|
2448
|
+
borderColor?: string;
|
|
2106
2449
|
title: string;
|
|
2107
2450
|
description: string;
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2451
|
+
widthAuto?: boolean;
|
|
2452
|
+
testId?: string;
|
|
2453
|
+
iconFolder?: string;
|
|
2454
|
+
iconName?: string;
|
|
2455
|
+
iconWidth?: number;
|
|
2456
|
+
iconHeight?: number;
|
|
2113
2457
|
}
|
|
2114
|
-
declare const
|
|
2458
|
+
declare const FitGuarantee: ({ backgroundColor, borderColor, title, description, widthAuto, testId, iconFolder, iconName, iconWidth, iconHeight, }: FitGuaranteeProps) => JSX.Element | null;
|
|
2115
2459
|
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
index_d_CrossSellCheckboxProps as CrossSellCheckboxProps,
|
|
2121
|
-
index_d_CrossSellCheckbox as CrossSellCheckbox,
|
|
2122
|
-
};
|
|
2123
|
-
}
|
|
2124
|
-
|
|
2125
|
-
interface ProductItemProps {
|
|
2126
|
-
title: string;
|
|
2127
|
-
image: ImageProps;
|
|
2128
|
-
price: Pick<PriceLabelProps, 'finalPrice' | 'originalPrice' | 'color'>;
|
|
2129
|
-
rating: Pick<RatingProps, 'rating' | 'reviews'>;
|
|
2130
|
-
tags?: {
|
|
2131
|
-
categoryTagText?: string;
|
|
2132
|
-
seasonOfferTagText?: string;
|
|
2133
|
-
};
|
|
2134
|
-
alignName?: 'left' | 'center';
|
|
2135
|
-
url?: string;
|
|
2136
|
-
className?: string;
|
|
2137
|
-
}
|
|
2460
|
+
interface FitPredictorProps {
|
|
2461
|
+
onClick: () => void;
|
|
2462
|
+
}
|
|
2463
|
+
declare const FitPredictor: ({ onClick }: FitPredictorProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2138
2464
|
|
|
2139
|
-
interface
|
|
2140
|
-
|
|
2141
|
-
|
|
2465
|
+
interface ProductGalleryProps {
|
|
2466
|
+
images: ImageType[];
|
|
2467
|
+
selectedValue?: ImageType;
|
|
2142
2468
|
topTag?: JSX.Element;
|
|
2143
2469
|
bottomTag?: JSX.Element;
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
}
|
|
2154
|
-
|
|
2155
|
-
declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React.FC<P>, data: ProductItemProps[]): {
|
|
2156
|
-
(props: Omit<P, 'title' | 'image' | 'price' | 'rating'>): JSX.Element;
|
|
2157
|
-
displayName: string;
|
|
2158
|
-
};
|
|
2159
|
-
|
|
2160
|
-
declare const Collection: {
|
|
2161
|
-
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;
|
|
2162
|
-
withProductGrid: typeof withProductGrid;
|
|
2163
|
-
};
|
|
2164
|
-
|
|
2165
|
-
interface StarListProps {
|
|
2166
|
-
rating: number;
|
|
2167
|
-
size?: ComponentSize;
|
|
2168
|
-
starsNumber: number;
|
|
2169
|
-
fill: string;
|
|
2470
|
+
productImageDataTestId?: string;
|
|
2471
|
+
previewListDataTestId?: string;
|
|
2472
|
+
thumbnailPosition?: 'vertical' | 'horizontal';
|
|
2473
|
+
borderRadiusVariant?: boolean;
|
|
2474
|
+
previewImgBorderColor?: string;
|
|
2475
|
+
ctaText?: string;
|
|
2476
|
+
ctaAction?: () => void;
|
|
2477
|
+
hideCTA?: boolean;
|
|
2478
|
+
hasOverflowArrows?: boolean;
|
|
2170
2479
|
}
|
|
2171
|
-
declare const
|
|
2480
|
+
declare const ProductGallery: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, previewListDataTestId, thumbnailPosition, borderRadiusVariant, previewImgBorderColor, ctaText, ctaAction, hideCTA, hasOverflowArrows, }: ProductGalleryProps) => JSX.Element;
|
|
2172
2481
|
|
|
2173
|
-
interface
|
|
2174
|
-
children:
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
onClickOutside?: (event: React.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
2179
|
-
backgroundColor?: string;
|
|
2180
|
-
backdropColor?: string;
|
|
2181
|
-
position?: 'left' | 'right';
|
|
2182
|
-
width?: string;
|
|
2482
|
+
interface IconButtonProps {
|
|
2483
|
+
children: React__default.ReactNode;
|
|
2484
|
+
disabled?: boolean;
|
|
2485
|
+
onClick?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
|
|
2486
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2183
2487
|
}
|
|
2184
|
-
declare const
|
|
2488
|
+
declare const IconButton: ({ children, disabled, size, onClick, }: IconButtonProps) => JSX.Element;
|
|
2185
2489
|
|
|
2186
|
-
interface
|
|
2187
|
-
|
|
2188
|
-
background: string;
|
|
2189
|
-
animationDuration?: number;
|
|
2190
|
-
complete?: boolean;
|
|
2191
|
-
completeIconStroke?: number;
|
|
2192
|
-
size?: string;
|
|
2490
|
+
interface AmazonPaypalBtnProps {
|
|
2491
|
+
onClick: () => void;
|
|
2193
2492
|
}
|
|
2194
|
-
declare const
|
|
2493
|
+
declare const AmazonButton: ({ onClick }: AmazonPaypalBtnProps) => JSX.Element;
|
|
2494
|
+
declare const PaypalButton: ({ onClick }: AmazonPaypalBtnProps) => JSX.Element;
|
|
2195
2495
|
|
|
2196
|
-
interface
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2496
|
+
interface IconsWithTitleProps {
|
|
2497
|
+
backgroundColor: string;
|
|
2498
|
+
iconColor: string;
|
|
2499
|
+
iconName: string;
|
|
2500
|
+
iconFolder?: string;
|
|
2501
|
+
withWrapper?: boolean;
|
|
2502
|
+
iconTitle: string;
|
|
2503
|
+
iconSizeDesktop?: number;
|
|
2504
|
+
iconSizeMobile?: number;
|
|
2505
|
+
iconTitlePosition?: 'top' | 'bottom' | 'left' | 'right';
|
|
2506
|
+
iconTitleStyle?: string;
|
|
2507
|
+
iconStyle?: string;
|
|
2508
|
+
isTitleInnerHtml?: boolean;
|
|
2200
2509
|
}
|
|
2201
|
-
declare const
|
|
2510
|
+
declare const IconsWithTitle: ({ iconName, iconTitle, iconFolder, withWrapper, backgroundColor, iconColor, iconSizeDesktop, iconSizeMobile, iconTitlePosition, iconTitleStyle, iconStyle, isTitleInnerHtml, }: IconsWithTitleProps) => JSX.Element | null;
|
|
2202
2511
|
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
placeHolder: string;
|
|
2211
|
-
};
|
|
2212
|
-
declare function FilteringDropdown<T>({ options, disabled, placeHolder, wide, sliceAfter, filter, onChange, }: FilteringDropdownProps<T>): JSX.Element;
|
|
2512
|
+
interface ImageCardWithDescriptionProps {
|
|
2513
|
+
image: string;
|
|
2514
|
+
title?: string;
|
|
2515
|
+
description?: string;
|
|
2516
|
+
titlePosition?: 'center' | 'left';
|
|
2517
|
+
}
|
|
2518
|
+
declare const ImageCardWithDescription: ({ image, title, description, titlePosition, }: ImageCardWithDescriptionProps) => JSX.Element;
|
|
2213
2519
|
|
|
2214
|
-
interface
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2520
|
+
interface BaseInputCommonProps {
|
|
2521
|
+
id?: string;
|
|
2522
|
+
value?: string;
|
|
2523
|
+
innerRef?: React__default.Ref<HTMLInputElement>;
|
|
2524
|
+
onBlur?: () => void;
|
|
2525
|
+
onFocus?: () => void;
|
|
2526
|
+
onChange?: (value: string, event: any) => void;
|
|
2527
|
+
hideClear?: boolean;
|
|
2528
|
+
defaultValue?: string;
|
|
2529
|
+
maxLength?: number;
|
|
2530
|
+
placeholder?: string;
|
|
2531
|
+
label?: string;
|
|
2532
|
+
onValidation?: (status: InputValidationType) => void;
|
|
2221
2533
|
disabled?: boolean;
|
|
2222
|
-
|
|
2534
|
+
required?: string;
|
|
2535
|
+
children?: React__default.ReactNode;
|
|
2536
|
+
size?: 'regular' | 'small';
|
|
2537
|
+
inlinePlaceholder?: boolean;
|
|
2538
|
+
hasError?: boolean;
|
|
2539
|
+
inputType?: 'text' | 'email' | 'password' | 'url';
|
|
2540
|
+
name?: string;
|
|
2541
|
+
autoFocus?: boolean;
|
|
2542
|
+
requiredPlaceholder?: string;
|
|
2223
2543
|
}
|
|
2224
|
-
declare
|
|
2544
|
+
declare type BaseInputProps = BaseInputCommonProps;
|
|
2225
2545
|
|
|
2226
|
-
declare
|
|
2546
|
+
declare type BasePlusIconProps = BaseInputProps & {
|
|
2547
|
+
Icon: IconType;
|
|
2548
|
+
};
|
|
2227
2549
|
|
|
2228
|
-
declare
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
declare type TextDisplayProps = {
|
|
2241
|
-
variant: 'display1' | 'display2';
|
|
2242
|
-
weight?: 'bold' | 'demi';
|
|
2243
|
-
size?: 'regular';
|
|
2244
|
-
underline?: never;
|
|
2245
|
-
disabled?: never;
|
|
2246
|
-
wide?: never;
|
|
2247
|
-
original?: never;
|
|
2248
|
-
allCaps?: never;
|
|
2249
|
-
href: never;
|
|
2250
|
-
};
|
|
2251
|
-
declare type TextHeadingProps = {
|
|
2252
|
-
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6';
|
|
2253
|
-
weight?: 'bold' | 'demi' | 'regular';
|
|
2254
|
-
size?: 'regular';
|
|
2255
|
-
underline?: never;
|
|
2256
|
-
disabled?: never;
|
|
2257
|
-
wide?: never;
|
|
2258
|
-
original?: never;
|
|
2259
|
-
allCaps?: never;
|
|
2260
|
-
href?: never;
|
|
2261
|
-
};
|
|
2262
|
-
declare type TextBodyProps = {
|
|
2263
|
-
variant: 'body';
|
|
2264
|
-
size?: 'regular' | 'small';
|
|
2265
|
-
weight?: 'bold' | 'demi' | 'regular';
|
|
2266
|
-
underline?: never;
|
|
2267
|
-
disabled?: never;
|
|
2268
|
-
wide?: never;
|
|
2269
|
-
original?: never;
|
|
2270
|
-
allCaps?: never;
|
|
2271
|
-
href?: never;
|
|
2272
|
-
};
|
|
2273
|
-
declare type TextButtonProps = {
|
|
2274
|
-
variant: 'button';
|
|
2275
|
-
size: 'large' | 'regular' | 'small';
|
|
2276
|
-
weight: 'bold' | 'demi';
|
|
2277
|
-
underline?: never;
|
|
2278
|
-
disabled?: never;
|
|
2279
|
-
wide?: boolean;
|
|
2280
|
-
original?: never;
|
|
2281
|
-
allCaps?: never;
|
|
2282
|
-
href?: never;
|
|
2283
|
-
};
|
|
2284
|
-
declare type TextPricingProps = {
|
|
2285
|
-
variant: 'pricing';
|
|
2286
|
-
size: 'large' | 'medium' | 'regular' | 'small';
|
|
2287
|
-
weight?: never;
|
|
2288
|
-
underline?: never;
|
|
2289
|
-
disabled?: never;
|
|
2290
|
-
wide?: never;
|
|
2291
|
-
original?: boolean;
|
|
2292
|
-
allCaps?: never;
|
|
2293
|
-
href?: never;
|
|
2294
|
-
};
|
|
2295
|
-
declare type TextLinkProps = {
|
|
2296
|
-
variant: 'link';
|
|
2297
|
-
weight?: 'demi' | 'regular';
|
|
2298
|
-
size?: 'regular' | 'small';
|
|
2299
|
-
underline?: boolean;
|
|
2300
|
-
disabled?: boolean;
|
|
2301
|
-
wide?: never;
|
|
2302
|
-
original?: never;
|
|
2303
|
-
allCaps?: never;
|
|
2304
|
-
href?: string;
|
|
2305
|
-
};
|
|
2306
|
-
declare type TextLabelProps = {
|
|
2307
|
-
variant: 'label';
|
|
2308
|
-
color?: string;
|
|
2309
|
-
weight?: 'regular' | 'demi';
|
|
2310
|
-
size?: 'regular' | 'small';
|
|
2311
|
-
underline?: never;
|
|
2312
|
-
disabled?: boolean;
|
|
2313
|
-
wide?: never;
|
|
2314
|
-
original?: never;
|
|
2315
|
-
allCaps?: never;
|
|
2316
|
-
href?: never;
|
|
2317
|
-
} & LabelHTMLAttributes<'label'>;
|
|
2318
|
-
declare type TextTagProps = {
|
|
2319
|
-
variant: 'tag';
|
|
2320
|
-
size?: 'regular' | 'small' | 'x-small';
|
|
2321
|
-
weight?: 'regular' | 'demi' | 'bold';
|
|
2322
|
-
underline?: never;
|
|
2550
|
+
declare type BasePlusButtonProps = BaseInputProps & {
|
|
2551
|
+
label?: undefined;
|
|
2552
|
+
onClick: (value: string) => void;
|
|
2553
|
+
onClickEdit: () => void;
|
|
2554
|
+
text: string;
|
|
2555
|
+
success: boolean;
|
|
2556
|
+
editText: string;
|
|
2557
|
+
successText: string;
|
|
2558
|
+
};
|
|
2559
|
+
|
|
2560
|
+
interface BaseCTAProps {
|
|
2561
|
+
onClick: () => void;
|
|
2323
2562
|
disabled?: boolean;
|
|
2324
|
-
wide?:
|
|
2325
|
-
original?: never;
|
|
2326
|
-
allCaps?: boolean;
|
|
2327
|
-
href?: never;
|
|
2328
|
-
};
|
|
2329
|
-
declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
|
|
2330
|
-
children: ReactNode;
|
|
2331
|
-
style?: CSSProperties;
|
|
2563
|
+
wide?: boolean;
|
|
2332
2564
|
className?: string;
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2565
|
+
size?: ComponentSize;
|
|
2566
|
+
text: string;
|
|
2567
|
+
type?: ButtonType;
|
|
2568
|
+
inline?: boolean;
|
|
2569
|
+
testId?: string;
|
|
2570
|
+
}
|
|
2571
|
+
|
|
2572
|
+
declare type ButtonProps = {
|
|
2573
|
+
variant: 'primary' | 'secondary' | 'secondary-outline';
|
|
2574
|
+
} & BaseCTAProps;
|
|
2575
|
+
|
|
2576
|
+
declare type CustomProps = BaseInputProps & {
|
|
2577
|
+
onClick: () => void;
|
|
2578
|
+
text: string;
|
|
2579
|
+
variant: ButtonProps['variant'];
|
|
2580
|
+
defaultRounded?: boolean;
|
|
2581
|
+
};
|
|
2582
|
+
|
|
2583
|
+
declare const Input: {
|
|
2584
|
+
Simple: ({ value, onChange, label, children, required, onValidation, size, placeholder, inlinePlaceholder, hasError, inputType, hideClear, innerRef, requiredPlaceholder, ...rest }: BaseInputCommonProps) => JSX.Element;
|
|
2585
|
+
Custom: ({ onClick, text, variant, defaultRounded, ...rest }: CustomProps) => JSX.Element;
|
|
2586
|
+
SimplePlusButton: ({ onClick, onClickEdit, text, success, editText, successText, ...rest }: BasePlusButtonProps) => JSX.Element;
|
|
2587
|
+
SimplePlusIcon: ({ Icon, ...rest }: BasePlusIconProps) => JSX.Element;
|
|
2588
|
+
};
|
|
2353
2589
|
|
|
2354
2590
|
interface ProductGalleryMobileProps$1 {
|
|
2355
2591
|
images: ImageType[];
|
|
@@ -2362,31 +2598,23 @@ interface ProductGalleryMobileProps$1 {
|
|
|
2362
2598
|
}
|
|
2363
2599
|
declare const ProductGalleryMobile: ({ images, customClick, topTag, bottomTag, productImageDataTestId, borderRadiusVariant, selectedValue, }: ProductGalleryMobileProps$1) => JSX.Element;
|
|
2364
2600
|
|
|
2365
|
-
interface
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
onChange: (option: RadioGroupOption) => void;
|
|
2601
|
+
interface ProductGalleryMobileProps {
|
|
2602
|
+
images: ImageType[];
|
|
2603
|
+
selectedValue?: ImageType;
|
|
2604
|
+
topTag?: JSX.Element;
|
|
2605
|
+
bottomTag?: JSX.Element;
|
|
2606
|
+
productImageDataTestId?: string;
|
|
2607
|
+
slideDotsDataTestId?: string;
|
|
2608
|
+
borderRadiusVariant?: boolean;
|
|
2374
2609
|
}
|
|
2375
|
-
declare const
|
|
2376
|
-
|
|
2377
|
-
declare type PortalProps = {
|
|
2378
|
-
id: string;
|
|
2379
|
-
className?: string;
|
|
2380
|
-
overflow?: boolean;
|
|
2381
|
-
style?: CSSProperties;
|
|
2382
|
-
};
|
|
2383
|
-
declare const Portal: FC<PortalProps>;
|
|
2610
|
+
declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
|
|
2384
2611
|
|
|
2385
2612
|
declare type ModalProps = {
|
|
2386
2613
|
id: string;
|
|
2387
2614
|
dismissable?: boolean;
|
|
2388
2615
|
maxFullScreen?: boolean;
|
|
2389
2616
|
padding?: string;
|
|
2617
|
+
children: React__default.ReactNode;
|
|
2390
2618
|
};
|
|
2391
2619
|
interface ContainerProps {
|
|
2392
2620
|
maxFullScreen: boolean;
|
|
@@ -2395,8 +2623,8 @@ interface ContainerProps {
|
|
|
2395
2623
|
}
|
|
2396
2624
|
declare const Overlay: _emotion_styled.StyledComponent<{
|
|
2397
2625
|
theme?: _emotion_react.Theme | undefined;
|
|
2398
|
-
as?:
|
|
2399
|
-
} & Pick<ContainerProps, "opened">,
|
|
2626
|
+
as?: React__default.ElementType<any> | undefined;
|
|
2627
|
+
} & Pick<ContainerProps, "opened">, React__default.DetailedHTMLProps<React__default.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
2400
2628
|
declare const Modal: FC<ModalProps>;
|
|
2401
2629
|
declare const modalEvent: (id: string, detail: Omit<Events['modal'], 'id'>) => void;
|
|
2402
2630
|
declare const useModalEvent: (id: string, cb: (event: CustomEvent<Events['modal']>) => void) => void;
|
|
@@ -2406,46 +2634,297 @@ declare const useModal: (id: string) => {
|
|
|
2406
2634
|
close: () => void;
|
|
2407
2635
|
};
|
|
2408
2636
|
|
|
2409
|
-
interface
|
|
2637
|
+
interface MotivatorProgressBarProps {
|
|
2638
|
+
fillColor?: string;
|
|
2639
|
+
currentAmount?: number;
|
|
2640
|
+
backgroundColor?: string;
|
|
2641
|
+
unfilledColor?: string;
|
|
2642
|
+
borderRadius?: string;
|
|
2643
|
+
rewardUnlockedMessage: string;
|
|
2644
|
+
endingValue?: number;
|
|
2645
|
+
currencyCode?: string;
|
|
2646
|
+
}
|
|
2647
|
+
declare const MotivatorProgressBar: ({ fillColor, backgroundColor, unfilledColor, currencyCode, endingValue, currentAmount, rewardUnlockedMessage, }: MotivatorProgressBarProps) => JSX.Element;
|
|
2648
|
+
|
|
2649
|
+
interface OrderBarProps {
|
|
2650
|
+
message: string;
|
|
2651
|
+
color?: string;
|
|
2652
|
+
}
|
|
2653
|
+
declare const OrderBar: ({ message, color }: OrderBarProps) => JSX.Element;
|
|
2654
|
+
|
|
2655
|
+
interface PackOption {
|
|
2656
|
+
label: string;
|
|
2657
|
+
description: string;
|
|
2658
|
+
meta: {
|
|
2659
|
+
discountPercentage: number;
|
|
2660
|
+
originalPrice: number;
|
|
2661
|
+
price: number;
|
|
2662
|
+
quantity: number;
|
|
2663
|
+
icon: string;
|
|
2664
|
+
tag?: string;
|
|
2665
|
+
};
|
|
2666
|
+
}
|
|
2667
|
+
interface PackSelectorProps {
|
|
2668
|
+
packs: PackOption[];
|
|
2669
|
+
selectedValue: PackOption;
|
|
2670
|
+
onChange: (size: PackOption) => void;
|
|
2671
|
+
currencyCode?: string;
|
|
2672
|
+
}
|
|
2673
|
+
declare const PackSelector: FC<PackSelectorProps>;
|
|
2674
|
+
|
|
2675
|
+
interface PaginationProps {
|
|
2676
|
+
from: number;
|
|
2677
|
+
to: number;
|
|
2678
|
+
onChange: (page: number) => void;
|
|
2679
|
+
currentPage?: number;
|
|
2680
|
+
underlineActive?: boolean;
|
|
2681
|
+
boldActive?: boolean;
|
|
2682
|
+
disabled?: boolean;
|
|
2683
|
+
showReducedPages?: boolean;
|
|
2684
|
+
}
|
|
2685
|
+
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
|
|
2686
|
+
|
|
2687
|
+
declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
|
|
2688
|
+
|
|
2689
|
+
interface PaymentMethodsProps {
|
|
2690
|
+
Icon: IconType;
|
|
2691
|
+
width: string;
|
|
2692
|
+
height: string;
|
|
2693
|
+
onClick?: () => void;
|
|
2694
|
+
}
|
|
2695
|
+
declare const PaymentMethod: ({ Icon, width, height, onClick }: PaymentMethodsProps) => JSX.Element;
|
|
2696
|
+
|
|
2697
|
+
interface Price extends Pick<PriceLabelProps, 'finalPrice' | 'originalPrice'> {
|
|
2698
|
+
color?: string;
|
|
2699
|
+
}
|
|
2700
|
+
interface ProductOrderItemProps {
|
|
2701
|
+
title: React__default.ReactNode | string;
|
|
2702
|
+
subtitle: string;
|
|
2703
|
+
className?: string;
|
|
2704
|
+
image: {
|
|
2705
|
+
src: string;
|
|
2706
|
+
alt: string;
|
|
2707
|
+
};
|
|
2708
|
+
quantity?: number;
|
|
2709
|
+
price: Price;
|
|
2710
|
+
tag?: {
|
|
2711
|
+
text: string;
|
|
2712
|
+
backgroundColor: string;
|
|
2713
|
+
};
|
|
2714
|
+
finalPriceStyle?: React__default.CSSProperties;
|
|
2715
|
+
}
|
|
2716
|
+
declare const SimpleOrderItem: ({ title, className, subtitle, image, price, tag, quantity, finalPriceStyle, }: ProductOrderItemProps) => JSX.Element;
|
|
2717
|
+
|
|
2718
|
+
interface ProgressBarProps {
|
|
2719
|
+
description?: string;
|
|
2720
|
+
fillColor: string;
|
|
2721
|
+
widthAuto?: boolean;
|
|
2722
|
+
percent?: number;
|
|
2723
|
+
height?: string;
|
|
2724
|
+
backgroundColor?: string;
|
|
2725
|
+
borderRadius?: string;
|
|
2726
|
+
}
|
|
2727
|
+
declare const ProgressBar: ({ description, fillColor, widthAuto, percent, height, backgroundColor, borderRadius, }: ProgressBarProps) => JSX.Element;
|
|
2728
|
+
|
|
2729
|
+
declare type QuantityPickerPropsOnChange = (value: number) => void;
|
|
2730
|
+
declare type QuantityPickerPropsControlled = {
|
|
2731
|
+
value: number;
|
|
2732
|
+
onChange: QuantityPickerPropsOnChange;
|
|
2733
|
+
};
|
|
2734
|
+
declare type QuantityPickerPropsUncontrolled = {
|
|
2735
|
+
value?: never;
|
|
2736
|
+
onChange?: QuantityPickerPropsOnChange;
|
|
2737
|
+
};
|
|
2738
|
+
declare type QuantityPickerProps = {
|
|
2739
|
+
initialValue?: number;
|
|
2740
|
+
maxValue?: number;
|
|
2741
|
+
testId?: string;
|
|
2742
|
+
} & (QuantityPickerPropsControlled | QuantityPickerPropsUncontrolled);
|
|
2743
|
+
declare const QuantityPicker: ({ initialValue, maxValue, value, testId, onChange, }: QuantityPickerProps) => JSX.Element;
|
|
2744
|
+
|
|
2745
|
+
interface RadioProps$1 {
|
|
2746
|
+
name: string;
|
|
2747
|
+
value: string;
|
|
2748
|
+
id: string;
|
|
2749
|
+
label: string | ReactFragment;
|
|
2750
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2751
|
+
checked?: boolean;
|
|
2752
|
+
disabled?: boolean;
|
|
2753
|
+
onChange: (option: RadioGroupOption) => void;
|
|
2754
|
+
style?: React__default.CSSProperties;
|
|
2755
|
+
}
|
|
2756
|
+
declare const RadioPrimary: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps$1) => JSX.Element;
|
|
2757
|
+
|
|
2758
|
+
interface RadioGroupInputProps {
|
|
2759
|
+
name: string;
|
|
2760
|
+
options?: RadioGroupOption[];
|
|
2761
|
+
value?: RadioGroupOption;
|
|
2762
|
+
onChange: (value: RadioGroupOption) => void;
|
|
2763
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2764
|
+
disabled?: boolean;
|
|
2765
|
+
style?: React__default.CSSProperties;
|
|
2766
|
+
}
|
|
2767
|
+
declare const RadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: RadioGroupInputProps) => JSX.Element;
|
|
2768
|
+
|
|
2769
|
+
interface ClubRadioGroupInputProps {
|
|
2770
|
+
name: string;
|
|
2771
|
+
options?: RadioGroupOption[];
|
|
2772
|
+
value?: RadioGroupOption;
|
|
2773
|
+
onChange: (value: RadioGroupOption) => void;
|
|
2774
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2775
|
+
disabled?: boolean;
|
|
2776
|
+
style?: React__default.CSSProperties;
|
|
2777
|
+
}
|
|
2778
|
+
declare const ClubRadioGroupInput: ({ style, name, options, value, onChange, size, disabled, }: ClubRadioGroupInputProps) => JSX.Element;
|
|
2779
|
+
|
|
2780
|
+
interface RadioProps {
|
|
2781
|
+
name: string;
|
|
2782
|
+
value: string;
|
|
2783
|
+
id: string;
|
|
2784
|
+
label: string | ReactFragment;
|
|
2785
|
+
size?: ComponentSize.Small | ComponentSize.Medium | ComponentSize.Large;
|
|
2786
|
+
checked?: boolean;
|
|
2787
|
+
disabled?: boolean;
|
|
2788
|
+
onChange: (option: RadioGroupOption) => void;
|
|
2789
|
+
style?: React__default.CSSProperties;
|
|
2790
|
+
}
|
|
2791
|
+
declare const RadioInput: ({ style, name, value, id, label, checked, disabled, onChange, size, }: RadioProps) => JSX.Element;
|
|
2792
|
+
|
|
2793
|
+
interface StarListProps {
|
|
2794
|
+
rating: number;
|
|
2795
|
+
size?: ComponentSize;
|
|
2796
|
+
starsNumber: number;
|
|
2797
|
+
fill: string;
|
|
2798
|
+
}
|
|
2799
|
+
declare const StarList: ({ rating, starsNumber, fill, size, }: StarListProps) => JSX.Element;
|
|
2800
|
+
|
|
2801
|
+
interface ReviewProps$1 {
|
|
2802
|
+
reviewId: string;
|
|
2803
|
+
reviewerName: string;
|
|
2804
|
+
date: Date;
|
|
2805
|
+
rating: number;
|
|
2806
|
+
stars: {
|
|
2807
|
+
color: string;
|
|
2808
|
+
size: ComponentSize.Medium | ComponentSize.Small;
|
|
2809
|
+
};
|
|
2810
|
+
title: string;
|
|
2811
|
+
description: string;
|
|
2812
|
+
image?: {
|
|
2813
|
+
src: string;
|
|
2814
|
+
alt: string;
|
|
2815
|
+
};
|
|
2816
|
+
modalId: string;
|
|
2817
|
+
maxFullScreen?: boolean;
|
|
2818
|
+
verified?: boolean;
|
|
2819
|
+
productImage?: string;
|
|
2820
|
+
productTitle?: string;
|
|
2821
|
+
productLink?: string;
|
|
2822
|
+
helpfulCount?: number;
|
|
2823
|
+
helpfulAction?: (id: string) => void;
|
|
2824
|
+
notHelpfulCount?: number;
|
|
2825
|
+
notHelpfulAction?: (id: string) => void;
|
|
2826
|
+
}
|
|
2827
|
+
declare const Review$1: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps$1) => JSX.Element;
|
|
2828
|
+
|
|
2829
|
+
interface ReviewProps {
|
|
2830
|
+
reviewId: string;
|
|
2831
|
+
reviewerName: string;
|
|
2832
|
+
date: Date;
|
|
2833
|
+
rating: number;
|
|
2834
|
+
stars: {
|
|
2835
|
+
color: string;
|
|
2836
|
+
size: ComponentSize.Medium | ComponentSize.Small;
|
|
2837
|
+
};
|
|
2838
|
+
title: string;
|
|
2839
|
+
description: string;
|
|
2840
|
+
images?: {
|
|
2841
|
+
src: string;
|
|
2842
|
+
alt: string;
|
|
2843
|
+
}[];
|
|
2844
|
+
reviewVariant?: string;
|
|
2845
|
+
onClickImage?: (image: string) => void;
|
|
2846
|
+
helpfulActionText?: string;
|
|
2847
|
+
helpfulAction?: (id: string) => void;
|
|
2848
|
+
helpfulCount?: number;
|
|
2849
|
+
}
|
|
2850
|
+
declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, images, reviewVariant, onClickImage, helpfulActionText, helpfulAction, helpfulCount, }: ReviewProps) => JSX.Element;
|
|
2851
|
+
|
|
2852
|
+
interface ReviewsHeaderProps {
|
|
2853
|
+
title?: string;
|
|
2854
|
+
rating: number;
|
|
2855
|
+
reviews: number;
|
|
2856
|
+
reviewsText: string;
|
|
2857
|
+
reviewsSummary: string[];
|
|
2858
|
+
onClickReview: (reveiw: string) => void;
|
|
2859
|
+
}
|
|
2860
|
+
declare const ReviewsHeader: ({ title, rating, reviews, reviewsText, reviewsSummary, onClickReview, }: ReviewsHeaderProps) => JSX.Element;
|
|
2861
|
+
|
|
2862
|
+
interface ScrollToTopProps {
|
|
2863
|
+
scrollToTopText: string;
|
|
2410
2864
|
onClick: () => void;
|
|
2411
|
-
|
|
2412
|
-
|
|
2865
|
+
fill?: string;
|
|
2866
|
+
Icon?: React__default.FC<IconProps$1>;
|
|
2867
|
+
}
|
|
2868
|
+
declare const ScrollToTop: ({ scrollToTopText, onClick, fill, Icon, }: ScrollToTopProps) => JSX.Element;
|
|
2869
|
+
|
|
2870
|
+
declare type SearchBarProps = {
|
|
2871
|
+
suggestions: SearchBarOptionItem[];
|
|
2872
|
+
resultOptions: SearchBarOptionItem[];
|
|
2873
|
+
onChange: (text: string) => void;
|
|
2874
|
+
onSearch: (term: string) => void;
|
|
2875
|
+
onClose: () => void;
|
|
2876
|
+
resultsPanelDataTestId?: string;
|
|
2877
|
+
allResults?: number;
|
|
2878
|
+
initialTerm?: string;
|
|
2879
|
+
shouldClear?: boolean;
|
|
2880
|
+
isBlogSearchBar?: boolean;
|
|
2881
|
+
ariaLabel?: string;
|
|
2882
|
+
placeholder?: string;
|
|
2883
|
+
id?: string;
|
|
2884
|
+
autoComplete?: string;
|
|
2885
|
+
};
|
|
2886
|
+
declare const SearchBar: React__default.FC<SearchBarProps>;
|
|
2413
2887
|
|
|
2414
|
-
interface
|
|
2415
|
-
|
|
2416
|
-
|
|
2888
|
+
interface SearchNavigationProps {
|
|
2889
|
+
returnText?: string;
|
|
2890
|
+
returnUrl?: string;
|
|
2891
|
+
steps?: string[];
|
|
2892
|
+
returnAction?: () => void;
|
|
2893
|
+
}
|
|
2894
|
+
declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
|
|
2417
2895
|
|
|
2418
|
-
interface
|
|
2419
|
-
|
|
2896
|
+
interface CardBodyProps {
|
|
2897
|
+
children: ReactNode;
|
|
2420
2898
|
}
|
|
2421
2899
|
|
|
2422
|
-
interface
|
|
2423
|
-
|
|
2900
|
+
interface CardSectionProps {
|
|
2901
|
+
children: ReactNode;
|
|
2424
2902
|
}
|
|
2425
2903
|
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2904
|
+
interface borderProps {
|
|
2905
|
+
borderColor: string;
|
|
2906
|
+
borderWidth: string;
|
|
2907
|
+
}
|
|
2908
|
+
interface CardProps {
|
|
2909
|
+
children: ReactNode;
|
|
2910
|
+
backgroundColor?: string;
|
|
2911
|
+
widthAuto?: boolean;
|
|
2912
|
+
border?: borderProps;
|
|
2913
|
+
flex?: boolean;
|
|
2914
|
+
}
|
|
2915
|
+
declare const _default: (({ children, backgroundColor, widthAuto, border, flex }: CardProps) => JSX.Element) & {
|
|
2916
|
+
Header: ({ children }: CardSectionProps) => JSX.Element;
|
|
2917
|
+
Footer: ({ children }: CardSectionProps) => JSX.Element;
|
|
2918
|
+
Body: ({ children }: CardBodyProps) => JSX.Element;
|
|
2432
2919
|
};
|
|
2433
2920
|
|
|
2434
|
-
declare type
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
declare type QuantityPickerPropsUncontrolled = {
|
|
2440
|
-
value?: never;
|
|
2441
|
-
onChange?: QuantityPickerPropsOnChange;
|
|
2921
|
+
declare type PortalProps = {
|
|
2922
|
+
id: string;
|
|
2923
|
+
className?: string;
|
|
2924
|
+
overflow?: boolean;
|
|
2925
|
+
style?: CSSProperties;
|
|
2442
2926
|
};
|
|
2443
|
-
declare
|
|
2444
|
-
initialValue?: number;
|
|
2445
|
-
maxValue?: number;
|
|
2446
|
-
testId?: string;
|
|
2447
|
-
} & (QuantityPickerPropsControlled | QuantityPickerPropsUncontrolled);
|
|
2448
|
-
declare const QuantityPicker: ({ initialValue, maxValue, value, testId, onChange, }: QuantityPickerProps) => JSX.Element;
|
|
2927
|
+
declare const Portal: FC<PortalProps>;
|
|
2449
2928
|
|
|
2450
2929
|
declare type SpacingProps = {
|
|
2451
2930
|
size: number;
|
|
@@ -2454,50 +2933,85 @@ declare type SpacingProps = {
|
|
|
2454
2933
|
};
|
|
2455
2934
|
declare const Spacing: FC<SpacingProps>;
|
|
2456
2935
|
|
|
2457
|
-
interface
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
quantity: number;
|
|
2465
|
-
icon: string;
|
|
2466
|
-
tag?: string;
|
|
2467
|
-
};
|
|
2936
|
+
interface ShortBannerProps {
|
|
2937
|
+
title: string;
|
|
2938
|
+
bannerText: string;
|
|
2939
|
+
backgroundColor: string;
|
|
2940
|
+
alignCenter?: boolean;
|
|
2941
|
+
widthAuto?: boolean;
|
|
2942
|
+
textColor: string;
|
|
2468
2943
|
}
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2944
|
+
declare const ShortBanner: ({ textColor, title, bannerText, backgroundColor, alignCenter, widthAuto, }: ShortBannerProps) => JSX.Element;
|
|
2945
|
+
|
|
2946
|
+
interface TableProps$1 {
|
|
2947
|
+
headers: string[];
|
|
2948
|
+
data: string[][];
|
|
2949
|
+
newSizeTableCss?: boolean;
|
|
2474
2950
|
}
|
|
2475
|
-
declare const
|
|
2951
|
+
declare const SizeChartTable: ({ headers, data, newSizeTableCss }: TableProps$1) => JSX.Element;
|
|
2476
2952
|
|
|
2477
|
-
interface
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
filterByText: string;
|
|
2482
|
-
clearAllText: string;
|
|
2483
|
-
filtersSelectText: string;
|
|
2484
|
-
isMobile: boolean;
|
|
2485
|
-
applyText: string;
|
|
2486
|
-
mobileBackArrowClick: () => void;
|
|
2487
|
-
mobileApplyButtonClick: () => void;
|
|
2488
|
-
onResetValues: () => void;
|
|
2953
|
+
interface TableProps {
|
|
2954
|
+
headers: string[];
|
|
2955
|
+
data: string[][];
|
|
2956
|
+
className?: string;
|
|
2489
2957
|
}
|
|
2490
|
-
declare const
|
|
2958
|
+
declare const SizeTable: ({ headers, data, className }: TableProps) => JSX.Element;
|
|
2491
2959
|
|
|
2492
|
-
interface
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2960
|
+
interface SizeFitGuideProps {
|
|
2961
|
+
title: string;
|
|
2962
|
+
fitPercentage?: number;
|
|
2963
|
+
onClick: () => void;
|
|
2964
|
+
onClickFitPercentage?: () => void;
|
|
2497
2965
|
}
|
|
2498
|
-
declare const
|
|
2966
|
+
declare const SizeFitGuide: ({ title, fitPercentage, onClick, onClickFitPercentage, }: SizeFitGuideProps) => JSX.Element;
|
|
2967
|
+
|
|
2968
|
+
interface SizeSelectorProps {
|
|
2969
|
+
label: string;
|
|
2970
|
+
sizes: SizeOption[];
|
|
2971
|
+
selectedValue: SizeOption;
|
|
2972
|
+
onChange: (size: SizeOption) => void;
|
|
2973
|
+
inline?: boolean;
|
|
2974
|
+
width?: string;
|
|
2975
|
+
}
|
|
2976
|
+
declare const SizeSelector: ({ label, sizes, selectedValue, onChange, inline, width, }: SizeSelectorProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2977
|
+
|
|
2978
|
+
interface SliderNavigationProps {
|
|
2979
|
+
children: JSX.Element | JSX.Element[] | StyledComponent<any>;
|
|
2980
|
+
infinite: boolean;
|
|
2981
|
+
adaptiveHeight: boolean;
|
|
2982
|
+
dotsSize?: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
2983
|
+
dotListMarginTop?: number;
|
|
2984
|
+
initialSlide?: number;
|
|
2985
|
+
arrows?: {
|
|
2986
|
+
arrowWidth: number;
|
|
2987
|
+
arrowHeight: number;
|
|
2988
|
+
arrowPadding: number;
|
|
2989
|
+
};
|
|
2990
|
+
dots?: boolean;
|
|
2991
|
+
slidesToShow?: number;
|
|
2992
|
+
speed?: number;
|
|
2993
|
+
}
|
|
2994
|
+
declare const SliderNavigation: ({ children, infinite, arrows, adaptiveHeight, dotsSize, dotListMarginTop, initialSlide, dots, slidesToShow, speed, }: SliderNavigationProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2995
|
+
|
|
2996
|
+
interface StrengthBarProps {
|
|
2997
|
+
barsFilled?: number;
|
|
2998
|
+
supportText?: string;
|
|
2999
|
+
}
|
|
3000
|
+
declare const StrengthBars: ({ barsFilled, supportText }: StrengthBarProps) => JSX.Element;
|
|
2499
3001
|
|
|
2500
3002
|
interface TabProps$1 {
|
|
3003
|
+
title: string;
|
|
3004
|
+
titleSize?: string;
|
|
3005
|
+
selectedTitleWeight?: number;
|
|
3006
|
+
height?: string;
|
|
3007
|
+
selected?: boolean;
|
|
3008
|
+
color?: string;
|
|
3009
|
+
tabsMaxWidth?: string;
|
|
3010
|
+
onClick: (clickedTab: string) => void;
|
|
3011
|
+
}
|
|
3012
|
+
declare const Tab: ({ title, titleSize, height, selectedTitleWeight, selected, onClick, color, tabsMaxWidth, }: TabProps$1) => JSX.Element;
|
|
3013
|
+
|
|
3014
|
+
interface TabProps {
|
|
2501
3015
|
title: string;
|
|
2502
3016
|
content: ReactNode;
|
|
2503
3017
|
}
|
|
@@ -2505,44 +3019,183 @@ interface TabsProps {
|
|
|
2505
3019
|
backgroundColor?: string;
|
|
2506
3020
|
initialSelected?: string;
|
|
2507
3021
|
tabsMaxWidth?: string;
|
|
2508
|
-
tabs: TabProps
|
|
3022
|
+
tabs: TabProps[];
|
|
2509
3023
|
}
|
|
2510
3024
|
declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
|
|
2511
3025
|
|
|
2512
|
-
interface
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
|
|
3026
|
+
interface CategoryTagProps {
|
|
3027
|
+
text: string;
|
|
3028
|
+
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
3029
|
+
className?: string;
|
|
3030
|
+
styledBorder?: boolean;
|
|
3031
|
+
}
|
|
3032
|
+
declare const CategoryTag: ({ text, size, className, styledBorder }: CategoryTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3033
|
+
|
|
3034
|
+
interface CategorySquareTagProps {
|
|
3035
|
+
text: string;
|
|
3036
|
+
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
3037
|
+
className?: string;
|
|
3038
|
+
styledBorder?: boolean;
|
|
3039
|
+
}
|
|
3040
|
+
declare const CategorySquareTag: ({ text, size, className, styledBorder, }: CategorySquareTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3041
|
+
|
|
3042
|
+
interface SeasonOfferTagProps {
|
|
3043
|
+
text: string;
|
|
3044
|
+
backgroundColor?: string;
|
|
3045
|
+
size: ComponentSize.Large | ComponentSize.Medium | ComponentSize.Small;
|
|
3046
|
+
className?: string;
|
|
3047
|
+
styledBorder?: boolean;
|
|
3048
|
+
bottomRightBorderRounded?: string;
|
|
3049
|
+
allBordersRounded?: {
|
|
3050
|
+
value: string;
|
|
3051
|
+
size?: ComponentSize;
|
|
3052
|
+
};
|
|
3053
|
+
color?: string;
|
|
3054
|
+
}
|
|
3055
|
+
declare const SeasonOfferTag: ({ text, backgroundColor, size, className, styledBorder, bottomRightBorderRounded, allBordersRounded, color, }: SeasonOfferTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3056
|
+
|
|
3057
|
+
interface SeasonOfferRoundedTagProps {
|
|
3058
|
+
text: string;
|
|
3059
|
+
backgroundColor?: string;
|
|
3060
|
+
size: ComponentSize;
|
|
3061
|
+
className?: string;
|
|
3062
|
+
}
|
|
3063
|
+
declare const SeasonOfferRoundedTag: ({ text, backgroundColor, size, className, }: SeasonOfferRoundedTagProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3064
|
+
|
|
3065
|
+
interface BaseButtonProps {
|
|
3066
|
+
children: React__default.ReactNode;
|
|
3067
|
+
renderLeading?: React__default.ReactNode;
|
|
3068
|
+
renderTrailing?: React__default.ReactNode;
|
|
3069
|
+
disabled?: boolean;
|
|
3070
|
+
type?: ButtonType;
|
|
3071
|
+
onClick: () => void;
|
|
3072
|
+
className?: string;
|
|
3073
|
+
inline?: boolean;
|
|
3074
|
+
uppercase?: boolean;
|
|
3075
|
+
testId?: string;
|
|
3076
|
+
id?: string;
|
|
3077
|
+
}
|
|
3078
|
+
|
|
3079
|
+
declare type BaseProps = Pick<BaseButtonProps, 'disabled' | 'type' | 'onClick'>;
|
|
3080
|
+
interface TextButtonProps$1 extends BaseProps {
|
|
3081
|
+
text: string;
|
|
3082
|
+
LeadingIcon?: IconType;
|
|
3083
|
+
TrailingIcon?: IconType;
|
|
3084
|
+
iconColor?: string;
|
|
3085
|
+
size?: ComponentSize;
|
|
3086
|
+
uppercase?: boolean;
|
|
3087
|
+
}
|
|
3088
|
+
declare const TextButton: ({ text, LeadingIcon, TrailingIcon, iconColor, disabled, type, size, uppercase, onClick, }: TextButtonProps$1) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3089
|
+
|
|
3090
|
+
declare const Text: ({ variant, children, testId, asSpan, ...allProps }: TextProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
3091
|
+
declare type TextHeroProps = {
|
|
3092
|
+
variant: 'hero1' | 'hero2' | 'hero3';
|
|
3093
|
+
weight?: 'heavy' | 'bold' | 'demi';
|
|
3094
|
+
size?: 'regular' | 'xsmall';
|
|
3095
|
+
underline?: never;
|
|
3096
|
+
disabled?: never;
|
|
3097
|
+
wide?: never;
|
|
3098
|
+
original?: never;
|
|
3099
|
+
allCaps?: never;
|
|
3100
|
+
href?: never;
|
|
3101
|
+
};
|
|
3102
|
+
declare type TextDisplayProps = {
|
|
3103
|
+
variant: 'display1' | 'display2' | 'display3';
|
|
3104
|
+
weight?: 'bold' | 'demi';
|
|
3105
|
+
size?: 'regular' | 'xsmall';
|
|
3106
|
+
underline?: never;
|
|
3107
|
+
disabled?: never;
|
|
3108
|
+
wide?: never;
|
|
3109
|
+
original?: never;
|
|
3110
|
+
allCaps?: never;
|
|
3111
|
+
href?: never;
|
|
3112
|
+
};
|
|
3113
|
+
declare type TextHeadingProps = {
|
|
3114
|
+
variant: 'heading1' | 'heading2' | 'heading3' | 'heading4' | 'heading5' | 'heading6' | 'heading7' | 'heading8';
|
|
3115
|
+
weight?: 'bold' | 'demi' | 'regular';
|
|
3116
|
+
size?: 'regular' | 'xsmall';
|
|
3117
|
+
underline?: never;
|
|
3118
|
+
disabled?: never;
|
|
3119
|
+
wide?: never;
|
|
3120
|
+
original?: never;
|
|
3121
|
+
allCaps?: never;
|
|
3122
|
+
href?: never;
|
|
3123
|
+
};
|
|
3124
|
+
declare type TextBodyProps = {
|
|
3125
|
+
variant: 'body';
|
|
3126
|
+
size?: 'large' | 'regular' | 'small' | 'xsmall';
|
|
3127
|
+
weight?: 'bold' | 'demi' | 'regular';
|
|
3128
|
+
underline?: never;
|
|
3129
|
+
disabled?: never;
|
|
3130
|
+
wide?: never;
|
|
3131
|
+
original?: never;
|
|
3132
|
+
allCaps?: never;
|
|
3133
|
+
href?: never;
|
|
3134
|
+
};
|
|
3135
|
+
declare type TextButtonProps = {
|
|
3136
|
+
variant: 'button';
|
|
3137
|
+
size: 'large' | 'regular' | 'small';
|
|
3138
|
+
weight: 'bold' | 'demi';
|
|
3139
|
+
underline?: never;
|
|
3140
|
+
disabled?: never;
|
|
3141
|
+
wide?: boolean;
|
|
3142
|
+
original?: never;
|
|
3143
|
+
allCaps?: never;
|
|
3144
|
+
href?: never;
|
|
3145
|
+
};
|
|
3146
|
+
declare type TextPricingProps = {
|
|
3147
|
+
variant: 'pricing';
|
|
3148
|
+
size: 'large' | 'medium' | 'regular' | 'small';
|
|
3149
|
+
weight?: never;
|
|
3150
|
+
underline?: never;
|
|
3151
|
+
disabled?: never;
|
|
3152
|
+
wide?: never;
|
|
3153
|
+
original?: boolean;
|
|
3154
|
+
allCaps?: never;
|
|
3155
|
+
href?: never;
|
|
3156
|
+
};
|
|
3157
|
+
declare type TextLinkProps = {
|
|
3158
|
+
variant: 'link';
|
|
3159
|
+
weight?: 'demi' | 'regular';
|
|
3160
|
+
size?: 'regular' | 'small';
|
|
3161
|
+
underline?: boolean;
|
|
3162
|
+
disabled?: boolean;
|
|
3163
|
+
wide?: never;
|
|
3164
|
+
original?: never;
|
|
3165
|
+
allCaps?: never;
|
|
3166
|
+
href?: string;
|
|
3167
|
+
};
|
|
3168
|
+
declare type TextLabelProps = {
|
|
3169
|
+
variant: 'label';
|
|
2518
3170
|
color?: string;
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
|
|
2523
|
-
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
|
|
2528
|
-
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
3171
|
+
weight?: 'regular' | 'demi';
|
|
3172
|
+
size?: 'large' | 'regular' | 'small';
|
|
3173
|
+
underline?: never;
|
|
3174
|
+
disabled?: boolean;
|
|
3175
|
+
wide?: never;
|
|
3176
|
+
original?: never;
|
|
3177
|
+
allCaps?: never;
|
|
3178
|
+
href?: never;
|
|
3179
|
+
} & LabelHTMLAttributes<'label'>;
|
|
3180
|
+
declare type TextTagProps = {
|
|
3181
|
+
variant: 'tag';
|
|
3182
|
+
size?: 'regular' | 'small' | 'x-small';
|
|
3183
|
+
weight?: 'regular' | 'demi' | 'bold';
|
|
3184
|
+
underline?: never;
|
|
3185
|
+
disabled?: boolean;
|
|
3186
|
+
wide?: never;
|
|
3187
|
+
original?: never;
|
|
3188
|
+
allCaps?: boolean;
|
|
3189
|
+
href?: never;
|
|
3190
|
+
};
|
|
3191
|
+
declare type TextProps<T = Element> = AriaAttributes & HTMLAttributes<T> & {
|
|
3192
|
+
children: ReactNode;
|
|
3193
|
+
style?: CSSProperties;
|
|
3194
|
+
className?: string;
|
|
3195
|
+
testId?: string;
|
|
3196
|
+
asSpan?: boolean;
|
|
2540
3197
|
color?: string;
|
|
2541
|
-
|
|
2542
|
-
importantNoteText: string;
|
|
2543
|
-
text: string;
|
|
2544
|
-
}
|
|
2545
|
-
declare const Note: ({ accentColor, color, backgroundColor, importantNoteText, text, }: NoteProps) => JSX.Element;
|
|
3198
|
+
} & (TextHeroProps | TextDisplayProps | TextHeadingProps | TextBodyProps | TextLinkProps | TextButtonProps | TextPricingProps | TextLabelProps | TextTagProps);
|
|
2546
3199
|
|
|
2547
3200
|
interface TextWithImageProps {
|
|
2548
3201
|
title: string;
|
|
@@ -2557,48 +3210,92 @@ interface TextWithImageProps {
|
|
|
2557
3210
|
btnBGColor?: string;
|
|
2558
3211
|
btnHoverBGColor?: string;
|
|
2559
3212
|
imgVideo: imageVideoProps;
|
|
2560
|
-
contentAfterButton?:
|
|
2561
|
-
titleStyle?:
|
|
2562
|
-
textStyle?:
|
|
3213
|
+
contentAfterButton?: React__default.ReactNode;
|
|
3214
|
+
titleStyle?: React__default.CSSProperties;
|
|
3215
|
+
textStyle?: React__default.CSSProperties;
|
|
2563
3216
|
buttonWideOnMobile?: boolean;
|
|
2564
3217
|
}
|
|
2565
3218
|
declare const TextWithImage: ({ title, text, children, buttomText, backgroundColor, imageLeftSide, titleStyle, textStyle, buttonWideOnMobile, ...props }: TextWithImageProps) => _emotion_react_jsx_runtime.JSX.Element;
|
|
2566
3219
|
|
|
2567
|
-
interface
|
|
2568
|
-
|
|
2569
|
-
|
|
3220
|
+
interface TimeProps {
|
|
3221
|
+
hours: number;
|
|
3222
|
+
minutes: number;
|
|
3223
|
+
seconds: number;
|
|
2570
3224
|
}
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
title: string;
|
|
2575
|
-
bannerText: string;
|
|
2576
|
-
backgroundColor: string;
|
|
2577
|
-
alignCenter?: boolean;
|
|
2578
|
-
widthAuto?: boolean;
|
|
2579
|
-
textColor: string;
|
|
3225
|
+
interface TimerProps extends TimeProps {
|
|
3226
|
+
onTimeUp: () => void;
|
|
3227
|
+
displayZeroValues?: boolean;
|
|
2580
3228
|
}
|
|
2581
|
-
declare const
|
|
3229
|
+
declare const Timer: ({ onTimeUp, displayZeroValues, ...rest }: TimerProps) => JSX.Element;
|
|
2582
3230
|
|
|
2583
|
-
interface
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
3231
|
+
interface TooltipProps {
|
|
3232
|
+
children: React__default.ReactNode;
|
|
3233
|
+
position: ComponentPosition;
|
|
3234
|
+
align?: 'start' | 'center' | 'end';
|
|
3235
|
+
content?: {
|
|
3236
|
+
text: string;
|
|
3237
|
+
color?: string;
|
|
3238
|
+
};
|
|
3239
|
+
backgroundColor?: string;
|
|
3240
|
+
maxWidth?: string;
|
|
3241
|
+
header?: {
|
|
3242
|
+
title: string;
|
|
3243
|
+
titleColor?: string;
|
|
3244
|
+
Icon?: IconType;
|
|
3245
|
+
iconFill?: string;
|
|
3246
|
+
};
|
|
3247
|
+
onClick?: () => void;
|
|
2592
3248
|
}
|
|
2593
|
-
declare const
|
|
3249
|
+
declare const Tooltip: ({ children, position, content, backgroundColor, align, maxWidth, onClick, header, }: TooltipProps) => JSX.Element;
|
|
2594
3250
|
|
|
2595
|
-
|
|
2596
|
-
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
3251
|
+
declare type SubtotalOption = {
|
|
3252
|
+
label: string;
|
|
3253
|
+
value: string;
|
|
3254
|
+
};
|
|
3255
|
+
declare type Coupon = {
|
|
3256
|
+
code: string;
|
|
3257
|
+
amount: string;
|
|
3258
|
+
};
|
|
3259
|
+
interface SubtotalProps {
|
|
3260
|
+
subtotal: SubtotalOption;
|
|
3261
|
+
shipping: SubtotalOption;
|
|
3262
|
+
taxes: SubtotalOption;
|
|
3263
|
+
highlightColor?: string;
|
|
3264
|
+
coupon?: {
|
|
3265
|
+
couponText: string;
|
|
3266
|
+
appliedText: string;
|
|
3267
|
+
coupons: Coupon[];
|
|
3268
|
+
};
|
|
3269
|
+
}
|
|
3270
|
+
|
|
3271
|
+
interface TotalProps {
|
|
3272
|
+
total: string;
|
|
3273
|
+
currency: string;
|
|
3274
|
+
highlightColor?: string;
|
|
3275
|
+
saving?: {
|
|
3276
|
+
amount: string;
|
|
3277
|
+
savingText: string;
|
|
3278
|
+
};
|
|
3279
|
+
}
|
|
3280
|
+
|
|
3281
|
+
declare const Totals: {
|
|
3282
|
+
Total: ({ total, currency, saving, highlightColor }: TotalProps) => JSX.Element;
|
|
3283
|
+
Subtotal: ({ subtotal, shipping, taxes, coupon, highlightColor, }: SubtotalProps) => JSX.Element;
|
|
3284
|
+
};
|
|
3285
|
+
|
|
3286
|
+
interface Checkpoint$1 {
|
|
3287
|
+
day: string;
|
|
3288
|
+
date: string;
|
|
3289
|
+
statusMessage: string;
|
|
2600
3290
|
}
|
|
2601
|
-
|
|
3291
|
+
interface TrackingProgressV2Props {
|
|
3292
|
+
checkPoints: Checkpoint$1[];
|
|
3293
|
+
amountOfCheckPoints: number;
|
|
3294
|
+
resumedStyle?: boolean;
|
|
3295
|
+
warning?: boolean;
|
|
3296
|
+
activeCheckpointColor?: string;
|
|
3297
|
+
}
|
|
3298
|
+
declare const TrackingProgressV2: ({ checkPoints, amountOfCheckPoints, resumedStyle, activeCheckpointColor, warning, }: TrackingProgressV2Props) => JSX.Element;
|
|
2602
3299
|
|
|
2603
3300
|
interface Checkpoint {
|
|
2604
3301
|
day: string;
|
|
@@ -2611,54 +3308,26 @@ interface TrackingProgressProps {
|
|
|
2611
3308
|
}
|
|
2612
3309
|
declare const TrackingProgress: ({ checkPoints, amountOfCheckPoints }: TrackingProgressProps) => JSX.Element;
|
|
2613
3310
|
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
|
|
2622
|
-
|
|
3311
|
+
declare type SpinnerProps = {
|
|
3312
|
+
fill: string;
|
|
3313
|
+
background: string;
|
|
3314
|
+
animationDuration?: number;
|
|
3315
|
+
complete?: boolean;
|
|
3316
|
+
completeIconStroke?: number;
|
|
3317
|
+
size?: string;
|
|
3318
|
+
borderSize?: ComponentSize;
|
|
3319
|
+
};
|
|
3320
|
+
declare const Spinner: React.FC<SpinnerProps>;
|
|
2623
3321
|
|
|
2624
|
-
|
|
2625
|
-
reviewId: string;
|
|
2626
|
-
reviewerName: string;
|
|
2627
|
-
date: Date;
|
|
2628
|
-
rating: number;
|
|
2629
|
-
stars: {
|
|
2630
|
-
color: string;
|
|
2631
|
-
size: ComponentSize.Medium | ComponentSize.Small;
|
|
2632
|
-
};
|
|
2633
|
-
title: string;
|
|
2634
|
-
description: string;
|
|
2635
|
-
image?: {
|
|
2636
|
-
src: string;
|
|
2637
|
-
alt: string;
|
|
2638
|
-
};
|
|
2639
|
-
modalId: string;
|
|
2640
|
-
maxFullScreen?: boolean;
|
|
2641
|
-
verified?: boolean;
|
|
2642
|
-
productImage?: string;
|
|
2643
|
-
productTitle?: string;
|
|
2644
|
-
productLink?: string;
|
|
2645
|
-
helpfulCount?: number;
|
|
2646
|
-
helpfulAction?: (id: string) => void;
|
|
2647
|
-
notHelpfulCount?: number;
|
|
2648
|
-
notHelpfulAction?: (id: string) => void;
|
|
2649
|
-
}
|
|
2650
|
-
declare const Review: ({ reviewId, reviewerName, date, rating, stars, title, description, image, modalId, maxFullScreen, verified, productImage, productTitle, productLink, helpfulCount, helpfulAction, notHelpfulCount, notHelpfulAction, }: ReviewProps) => JSX.Element;
|
|
3322
|
+
declare const useOnClickOutside: <T extends HTMLElement = HTMLElement>(ref: RefObject<T>, handler: (event: Event) => void) => void;
|
|
2651
3323
|
|
|
2652
|
-
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
borderRadiusVariant?: boolean;
|
|
2660
|
-
}
|
|
2661
|
-
declare const ProductGalleryMobileV2: ({ images, selectedValue, topTag, bottomTag, productImageDataTestId, slideDotsDataTestId, borderRadiusVariant, }: ProductGalleryMobileProps) => JSX.Element;
|
|
3324
|
+
declare const useWindowDimensions: (breakpoints: ThemeBreakpoints) => {
|
|
3325
|
+
isMobile: boolean;
|
|
3326
|
+
windowDimensions: {
|
|
3327
|
+
width: number;
|
|
3328
|
+
height: number;
|
|
3329
|
+
};
|
|
3330
|
+
};
|
|
2662
3331
|
|
|
2663
3332
|
declare global {
|
|
2664
3333
|
interface Events {
|
|
@@ -2669,16 +3338,6 @@ declare global {
|
|
|
2669
3338
|
}
|
|
2670
3339
|
}
|
|
2671
3340
|
|
|
2672
|
-
declare const useOnClickOutside: <T extends HTMLElement = HTMLElement>(ref: RefObject<T>, handler: (event: Event) => void) => void;
|
|
2673
|
-
|
|
2674
|
-
declare const useWindowDimensions: (breakpoints: ThemeBreakpoints) => {
|
|
2675
|
-
isMobile: boolean;
|
|
2676
|
-
windowDimensions: {
|
|
2677
|
-
width: number;
|
|
2678
|
-
height: number;
|
|
2679
|
-
};
|
|
2680
|
-
};
|
|
2681
|
-
|
|
2682
3341
|
/**
|
|
2683
3342
|
* @returns number formatted with "," and 2 decimals as string
|
|
2684
3343
|
*/
|
|
@@ -2699,4 +3358,8 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
2699
3358
|
currency?: string | undefined;
|
|
2700
3359
|
}) => string;
|
|
2701
3360
|
|
|
2702
|
-
|
|
3361
|
+
declare const getSrcSet: (imgLink: string, ...breakpoints: number[]) => string;
|
|
3362
|
+
|
|
3363
|
+
declare const mediaQueries: facepaint.DynamicStyleFunction;
|
|
3364
|
+
|
|
3365
|
+
export { AbsorbencyLevel, Accordion, AccordionOptions, AmazonButton, AssetsProvider, Autoship, BeforeAfterCard, BeforeAfterVariant, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, BuyNowPayLater, CTAProps, _default as Card, CardSectionType, CartProductItem, CategorySquareTag, CategoryTag, Checkbox, ClubOfferTag, ClubRadioGroupInput, Collection, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownDialog, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitGuarantee, FitPredictor, HurryUp, Icon, IconButton, IconProps, IconWithOpacityProps, IconsWithTitle, Image, ImageCardWithDescription, ImageType, Input, InputValidationType, Icon$1 as LibIcon, Props$2 as LibIconProps, Modal, MotivatorProgressBar, MultiColorPicker, Note, OfferBanner, OrderBar, Overlay, PackSelector, PackSelectorV2, Pagination, PaginatorBlog, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, PriceLabelV2, ProductGallery, ProductGalleryMobile, ProductGalleryMobileV2, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, RadioPrimary, Rating, Review, Review$1 as ReviewDetail, ReviewsHeader, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, ShortBanner, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeChartTable, SizeDropdown, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, SpinnerProps, StarList, StrengthBars, Tab, Tabs, Text, TextButton, TextWithImage, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, TrackingProgress, TrackingProgressV2, WithTestId, componentSizeMapper, decimalFormat, formatPrice, getSrcSet, imageVideoProps, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, mediaQueries, modalEvent, SeasonOfferRoundedTag as seasonOfferRoundedTag, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|