mayak-common-library-payload 0.1.46 → 0.1.48
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 +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -658,14 +658,14 @@ interface TextImageTileBlockProps {
|
|
|
658
658
|
declare const TextImageTileBlock: FC<TextImageTileBlockProps>;
|
|
659
659
|
|
|
660
660
|
interface IBoxItem {
|
|
661
|
-
|
|
662
|
-
label?: string;
|
|
663
|
-
|
|
661
|
+
title?: string | null;
|
|
662
|
+
label?: string | null;
|
|
663
|
+
description?: ReactNode;
|
|
664
664
|
}
|
|
665
665
|
interface WhyShouldWorkProps {
|
|
666
666
|
className?: string;
|
|
667
|
-
title?: string;
|
|
668
|
-
|
|
667
|
+
title?: string | null;
|
|
668
|
+
content?: ReactNode;
|
|
669
669
|
box?: IBoxItem[];
|
|
670
670
|
actionComponent?: ReactNode;
|
|
671
671
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -658,14 +658,14 @@ interface TextImageTileBlockProps {
|
|
|
658
658
|
declare const TextImageTileBlock: FC<TextImageTileBlockProps>;
|
|
659
659
|
|
|
660
660
|
interface IBoxItem {
|
|
661
|
-
|
|
662
|
-
label?: string;
|
|
663
|
-
|
|
661
|
+
title?: string | null;
|
|
662
|
+
label?: string | null;
|
|
663
|
+
description?: ReactNode;
|
|
664
664
|
}
|
|
665
665
|
interface WhyShouldWorkProps {
|
|
666
666
|
className?: string;
|
|
667
|
-
title?: string;
|
|
668
|
-
|
|
667
|
+
title?: string | null;
|
|
668
|
+
content?: ReactNode;
|
|
669
669
|
box?: IBoxItem[];
|
|
670
670
|
actionComponent?: ReactNode;
|
|
671
671
|
}
|