mayak-common-library-payload 0.1.45 → 0.1.46
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 -3
- package/dist/index.d.ts +2 -3
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -192,13 +192,12 @@ interface BannerReferralProgramProps {
|
|
|
192
192
|
className?: string;
|
|
193
193
|
imgPerson?: string;
|
|
194
194
|
imgBack?: string;
|
|
195
|
-
|
|
196
|
-
text?: string;
|
|
195
|
+
additionalContent?: IBenefit;
|
|
197
196
|
box?: IBenefit[];
|
|
198
197
|
personWidth: string;
|
|
199
198
|
personHeight: string;
|
|
200
199
|
}
|
|
201
|
-
declare const BannerReferralProgram: ({ className, box, imgBack, imgPerson,
|
|
200
|
+
declare const BannerReferralProgram: ({ className, box, imgBack, imgPerson, additionalContent, personWidth, personHeight, }: BannerReferralProgramProps) => react_jsx_runtime.JSX.Element;
|
|
202
201
|
|
|
203
202
|
interface BecomePartnerProps {
|
|
204
203
|
className?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -192,13 +192,12 @@ interface BannerReferralProgramProps {
|
|
|
192
192
|
className?: string;
|
|
193
193
|
imgPerson?: string;
|
|
194
194
|
imgBack?: string;
|
|
195
|
-
|
|
196
|
-
text?: string;
|
|
195
|
+
additionalContent?: IBenefit;
|
|
197
196
|
box?: IBenefit[];
|
|
198
197
|
personWidth: string;
|
|
199
198
|
personHeight: string;
|
|
200
199
|
}
|
|
201
|
-
declare const BannerReferralProgram: ({ className, box, imgBack, imgPerson,
|
|
200
|
+
declare const BannerReferralProgram: ({ className, box, imgBack, imgPerson, additionalContent, personWidth, personHeight, }: BannerReferralProgramProps) => react_jsx_runtime.JSX.Element;
|
|
202
201
|
|
|
203
202
|
interface BecomePartnerProps {
|
|
204
203
|
className?: string;
|