mayak-common-library 0.0.237 → 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 +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +8 -8
- package/dist/index.mjs +8 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -230,6 +230,7 @@ interface IBenefit {
|
|
|
230
230
|
imageUrl?: string;
|
|
231
231
|
text1?: string;
|
|
232
232
|
text2?: string;
|
|
233
|
+
icon?: ReactNode;
|
|
233
234
|
}
|
|
234
235
|
interface BenefitsVacanciesBlockProps {
|
|
235
236
|
title?: string;
|
|
@@ -664,8 +665,11 @@ interface IVacancyContent {
|
|
|
664
665
|
city?: string;
|
|
665
666
|
slugs?: LanguageSlugsType;
|
|
666
667
|
classes?: string;
|
|
668
|
+
phone?: string;
|
|
669
|
+
email?: string;
|
|
670
|
+
manager?: any;
|
|
667
671
|
}
|
|
668
|
-
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;
|
|
669
673
|
|
|
670
674
|
interface IItem {
|
|
671
675
|
text1?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -230,6 +230,7 @@ interface IBenefit {
|
|
|
230
230
|
imageUrl?: string;
|
|
231
231
|
text1?: string;
|
|
232
232
|
text2?: string;
|
|
233
|
+
icon?: ReactNode;
|
|
233
234
|
}
|
|
234
235
|
interface BenefitsVacanciesBlockProps {
|
|
235
236
|
title?: string;
|
|
@@ -664,8 +665,11 @@ interface IVacancyContent {
|
|
|
664
665
|
city?: string;
|
|
665
666
|
slugs?: LanguageSlugsType;
|
|
666
667
|
classes?: string;
|
|
668
|
+
phone?: string;
|
|
669
|
+
email?: string;
|
|
670
|
+
manager?: any;
|
|
667
671
|
}
|
|
668
|
-
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;
|
|
669
673
|
|
|
670
674
|
interface IItem {
|
|
671
675
|
text1?: string;
|