@trafilea/afrodita-components 4.4.0-beta.6 → 4.4.0-beta.7

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
@@ -1008,6 +1008,12 @@ declare type ThemeComponent = {
1008
1008
  modal: {
1009
1009
  minWidth: string;
1010
1010
  };
1011
+ packSelector: {
1012
+ borderRadius: string;
1013
+ borderColor: string;
1014
+ highlight: string;
1015
+ selected: string;
1016
+ };
1011
1017
  };
1012
1018
  declare type ThemeTypography = {
1013
1019
  config: {
@@ -1602,6 +1608,7 @@ declare const useModalEvent: (id: string, cb: (event: CustomEvent<Events['modal'
1602
1608
 
1603
1609
  interface CloseButtonProps {
1604
1610
  onClick: () => void;
1611
+ size: number;
1605
1612
  }
1606
1613
 
1607
1614
  interface DescriptionProps {
@@ -1621,7 +1628,7 @@ declare const CartProductItem: {
1621
1628
  Tag: ({ discountAppliedText, backgroundColor }: OfferBannerProps) => JSX.Element;
1622
1629
  Promo: ({ text }: PromoProps) => JSX.Element;
1623
1630
  Description: ({ text }: DescriptionProps) => JSX.Element;
1624
- CloseButton: ({ onClick }: CloseButtonProps) => JSX.Element;
1631
+ CloseButton: ({ onClick, size }: CloseButtonProps) => JSX.Element;
1625
1632
  };
1626
1633
 
1627
1634
  declare type QuantityPickerPropsOnChange = (value: number) => void;