mayak-common-library 0.2.12 → 0.2.14

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.cts CHANGED
@@ -818,11 +818,11 @@ interface RealtyTitleProps {
818
818
  declare const RealtyTitle: FC<RealtyTitleProps>;
819
819
 
820
820
  interface RealtyPriceProps {
821
- realtyForRent?: boolean;
821
+ realtyForRent?: string;
822
822
  price: string;
823
823
  currencySwitcher?: ReactNode;
824
824
  }
825
- declare const RealtyPrice: FC<RealtyPriceProps>;
825
+ declare const RealtyPrice: ({ realtyForRent, price, currencySwitcher, }: RealtyPriceProps) => react_jsx_runtime.JSX.Element;
826
826
 
827
827
  declare enum ESTagEnum {
828
828
  Borough = "borough",
@@ -859,7 +859,7 @@ type BreadCrumbsItem = {
859
859
 
860
860
  interface RealtyAddressProps {
861
861
  address?: string;
862
- addressLinks: Array<BreadCrumbsItem | undefined>;
862
+ addressLinks: Array<ReactNode | undefined>;
863
863
  restAddress?: string[];
864
864
  metros?: BreadCrumbsItem[] | null;
865
865
  }
package/dist/index.d.ts CHANGED
@@ -818,11 +818,11 @@ interface RealtyTitleProps {
818
818
  declare const RealtyTitle: FC<RealtyTitleProps>;
819
819
 
820
820
  interface RealtyPriceProps {
821
- realtyForRent?: boolean;
821
+ realtyForRent?: string;
822
822
  price: string;
823
823
  currencySwitcher?: ReactNode;
824
824
  }
825
- declare const RealtyPrice: FC<RealtyPriceProps>;
825
+ declare const RealtyPrice: ({ realtyForRent, price, currencySwitcher, }: RealtyPriceProps) => react_jsx_runtime.JSX.Element;
826
826
 
827
827
  declare enum ESTagEnum {
828
828
  Borough = "borough",
@@ -859,7 +859,7 @@ type BreadCrumbsItem = {
859
859
 
860
860
  interface RealtyAddressProps {
861
861
  address?: string;
862
- addressLinks: Array<BreadCrumbsItem | undefined>;
862
+ addressLinks: Array<ReactNode | undefined>;
863
863
  restAddress?: string[];
864
864
  metros?: BreadCrumbsItem[] | null;
865
865
  }