mayak-common-library-payload 0.1.42 → 0.1.44
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 +14 -11
- package/dist/index.d.ts +14 -11
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -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:
|
|
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
|
}
|
|
@@ -599,17 +599,20 @@ declare const VacancyInfoItems: FC<VacancyInfoItemsProps>;
|
|
|
599
599
|
interface IVacancyContent {
|
|
600
600
|
title?: string;
|
|
601
601
|
description?: ReactNode;
|
|
602
|
-
date?: string;
|
|
602
|
+
date?: string | null;
|
|
603
603
|
salary?: string;
|
|
604
604
|
location?: string;
|
|
605
|
-
slugs?: LanguageSlugsType;
|
|
606
605
|
className?: string;
|
|
607
606
|
phone?: string;
|
|
608
607
|
email?: string;
|
|
609
|
-
|
|
610
|
-
|
|
608
|
+
managerText?: string;
|
|
609
|
+
manager?: {
|
|
610
|
+
name?: string | null;
|
|
611
|
+
image?: string | null;
|
|
612
|
+
position?: string | null;
|
|
613
|
+
};
|
|
611
614
|
}
|
|
612
|
-
declare function VacancyContent({ title, salary, date, description, location,
|
|
615
|
+
declare function VacancyContent({ title, salary, date, description, location, className, children, phone, email, manager, managerText, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
613
616
|
|
|
614
617
|
interface IItem {
|
|
615
618
|
text1?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -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:
|
|
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
|
}
|
|
@@ -599,17 +599,20 @@ declare const VacancyInfoItems: FC<VacancyInfoItemsProps>;
|
|
|
599
599
|
interface IVacancyContent {
|
|
600
600
|
title?: string;
|
|
601
601
|
description?: ReactNode;
|
|
602
|
-
date?: string;
|
|
602
|
+
date?: string | null;
|
|
603
603
|
salary?: string;
|
|
604
604
|
location?: string;
|
|
605
|
-
slugs?: LanguageSlugsType;
|
|
606
605
|
className?: string;
|
|
607
606
|
phone?: string;
|
|
608
607
|
email?: string;
|
|
609
|
-
|
|
610
|
-
|
|
608
|
+
managerText?: string;
|
|
609
|
+
manager?: {
|
|
610
|
+
name?: string | null;
|
|
611
|
+
image?: string | null;
|
|
612
|
+
position?: string | null;
|
|
613
|
+
};
|
|
611
614
|
}
|
|
612
|
-
declare function VacancyContent({ title, salary, date, description, location,
|
|
615
|
+
declare function VacancyContent({ title, salary, date, description, location, className, children, phone, email, manager, managerText, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
613
616
|
|
|
614
617
|
interface IItem {
|
|
615
618
|
text1?: string;
|