mayak-common-library-payload 0.1.40 → 0.1.42

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
@@ -395,11 +395,11 @@ declare const Gallery: FC<GalleryProps>;
395
395
 
396
396
  interface JoinTeamBlockProps {
397
397
  imageUrl?: string;
398
- title?: string;
398
+ title?: string | null;
399
399
  className?: string;
400
- text?: string;
400
+ content?: ReactNode;
401
401
  }
402
- declare const JoinTeamBlock: FC<JoinTeamBlockProps>;
402
+ declare const JoinTeamBlock: ({ imageUrl, content, title, className, }: JoinTeamBlockProps) => react_jsx_runtime.JSX.Element;
403
403
 
404
404
  interface IItem$1 {
405
405
  text1?: string;
@@ -764,7 +764,7 @@ declare function ProjectsSlider({ className, projects, title, href, }: IProjects
764
764
  interface IServiceItem {
765
765
  imageUrl?: string;
766
766
  title?: string | null;
767
- content?: ReactNode;
767
+ subtitle?: string | null;
768
768
  slug?: string | null;
769
769
  href: string;
770
770
  }
package/dist/index.d.ts CHANGED
@@ -395,11 +395,11 @@ declare const Gallery: FC<GalleryProps>;
395
395
 
396
396
  interface JoinTeamBlockProps {
397
397
  imageUrl?: string;
398
- title?: string;
398
+ title?: string | null;
399
399
  className?: string;
400
- text?: string;
400
+ content?: ReactNode;
401
401
  }
402
- declare const JoinTeamBlock: FC<JoinTeamBlockProps>;
402
+ declare const JoinTeamBlock: ({ imageUrl, content, title, className, }: JoinTeamBlockProps) => react_jsx_runtime.JSX.Element;
403
403
 
404
404
  interface IItem$1 {
405
405
  text1?: string;
@@ -764,7 +764,7 @@ declare function ProjectsSlider({ className, projects, title, href, }: IProjects
764
764
  interface IServiceItem {
765
765
  imageUrl?: string;
766
766
  title?: string | null;
767
- content?: ReactNode;
767
+ subtitle?: string | null;
768
768
  slug?: string | null;
769
769
  href: string;
770
770
  }