mayak-common-library 0.2.13 → 0.2.15
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.cjs +4 -4
- package/dist/index.d.cts +18 -36
- package/dist/index.d.ts +18 -36
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -824,46 +824,13 @@ interface RealtyPriceProps {
|
|
|
824
824
|
}
|
|
825
825
|
declare const RealtyPrice: ({ realtyForRent, price, currencySwitcher, }: RealtyPriceProps) => react_jsx_runtime.JSX.Element;
|
|
826
826
|
|
|
827
|
-
declare enum ESTagEnum {
|
|
828
|
-
Borough = "borough",
|
|
829
|
-
District = "district",
|
|
830
|
-
City = "city",
|
|
831
|
-
Metro = "metro",
|
|
832
|
-
Street = "street",
|
|
833
|
-
Complex = "complex",
|
|
834
|
-
Region = "region",
|
|
835
|
-
Property = "property",
|
|
836
|
-
Town = "town",
|
|
837
|
-
County = "county"
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
type MenuItem = {
|
|
841
|
-
path: string;
|
|
842
|
-
title: string;
|
|
843
|
-
};
|
|
844
|
-
interface IFooter {
|
|
845
|
-
instagram?: string;
|
|
846
|
-
facebook?: string;
|
|
847
|
-
youtube?: string;
|
|
848
|
-
linkedIn?: string;
|
|
849
|
-
menuItems: MenuItem[];
|
|
850
|
-
mainPhone?: string;
|
|
851
|
-
site: Site;
|
|
852
|
-
homePage: string;
|
|
853
|
-
}
|
|
854
|
-
type BreadCrumbsItem = {
|
|
855
|
-
label: string;
|
|
856
|
-
path: string;
|
|
857
|
-
tag?: ESTagEnum;
|
|
858
|
-
};
|
|
859
|
-
|
|
860
827
|
interface RealtyAddressProps {
|
|
861
828
|
address?: string;
|
|
862
|
-
addressLinks: Array<
|
|
829
|
+
addressLinks: Array<ReactNode | undefined>;
|
|
863
830
|
restAddress?: string[];
|
|
864
|
-
metros?:
|
|
831
|
+
metros?: ReactNode[] | null;
|
|
865
832
|
}
|
|
866
|
-
declare const RealtyAddress:
|
|
833
|
+
declare const RealtyAddress: ({ address, metros, addressLinks, restAddress, }: RealtyAddressProps) => react_jsx_runtime.JSX.Element;
|
|
867
834
|
|
|
868
835
|
interface RealtyDetailsProps {
|
|
869
836
|
realtyType?: {
|
|
@@ -982,6 +949,21 @@ interface HeaderContactButtonProps {
|
|
|
982
949
|
}
|
|
983
950
|
declare const _default: react.NamedExoticComponent<HeaderContactButtonProps>;
|
|
984
951
|
|
|
952
|
+
type MenuItem = {
|
|
953
|
+
path: string;
|
|
954
|
+
title: string;
|
|
955
|
+
};
|
|
956
|
+
interface IFooter {
|
|
957
|
+
instagram?: string;
|
|
958
|
+
facebook?: string;
|
|
959
|
+
youtube?: string;
|
|
960
|
+
linkedIn?: string;
|
|
961
|
+
menuItems: MenuItem[];
|
|
962
|
+
mainPhone?: string;
|
|
963
|
+
site: Site;
|
|
964
|
+
homePage: string;
|
|
965
|
+
}
|
|
966
|
+
|
|
985
967
|
declare function Footer({ instagram, facebook, youtube, linkedIn, menuItems, mainPhone, site, }: IFooter): react_jsx_runtime.JSX.Element;
|
|
986
968
|
|
|
987
969
|
interface FooterDubaiProps {
|
package/dist/index.d.ts
CHANGED
|
@@ -824,46 +824,13 @@ interface RealtyPriceProps {
|
|
|
824
824
|
}
|
|
825
825
|
declare const RealtyPrice: ({ realtyForRent, price, currencySwitcher, }: RealtyPriceProps) => react_jsx_runtime.JSX.Element;
|
|
826
826
|
|
|
827
|
-
declare enum ESTagEnum {
|
|
828
|
-
Borough = "borough",
|
|
829
|
-
District = "district",
|
|
830
|
-
City = "city",
|
|
831
|
-
Metro = "metro",
|
|
832
|
-
Street = "street",
|
|
833
|
-
Complex = "complex",
|
|
834
|
-
Region = "region",
|
|
835
|
-
Property = "property",
|
|
836
|
-
Town = "town",
|
|
837
|
-
County = "county"
|
|
838
|
-
}
|
|
839
|
-
|
|
840
|
-
type MenuItem = {
|
|
841
|
-
path: string;
|
|
842
|
-
title: string;
|
|
843
|
-
};
|
|
844
|
-
interface IFooter {
|
|
845
|
-
instagram?: string;
|
|
846
|
-
facebook?: string;
|
|
847
|
-
youtube?: string;
|
|
848
|
-
linkedIn?: string;
|
|
849
|
-
menuItems: MenuItem[];
|
|
850
|
-
mainPhone?: string;
|
|
851
|
-
site: Site;
|
|
852
|
-
homePage: string;
|
|
853
|
-
}
|
|
854
|
-
type BreadCrumbsItem = {
|
|
855
|
-
label: string;
|
|
856
|
-
path: string;
|
|
857
|
-
tag?: ESTagEnum;
|
|
858
|
-
};
|
|
859
|
-
|
|
860
827
|
interface RealtyAddressProps {
|
|
861
828
|
address?: string;
|
|
862
|
-
addressLinks: Array<
|
|
829
|
+
addressLinks: Array<ReactNode | undefined>;
|
|
863
830
|
restAddress?: string[];
|
|
864
|
-
metros?:
|
|
831
|
+
metros?: ReactNode[] | null;
|
|
865
832
|
}
|
|
866
|
-
declare const RealtyAddress:
|
|
833
|
+
declare const RealtyAddress: ({ address, metros, addressLinks, restAddress, }: RealtyAddressProps) => react_jsx_runtime.JSX.Element;
|
|
867
834
|
|
|
868
835
|
interface RealtyDetailsProps {
|
|
869
836
|
realtyType?: {
|
|
@@ -982,6 +949,21 @@ interface HeaderContactButtonProps {
|
|
|
982
949
|
}
|
|
983
950
|
declare const _default: react.NamedExoticComponent<HeaderContactButtonProps>;
|
|
984
951
|
|
|
952
|
+
type MenuItem = {
|
|
953
|
+
path: string;
|
|
954
|
+
title: string;
|
|
955
|
+
};
|
|
956
|
+
interface IFooter {
|
|
957
|
+
instagram?: string;
|
|
958
|
+
facebook?: string;
|
|
959
|
+
youtube?: string;
|
|
960
|
+
linkedIn?: string;
|
|
961
|
+
menuItems: MenuItem[];
|
|
962
|
+
mainPhone?: string;
|
|
963
|
+
site: Site;
|
|
964
|
+
homePage: string;
|
|
965
|
+
}
|
|
966
|
+
|
|
985
967
|
declare function Footer({ instagram, facebook, youtube, linkedIn, menuItems, mainPhone, site, }: IFooter): react_jsx_runtime.JSX.Element;
|
|
986
968
|
|
|
987
969
|
interface FooterDubaiProps {
|