@trafilea/afrodita-components 5.0.0-beta.45 → 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 +46 -1
- package/build/index.esm.js +404 -312
- package/build/index.esm.js.map +1 -1
- package/build/index.js +404 -311
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -102,6 +102,7 @@ declare type Filter = {
|
|
|
102
102
|
title: string;
|
|
103
103
|
columns: number;
|
|
104
104
|
isOpenByDefault?: boolean;
|
|
105
|
+
isMultiselect: boolean;
|
|
105
106
|
items: Array<{
|
|
106
107
|
label: string;
|
|
107
108
|
checked?: boolean;
|
|
@@ -149,6 +150,10 @@ declare const Close: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
149
150
|
|
|
150
151
|
declare const Trash: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
151
152
|
|
|
153
|
+
declare const Edit: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
154
|
+
|
|
155
|
+
declare const SignOut: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
156
|
+
|
|
152
157
|
declare const Actions_Check: typeof Check;
|
|
153
158
|
declare const Actions_ClearLight: typeof ClearLight;
|
|
154
159
|
declare const Actions_LightExclamation: typeof LightExclamation;
|
|
@@ -157,6 +162,8 @@ declare const Actions_LightCheck: typeof LightCheck;
|
|
|
157
162
|
declare const Actions_Question: typeof Question;
|
|
158
163
|
declare const Actions_Close: typeof Close;
|
|
159
164
|
declare const Actions_Trash: typeof Trash;
|
|
165
|
+
declare const Actions_Edit: typeof Edit;
|
|
166
|
+
declare const Actions_SignOut: typeof SignOut;
|
|
160
167
|
declare namespace Actions {
|
|
161
168
|
export {
|
|
162
169
|
Actions_Check as Check,
|
|
@@ -167,6 +174,8 @@ declare namespace Actions {
|
|
|
167
174
|
Actions_Question as Question,
|
|
168
175
|
Actions_Close as Close,
|
|
169
176
|
Actions_Trash as Trash,
|
|
177
|
+
Actions_Edit as Edit,
|
|
178
|
+
Actions_SignOut as SignOut,
|
|
170
179
|
};
|
|
171
180
|
}
|
|
172
181
|
|
|
@@ -183,11 +192,14 @@ declare const McAfee: ({ height, width }: IconProps) => JSX.Element;
|
|
|
183
192
|
|
|
184
193
|
declare const GetDiscount: ({ height, width }: IconProps) => JSX.Element;
|
|
185
194
|
|
|
195
|
+
declare const ShapermintLogo: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
196
|
+
|
|
186
197
|
type Other_LoadingProps = LoadingProps;
|
|
187
198
|
declare const Other_Loading: typeof Loading;
|
|
188
199
|
declare const Other_Shapermint: typeof Shapermint;
|
|
189
200
|
declare const Other_McAfee: typeof McAfee;
|
|
190
201
|
declare const Other_GetDiscount: typeof GetDiscount;
|
|
202
|
+
declare const Other_ShapermintLogo: typeof ShapermintLogo;
|
|
191
203
|
declare namespace Other {
|
|
192
204
|
export {
|
|
193
205
|
FitPredictor$1 as FitPredictor,
|
|
@@ -196,6 +208,7 @@ declare namespace Other {
|
|
|
196
208
|
Other_Shapermint as Shapermint,
|
|
197
209
|
Other_McAfee as McAfee,
|
|
198
210
|
Other_GetDiscount as GetDiscount,
|
|
211
|
+
Other_ShapermintLogo as ShapermintLogo,
|
|
199
212
|
};
|
|
200
213
|
}
|
|
201
214
|
|
|
@@ -252,6 +265,10 @@ declare const Stopwatch: ({ height, width, fill, title }: IconProps) => JSX.Elem
|
|
|
252
265
|
|
|
253
266
|
declare const Shipping: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
254
267
|
|
|
268
|
+
declare const LightBulb: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
269
|
+
|
|
270
|
+
declare const ErrorCross: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
271
|
+
|
|
255
272
|
declare const PDP_Clock: typeof Clock;
|
|
256
273
|
declare const PDP_FlagUSA: typeof FlagUSA;
|
|
257
274
|
declare const PDP_Minus: typeof Minus;
|
|
@@ -262,6 +279,8 @@ declare const PDP_StarEmpty: typeof StarEmpty;
|
|
|
262
279
|
declare const PDP_StarHalf: typeof StarHalf;
|
|
263
280
|
declare const PDP_Stopwatch: typeof Stopwatch;
|
|
264
281
|
declare const PDP_Shipping: typeof Shipping;
|
|
282
|
+
declare const PDP_LightBulb: typeof LightBulb;
|
|
283
|
+
declare const PDP_ErrorCross: typeof ErrorCross;
|
|
265
284
|
declare namespace PDP {
|
|
266
285
|
export {
|
|
267
286
|
PDP_Clock as Clock,
|
|
@@ -274,6 +293,8 @@ declare namespace PDP {
|
|
|
274
293
|
PDP_StarHalf as StarHalf,
|
|
275
294
|
PDP_Stopwatch as Stopwatch,
|
|
276
295
|
PDP_Shipping as Shipping,
|
|
296
|
+
PDP_LightBulb as LightBulb,
|
|
297
|
+
PDP_ErrorCross as ErrorCross,
|
|
277
298
|
};
|
|
278
299
|
}
|
|
279
300
|
|
|
@@ -322,12 +343,21 @@ declare const MapMarker: ({ height, width, fill }: IconProps) => JSX.Element;
|
|
|
322
343
|
|
|
323
344
|
declare const Hamburger: FC<IconProps>;
|
|
324
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
|
+
|
|
325
352
|
declare const Navigation_Search: typeof Search;
|
|
326
353
|
declare const Navigation_User: typeof User;
|
|
327
354
|
declare const Navigation_ShoppingBag: typeof ShoppingBag;
|
|
328
355
|
declare const Navigation_ShoppingCart: typeof ShoppingCart;
|
|
329
356
|
declare const Navigation_MapMarker: typeof MapMarker;
|
|
330
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;
|
|
331
361
|
declare namespace Navigation {
|
|
332
362
|
export {
|
|
333
363
|
Navigation_Search as Search,
|
|
@@ -336,6 +366,9 @@ declare namespace Navigation {
|
|
|
336
366
|
Navigation_ShoppingCart as ShoppingCart,
|
|
337
367
|
Navigation_MapMarker as MapMarker,
|
|
338
368
|
Navigation_Hamburger as Hamburger,
|
|
369
|
+
Navigation_AddressInformation as AddressInformation,
|
|
370
|
+
Navigation_ClubMembership as ClubMembership,
|
|
371
|
+
Navigation_Benefits as Benefits,
|
|
339
372
|
};
|
|
340
373
|
}
|
|
341
374
|
|
|
@@ -1751,6 +1784,18 @@ interface SearchNavigationProps {
|
|
|
1751
1784
|
}
|
|
1752
1785
|
declare const SearchNavigation: ({ returnText, returnUrl, steps, returnAction, }: SearchNavigationProps) => JSX.Element;
|
|
1753
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
|
+
|
|
1754
1799
|
declare global {
|
|
1755
1800
|
interface Events {
|
|
1756
1801
|
modal: {
|
|
@@ -1790,4 +1835,4 @@ declare const formatPrice: (value: number, { locale, currency }?: {
|
|
|
1790
1835
|
currency?: string | undefined;
|
|
1791
1836
|
}) => string;
|
|
1792
1837
|
|
|
1793
|
-
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 };
|