mayak-common-library 0.0.712 → 0.0.714
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 -5
- package/dist/index.d.ts +4 -5
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
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
|
-
|
|
757
|
-
|
|
758
|
-
|
|
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
|
-
|
|
757
|
-
|
|
758
|
-
|
|
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
|
|