mayak-common-library-payload 0.1.43 → 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 +8 -5
- package/dist/index.d.ts +8 -5
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -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
|
@@ -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;
|