mayak-common-library 0.0.173 → 0.0.175
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/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -756,7 +756,7 @@ interface IArticlesFull {
|
|
|
756
756
|
declare function AreasFull({ title, areas, classes, href, }: IArticlesFull): react_jsx_runtime.JSX.Element;
|
|
757
757
|
|
|
758
758
|
interface NewProjectCardProps {
|
|
759
|
-
slug
|
|
759
|
+
slug?: string;
|
|
760
760
|
imgSrc?: string;
|
|
761
761
|
title?: string;
|
|
762
762
|
address?: string;
|
|
@@ -807,9 +807,9 @@ interface IDevelopersSliderProps {
|
|
|
807
807
|
declare function DevelopersSlider({ classes, developers, title, href, }: IDevelopersSliderProps): react_jsx_runtime.JSX.Element;
|
|
808
808
|
|
|
809
809
|
interface IDeveloperItem {
|
|
810
|
-
img
|
|
811
|
-
title
|
|
812
|
-
text
|
|
810
|
+
img?: string;
|
|
811
|
+
title?: string;
|
|
812
|
+
text?: string;
|
|
813
813
|
}
|
|
814
814
|
interface IDevelopersProps {
|
|
815
815
|
classes?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -756,7 +756,7 @@ interface IArticlesFull {
|
|
|
756
756
|
declare function AreasFull({ title, areas, classes, href, }: IArticlesFull): react_jsx_runtime.JSX.Element;
|
|
757
757
|
|
|
758
758
|
interface NewProjectCardProps {
|
|
759
|
-
slug
|
|
759
|
+
slug?: string;
|
|
760
760
|
imgSrc?: string;
|
|
761
761
|
title?: string;
|
|
762
762
|
address?: string;
|
|
@@ -807,9 +807,9 @@ interface IDevelopersSliderProps {
|
|
|
807
807
|
declare function DevelopersSlider({ classes, developers, title, href, }: IDevelopersSliderProps): react_jsx_runtime.JSX.Element;
|
|
808
808
|
|
|
809
809
|
interface IDeveloperItem {
|
|
810
|
-
img
|
|
811
|
-
title
|
|
812
|
-
text
|
|
810
|
+
img?: string;
|
|
811
|
+
title?: string;
|
|
812
|
+
text?: string;
|
|
813
813
|
}
|
|
814
814
|
interface IDevelopersProps {
|
|
815
815
|
classes?: string;
|