mayak-common-library 0.0.803 → 0.0.805
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 -4
- package/dist/index.d.ts +5 -4
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -283,19 +283,20 @@ interface IOfficeItem {
|
|
|
283
283
|
city?: string;
|
|
284
284
|
address?: string;
|
|
285
285
|
workTime?: string;
|
|
286
|
+
weekend?: boolean;
|
|
286
287
|
email?: string;
|
|
287
288
|
site?: string;
|
|
288
289
|
instagram?: string;
|
|
289
290
|
whatsapp?: string;
|
|
290
291
|
telegram?: string;
|
|
291
292
|
}
|
|
292
|
-
interface
|
|
293
|
+
interface BlockContactsProps {
|
|
293
294
|
className?: string;
|
|
294
|
-
title?: string;
|
|
295
295
|
text?: string;
|
|
296
|
+
title?: string;
|
|
296
297
|
offices?: IOfficeItem[];
|
|
297
298
|
}
|
|
298
|
-
declare
|
|
299
|
+
declare const BlockContacts: FC<PropsWithChildren & BlockContactsProps>;
|
|
299
300
|
|
|
300
301
|
interface ILink {
|
|
301
302
|
label: string;
|
|
@@ -502,7 +503,7 @@ interface IOfficesBlock {
|
|
|
502
503
|
offices?: IOfficeItem[];
|
|
503
504
|
title?: string;
|
|
504
505
|
}
|
|
505
|
-
declare function OfficesBlock({ text, offices, className,
|
|
506
|
+
declare function OfficesBlock({ text, offices, className, }: IOfficesBlock): react_jsx_runtime.JSX.Element;
|
|
506
507
|
|
|
507
508
|
interface IVacancy {
|
|
508
509
|
slug?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -283,19 +283,20 @@ interface IOfficeItem {
|
|
|
283
283
|
city?: string;
|
|
284
284
|
address?: string;
|
|
285
285
|
workTime?: string;
|
|
286
|
+
weekend?: boolean;
|
|
286
287
|
email?: string;
|
|
287
288
|
site?: string;
|
|
288
289
|
instagram?: string;
|
|
289
290
|
whatsapp?: string;
|
|
290
291
|
telegram?: string;
|
|
291
292
|
}
|
|
292
|
-
interface
|
|
293
|
+
interface BlockContactsProps {
|
|
293
294
|
className?: string;
|
|
294
|
-
title?: string;
|
|
295
295
|
text?: string;
|
|
296
|
+
title?: string;
|
|
296
297
|
offices?: IOfficeItem[];
|
|
297
298
|
}
|
|
298
|
-
declare
|
|
299
|
+
declare const BlockContacts: FC<PropsWithChildren & BlockContactsProps>;
|
|
299
300
|
|
|
300
301
|
interface ILink {
|
|
301
302
|
label: string;
|
|
@@ -502,7 +503,7 @@ interface IOfficesBlock {
|
|
|
502
503
|
offices?: IOfficeItem[];
|
|
503
504
|
title?: string;
|
|
504
505
|
}
|
|
505
|
-
declare function OfficesBlock({ text, offices, className,
|
|
506
|
+
declare function OfficesBlock({ text, offices, className, }: IOfficesBlock): react_jsx_runtime.JSX.Element;
|
|
506
507
|
|
|
507
508
|
interface IVacancy {
|
|
508
509
|
slug?: string;
|