mayak-common-library-payload 0.1.38 → 0.1.40

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
@@ -763,9 +763,9 @@ declare function ProjectsSlider({ className, projects, title, href, }: IProjects
763
763
 
764
764
  interface IServiceItem {
765
765
  imageUrl?: string;
766
- title?: string;
767
- text?: string;
768
- slug?: string;
766
+ title?: string | null;
767
+ content?: ReactNode;
768
+ slug?: string | null;
769
769
  href: string;
770
770
  }
771
771
  interface ServicesFullProps {
@@ -775,7 +775,7 @@ interface ServicesFullProps {
775
775
  href: string;
776
776
  linkLabel: string;
777
777
  }
778
- declare const ServicesFull: FC<ServicesFullProps>;
778
+ declare const ServicesFull: ({ services, className, href, linkLabel, }: ServicesFullProps) => react_jsx_runtime.JSX.Element;
779
779
 
780
780
  interface DeveloperBannerProps {
781
781
  className?: string;
@@ -805,11 +805,11 @@ declare const ImageAndTextBlock: FC<PropsWithChildren & ImageAndTextBlockProps>;
805
805
  interface TwoTextColumnProps {
806
806
  className?: string;
807
807
  info: {
808
- title: string;
809
- text: string;
808
+ title?: string;
809
+ content: ReactNode;
810
810
  }[];
811
811
  }
812
- declare const TwoTextColumn: FC<TwoTextColumnProps>;
812
+ declare const TwoTextColumn: ({ className, info }: TwoTextColumnProps) => react_jsx_runtime.JSX.Element;
813
813
 
814
814
  interface RealtyTitleProps {
815
815
  title?: string | null;
package/dist/index.d.ts CHANGED
@@ -763,9 +763,9 @@ declare function ProjectsSlider({ className, projects, title, href, }: IProjects
763
763
 
764
764
  interface IServiceItem {
765
765
  imageUrl?: string;
766
- title?: string;
767
- text?: string;
768
- slug?: string;
766
+ title?: string | null;
767
+ content?: ReactNode;
768
+ slug?: string | null;
769
769
  href: string;
770
770
  }
771
771
  interface ServicesFullProps {
@@ -775,7 +775,7 @@ interface ServicesFullProps {
775
775
  href: string;
776
776
  linkLabel: string;
777
777
  }
778
- declare const ServicesFull: FC<ServicesFullProps>;
778
+ declare const ServicesFull: ({ services, className, href, linkLabel, }: ServicesFullProps) => react_jsx_runtime.JSX.Element;
779
779
 
780
780
  interface DeveloperBannerProps {
781
781
  className?: string;
@@ -805,11 +805,11 @@ declare const ImageAndTextBlock: FC<PropsWithChildren & ImageAndTextBlockProps>;
805
805
  interface TwoTextColumnProps {
806
806
  className?: string;
807
807
  info: {
808
- title: string;
809
- text: string;
808
+ title?: string;
809
+ content: ReactNode;
810
810
  }[];
811
811
  }
812
- declare const TwoTextColumn: FC<TwoTextColumnProps>;
812
+ declare const TwoTextColumn: ({ className, info }: TwoTextColumnProps) => react_jsx_runtime.JSX.Element;
813
813
 
814
814
  interface RealtyTitleProps {
815
815
  title?: string | null;