mayak-common-library 0.0.241 → 0.0.243
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 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +3 -3
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
- package/tailwind.config.js +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -668,8 +668,9 @@ interface IVacancyContent {
|
|
|
668
668
|
phone?: string;
|
|
669
669
|
email?: string;
|
|
670
670
|
manager?: any;
|
|
671
|
+
href?: string;
|
|
671
672
|
}
|
|
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;
|
|
673
|
+
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, classes, children, phone, email, manager, href, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
673
674
|
|
|
674
675
|
interface IItem {
|
|
675
676
|
text1?: string;
|
|
@@ -914,7 +915,8 @@ declare enum hrefSlugPrefix {
|
|
|
914
915
|
CATALOG = "/catalog/object/",
|
|
915
916
|
NEWS = "/news/",
|
|
916
917
|
BLOG = "/blog/",
|
|
917
|
-
VACANCY = "/vacancies/"
|
|
918
|
+
VACANCY = "/vacancies/",
|
|
919
|
+
CAREERS = "/careers/"
|
|
918
920
|
}
|
|
919
921
|
interface LocaleSlugSlice {
|
|
920
922
|
slugs: LanguageSlugsType | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -668,8 +668,9 @@ interface IVacancyContent {
|
|
|
668
668
|
phone?: string;
|
|
669
669
|
email?: string;
|
|
670
670
|
manager?: any;
|
|
671
|
+
href?: string;
|
|
671
672
|
}
|
|
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;
|
|
673
|
+
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, classes, children, phone, email, manager, href, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
673
674
|
|
|
674
675
|
interface IItem {
|
|
675
676
|
text1?: string;
|
|
@@ -914,7 +915,8 @@ declare enum hrefSlugPrefix {
|
|
|
914
915
|
CATALOG = "/catalog/object/",
|
|
915
916
|
NEWS = "/news/",
|
|
916
917
|
BLOG = "/blog/",
|
|
917
|
-
VACANCY = "/vacancies/"
|
|
918
|
+
VACANCY = "/vacancies/",
|
|
919
|
+
CAREERS = "/careers/"
|
|
918
920
|
}
|
|
919
921
|
interface LocaleSlugSlice {
|
|
920
922
|
slugs: LanguageSlugsType | undefined;
|