mayak-common-library-payload 0.1.29 → 0.1.31
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 +12 -18
- package/dist/index.d.ts +12 -18
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -63,6 +63,11 @@ interface IWorker {
|
|
|
63
63
|
email?: string | null;
|
|
64
64
|
bgImage?: string | null;
|
|
65
65
|
}
|
|
66
|
+
interface IBenefit {
|
|
67
|
+
image?: string;
|
|
68
|
+
label?: string;
|
|
69
|
+
description?: ReactNode;
|
|
70
|
+
}
|
|
66
71
|
|
|
67
72
|
interface INumberText {
|
|
68
73
|
number?: number | null;
|
|
@@ -209,31 +214,20 @@ interface BecomePartnerProps {
|
|
|
209
214
|
}
|
|
210
215
|
declare const BecomePartner: FC<BecomePartnerProps>;
|
|
211
216
|
|
|
212
|
-
interface IBenefit$1 {
|
|
213
|
-
image?: string;
|
|
214
|
-
label?: string;
|
|
215
|
-
description?: ReactNode;
|
|
216
|
-
}
|
|
217
217
|
interface BenefitsBlockProps {
|
|
218
|
-
benefits?: IBenefit
|
|
218
|
+
benefits?: IBenefit[];
|
|
219
219
|
title?: string | null;
|
|
220
220
|
className?: string;
|
|
221
221
|
}
|
|
222
|
-
declare const BenefitsBlock:
|
|
222
|
+
declare const BenefitsBlock: ({ benefits, className, title }: BenefitsBlockProps) => react_jsx_runtime.JSX.Element;
|
|
223
223
|
|
|
224
|
-
interface IBenefit {
|
|
225
|
-
imageUrl?: string;
|
|
226
|
-
text1?: string;
|
|
227
|
-
text2?: string;
|
|
228
|
-
icon?: ReactNode;
|
|
229
|
-
}
|
|
230
224
|
interface BenefitsVacanciesBlockProps {
|
|
231
|
-
title?: string;
|
|
232
|
-
benefits?:
|
|
225
|
+
title?: string | null;
|
|
226
|
+
benefits?: IBenefit[] | null;
|
|
233
227
|
className?: string;
|
|
234
228
|
inlineItem?: boolean;
|
|
235
229
|
}
|
|
236
|
-
declare const BenefitsVacanciesBlock:
|
|
230
|
+
declare const BenefitsVacanciesBlock: ({ title, benefits, className, inlineItem, }: BenefitsVacanciesBlockProps) => react_jsx_runtime.JSX.Element;
|
|
237
231
|
|
|
238
232
|
interface IComponentItem {
|
|
239
233
|
text1?: string;
|
|
@@ -503,8 +497,8 @@ interface IBoxItem$2 {
|
|
|
503
497
|
label?: string;
|
|
504
498
|
from?: string;
|
|
505
499
|
to?: string;
|
|
506
|
-
description?:
|
|
507
|
-
date?: string;
|
|
500
|
+
description?: ReactNode;
|
|
501
|
+
date?: string | null;
|
|
508
502
|
income?: string;
|
|
509
503
|
}
|
|
510
504
|
interface IPortfoliosProps {
|
package/dist/index.d.ts
CHANGED
|
@@ -63,6 +63,11 @@ interface IWorker {
|
|
|
63
63
|
email?: string | null;
|
|
64
64
|
bgImage?: string | null;
|
|
65
65
|
}
|
|
66
|
+
interface IBenefit {
|
|
67
|
+
image?: string;
|
|
68
|
+
label?: string;
|
|
69
|
+
description?: ReactNode;
|
|
70
|
+
}
|
|
66
71
|
|
|
67
72
|
interface INumberText {
|
|
68
73
|
number?: number | null;
|
|
@@ -209,31 +214,20 @@ interface BecomePartnerProps {
|
|
|
209
214
|
}
|
|
210
215
|
declare const BecomePartner: FC<BecomePartnerProps>;
|
|
211
216
|
|
|
212
|
-
interface IBenefit$1 {
|
|
213
|
-
image?: string;
|
|
214
|
-
label?: string;
|
|
215
|
-
description?: ReactNode;
|
|
216
|
-
}
|
|
217
217
|
interface BenefitsBlockProps {
|
|
218
|
-
benefits?: IBenefit
|
|
218
|
+
benefits?: IBenefit[];
|
|
219
219
|
title?: string | null;
|
|
220
220
|
className?: string;
|
|
221
221
|
}
|
|
222
|
-
declare const BenefitsBlock:
|
|
222
|
+
declare const BenefitsBlock: ({ benefits, className, title }: BenefitsBlockProps) => react_jsx_runtime.JSX.Element;
|
|
223
223
|
|
|
224
|
-
interface IBenefit {
|
|
225
|
-
imageUrl?: string;
|
|
226
|
-
text1?: string;
|
|
227
|
-
text2?: string;
|
|
228
|
-
icon?: ReactNode;
|
|
229
|
-
}
|
|
230
224
|
interface BenefitsVacanciesBlockProps {
|
|
231
|
-
title?: string;
|
|
232
|
-
benefits?:
|
|
225
|
+
title?: string | null;
|
|
226
|
+
benefits?: IBenefit[] | null;
|
|
233
227
|
className?: string;
|
|
234
228
|
inlineItem?: boolean;
|
|
235
229
|
}
|
|
236
|
-
declare const BenefitsVacanciesBlock:
|
|
230
|
+
declare const BenefitsVacanciesBlock: ({ title, benefits, className, inlineItem, }: BenefitsVacanciesBlockProps) => react_jsx_runtime.JSX.Element;
|
|
237
231
|
|
|
238
232
|
interface IComponentItem {
|
|
239
233
|
text1?: string;
|
|
@@ -503,8 +497,8 @@ interface IBoxItem$2 {
|
|
|
503
497
|
label?: string;
|
|
504
498
|
from?: string;
|
|
505
499
|
to?: string;
|
|
506
|
-
description?:
|
|
507
|
-
date?: string;
|
|
500
|
+
description?: ReactNode;
|
|
501
|
+
date?: string | null;
|
|
508
502
|
income?: string;
|
|
509
503
|
}
|
|
510
504
|
interface IPortfoliosProps {
|