mayak-common-library 0.0.724 → 0.0.725
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 +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -755,7 +755,7 @@ declare function WhatIsYour({ classes, text3, text2, text1, title, }: IWhatIsYou
|
|
|
755
755
|
interface TextImageTileBlockProps {
|
|
756
756
|
classes?: string;
|
|
757
757
|
title?: string;
|
|
758
|
-
text?: Document | string;
|
|
758
|
+
text?: Document | string | null;
|
|
759
759
|
image?: string;
|
|
760
760
|
actionComponent?: ReactNode;
|
|
761
761
|
turn?: 'right' | 'left';
|
package/dist/index.d.ts
CHANGED
|
@@ -755,7 +755,7 @@ declare function WhatIsYour({ classes, text3, text2, text1, title, }: IWhatIsYou
|
|
|
755
755
|
interface TextImageTileBlockProps {
|
|
756
756
|
classes?: string;
|
|
757
757
|
title?: string;
|
|
758
|
-
text?: Document | string;
|
|
758
|
+
text?: Document | string | null;
|
|
759
759
|
image?: string;
|
|
760
760
|
actionComponent?: ReactNode;
|
|
761
761
|
turn?: 'right' | 'left';
|