mayak-common-library-payload 0.1.8 → 0.1.9
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/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -293,7 +293,7 @@ declare function BlockImages({ className, images, title, }: BlockImagesProps): r
|
|
|
293
293
|
|
|
294
294
|
interface IWorker$1 {
|
|
295
295
|
imageUrl?: string | null;
|
|
296
|
-
description?:
|
|
296
|
+
description?: ReactNode | null;
|
|
297
297
|
firstName?: string | null;
|
|
298
298
|
lastName?: string | null;
|
|
299
299
|
fullName?: string | null;
|
|
@@ -1541,9 +1541,9 @@ declare const BreadCrumbs: FC<BreadCrumbsProps>;
|
|
|
1541
1541
|
|
|
1542
1542
|
interface TeamPersonCardProps {
|
|
1543
1543
|
image_url?: string | null;
|
|
1544
|
-
name?: string;
|
|
1544
|
+
name?: string | null;
|
|
1545
1545
|
position?: string | null;
|
|
1546
|
-
|
|
1546
|
+
description?: ReactNode | null;
|
|
1547
1547
|
}
|
|
1548
1548
|
declare const TeamPersonCard: FC<TeamPersonCardProps>;
|
|
1549
1549
|
|
package/dist/index.d.ts
CHANGED
|
@@ -293,7 +293,7 @@ declare function BlockImages({ className, images, title, }: BlockImagesProps): r
|
|
|
293
293
|
|
|
294
294
|
interface IWorker$1 {
|
|
295
295
|
imageUrl?: string | null;
|
|
296
|
-
description?:
|
|
296
|
+
description?: ReactNode | null;
|
|
297
297
|
firstName?: string | null;
|
|
298
298
|
lastName?: string | null;
|
|
299
299
|
fullName?: string | null;
|
|
@@ -1541,9 +1541,9 @@ declare const BreadCrumbs: FC<BreadCrumbsProps>;
|
|
|
1541
1541
|
|
|
1542
1542
|
interface TeamPersonCardProps {
|
|
1543
1543
|
image_url?: string | null;
|
|
1544
|
-
name?: string;
|
|
1544
|
+
name?: string | null;
|
|
1545
1545
|
position?: string | null;
|
|
1546
|
-
|
|
1546
|
+
description?: ReactNode | null;
|
|
1547
1547
|
}
|
|
1548
1548
|
declare const TeamPersonCard: FC<TeamPersonCardProps>;
|
|
1549
1549
|
|