mayak-common-library 0.0.852 → 0.0.853
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 -5
- package/dist/index.d.ts +2 -5
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
- package/tailwind.config.js +1 -0
package/dist/index.d.mts
CHANGED
|
@@ -701,10 +701,7 @@ declare function VacancyBoxInfo({ updatedAt, className, salary, button, location
|
|
|
701
701
|
|
|
702
702
|
interface IVacancyContent {
|
|
703
703
|
title?: string;
|
|
704
|
-
|
|
705
|
-
additional?: any;
|
|
706
|
-
requirements?: any;
|
|
707
|
-
qualities?: any;
|
|
704
|
+
description?: Document;
|
|
708
705
|
date?: string;
|
|
709
706
|
salary?: string;
|
|
710
707
|
location?: string;
|
|
@@ -715,7 +712,7 @@ interface IVacancyContent {
|
|
|
715
712
|
manager?: any;
|
|
716
713
|
href?: string;
|
|
717
714
|
}
|
|
718
|
-
declare function VacancyContent({ title, salary, date,
|
|
715
|
+
declare function VacancyContent({ title, salary, date, description, location, slugs, className, children, phone, email, manager, href, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
719
716
|
|
|
720
717
|
interface IItem {
|
|
721
718
|
text1?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -701,10 +701,7 @@ declare function VacancyBoxInfo({ updatedAt, className, salary, button, location
|
|
|
701
701
|
|
|
702
702
|
interface IVacancyContent {
|
|
703
703
|
title?: string;
|
|
704
|
-
|
|
705
|
-
additional?: any;
|
|
706
|
-
requirements?: any;
|
|
707
|
-
qualities?: any;
|
|
704
|
+
description?: Document;
|
|
708
705
|
date?: string;
|
|
709
706
|
salary?: string;
|
|
710
707
|
location?: string;
|
|
@@ -715,7 +712,7 @@ interface IVacancyContent {
|
|
|
715
712
|
manager?: any;
|
|
716
713
|
href?: string;
|
|
717
714
|
}
|
|
718
|
-
declare function VacancyContent({ title, salary, date,
|
|
715
|
+
declare function VacancyContent({ title, salary, date, description, location, slugs, className, children, phone, email, manager, href, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
719
716
|
|
|
720
717
|
interface IItem {
|
|
721
718
|
text1?: string;
|