mayak-common-library 0.1.16 → 0.1.18
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 +2 -4
- package/dist/index.d.ts +2 -4
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -765,11 +765,9 @@ declare const FloorPlansBlock: FC<FloorPlansBlockProps>;
|
|
|
765
765
|
interface FullScreenImageProps {
|
|
766
766
|
src: string;
|
|
767
767
|
alt?: string | null;
|
|
768
|
-
tags?:
|
|
769
|
-
label: string;
|
|
770
|
-
href?: string;
|
|
771
|
-
}[];
|
|
768
|
+
tags?: ReactNode;
|
|
772
769
|
className?: string;
|
|
770
|
+
tagsContainerClassName?: string;
|
|
773
771
|
}
|
|
774
772
|
declare const FullScreenImage: FC<FullScreenImageProps>;
|
|
775
773
|
|
package/dist/index.d.ts
CHANGED
|
@@ -765,11 +765,9 @@ declare const FloorPlansBlock: FC<FloorPlansBlockProps>;
|
|
|
765
765
|
interface FullScreenImageProps {
|
|
766
766
|
src: string;
|
|
767
767
|
alt?: string | null;
|
|
768
|
-
tags?:
|
|
769
|
-
label: string;
|
|
770
|
-
href?: string;
|
|
771
|
-
}[];
|
|
768
|
+
tags?: ReactNode;
|
|
772
769
|
className?: string;
|
|
770
|
+
tagsContainerClassName?: string;
|
|
773
771
|
}
|
|
774
772
|
declare const FullScreenImage: FC<FullScreenImageProps>;
|
|
775
773
|
|