mayak-common-library-payload 0.1.30 → 0.1.32
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 +16 -27
- package/dist/index.d.ts +16 -27
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -63,12 +63,17 @@ 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;
|
|
69
74
|
text?: string | null;
|
|
70
75
|
}
|
|
71
|
-
interface IBoxItem$
|
|
76
|
+
interface IBoxItem$5 {
|
|
72
77
|
title?: string | null;
|
|
73
78
|
label?: string | null;
|
|
74
79
|
description?: ReactNode | null;
|
|
@@ -76,7 +81,7 @@ interface IBoxItem$6 {
|
|
|
76
81
|
interface AboutCompanyMainProps {
|
|
77
82
|
title?: string | null;
|
|
78
83
|
content: ReactNode;
|
|
79
|
-
box?: IBoxItem$
|
|
84
|
+
box?: IBoxItem$5[] | null;
|
|
80
85
|
workerCeo?: IWorker | null;
|
|
81
86
|
className?: string;
|
|
82
87
|
site?: Site;
|
|
@@ -101,7 +106,7 @@ interface IAboutUsFirstBlockProps {
|
|
|
101
106
|
}
|
|
102
107
|
declare function AboutUsFirstBlock({ className, box, content, additionalContent, title, actionButton, videoLink, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
103
108
|
|
|
104
|
-
interface IBoxItem$
|
|
109
|
+
interface IBoxItem$4 {
|
|
105
110
|
icon?: string;
|
|
106
111
|
label?: string;
|
|
107
112
|
text?: string;
|
|
@@ -109,7 +114,7 @@ interface IBoxItem$5 {
|
|
|
109
114
|
interface AmenitiesBlockProps {
|
|
110
115
|
className?: string;
|
|
111
116
|
title?: string;
|
|
112
|
-
box?: IBoxItem$
|
|
117
|
+
box?: IBoxItem$4[];
|
|
113
118
|
}
|
|
114
119
|
declare const AmenitiesBlock: FC<AmenitiesBlockProps>;
|
|
115
120
|
|
|
@@ -183,22 +188,17 @@ interface BannerBlock2Props {
|
|
|
183
188
|
}
|
|
184
189
|
declare const BannerBlock2: FC<BannerBlock2Props>;
|
|
185
190
|
|
|
186
|
-
interface IBoxItem$4 {
|
|
187
|
-
text1?: string;
|
|
188
|
-
text2?: string;
|
|
189
|
-
icon?: string;
|
|
190
|
-
}
|
|
191
191
|
interface BannerReferralProgramProps {
|
|
192
192
|
className?: string;
|
|
193
193
|
imgPerson?: string;
|
|
194
194
|
imgBack?: string;
|
|
195
195
|
strongText?: string;
|
|
196
196
|
text?: string;
|
|
197
|
-
box?:
|
|
197
|
+
box?: IBenefit[];
|
|
198
198
|
personWidth: string;
|
|
199
199
|
personHeight: string;
|
|
200
200
|
}
|
|
201
|
-
declare const BannerReferralProgram:
|
|
201
|
+
declare const BannerReferralProgram: ({ className, box, imgBack, imgPerson, strongText, text, personWidth, personHeight, }: BannerReferralProgramProps) => react_jsx_runtime.JSX.Element;
|
|
202
202
|
|
|
203
203
|
interface BecomePartnerProps {
|
|
204
204
|
className?: string;
|
|
@@ -209,31 +209,20 @@ interface BecomePartnerProps {
|
|
|
209
209
|
}
|
|
210
210
|
declare const BecomePartner: FC<BecomePartnerProps>;
|
|
211
211
|
|
|
212
|
-
interface IBenefit$1 {
|
|
213
|
-
image?: string;
|
|
214
|
-
label?: string;
|
|
215
|
-
description?: ReactNode;
|
|
216
|
-
}
|
|
217
212
|
interface BenefitsBlockProps {
|
|
218
|
-
benefits?: IBenefit
|
|
213
|
+
benefits?: IBenefit[];
|
|
219
214
|
title?: string | null;
|
|
220
215
|
className?: string;
|
|
221
216
|
}
|
|
222
|
-
declare const BenefitsBlock:
|
|
217
|
+
declare const BenefitsBlock: ({ benefits, className, title }: BenefitsBlockProps) => react_jsx_runtime.JSX.Element;
|
|
223
218
|
|
|
224
|
-
interface IBenefit {
|
|
225
|
-
imageUrl?: string;
|
|
226
|
-
text1?: string;
|
|
227
|
-
text2?: string;
|
|
228
|
-
icon?: ReactNode;
|
|
229
|
-
}
|
|
230
219
|
interface BenefitsVacanciesBlockProps {
|
|
231
|
-
title?: string;
|
|
232
|
-
benefits?:
|
|
220
|
+
title?: string | null;
|
|
221
|
+
benefits?: IBenefit[] | null;
|
|
233
222
|
className?: string;
|
|
234
223
|
inlineItem?: boolean;
|
|
235
224
|
}
|
|
236
|
-
declare const BenefitsVacanciesBlock:
|
|
225
|
+
declare const BenefitsVacanciesBlock: ({ title, benefits, className, inlineItem, }: BenefitsVacanciesBlockProps) => react_jsx_runtime.JSX.Element;
|
|
237
226
|
|
|
238
227
|
interface IComponentItem {
|
|
239
228
|
text1?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -63,12 +63,17 @@ 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;
|
|
69
74
|
text?: string | null;
|
|
70
75
|
}
|
|
71
|
-
interface IBoxItem$
|
|
76
|
+
interface IBoxItem$5 {
|
|
72
77
|
title?: string | null;
|
|
73
78
|
label?: string | null;
|
|
74
79
|
description?: ReactNode | null;
|
|
@@ -76,7 +81,7 @@ interface IBoxItem$6 {
|
|
|
76
81
|
interface AboutCompanyMainProps {
|
|
77
82
|
title?: string | null;
|
|
78
83
|
content: ReactNode;
|
|
79
|
-
box?: IBoxItem$
|
|
84
|
+
box?: IBoxItem$5[] | null;
|
|
80
85
|
workerCeo?: IWorker | null;
|
|
81
86
|
className?: string;
|
|
82
87
|
site?: Site;
|
|
@@ -101,7 +106,7 @@ interface IAboutUsFirstBlockProps {
|
|
|
101
106
|
}
|
|
102
107
|
declare function AboutUsFirstBlock({ className, box, content, additionalContent, title, actionButton, videoLink, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
103
108
|
|
|
104
|
-
interface IBoxItem$
|
|
109
|
+
interface IBoxItem$4 {
|
|
105
110
|
icon?: string;
|
|
106
111
|
label?: string;
|
|
107
112
|
text?: string;
|
|
@@ -109,7 +114,7 @@ interface IBoxItem$5 {
|
|
|
109
114
|
interface AmenitiesBlockProps {
|
|
110
115
|
className?: string;
|
|
111
116
|
title?: string;
|
|
112
|
-
box?: IBoxItem$
|
|
117
|
+
box?: IBoxItem$4[];
|
|
113
118
|
}
|
|
114
119
|
declare const AmenitiesBlock: FC<AmenitiesBlockProps>;
|
|
115
120
|
|
|
@@ -183,22 +188,17 @@ interface BannerBlock2Props {
|
|
|
183
188
|
}
|
|
184
189
|
declare const BannerBlock2: FC<BannerBlock2Props>;
|
|
185
190
|
|
|
186
|
-
interface IBoxItem$4 {
|
|
187
|
-
text1?: string;
|
|
188
|
-
text2?: string;
|
|
189
|
-
icon?: string;
|
|
190
|
-
}
|
|
191
191
|
interface BannerReferralProgramProps {
|
|
192
192
|
className?: string;
|
|
193
193
|
imgPerson?: string;
|
|
194
194
|
imgBack?: string;
|
|
195
195
|
strongText?: string;
|
|
196
196
|
text?: string;
|
|
197
|
-
box?:
|
|
197
|
+
box?: IBenefit[];
|
|
198
198
|
personWidth: string;
|
|
199
199
|
personHeight: string;
|
|
200
200
|
}
|
|
201
|
-
declare const BannerReferralProgram:
|
|
201
|
+
declare const BannerReferralProgram: ({ className, box, imgBack, imgPerson, strongText, text, personWidth, personHeight, }: BannerReferralProgramProps) => react_jsx_runtime.JSX.Element;
|
|
202
202
|
|
|
203
203
|
interface BecomePartnerProps {
|
|
204
204
|
className?: string;
|
|
@@ -209,31 +209,20 @@ interface BecomePartnerProps {
|
|
|
209
209
|
}
|
|
210
210
|
declare const BecomePartner: FC<BecomePartnerProps>;
|
|
211
211
|
|
|
212
|
-
interface IBenefit$1 {
|
|
213
|
-
image?: string;
|
|
214
|
-
label?: string;
|
|
215
|
-
description?: ReactNode;
|
|
216
|
-
}
|
|
217
212
|
interface BenefitsBlockProps {
|
|
218
|
-
benefits?: IBenefit
|
|
213
|
+
benefits?: IBenefit[];
|
|
219
214
|
title?: string | null;
|
|
220
215
|
className?: string;
|
|
221
216
|
}
|
|
222
|
-
declare const BenefitsBlock:
|
|
217
|
+
declare const BenefitsBlock: ({ benefits, className, title }: BenefitsBlockProps) => react_jsx_runtime.JSX.Element;
|
|
223
218
|
|
|
224
|
-
interface IBenefit {
|
|
225
|
-
imageUrl?: string;
|
|
226
|
-
text1?: string;
|
|
227
|
-
text2?: string;
|
|
228
|
-
icon?: ReactNode;
|
|
229
|
-
}
|
|
230
219
|
interface BenefitsVacanciesBlockProps {
|
|
231
|
-
title?: string;
|
|
232
|
-
benefits?:
|
|
220
|
+
title?: string | null;
|
|
221
|
+
benefits?: IBenefit[] | null;
|
|
233
222
|
className?: string;
|
|
234
223
|
inlineItem?: boolean;
|
|
235
224
|
}
|
|
236
|
-
declare const BenefitsVacanciesBlock:
|
|
225
|
+
declare const BenefitsVacanciesBlock: ({ title, benefits, className, inlineItem, }: BenefitsVacanciesBlockProps) => react_jsx_runtime.JSX.Element;
|
|
237
226
|
|
|
238
227
|
interface IComponentItem {
|
|
239
228
|
text1?: string;
|