@trafilea/afrodita-components 6.5.11 → 6.6.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.d.ts CHANGED
@@ -53,7 +53,7 @@ declare type Custom$1 = 'custom/atom' | 'custom/bra' | 'custom/bubbles' | 'custo
53
53
  declare type Download$1 = 'download/apple_store' | 'download/google_play';
54
54
  declare type Emoji$1 = 'emoji/blowing_kiss' | 'emoji/frowning' | 'emoji/grinning' | 'emoji/grinning_with_sweat' | 'emoji/relieved' | 'emoji/smiling_v2' | 'emoji/thinking';
55
55
  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';
56
- 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/place_image' | 'myaccount/sale_tag' | 'myaccount/style_fashion_content' | 'myaccount/vip';
56
+ 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/place_image' | 'myaccount/sale_tag' | 'myaccount/style_fashion_content' | 'myaccount/cart' | 'myaccount/vip';
57
57
  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';
58
58
  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' | 'other/lock';
59
59
  declare type Payment$1 = 'payment/amazon' | 'payment/amex' | 'payment/jcb' | 'payment/klarna' | 'payment/master_card' | 'payment/paypal' | 'payment/visa';
@@ -538,6 +538,8 @@ declare namespace Messaging {
538
538
 
539
539
  declare const BirthdayGifts: IconComponent;
540
540
 
541
+ declare const Cart: IconComponent;
542
+
541
543
  declare const Community: IconComponent;
542
544
 
543
545
  declare const DealsOffers: IconComponent;
@@ -567,6 +569,7 @@ declare const StyleFashionContent: IconComponent;
567
569
  declare const VIP: IconComponent;
568
570
 
569
571
  declare const MyAccount_BirthdayGifts: typeof BirthdayGifts;
572
+ declare const MyAccount_Cart: typeof Cart;
570
573
  declare const MyAccount_Community: typeof Community;
571
574
  declare const MyAccount_DealsOffers: typeof DealsOffers;
572
575
  declare const MyAccount_FreeReturns: typeof FreeReturns;
@@ -584,6 +587,7 @@ declare const MyAccount_VIP: typeof VIP;
584
587
  declare namespace MyAccount {
585
588
  export {
586
589
  MyAccount_BirthdayGifts as BirthdayGifts,
590
+ MyAccount_Cart as Cart,
587
591
  MyAccount_Community as Community,
588
592
  MyAccount_DealsOffers as DealsOffers,
589
593
  MyAccount_FreeReturns as FreeReturns,
@@ -2166,6 +2170,7 @@ interface ProductItemSmallMobileProps extends ProductItemProps {
2166
2170
  clubPrice?: string;
2167
2171
  showClubPriceLabel?: boolean;
2168
2172
  isRatingLoading?: boolean;
2173
+ version?: number;
2169
2174
  }
2170
2175
 
2171
2176
  declare function withProductGrid<P extends ProductItemProps>(ProductItemComponent: React__default.FC<P>, data: ProductItemProps[]): {