mayak-common-library-payload 0.1.30 → 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 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$1[];
218
+ benefits?: IBenefit[];
219
219
  title?: string | null;
220
220
  className?: string;
221
221
  }
222
- declare const BenefitsBlock: FC<BenefitsBlockProps>;
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?: (IBenefit | null)[];
225
+ title?: string | null;
226
+ benefits?: IBenefit[] | null;
233
227
  className?: string;
234
228
  inlineItem?: boolean;
235
229
  }
236
- declare const BenefitsVacanciesBlock: FC<BenefitsVacanciesBlockProps>;
230
+ declare const BenefitsVacanciesBlock: ({ title, benefits, className, inlineItem, }: BenefitsVacanciesBlockProps) => react_jsx_runtime.JSX.Element;
237
231
 
238
232
  interface IComponentItem {
239
233
  text1?: string;
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$1[];
218
+ benefits?: IBenefit[];
219
219
  title?: string | null;
220
220
  className?: string;
221
221
  }
222
- declare const BenefitsBlock: FC<BenefitsBlockProps>;
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?: (IBenefit | null)[];
225
+ title?: string | null;
226
+ benefits?: IBenefit[] | null;
233
227
  className?: string;
234
228
  inlineItem?: boolean;
235
229
  }
236
- declare const BenefitsVacanciesBlock: FC<BenefitsVacanciesBlockProps>;
230
+ declare const BenefitsVacanciesBlock: ({ title, benefits, className, inlineItem, }: BenefitsVacanciesBlockProps) => react_jsx_runtime.JSX.Element;
237
231
 
238
232
  interface IComponentItem {
239
233
  text1?: string;