mayak-common-library 0.0.735 → 0.0.737
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 +6 -2
- package/dist/index.d.ts +6 -2
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -817,8 +817,12 @@ declare const FloorPlansBlock: FC<FloorPlansBlockProps>;
|
|
|
817
817
|
|
|
818
818
|
interface FullScreenImageProps {
|
|
819
819
|
src: string;
|
|
820
|
-
|
|
821
|
-
|
|
820
|
+
alt?: string;
|
|
821
|
+
tags?: {
|
|
822
|
+
label: string;
|
|
823
|
+
href?: string;
|
|
824
|
+
}[];
|
|
825
|
+
className?: string;
|
|
822
826
|
}
|
|
823
827
|
declare const FullScreenImage: FC<FullScreenImageProps>;
|
|
824
828
|
|
package/dist/index.d.ts
CHANGED
|
@@ -817,8 +817,12 @@ declare const FloorPlansBlock: FC<FloorPlansBlockProps>;
|
|
|
817
817
|
|
|
818
818
|
interface FullScreenImageProps {
|
|
819
819
|
src: string;
|
|
820
|
-
|
|
821
|
-
|
|
820
|
+
alt?: string;
|
|
821
|
+
tags?: {
|
|
822
|
+
label: string;
|
|
823
|
+
href?: string;
|
|
824
|
+
}[];
|
|
825
|
+
className?: string;
|
|
822
826
|
}
|
|
823
827
|
declare const FullScreenImage: FC<FullScreenImageProps>;
|
|
824
828
|
|