mayak-common-library 0.0.303 → 0.0.304
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 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -935,7 +935,10 @@ interface TwoTextColumnProps {
|
|
|
935
935
|
}
|
|
936
936
|
declare const TwoTextColumn: FC<TwoTextColumnProps>;
|
|
937
937
|
|
|
938
|
-
|
|
938
|
+
interface CatalogContainerProps {
|
|
939
|
+
className?: string;
|
|
940
|
+
}
|
|
941
|
+
declare const CatalogContainer: FC<CatalogContainerProps & PropsWithChildren>;
|
|
939
942
|
|
|
940
943
|
declare function useWindowSize(): {
|
|
941
944
|
windowSize: number;
|
|
@@ -1405,7 +1408,7 @@ interface IWorker {
|
|
|
1405
1408
|
interface IRealty {
|
|
1406
1409
|
imageUrl?: string;
|
|
1407
1410
|
dealId?: number;
|
|
1408
|
-
price?:
|
|
1411
|
+
price?: string;
|
|
1409
1412
|
district?: string;
|
|
1410
1413
|
metro?: string[];
|
|
1411
1414
|
address?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -935,7 +935,10 @@ interface TwoTextColumnProps {
|
|
|
935
935
|
}
|
|
936
936
|
declare const TwoTextColumn: FC<TwoTextColumnProps>;
|
|
937
937
|
|
|
938
|
-
|
|
938
|
+
interface CatalogContainerProps {
|
|
939
|
+
className?: string;
|
|
940
|
+
}
|
|
941
|
+
declare const CatalogContainer: FC<CatalogContainerProps & PropsWithChildren>;
|
|
939
942
|
|
|
940
943
|
declare function useWindowSize(): {
|
|
941
944
|
windowSize: number;
|
|
@@ -1405,7 +1408,7 @@ interface IWorker {
|
|
|
1405
1408
|
interface IRealty {
|
|
1406
1409
|
imageUrl?: string;
|
|
1407
1410
|
dealId?: number;
|
|
1408
|
-
price?:
|
|
1411
|
+
price?: string;
|
|
1409
1412
|
district?: string;
|
|
1410
1413
|
metro?: string[];
|
|
1411
1414
|
address?: string;
|