mayak-common-library 0.0.736 → 0.0.738
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 +7 -3
- package/dist/index.d.ts +7 -3
- 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
|
|
|
@@ -1618,7 +1622,7 @@ interface CasesSliderProps {
|
|
|
1618
1622
|
declare const CasesSlider: FC<CasesSliderProps>;
|
|
1619
1623
|
|
|
1620
1624
|
interface BreadCrumbsProps {
|
|
1621
|
-
breadCrumbsList: BreadCrumbsItem
|
|
1625
|
+
breadCrumbsList: Array<BreadCrumbsItem | undefined | null>;
|
|
1622
1626
|
}
|
|
1623
1627
|
declare const BreadCrumbs: FC<BreadCrumbsProps>;
|
|
1624
1628
|
|
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
|
|
|
@@ -1618,7 +1622,7 @@ interface CasesSliderProps {
|
|
|
1618
1622
|
declare const CasesSlider: FC<CasesSliderProps>;
|
|
1619
1623
|
|
|
1620
1624
|
interface BreadCrumbsProps {
|
|
1621
|
-
breadCrumbsList: BreadCrumbsItem
|
|
1625
|
+
breadCrumbsList: Array<BreadCrumbsItem | undefined | null>;
|
|
1622
1626
|
}
|
|
1623
1627
|
declare const BreadCrumbs: FC<BreadCrumbsProps>;
|
|
1624
1628
|
|