mayak-common-library 0.0.713 → 0.0.715

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
@@ -753,12 +753,11 @@ declare function WhatIsYour({ classes, text3, text2, text1, title, }: IWhatIsYou
753
753
 
754
754
  interface TextImageTileBlockProps {
755
755
  classes?: string;
756
- title1?: string;
757
- title2?: string;
758
- text1?: string;
759
- text2?: string;
760
- images?: string[];
756
+ title?: string;
757
+ text?: Document;
758
+ image?: string;
761
759
  actionComponent?: ReactNode;
760
+ turn?: 'right' | 'left';
762
761
  }
763
762
  declare const TextImageTileBlock: FC<TextImageTileBlockProps>;
764
763
 
package/dist/index.d.ts CHANGED
@@ -753,12 +753,11 @@ declare function WhatIsYour({ classes, text3, text2, text1, title, }: IWhatIsYou
753
753
 
754
754
  interface TextImageTileBlockProps {
755
755
  classes?: string;
756
- title1?: string;
757
- title2?: string;
758
- text1?: string;
759
- text2?: string;
760
- images?: string[];
756
+ title?: string;
757
+ text?: Document;
758
+ image?: string;
761
759
  actionComponent?: ReactNode;
760
+ turn?: 'right' | 'left';
762
761
  }
763
762
  declare const TextImageTileBlock: FC<TextImageTileBlockProps>;
764
763