@trafilea/afrodita-components 5.0.0-beta.47 → 5.0.0-beta.48
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.d.ts +45 -1
- package/build/index.esm.js +377 -297
- package/build/index.esm.js.map +1 -1
- package/build/index.js +377 -296
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -150,6 +150,10 @@ declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
150
150
|
|
|
151
151
|
declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
152
152
|
|
|
153
|
+
declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
154
|
+
|
|
155
|
+
declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
156
|
+
|
|
153
157
|
declare const Actions_Check: typeof Check;
|
|
154
158
|
declare const Actions_ClearLight: typeof ClearLight;
|
|
155
159
|
declare const Actions_LightExclamation: typeof LightExclamation;
|
|
@@ -158,6 +162,8 @@ declare const Actions_LightCheck: typeof LightCheck;
|
|
|
158
162
|
declare const Actions_Question: typeof Question;
|
|
159
163
|
declare const Actions_Close: typeof Close;
|
|
160
164
|
declare const Actions_Trash: typeof Trash;
|
|
165
|
+
declare const Actions_Edit: typeof Edit;
|
|
166
|
+
declare const Actions_SignOut: typeof SignOut;
|
|
161
167
|
declare namespace Actions {
|
|
162
168
|
export {
|
|
163
169
|
Actions_Check as Check,
|
|
@@ -168,6 +174,8 @@ declare namespace Actions {
|
|
|
168
174
|
Actions_Question as Question,
|
|
169
175
|
Actions_Close as Close,
|
|
170
176
|
Actions_Trash as Trash,
|
|
177
|
+
Actions_Edit as Edit,
|
|
178
|
+
Actions_SignOut as SignOut,
|
|
171
179
|
};
|
|
172
180
|
}
|
|
173
181
|
|
|
@@ -184,11 +192,14 @@ declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
|
|
|
184
192
|
|
|
185
193
|
declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
|
|
186
194
|
|
|
195
|
+
declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
196
|
+
|
|
187
197
|
type Other_LoadingProps = LoadingProps;
|
|
188
198
|
declare const Other_Loading: typeof Loading;
|
|
189
199
|
declare const Other_Shapermint: typeof Shapermint;
|
|
190
200
|
declare const Other_McAfee: typeof McAfee;
|
|
191
201
|
declare const Other_GetDiscount: typeof GetDiscount;
|
|
202
|
+
declare const Other_ShapermintLogo: typeof ShapermintLogo;
|
|
192
203
|
declare namespace Other {
|
|
193
204
|
export {
|
|
194
205
|
FitPredictor$1 as FitPredictor,
|
|
@@ -197,6 +208,7 @@ declare namespace Other {
|
|
|
197
208
|
Other_Shapermint as Shapermint,
|
|
198
209
|
Other_McAfee as McAfee,
|
|
199
210
|
Other_GetDiscount as GetDiscount,
|
|
211
|
+
Other_ShapermintLogo as ShapermintLogo,
|
|
200
212
|
};
|
|
201
213
|
}
|
|
202
214
|
|
|
@@ -253,6 +265,10 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
|
|
|
253
265
|
|
|
254
266
|
declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
255
267
|
|
|
268
|
+
declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
269
|
+
|
|
270
|
+
declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
271
|
+
|
|
256
272
|
declare const PDP_Clock: typeof Clock;
|
|
257
273
|
declare const PDP_FlagUSA: typeof FlagUSA;
|
|
258
274
|
declare const PDP_Minus: typeof Minus;
|
|
@@ -263,6 +279,8 @@ declare const PDP_StarEmpty: typeof StarEmpty;
|
|
|
263
279
|
declare const PDP_StarHalf: typeof StarHalf;
|
|
264
280
|
declare const PDP_Stopwatch: typeof Stopwatch;
|
|
265
281
|
declare const PDP_Shipping: typeof Shipping;
|
|
282
|
+
declare const PDP_LightBulb: typeof LightBulb;
|
|
283
|
+
declare const PDP_ErrorCross: typeof ErrorCross;
|
|
266
284
|
declare namespace PDP {
|
|
267
285
|
export {
|
|
268
286
|
PDP_Clock as Clock,
|
|
@@ -275,6 +293,8 @@ declare namespace PDP {
|
|
|
275
293
|
PDP_StarHalf as StarHalf,
|
|
276
294
|
PDP_Stopwatch as Stopwatch,
|
|
277
295
|
PDP_Shipping as Shipping,
|
|
296
|
+
PDP_LightBulb as LightBulb,
|
|
297
|
+
PDP_ErrorCross as ErrorCross,
|
|
278
298
|
};
|
|
279
299
|
}
|
|
280
300
|
|
|
@@ -323,12 +343,21 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
323
343
|
|
|
324
344
|
declare const Hamburger: FC<IconProps>;
|
|
325
345
|
|
|
346
|
+
declare const AddressInformation: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
347
|
+
|
|
348
|
+
declare const ClubMembership: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
349
|
+
|
|
350
|
+
declare const Benefits: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
351
|
+
|
|
326
352
|
declare const Navigation_Search: typeof Search;
|
|
327
353
|
declare const Navigation_User: typeof User;
|
|
328
354
|
declare const Navigation_ShoppingBag: typeof ShoppingBag;
|
|
329
355
|
declare const Navigation_ShoppingCart: typeof ShoppingCart;
|
|
330
356
|
declare const Navigation_MapMarker: typeof MapMarker;
|
|
331
357
|
declare const Navigation_Hamburger: typeof Hamburger;
|
|
358
|
+
declare const Navigation_AddressInformation: typeof AddressInformation;
|
|
359
|
+
declare const Navigation_ClubMembership: typeof ClubMembership;
|
|
360
|
+
declare const Navigation_Benefits: typeof Benefits;
|
|
332
361
|
declare namespace Navigation {
|
|
333
362
|
export {
|
|
334
363
|
Navigation_Search as Search,
|
|
@@ -337,6 +366,9 @@ declare namespace Navigation {
|
|
|
337
366
|
Navigation_ShoppingCart as ShoppingCart,
|
|
338
367
|
Navigation_MapMarker as MapMarker,
|
|
339
368
|
Navigation_Hamburger as Hamburger,
|
|
369
|
+
Navigation_AddressInformation as AddressInformation,
|
|
370
|
+
Navigation_ClubMembership as ClubMembership,
|
|
371
|
+
Navigation_Benefits as Benefits,
|
|
340
372
|
};
|
|
341
373
|
}
|
|
342
374
|
|
|
@@ -1752,6 +1784,18 @@ interface SearchNavigationProps {
|
|
|
1752
1784
|
}
|
|
1753
1785
|
declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
|
|
1754
1786
|
|
|
1787
|
+
interface TabProps {
|
|
1788
|
+
title: string;
|
|
1789
|
+
content: ReactNode;
|
|
1790
|
+
}
|
|
1791
|
+
interface TabsProps {
|
|
1792
|
+
backgroundColor?: string;
|
|
1793
|
+
initialSelected?: string;
|
|
1794
|
+
tabsMaxWidth?: string;
|
|
1795
|
+
tabs: TabProps[];
|
|
1796
|
+
}
|
|
1797
|
+
declare const Tabs: ({ backgroundColor, tabs, initialSelected, tabsMaxWidth, }: TabsProps) => JSX.Element | null;
|
|
1798
|
+
|
|
1755
1799
|
declare global {
|
|
1756
1800
|
interface Events {
|
|
1757
1801
|
modal: {
|
|
@@ -1791,4 +1835,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1791
1835
|
currency?: string | undefined;
|
|
1792
1836
|
}) => string;
|
|
1793
1837
|
|
|
1794
|
-
export { Accordion, AmazonButton, AssetsProvider, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, Color, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitPredictor, Icon, IconButton, IconProps, IconWithOpacityProps, Image, ImageType, Input, InputValidationType, Modal, MultiColorPicker, OfferBanner, OrderBar, Overlay, PackSelector, Pagination, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, ProductGallery, ProductGalleryMobile, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Text, TextButton, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, WithTestId, decimalFormat, formatPrice, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|
|
1838
|
+
export { Accordion, AmazonButton, AssetsProvider, Bundle, ButtonPrimary, ButtonSecondary, ButtonSecondaryOutline, ButtonType, CTAProps, _default as Card, CardSectionType, CartProductItem, CategoryTag, Checkbox, Collection, Color, ColorPickerOption, ComponentPosition, ComponentSize, index_d as CrossSell, DeliveryDetails, DiscountTag, Drawer, DropdownListIcons, DropdownListIconsItem, DropdownListIconsSubItem, DropdownOption, Filter, FilterChange, FilteringDropdown, Tags as FilteringTags, Filters, FitPredictor, Icon, IconButton, IconProps, IconWithOpacityProps, Image, ImageType, Input, InputValidationType, Modal, MultiColorPicker, OfferBanner, OrderBar, Overlay, PackSelector, Pagination, Pattern, PaymentMethod, PaypalButton, Portal, PriceLabel, ProductGallery, ProductGalleryMobile, ProgressBar, QuantityPicker, RadioGroupInput, RadioGroupOption, RadioInput, Rating, Review, ScrollToTop, SearchBar, SearchBarOptionItem, SearchNavigation, SeasonOfferTag, SimpleDropdown, SimpleOrderItem, SingleColorPicker, SizeFitGuide, SizeOption, SizeSelector, SizeTable, SliderNavigation, Spacing, Spinner, StarList, Tabs, Text, TextButton, Theme, ThemeAssets, ThemeBasicPallete, ThemeBreakpoints, ThemeColorPallete, ThemeColors, ThemeComponent, ThemeFonts, ThemeProvider, ThemeTypography, ThemeVariables, Timer, Tooltip, Totals, WithTestId, decimalFormat, formatPrice, isEmail, isEmpty, isNumber, isPhoneNumber, isValidDate, modalEvent, simulateMouseClick, sliceString, useModal, useModalEvent, useOnClickOutside, useTheme, useThemeAssets, useWindowDimensions };
|