mayak-common-library-payload 0.1.36 → 0.1.37
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 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +3 -3
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -629,12 +629,12 @@ declare const WeOffer: FC<IWeOffer>;
|
|
|
629
629
|
|
|
630
630
|
interface WeTakeFullProps {
|
|
631
631
|
className?: string;
|
|
632
|
-
|
|
633
|
-
title?: string;
|
|
634
|
-
|
|
632
|
+
imageUrl?: string;
|
|
633
|
+
title?: string | null;
|
|
634
|
+
content?: ReactNode;
|
|
635
635
|
actionComponent?: ReactNode;
|
|
636
636
|
}
|
|
637
|
-
declare const WeTakeFull:
|
|
637
|
+
declare const WeTakeFull: ({ className, content, imageUrl, title, actionComponent, }: WeTakeFullProps) => react_jsx_runtime.JSX.Element;
|
|
638
638
|
|
|
639
639
|
interface IWhatIsYourProps {
|
|
640
640
|
className?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -629,12 +629,12 @@ declare const WeOffer: FC<IWeOffer>;
|
|
|
629
629
|
|
|
630
630
|
interface WeTakeFullProps {
|
|
631
631
|
className?: string;
|
|
632
|
-
|
|
633
|
-
title?: string;
|
|
634
|
-
|
|
632
|
+
imageUrl?: string;
|
|
633
|
+
title?: string | null;
|
|
634
|
+
content?: ReactNode;
|
|
635
635
|
actionComponent?: ReactNode;
|
|
636
636
|
}
|
|
637
|
-
declare const WeTakeFull:
|
|
637
|
+
declare const WeTakeFull: ({ className, content, imageUrl, title, actionComponent, }: WeTakeFullProps) => react_jsx_runtime.JSX.Element;
|
|
638
638
|
|
|
639
639
|
interface IWhatIsYourProps {
|
|
640
640
|
className?: string;
|