mayak-common-library-payload 0.1.21 → 0.1.23
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/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -207,7 +207,7 @@ interface IBenefit$1 {
|
|
|
207
207
|
}
|
|
208
208
|
interface BenefitsBlockProps {
|
|
209
209
|
benefits?: IBenefit$1[];
|
|
210
|
-
title?: string;
|
|
210
|
+
title?: string | null;
|
|
211
211
|
className?: string;
|
|
212
212
|
}
|
|
213
213
|
declare const BenefitsBlock: FC<BenefitsBlockProps>;
|
|
@@ -681,7 +681,7 @@ interface TextImageTileBlockProps {
|
|
|
681
681
|
text?: ReactNode;
|
|
682
682
|
image?: string;
|
|
683
683
|
actionComponent?: ReactNode;
|
|
684
|
-
turn?: 'right' | 'left';
|
|
684
|
+
turn?: 'right' | 'left' | null;
|
|
685
685
|
}
|
|
686
686
|
declare const TextImageTileBlock: FC<TextImageTileBlockProps>;
|
|
687
687
|
|
package/dist/index.d.ts
CHANGED
|
@@ -207,7 +207,7 @@ interface IBenefit$1 {
|
|
|
207
207
|
}
|
|
208
208
|
interface BenefitsBlockProps {
|
|
209
209
|
benefits?: IBenefit$1[];
|
|
210
|
-
title?: string;
|
|
210
|
+
title?: string | null;
|
|
211
211
|
className?: string;
|
|
212
212
|
}
|
|
213
213
|
declare const BenefitsBlock: FC<BenefitsBlockProps>;
|
|
@@ -681,7 +681,7 @@ interface TextImageTileBlockProps {
|
|
|
681
681
|
text?: ReactNode;
|
|
682
682
|
image?: string;
|
|
683
683
|
actionComponent?: ReactNode;
|
|
684
|
-
turn?: 'right' | 'left';
|
|
684
|
+
turn?: 'right' | 'left' | null;
|
|
685
685
|
}
|
|
686
686
|
declare const TextImageTileBlock: FC<TextImageTileBlockProps>;
|
|
687
687
|
|