mayak-common-library-payload 0.1.39 → 0.1.41
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 +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -763,9 +763,9 @@ declare function ProjectsSlider({ className, projects, title, href, }: IProjects
|
|
|
763
763
|
|
|
764
764
|
interface IServiceItem {
|
|
765
765
|
imageUrl?: string;
|
|
766
|
-
title?: string;
|
|
767
|
-
|
|
768
|
-
slug?: string;
|
|
766
|
+
title?: string | null;
|
|
767
|
+
subtitle?: string | null;
|
|
768
|
+
slug?: string | null;
|
|
769
769
|
href: string;
|
|
770
770
|
}
|
|
771
771
|
interface ServicesFullProps {
|
|
@@ -775,7 +775,7 @@ interface ServicesFullProps {
|
|
|
775
775
|
href: string;
|
|
776
776
|
linkLabel: string;
|
|
777
777
|
}
|
|
778
|
-
declare const ServicesFull:
|
|
778
|
+
declare const ServicesFull: ({ services, className, href, linkLabel, }: ServicesFullProps) => react_jsx_runtime.JSX.Element;
|
|
779
779
|
|
|
780
780
|
interface DeveloperBannerProps {
|
|
781
781
|
className?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -763,9 +763,9 @@ declare function ProjectsSlider({ className, projects, title, href, }: IProjects
|
|
|
763
763
|
|
|
764
764
|
interface IServiceItem {
|
|
765
765
|
imageUrl?: string;
|
|
766
|
-
title?: string;
|
|
767
|
-
|
|
768
|
-
slug?: string;
|
|
766
|
+
title?: string | null;
|
|
767
|
+
subtitle?: string | null;
|
|
768
|
+
slug?: string | null;
|
|
769
769
|
href: string;
|
|
770
770
|
}
|
|
771
771
|
interface ServicesFullProps {
|
|
@@ -775,7 +775,7 @@ interface ServicesFullProps {
|
|
|
775
775
|
href: string;
|
|
776
776
|
linkLabel: string;
|
|
777
777
|
}
|
|
778
|
-
declare const ServicesFull:
|
|
778
|
+
declare const ServicesFull: ({ services, className, href, linkLabel, }: ServicesFullProps) => react_jsx_runtime.JSX.Element;
|
|
779
779
|
|
|
780
780
|
interface DeveloperBannerProps {
|
|
781
781
|
className?: string;
|