mayak-common-library 0.0.238 → 0.0.239
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 +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +8 -8
- package/dist/index.mjs +8 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -665,8 +665,11 @@ interface IVacancyContent {
|
|
|
665
665
|
city?: string;
|
|
666
666
|
slugs?: LanguageSlugsType;
|
|
667
667
|
classes?: string;
|
|
668
|
+
phone?: string;
|
|
669
|
+
email?: string;
|
|
670
|
+
manager?: any;
|
|
668
671
|
}
|
|
669
|
-
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, classes, }: IVacancyContent): react_jsx_runtime.JSX.Element;
|
|
672
|
+
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, classes, children, phone, email, manager, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
670
673
|
|
|
671
674
|
interface IItem {
|
|
672
675
|
text1?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -665,8 +665,11 @@ interface IVacancyContent {
|
|
|
665
665
|
city?: string;
|
|
666
666
|
slugs?: LanguageSlugsType;
|
|
667
667
|
classes?: string;
|
|
668
|
+
phone?: string;
|
|
669
|
+
email?: string;
|
|
670
|
+
manager?: any;
|
|
668
671
|
}
|
|
669
|
-
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, classes, }: IVacancyContent): react_jsx_runtime.JSX.Element;
|
|
672
|
+
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, classes, children, phone, email, manager, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
670
673
|
|
|
671
674
|
interface IItem {
|
|
672
675
|
text1?: string;
|