mayak-common-library 0.2.21 → 0.2.23
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.cjs +4 -4
- package/dist/index.d.cts +6 -6
- package/dist/index.d.ts +6 -6
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -308,8 +308,11 @@ interface IContactUsBlock {
|
|
|
308
308
|
subtitle?: string;
|
|
309
309
|
description?: string;
|
|
310
310
|
manager: IWorker;
|
|
311
|
+
telegram?: boolean;
|
|
312
|
+
whatsapp?: boolean;
|
|
313
|
+
viber?: boolean;
|
|
311
314
|
}
|
|
312
|
-
declare function ContactUsBlock({ className, phone, manager, description, title, subtitle, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
315
|
+
declare function ContactUsBlock({ className, phone, manager, description, title, subtitle, telegram, whatsapp, viber, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
313
316
|
|
|
314
317
|
interface ExpertiseBlockProps {
|
|
315
318
|
block1: {
|
|
@@ -557,14 +560,11 @@ interface VacancyBoxInfoProps {
|
|
|
557
560
|
updatedAt?: string;
|
|
558
561
|
salary?: string;
|
|
559
562
|
location?: string;
|
|
560
|
-
button?: boolean;
|
|
561
563
|
className?: string;
|
|
562
|
-
slug?: string;
|
|
563
|
-
href?: string;
|
|
564
564
|
inLink?: boolean;
|
|
565
|
-
|
|
565
|
+
actionComponent?: ReactElement;
|
|
566
566
|
}
|
|
567
|
-
declare const VacancyBoxInfo: ({ label, updatedAt, className, salary,
|
|
567
|
+
declare const VacancyBoxInfo: ({ label, updatedAt, className, salary, location, inLink, actionComponent, }: VacancyBoxInfoProps) => react_jsx_runtime.JSX.Element;
|
|
568
568
|
|
|
569
569
|
interface VacancyInfoItemsProps {
|
|
570
570
|
updatedAt?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -308,8 +308,11 @@ interface IContactUsBlock {
|
|
|
308
308
|
subtitle?: string;
|
|
309
309
|
description?: string;
|
|
310
310
|
manager: IWorker;
|
|
311
|
+
telegram?: boolean;
|
|
312
|
+
whatsapp?: boolean;
|
|
313
|
+
viber?: boolean;
|
|
311
314
|
}
|
|
312
|
-
declare function ContactUsBlock({ className, phone, manager, description, title, subtitle, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
315
|
+
declare function ContactUsBlock({ className, phone, manager, description, title, subtitle, telegram, whatsapp, viber, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
313
316
|
|
|
314
317
|
interface ExpertiseBlockProps {
|
|
315
318
|
block1: {
|
|
@@ -557,14 +560,11 @@ interface VacancyBoxInfoProps {
|
|
|
557
560
|
updatedAt?: string;
|
|
558
561
|
salary?: string;
|
|
559
562
|
location?: string;
|
|
560
|
-
button?: boolean;
|
|
561
563
|
className?: string;
|
|
562
|
-
slug?: string;
|
|
563
|
-
href?: string;
|
|
564
564
|
inLink?: boolean;
|
|
565
|
-
|
|
565
|
+
actionComponent?: ReactElement;
|
|
566
566
|
}
|
|
567
|
-
declare const VacancyBoxInfo: ({ label, updatedAt, className, salary,
|
|
567
|
+
declare const VacancyBoxInfo: ({ label, updatedAt, className, salary, location, inLink, actionComponent, }: VacancyBoxInfoProps) => react_jsx_runtime.JSX.Element;
|
|
568
568
|
|
|
569
569
|
interface VacancyInfoItemsProps {
|
|
570
570
|
updatedAt?: string;
|