mayak-common-library 0.0.369 → 0.0.370
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 +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -952,8 +952,8 @@ interface TwoTextColumnProps {
|
|
|
952
952
|
declare const TwoTextColumn: FC<TwoTextColumnProps>;
|
|
953
953
|
|
|
954
954
|
interface RealtyTitleProps {
|
|
955
|
-
title
|
|
956
|
-
article
|
|
955
|
+
title?: string;
|
|
956
|
+
article?: string | number;
|
|
957
957
|
}
|
|
958
958
|
declare const RealtyTitle: FC<RealtyTitleProps>;
|
|
959
959
|
|
|
@@ -1032,9 +1032,9 @@ type BreadCrumbsItem = {
|
|
|
1032
1032
|
|
|
1033
1033
|
interface RealtyAddressProps {
|
|
1034
1034
|
address: string;
|
|
1035
|
-
addressLinks: BreadCrumbsItem
|
|
1035
|
+
addressLinks: Array<BreadCrumbsItem | undefined>;
|
|
1036
1036
|
metros: BreadCrumbsItem[];
|
|
1037
|
-
city
|
|
1037
|
+
city?: BreadCrumbsItem;
|
|
1038
1038
|
}
|
|
1039
1039
|
declare const RealtyAddress: FC<RealtyAddressProps>;
|
|
1040
1040
|
|
package/dist/index.d.ts
CHANGED
|
@@ -952,8 +952,8 @@ interface TwoTextColumnProps {
|
|
|
952
952
|
declare const TwoTextColumn: FC<TwoTextColumnProps>;
|
|
953
953
|
|
|
954
954
|
interface RealtyTitleProps {
|
|
955
|
-
title
|
|
956
|
-
article
|
|
955
|
+
title?: string;
|
|
956
|
+
article?: string | number;
|
|
957
957
|
}
|
|
958
958
|
declare const RealtyTitle: FC<RealtyTitleProps>;
|
|
959
959
|
|
|
@@ -1032,9 +1032,9 @@ type BreadCrumbsItem = {
|
|
|
1032
1032
|
|
|
1033
1033
|
interface RealtyAddressProps {
|
|
1034
1034
|
address: string;
|
|
1035
|
-
addressLinks: BreadCrumbsItem
|
|
1035
|
+
addressLinks: Array<BreadCrumbsItem | undefined>;
|
|
1036
1036
|
metros: BreadCrumbsItem[];
|
|
1037
|
-
city
|
|
1037
|
+
city?: BreadCrumbsItem;
|
|
1038
1038
|
}
|
|
1039
1039
|
declare const RealtyAddress: FC<RealtyAddressProps>;
|
|
1040
1040
|
|