mayak-common-library 0.0.171 → 0.0.173

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
@@ -209,7 +209,7 @@ interface BenefitsVacanciesBlockProps {
209
209
  classes?: string;
210
210
  inlineItem?: boolean;
211
211
  }
212
- declare const BenefitsVacanciesBlock: FC<BenefitsVacanciesBlockProps>;
212
+ declare function BenefitsVacanciesBlock({ title, benefits, classes, inlineItem, }: BenefitsVacanciesBlockProps): react_jsx_runtime.JSX.Element;
213
213
 
214
214
  interface IComponentItem {
215
215
  text1?: string;
@@ -755,22 +755,23 @@ interface IArticlesFull {
755
755
  }
756
756
  declare function AreasFull({ title, areas, classes, href, }: IArticlesFull): react_jsx_runtime.JSX.Element;
757
757
 
758
- interface ICatalogNewProjectsProps {
759
- classes?: string;
758
+ interface NewProjectCardProps {
759
+ slug: string;
760
+ imgSrc?: string;
761
+ title?: string;
762
+ address?: string;
763
+ price?: string;
764
+ developer?: string;
765
+ houseTypes?: string[];
760
766
  href: string;
761
767
  }
762
- declare function CatalogNewProjects({ classes, href, }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
763
768
 
764
- interface NewProjectCardProps {
765
- slug: string;
766
- imgSrc: string;
767
- title: string;
768
- address: string;
769
- price: string;
770
- developer: string;
771
- houseTypes: string[];
769
+ interface ICatalogNewProjectsProps {
770
+ classes?: string;
772
771
  href: string;
772
+ newProjects?: NewProjectCardProps[];
773
773
  }
774
+ declare function CatalogNewProjects({ classes, href, newProjects }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
774
775
 
775
776
  interface IProjectsSliderProps$1 {
776
777
  classes?: string;
package/dist/index.d.ts CHANGED
@@ -209,7 +209,7 @@ interface BenefitsVacanciesBlockProps {
209
209
  classes?: string;
210
210
  inlineItem?: boolean;
211
211
  }
212
- declare const BenefitsVacanciesBlock: FC<BenefitsVacanciesBlockProps>;
212
+ declare function BenefitsVacanciesBlock({ title, benefits, classes, inlineItem, }: BenefitsVacanciesBlockProps): react_jsx_runtime.JSX.Element;
213
213
 
214
214
  interface IComponentItem {
215
215
  text1?: string;
@@ -755,22 +755,23 @@ interface IArticlesFull {
755
755
  }
756
756
  declare function AreasFull({ title, areas, classes, href, }: IArticlesFull): react_jsx_runtime.JSX.Element;
757
757
 
758
- interface ICatalogNewProjectsProps {
759
- classes?: string;
758
+ interface NewProjectCardProps {
759
+ slug: string;
760
+ imgSrc?: string;
761
+ title?: string;
762
+ address?: string;
763
+ price?: string;
764
+ developer?: string;
765
+ houseTypes?: string[];
760
766
  href: string;
761
767
  }
762
- declare function CatalogNewProjects({ classes, href, }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
763
768
 
764
- interface NewProjectCardProps {
765
- slug: string;
766
- imgSrc: string;
767
- title: string;
768
- address: string;
769
- price: string;
770
- developer: string;
771
- houseTypes: string[];
769
+ interface ICatalogNewProjectsProps {
770
+ classes?: string;
772
771
  href: string;
772
+ newProjects?: NewProjectCardProps[];
773
773
  }
774
+ declare function CatalogNewProjects({ classes, href, newProjects }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
774
775
 
775
776
  interface IProjectsSliderProps$1 {
776
777
  classes?: string;