mayak-common-library-payload 0.1.54 → 0.1.56
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 +3 -3
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -259,8 +259,8 @@ interface IOfficeItem {
|
|
|
259
259
|
}
|
|
260
260
|
interface BlockContactsProps {
|
|
261
261
|
className?: string;
|
|
262
|
-
text?: string;
|
|
263
|
-
title?: string;
|
|
262
|
+
text?: string | null;
|
|
263
|
+
title?: string | null;
|
|
264
264
|
offices?: IOfficeItem[];
|
|
265
265
|
}
|
|
266
266
|
declare const BlockContacts: FC<PropsWithChildren & BlockContactsProps>;
|
|
@@ -388,7 +388,7 @@ interface GalleryProps {
|
|
|
388
388
|
declare const Gallery: FC<GalleryProps>;
|
|
389
389
|
|
|
390
390
|
interface JoinTeamBlockProps {
|
|
391
|
-
imageUrl?: string;
|
|
391
|
+
imageUrl?: string | null;
|
|
392
392
|
title?: string | null;
|
|
393
393
|
className?: string;
|
|
394
394
|
content?: ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -259,8 +259,8 @@ interface IOfficeItem {
|
|
|
259
259
|
}
|
|
260
260
|
interface BlockContactsProps {
|
|
261
261
|
className?: string;
|
|
262
|
-
text?: string;
|
|
263
|
-
title?: string;
|
|
262
|
+
text?: string | null;
|
|
263
|
+
title?: string | null;
|
|
264
264
|
offices?: IOfficeItem[];
|
|
265
265
|
}
|
|
266
266
|
declare const BlockContacts: FC<PropsWithChildren & BlockContactsProps>;
|
|
@@ -388,7 +388,7 @@ interface GalleryProps {
|
|
|
388
388
|
declare const Gallery: FC<GalleryProps>;
|
|
389
389
|
|
|
390
390
|
interface JoinTeamBlockProps {
|
|
391
|
-
imageUrl?: string;
|
|
391
|
+
imageUrl?: string | null;
|
|
392
392
|
title?: string | null;
|
|
393
393
|
className?: string;
|
|
394
394
|
content?: ReactNode;
|