mayak-common-library 0.1.9 → 0.1.10
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 +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -655,6 +655,7 @@ interface IVacancyContent {
|
|
|
655
655
|
date?: string;
|
|
656
656
|
salary?: string;
|
|
657
657
|
location?: string;
|
|
658
|
+
formTitle?: string;
|
|
658
659
|
slugs?: LanguageSlugsType;
|
|
659
660
|
className?: string;
|
|
660
661
|
phone?: string;
|
|
@@ -662,7 +663,7 @@ interface IVacancyContent {
|
|
|
662
663
|
manager?: any;
|
|
663
664
|
href?: string;
|
|
664
665
|
}
|
|
665
|
-
declare function VacancyContent({ title, salary, date, description, location, slugs, className, children, phone, email, manager, href, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
666
|
+
declare function VacancyContent({ title, salary, date, description, location, slugs, className, children, phone, email, manager, href, formTitle, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
666
667
|
|
|
667
668
|
interface IItem {
|
|
668
669
|
text1?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -655,6 +655,7 @@ interface IVacancyContent {
|
|
|
655
655
|
date?: string;
|
|
656
656
|
salary?: string;
|
|
657
657
|
location?: string;
|
|
658
|
+
formTitle?: string;
|
|
658
659
|
slugs?: LanguageSlugsType;
|
|
659
660
|
className?: string;
|
|
660
661
|
phone?: string;
|
|
@@ -662,7 +663,7 @@ interface IVacancyContent {
|
|
|
662
663
|
manager?: any;
|
|
663
664
|
href?: string;
|
|
664
665
|
}
|
|
665
|
-
declare function VacancyContent({ title, salary, date, description, location, slugs, className, children, phone, email, manager, href, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
666
|
+
declare function VacancyContent({ title, salary, date, description, location, slugs, className, children, phone, email, manager, href, formTitle, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
666
667
|
|
|
667
668
|
interface IItem {
|
|
668
669
|
text1?: string;
|