mayak-common-library 0.0.317 → 0.0.319

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 CHANGED
@@ -429,15 +429,15 @@ interface IFormBlock {
429
429
  }
430
430
  declare function FormBlock({ classes }: IFormBlock): react_jsx_runtime.JSX.Element;
431
431
 
432
- interface IImage {
433
- id: number;
434
- url: string;
435
- realtyId: number;
436
- }
437
- interface IGalleryRealty {
438
- images: IImage[];
432
+ interface GalleryRealtyProps {
433
+ images: {
434
+ id: number;
435
+ url: string;
436
+ realtyId: number;
437
+ }[];
438
+ alt: string;
439
439
  }
440
- declare function GalleryRealty({ images }: IGalleryRealty): react_jsx_runtime.JSX.Element;
440
+ declare const GalleryRealty: FC<GalleryRealtyProps>;
441
441
 
442
442
  interface IJoinTeamBlock {
443
443
  imageUrl?: string;
@@ -1341,7 +1341,7 @@ interface CustomChipProps {
1341
1341
  declare const Chip: FC<ChipProps & CustomChipProps>;
1342
1342
 
1343
1343
  interface ObjectPropertyProps {
1344
- icon: 'LAND' | 'COMMERCE' | 'HOUSE' | 'ROOM_COUNT' | 'AREA_TOTAL' | 'AREA_LAND' | 'AREA_LIVING' | 'AREA_KITCHEN' | 'FLOORS_TOTAL' | 'FLOOR' | 'REPAIR';
1344
+ icon: 'LAND' | 'COMMERCE' | 'HOUSE' | 'ROOM_COUNT' | 'AREA_TOTAL' | 'AREA_LAND' | 'AREA_LIVING' | 'AREA_KITCHEN' | 'FLOORS_TOTAL' | 'FLOOR' | 'REPAIR' | 'PARKING' | 'BATH_COUNT';
1345
1345
  label: string;
1346
1346
  path?: string;
1347
1347
  }
package/dist/index.d.ts CHANGED
@@ -429,15 +429,15 @@ interface IFormBlock {
429
429
  }
430
430
  declare function FormBlock({ classes }: IFormBlock): react_jsx_runtime.JSX.Element;
431
431
 
432
- interface IImage {
433
- id: number;
434
- url: string;
435
- realtyId: number;
436
- }
437
- interface IGalleryRealty {
438
- images: IImage[];
432
+ interface GalleryRealtyProps {
433
+ images: {
434
+ id: number;
435
+ url: string;
436
+ realtyId: number;
437
+ }[];
438
+ alt: string;
439
439
  }
440
- declare function GalleryRealty({ images }: IGalleryRealty): react_jsx_runtime.JSX.Element;
440
+ declare const GalleryRealty: FC<GalleryRealtyProps>;
441
441
 
442
442
  interface IJoinTeamBlock {
443
443
  imageUrl?: string;
@@ -1341,7 +1341,7 @@ interface CustomChipProps {
1341
1341
  declare const Chip: FC<ChipProps & CustomChipProps>;
1342
1342
 
1343
1343
  interface ObjectPropertyProps {
1344
- icon: 'LAND' | 'COMMERCE' | 'HOUSE' | 'ROOM_COUNT' | 'AREA_TOTAL' | 'AREA_LAND' | 'AREA_LIVING' | 'AREA_KITCHEN' | 'FLOORS_TOTAL' | 'FLOOR' | 'REPAIR';
1344
+ icon: 'LAND' | 'COMMERCE' | 'HOUSE' | 'ROOM_COUNT' | 'AREA_TOTAL' | 'AREA_LAND' | 'AREA_LIVING' | 'AREA_KITCHEN' | 'FLOORS_TOTAL' | 'FLOOR' | 'REPAIR' | 'PARKING' | 'BATH_COUNT';
1345
1345
  label: string;
1346
1346
  path?: string;
1347
1347
  }