mayak-common-library 0.2.2 → 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 +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -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
|
@@ -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;
|