mayak-common-library 0.0.175 → 0.0.177

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
@@ -587,12 +587,21 @@ interface ITitleBlock extends TypographyProps {
587
587
  }
588
588
  declare function TitleBlock(props: ITitleBlock): react_jsx_runtime.JSX.Element;
589
589
 
590
+ interface IDeveloperCardProps {
591
+ classes?: string;
592
+ img?: string;
593
+ title?: string;
594
+ price?: string;
595
+ slug?: string;
596
+ href: string;
597
+ }
598
+
590
599
  interface TopDevelopersProps {
591
600
  classes?: string;
592
- images?: string[];
601
+ developers?: IDeveloperCardProps[];
593
602
  title?: string;
594
603
  }
595
- declare function TopDevelopers({ classes, title }: TopDevelopersProps): react_jsx_runtime.JSX.Element;
604
+ declare function TopDevelopers({ classes, title, developers }: TopDevelopersProps): react_jsx_runtime.JSX.Element;
596
605
 
597
606
  interface ITrustUs {
598
607
  classes?: string;
@@ -789,15 +798,6 @@ interface IProjectsSliderProps {
789
798
  }
790
799
  declare function AreasSlider({ classes, areas, title, href, }: IProjectsSliderProps): react_jsx_runtime.JSX.Element;
791
800
 
792
- interface IDeveloperCardProps {
793
- classes?: string;
794
- img: string;
795
- title: string;
796
- text: string;
797
- slug: string;
798
- href: string;
799
- }
800
-
801
801
  interface IDevelopersSliderProps {
802
802
  classes?: string;
803
803
  developers?: IDeveloperCardProps[];
package/dist/index.d.ts CHANGED
@@ -587,12 +587,21 @@ interface ITitleBlock extends TypographyProps {
587
587
  }
588
588
  declare function TitleBlock(props: ITitleBlock): react_jsx_runtime.JSX.Element;
589
589
 
590
+ interface IDeveloperCardProps {
591
+ classes?: string;
592
+ img?: string;
593
+ title?: string;
594
+ price?: string;
595
+ slug?: string;
596
+ href: string;
597
+ }
598
+
590
599
  interface TopDevelopersProps {
591
600
  classes?: string;
592
- images?: string[];
601
+ developers?: IDeveloperCardProps[];
593
602
  title?: string;
594
603
  }
595
- declare function TopDevelopers({ classes, title }: TopDevelopersProps): react_jsx_runtime.JSX.Element;
604
+ declare function TopDevelopers({ classes, title, developers }: TopDevelopersProps): react_jsx_runtime.JSX.Element;
596
605
 
597
606
  interface ITrustUs {
598
607
  classes?: string;
@@ -789,15 +798,6 @@ interface IProjectsSliderProps {
789
798
  }
790
799
  declare function AreasSlider({ classes, areas, title, href, }: IProjectsSliderProps): react_jsx_runtime.JSX.Element;
791
800
 
792
- interface IDeveloperCardProps {
793
- classes?: string;
794
- img: string;
795
- title: string;
796
- text: string;
797
- slug: string;
798
- href: string;
799
- }
800
-
801
801
  interface IDevelopersSliderProps {
802
802
  classes?: string;
803
803
  developers?: IDeveloperCardProps[];