mayak-common-library 0.0.233 → 0.0.235
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 -3
- package/dist/index.d.ts +5 -3
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
- package/tailwind.config.js +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -139,8 +139,9 @@ interface IArticleContent {
|
|
|
139
139
|
date?: string;
|
|
140
140
|
slugs?: LanguageSlugsType;
|
|
141
141
|
href?: string;
|
|
142
|
+
classes?: string;
|
|
142
143
|
}
|
|
143
|
-
declare function ArticleContent({ title, text, imageUrl, date, slugs, href, }: IArticleContent): react_jsx_runtime.JSX.Element;
|
|
144
|
+
declare function ArticleContent({ title, text, imageUrl, date, slugs, href, classes, }: IArticleContent): react_jsx_runtime.JSX.Element;
|
|
144
145
|
|
|
145
146
|
interface IArticle {
|
|
146
147
|
imageUrl?: string;
|
|
@@ -223,7 +224,7 @@ interface IBenefitsBlock {
|
|
|
223
224
|
title?: string;
|
|
224
225
|
classes?: string;
|
|
225
226
|
}
|
|
226
|
-
declare function BenefitsBlock({ benefits, classes, title, }: IBenefitsBlock):
|
|
227
|
+
declare function BenefitsBlock({ benefits, classes, title, }: IBenefitsBlock): react_jsx_runtime.JSX.Element;
|
|
227
228
|
|
|
228
229
|
interface IBenefit {
|
|
229
230
|
imageUrl?: string;
|
|
@@ -662,8 +663,9 @@ interface IVacancyContent {
|
|
|
662
663
|
country?: string;
|
|
663
664
|
city?: string;
|
|
664
665
|
slugs?: LanguageSlugsType;
|
|
666
|
+
classes?: string;
|
|
665
667
|
}
|
|
666
|
-
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, }: IVacancyContent): react_jsx_runtime.JSX.Element;
|
|
668
|
+
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, classes, }: IVacancyContent): react_jsx_runtime.JSX.Element;
|
|
667
669
|
|
|
668
670
|
interface IItem {
|
|
669
671
|
text1?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -139,8 +139,9 @@ interface IArticleContent {
|
|
|
139
139
|
date?: string;
|
|
140
140
|
slugs?: LanguageSlugsType;
|
|
141
141
|
href?: string;
|
|
142
|
+
classes?: string;
|
|
142
143
|
}
|
|
143
|
-
declare function ArticleContent({ title, text, imageUrl, date, slugs, href, }: IArticleContent): react_jsx_runtime.JSX.Element;
|
|
144
|
+
declare function ArticleContent({ title, text, imageUrl, date, slugs, href, classes, }: IArticleContent): react_jsx_runtime.JSX.Element;
|
|
144
145
|
|
|
145
146
|
interface IArticle {
|
|
146
147
|
imageUrl?: string;
|
|
@@ -223,7 +224,7 @@ interface IBenefitsBlock {
|
|
|
223
224
|
title?: string;
|
|
224
225
|
classes?: string;
|
|
225
226
|
}
|
|
226
|
-
declare function BenefitsBlock({ benefits, classes, title, }: IBenefitsBlock):
|
|
227
|
+
declare function BenefitsBlock({ benefits, classes, title, }: IBenefitsBlock): react_jsx_runtime.JSX.Element;
|
|
227
228
|
|
|
228
229
|
interface IBenefit {
|
|
229
230
|
imageUrl?: string;
|
|
@@ -662,8 +663,9 @@ interface IVacancyContent {
|
|
|
662
663
|
country?: string;
|
|
663
664
|
city?: string;
|
|
664
665
|
slugs?: LanguageSlugsType;
|
|
666
|
+
classes?: string;
|
|
665
667
|
}
|
|
666
|
-
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, }: IVacancyContent): react_jsx_runtime.JSX.Element;
|
|
668
|
+
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, classes, }: IVacancyContent): react_jsx_runtime.JSX.Element;
|
|
667
669
|
|
|
668
670
|
interface IItem {
|
|
669
671
|
text1?: string;
|