mayak-common-library-payload 0.1.70 → 0.1.72

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
@@ -569,36 +569,36 @@ interface ITrustUs {
569
569
  declare function TrustUs({ className, title, text, numbers, imageUrl, }: ITrustUs): react_jsx_runtime.JSX.Element;
570
570
 
571
571
  interface VacancyBoxInfoProps {
572
- label?: string;
572
+ label?: string | null;
573
573
  updatedAt?: string | null;
574
574
  salary?: string | null;
575
- location?: string;
575
+ location?: string | null;
576
576
  button?: boolean;
577
577
  className?: string;
578
578
  slug?: string | null;
579
579
  href?: string;
580
580
  inLink?: boolean;
581
- linkLabel?: string;
581
+ linkLabel?: string | null;
582
582
  }
583
583
  declare const VacancyBoxInfo: ({ label, updatedAt, className, salary, button, location, slug, href, inLink, linkLabel, }: VacancyBoxInfoProps) => react_jsx_runtime.JSX.Element;
584
584
 
585
585
  interface VacancyInfoItemsProps {
586
586
  updatedAt?: string | null;
587
587
  salary?: string | null;
588
- location?: string;
588
+ location?: string | null;
589
589
  innerClasses?: string;
590
590
  }
591
591
  declare const VacancyInfoItems: FC<VacancyInfoItemsProps>;
592
592
 
593
593
  interface IVacancyContent {
594
- title?: string;
594
+ title?: string | null;
595
595
  description?: ReactNode;
596
596
  date?: string | null;
597
- salary?: string;
598
- location?: string;
597
+ salary?: string | null;
598
+ location?: string | null;
599
599
  className?: string;
600
- phone?: string;
601
- email?: string;
600
+ phone?: string | null;
601
+ email?: string | null;
602
602
  managerText?: string;
603
603
  manager?: {
604
604
  name?: string | null;
package/dist/index.d.ts CHANGED
@@ -569,36 +569,36 @@ interface ITrustUs {
569
569
  declare function TrustUs({ className, title, text, numbers, imageUrl, }: ITrustUs): react_jsx_runtime.JSX.Element;
570
570
 
571
571
  interface VacancyBoxInfoProps {
572
- label?: string;
572
+ label?: string | null;
573
573
  updatedAt?: string | null;
574
574
  salary?: string | null;
575
- location?: string;
575
+ location?: string | null;
576
576
  button?: boolean;
577
577
  className?: string;
578
578
  slug?: string | null;
579
579
  href?: string;
580
580
  inLink?: boolean;
581
- linkLabel?: string;
581
+ linkLabel?: string | null;
582
582
  }
583
583
  declare const VacancyBoxInfo: ({ label, updatedAt, className, salary, button, location, slug, href, inLink, linkLabel, }: VacancyBoxInfoProps) => react_jsx_runtime.JSX.Element;
584
584
 
585
585
  interface VacancyInfoItemsProps {
586
586
  updatedAt?: string | null;
587
587
  salary?: string | null;
588
- location?: string;
588
+ location?: string | null;
589
589
  innerClasses?: string;
590
590
  }
591
591
  declare const VacancyInfoItems: FC<VacancyInfoItemsProps>;
592
592
 
593
593
  interface IVacancyContent {
594
- title?: string;
594
+ title?: string | null;
595
595
  description?: ReactNode;
596
596
  date?: string | null;
597
- salary?: string;
598
- location?: string;
597
+ salary?: string | null;
598
+ location?: string | null;
599
599
  className?: string;
600
- phone?: string;
601
- email?: string;
600
+ phone?: string | null;
601
+ email?: string | null;
602
602
  managerText?: string;
603
603
  manager?: {
604
604
  name?: string | null;