mayak-common-library 0.0.726 → 0.0.728
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -2
package/dist/index.d.mts
CHANGED
|
@@ -790,8 +790,8 @@ interface IWhyWe {
|
|
|
790
790
|
declare function WhyWe({ items, title, classes, imageUrl }: IWhyWe): react_jsx_runtime.JSX.Element;
|
|
791
791
|
|
|
792
792
|
interface ObjectInfoBlockProps {
|
|
793
|
-
title: string;
|
|
794
|
-
|
|
793
|
+
title: string | null;
|
|
794
|
+
text: string | null;
|
|
795
795
|
properties: {
|
|
796
796
|
title: string;
|
|
797
797
|
desc?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -790,8 +790,8 @@ interface IWhyWe {
|
|
|
790
790
|
declare function WhyWe({ items, title, classes, imageUrl }: IWhyWe): react_jsx_runtime.JSX.Element;
|
|
791
791
|
|
|
792
792
|
interface ObjectInfoBlockProps {
|
|
793
|
-
title: string;
|
|
794
|
-
|
|
793
|
+
title: string | null;
|
|
794
|
+
text: string | null;
|
|
795
795
|
properties: {
|
|
796
796
|
title: string;
|
|
797
797
|
desc?: string | null;
|