mayak-common-library 0.0.235 → 0.0.236
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 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -774,9 +774,10 @@ interface GalleryBlockProps {
|
|
|
774
774
|
}
|
|
775
775
|
declare const GalleryBlock: FC<GalleryBlockProps>;
|
|
776
776
|
|
|
777
|
-
declare
|
|
777
|
+
declare const ContactDubaiBlock: FC<{
|
|
778
778
|
classes?: string;
|
|
779
|
-
|
|
779
|
+
actionComponent?: ReactNode;
|
|
780
|
+
}>;
|
|
780
781
|
|
|
781
782
|
interface IArea {
|
|
782
783
|
imageUrl?: string;
|
|
@@ -794,7 +795,7 @@ interface IArticlesFull {
|
|
|
794
795
|
totalAreas?: number;
|
|
795
796
|
href: string;
|
|
796
797
|
}
|
|
797
|
-
declare function AreasFull({ title, areas, classes, href, }: IArticlesFull): react_jsx_runtime.JSX.Element;
|
|
798
|
+
declare function AreasFull({ title, areas, classes, href, children, }: IArticlesFull & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
798
799
|
|
|
799
800
|
interface NewProjectCardProps {
|
|
800
801
|
slug?: string;
|
|
@@ -851,7 +852,7 @@ interface IDevelopersFull {
|
|
|
851
852
|
totalAreas?: number;
|
|
852
853
|
href: string;
|
|
853
854
|
}
|
|
854
|
-
declare function DevelopersFull({ title, devs, classes, href, }: IDevelopersFull): react_jsx_runtime.JSX.Element;
|
|
855
|
+
declare function DevelopersFull({ title, devs, classes, href, children, }: IDevelopersFull & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
855
856
|
|
|
856
857
|
interface IServiceItem {
|
|
857
858
|
imageUrl?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -774,9 +774,10 @@ interface GalleryBlockProps {
|
|
|
774
774
|
}
|
|
775
775
|
declare const GalleryBlock: FC<GalleryBlockProps>;
|
|
776
776
|
|
|
777
|
-
declare
|
|
777
|
+
declare const ContactDubaiBlock: FC<{
|
|
778
778
|
classes?: string;
|
|
779
|
-
|
|
779
|
+
actionComponent?: ReactNode;
|
|
780
|
+
}>;
|
|
780
781
|
|
|
781
782
|
interface IArea {
|
|
782
783
|
imageUrl?: string;
|
|
@@ -794,7 +795,7 @@ interface IArticlesFull {
|
|
|
794
795
|
totalAreas?: number;
|
|
795
796
|
href: string;
|
|
796
797
|
}
|
|
797
|
-
declare function AreasFull({ title, areas, classes, href, }: IArticlesFull): react_jsx_runtime.JSX.Element;
|
|
798
|
+
declare function AreasFull({ title, areas, classes, href, children, }: IArticlesFull & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
798
799
|
|
|
799
800
|
interface NewProjectCardProps {
|
|
800
801
|
slug?: string;
|
|
@@ -851,7 +852,7 @@ interface IDevelopersFull {
|
|
|
851
852
|
totalAreas?: number;
|
|
852
853
|
href: string;
|
|
853
854
|
}
|
|
854
|
-
declare function DevelopersFull({ title, devs, classes, href, }: IDevelopersFull): react_jsx_runtime.JSX.Element;
|
|
855
|
+
declare function DevelopersFull({ title, devs, classes, href, children, }: IDevelopersFull & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
855
856
|
|
|
856
857
|
interface IServiceItem {
|
|
857
858
|
imageUrl?: string;
|