mayak-common-library 0.2.1 → 0.2.3
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 +5 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -890,13 +890,13 @@ interface RealtyDetailsProps {
|
|
|
890
890
|
machineName?: string | null;
|
|
891
891
|
value?: string;
|
|
892
892
|
};
|
|
893
|
-
areaTotal?:
|
|
893
|
+
areaTotal?: string | null;
|
|
894
894
|
areaLand?: string | null;
|
|
895
895
|
areaLiving?: string | null;
|
|
896
896
|
areaKitchen?: string | null;
|
|
897
|
-
rooms?:
|
|
897
|
+
rooms?: string | null;
|
|
898
898
|
bathrooms?: string | null;
|
|
899
|
-
parkingCount?: string |
|
|
899
|
+
parkingCount?: string | null;
|
|
900
900
|
floor?: string | null;
|
|
901
901
|
totalFloors?: string | null;
|
|
902
902
|
repair?: string | null;
|
|
@@ -913,8 +913,9 @@ declare const RealtyDetails: FC<RealtyDetailsProps>;
|
|
|
913
913
|
interface RealtyDescriptionProps {
|
|
914
914
|
description?: string | null;
|
|
915
915
|
className?: string;
|
|
916
|
+
title?: string | null;
|
|
916
917
|
}
|
|
917
|
-
declare const RealtyDescription:
|
|
918
|
+
declare const RealtyDescription: ({ description, className, title, }: RealtyDescriptionProps) => react_jsx_runtime.JSX.Element;
|
|
918
919
|
|
|
919
920
|
interface CatalogContainerProps {
|
|
920
921
|
className?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -890,13 +890,13 @@ interface RealtyDetailsProps {
|
|
|
890
890
|
machineName?: string | null;
|
|
891
891
|
value?: string;
|
|
892
892
|
};
|
|
893
|
-
areaTotal?:
|
|
893
|
+
areaTotal?: string | null;
|
|
894
894
|
areaLand?: string | null;
|
|
895
895
|
areaLiving?: string | null;
|
|
896
896
|
areaKitchen?: string | null;
|
|
897
|
-
rooms?:
|
|
897
|
+
rooms?: string | null;
|
|
898
898
|
bathrooms?: string | null;
|
|
899
|
-
parkingCount?: string |
|
|
899
|
+
parkingCount?: string | null;
|
|
900
900
|
floor?: string | null;
|
|
901
901
|
totalFloors?: string | null;
|
|
902
902
|
repair?: string | null;
|
|
@@ -913,8 +913,9 @@ declare const RealtyDetails: FC<RealtyDetailsProps>;
|
|
|
913
913
|
interface RealtyDescriptionProps {
|
|
914
914
|
description?: string | null;
|
|
915
915
|
className?: string;
|
|
916
|
+
title?: string | null;
|
|
916
917
|
}
|
|
917
|
-
declare const RealtyDescription:
|
|
918
|
+
declare const RealtyDescription: ({ description, className, title, }: RealtyDescriptionProps) => react_jsx_runtime.JSX.Element;
|
|
918
919
|
|
|
919
920
|
interface CatalogContainerProps {
|
|
920
921
|
className?: string;
|