mayak-common-library-payload 0.1.41 → 0.1.43

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
@@ -395,11 +395,11 @@ declare const Gallery: FC<GalleryProps>;
395
395
 
396
396
  interface JoinTeamBlockProps {
397
397
  imageUrl?: string;
398
- title?: string;
398
+ title?: string | null;
399
399
  className?: string;
400
- text?: string;
400
+ content?: ReactNode;
401
401
  }
402
- declare const JoinTeamBlock: FC<JoinTeamBlockProps>;
402
+ declare const JoinTeamBlock: ({ imageUrl, content, title, className, }: JoinTeamBlockProps) => react_jsx_runtime.JSX.Element;
403
403
 
404
404
  interface IItem$1 {
405
405
  text1?: string;
@@ -576,21 +576,21 @@ declare function TrustUs({ className, title, text, numbers, imageUrl, }: ITrustU
576
576
 
577
577
  interface VacancyBoxInfoProps {
578
578
  label?: string;
579
- updatedAt?: string;
580
- salary?: string;
579
+ updatedAt?: string | null;
580
+ salary?: string | null;
581
581
  location?: string;
582
582
  button?: boolean;
583
583
  className?: string;
584
- slug?: string;
584
+ slug?: string | null;
585
585
  href?: string;
586
586
  inLink?: boolean;
587
587
  linkLabel?: string;
588
588
  }
589
- declare const VacancyBoxInfo: FC<VacancyBoxInfoProps>;
589
+ declare const VacancyBoxInfo: ({ label, updatedAt, className, salary, button, location, slug, href, inLink, linkLabel, }: VacancyBoxInfoProps) => react_jsx_runtime.JSX.Element;
590
590
 
591
591
  interface VacancyInfoItemsProps {
592
- updatedAt?: string;
593
- salary?: string;
592
+ updatedAt?: string | null;
593
+ salary?: string | null;
594
594
  location?: string;
595
595
  innerClasses?: string;
596
596
  }
package/dist/index.d.ts CHANGED
@@ -395,11 +395,11 @@ declare const Gallery: FC<GalleryProps>;
395
395
 
396
396
  interface JoinTeamBlockProps {
397
397
  imageUrl?: string;
398
- title?: string;
398
+ title?: string | null;
399
399
  className?: string;
400
- text?: string;
400
+ content?: ReactNode;
401
401
  }
402
- declare const JoinTeamBlock: FC<JoinTeamBlockProps>;
402
+ declare const JoinTeamBlock: ({ imageUrl, content, title, className, }: JoinTeamBlockProps) => react_jsx_runtime.JSX.Element;
403
403
 
404
404
  interface IItem$1 {
405
405
  text1?: string;
@@ -576,21 +576,21 @@ declare function TrustUs({ className, title, text, numbers, imageUrl, }: ITrustU
576
576
 
577
577
  interface VacancyBoxInfoProps {
578
578
  label?: string;
579
- updatedAt?: string;
580
- salary?: string;
579
+ updatedAt?: string | null;
580
+ salary?: string | null;
581
581
  location?: string;
582
582
  button?: boolean;
583
583
  className?: string;
584
- slug?: string;
584
+ slug?: string | null;
585
585
  href?: string;
586
586
  inLink?: boolean;
587
587
  linkLabel?: string;
588
588
  }
589
- declare const VacancyBoxInfo: FC<VacancyBoxInfoProps>;
589
+ declare const VacancyBoxInfo: ({ label, updatedAt, className, salary, button, location, slug, href, inLink, linkLabel, }: VacancyBoxInfoProps) => react_jsx_runtime.JSX.Element;
590
590
 
591
591
  interface VacancyInfoItemsProps {
592
- updatedAt?: string;
593
- salary?: string;
592
+ updatedAt?: string | null;
593
+ salary?: string | null;
594
594
  location?: string;
595
595
  innerClasses?: string;
596
596
  }