mayak-common-library-payload 0.1.35 → 0.1.37

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/dist/index.d.mts CHANGED
@@ -629,12 +629,12 @@ declare const WeOffer: FC<IWeOffer>;
629
629
 
630
630
  interface WeTakeFullProps {
631
631
  className?: string;
632
- imgSrc?: string;
633
- title?: string;
634
- text?: string;
632
+ imageUrl?: string;
633
+ title?: string | null;
634
+ content?: ReactNode;
635
635
  actionComponent?: ReactNode;
636
636
  }
637
- declare const WeTakeFull: FC<WeTakeFullProps>;
637
+ declare const WeTakeFull: ({ className, content, imageUrl, title, actionComponent, }: WeTakeFullProps) => react_jsx_runtime.JSX.Element;
638
638
 
639
639
  interface IWhatIsYourProps {
640
640
  className?: string;
package/dist/index.d.ts CHANGED
@@ -629,12 +629,12 @@ declare const WeOffer: FC<IWeOffer>;
629
629
 
630
630
  interface WeTakeFullProps {
631
631
  className?: string;
632
- imgSrc?: string;
633
- title?: string;
634
- text?: string;
632
+ imageUrl?: string;
633
+ title?: string | null;
634
+ content?: ReactNode;
635
635
  actionComponent?: ReactNode;
636
636
  }
637
- declare const WeTakeFull: FC<WeTakeFullProps>;
637
+ declare const WeTakeFull: ({ className, content, imageUrl, title, actionComponent, }: WeTakeFullProps) => react_jsx_runtime.JSX.Element;
638
638
 
639
639
  interface IWhatIsYourProps {
640
640
  className?: string;