mayak-common-library 0.0.394 → 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 +3 -3
- package/dist/index.d.ts +3 -3
- 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>;
|
|
@@ -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>;
|
|
@@ -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
|
|