mayak-common-library 0.0.393 → 0.0.395
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 +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -52,7 +52,7 @@ type Site = (typeof SITE)[keyof typeof SITE];
|
|
|
52
52
|
type TitlePosition = 'center' | 'left';
|
|
53
53
|
|
|
54
54
|
interface IWorker$1 {
|
|
55
|
-
imageUrl?: string;
|
|
55
|
+
imageUrl?: string | null;
|
|
56
56
|
description?: string;
|
|
57
57
|
firstName?: string;
|
|
58
58
|
lastName?: string;
|
|
@@ -952,7 +952,7 @@ interface TwoTextColumnProps {
|
|
|
952
952
|
declare const TwoTextColumn: FC<TwoTextColumnProps>;
|
|
953
953
|
|
|
954
954
|
interface RealtyTitleProps {
|
|
955
|
-
title?: string;
|
|
955
|
+
title?: string | null;
|
|
956
956
|
article?: string | number;
|
|
957
957
|
}
|
|
958
958
|
declare const RealtyTitle: FC<RealtyTitleProps>;
|
|
@@ -1032,8 +1032,8 @@ type BreadCrumbsItem = {
|
|
|
1032
1032
|
|
|
1033
1033
|
interface RealtyAddressProps {
|
|
1034
1034
|
address?: string;
|
|
1035
|
-
addressLinks: Array<BreadCrumbsItem | undefined
|
|
1036
|
-
metros?: BreadCrumbsItem[];
|
|
1035
|
+
addressLinks: Array<BreadCrumbsItem | undefined>;
|
|
1036
|
+
metros?: BreadCrumbsItem[] | null;
|
|
1037
1037
|
city?: BreadCrumbsItem;
|
|
1038
1038
|
}
|
|
1039
1039
|
declare const RealtyAddress: FC<RealtyAddressProps>;
|
|
@@ -1057,7 +1057,7 @@ interface RealtyDetailsProps {
|
|
|
1057
1057
|
declare const RealtyDetails: FC<RealtyDetailsProps>;
|
|
1058
1058
|
|
|
1059
1059
|
interface RealtyDescriptionProps {
|
|
1060
|
-
description?: string;
|
|
1060
|
+
description?: string | null;
|
|
1061
1061
|
}
|
|
1062
1062
|
declare const RealtyDescription: FC<RealtyDescriptionProps>;
|
|
1063
1063
|
|
package/dist/index.d.ts
CHANGED
|
@@ -52,7 +52,7 @@ type Site = (typeof SITE)[keyof typeof SITE];
|
|
|
52
52
|
type TitlePosition = 'center' | 'left';
|
|
53
53
|
|
|
54
54
|
interface IWorker$1 {
|
|
55
|
-
imageUrl?: string;
|
|
55
|
+
imageUrl?: string | null;
|
|
56
56
|
description?: string;
|
|
57
57
|
firstName?: string;
|
|
58
58
|
lastName?: string;
|
|
@@ -952,7 +952,7 @@ interface TwoTextColumnProps {
|
|
|
952
952
|
declare const TwoTextColumn: FC<TwoTextColumnProps>;
|
|
953
953
|
|
|
954
954
|
interface RealtyTitleProps {
|
|
955
|
-
title?: string;
|
|
955
|
+
title?: string | null;
|
|
956
956
|
article?: string | number;
|
|
957
957
|
}
|
|
958
958
|
declare const RealtyTitle: FC<RealtyTitleProps>;
|
|
@@ -1032,8 +1032,8 @@ type BreadCrumbsItem = {
|
|
|
1032
1032
|
|
|
1033
1033
|
interface RealtyAddressProps {
|
|
1034
1034
|
address?: string;
|
|
1035
|
-
addressLinks: Array<BreadCrumbsItem | undefined
|
|
1036
|
-
metros?: BreadCrumbsItem[];
|
|
1035
|
+
addressLinks: Array<BreadCrumbsItem | undefined>;
|
|
1036
|
+
metros?: BreadCrumbsItem[] | null;
|
|
1037
1037
|
city?: BreadCrumbsItem;
|
|
1038
1038
|
}
|
|
1039
1039
|
declare const RealtyAddress: FC<RealtyAddressProps>;
|
|
@@ -1057,7 +1057,7 @@ interface RealtyDetailsProps {
|
|
|
1057
1057
|
declare const RealtyDetails: FC<RealtyDetailsProps>;
|
|
1058
1058
|
|
|
1059
1059
|
interface RealtyDescriptionProps {
|
|
1060
|
-
description?: string;
|
|
1060
|
+
description?: string | null;
|
|
1061
1061
|
}
|
|
1062
1062
|
declare const RealtyDescription: FC<RealtyDescriptionProps>;
|
|
1063
1063
|
|