mayak-common-library 0.0.725 → 0.0.727

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 CHANGED
@@ -754,7 +754,7 @@ declare function WhatIsYour({ classes, text3, text2, text1, title, }: IWhatIsYou
754
754
 
755
755
  interface TextImageTileBlockProps {
756
756
  classes?: string;
757
- title?: string;
757
+ title?: string | null;
758
758
  text?: Document | string | null;
759
759
  image?: string;
760
760
  actionComponent?: ReactNode;
@@ -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
- text1: string;
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
@@ -754,7 +754,7 @@ declare function WhatIsYour({ classes, text3, text2, text1, title, }: IWhatIsYou
754
754
 
755
755
  interface TextImageTileBlockProps {
756
756
  classes?: string;
757
- title?: string;
757
+ title?: string | null;
758
758
  text?: Document | string | null;
759
759
  image?: string;
760
760
  actionComponent?: ReactNode;
@@ -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
- text1: string;
793
+ title: string | null;
794
+ text: string | null;
795
795
  properties: {
796
796
  title: string;
797
797
  desc?: string | null;