mayak-common-library-payload 0.1.7 → 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 CHANGED
@@ -292,23 +292,23 @@ interface BlockImagesProps {
292
292
  declare function BlockImages({ className, images, title, }: BlockImagesProps): react_jsx_runtime.JSX.Element;
293
293
 
294
294
  interface IWorker$1 {
295
- imageUrl?: string;
296
- description?: string;
297
- firstName?: string;
298
- lastName?: string;
299
- fullName?: string;
300
- position?: string;
301
- instagram?: string;
302
- facebook?: string;
303
- youTube?: string;
304
- linkedIn?: string;
305
- phone?: string;
306
- email?: string;
295
+ imageUrl?: string | null;
296
+ description?: ReactNode | null;
297
+ firstName?: string | null;
298
+ lastName?: string | null;
299
+ fullName?: string | null;
300
+ position?: string | null;
301
+ instagram?: string | null;
302
+ facebook?: string | null;
303
+ youTube?: string | null;
304
+ linkedIn?: string | null;
305
+ phone?: string | null;
306
+ email?: string | null;
307
307
  }
308
308
  interface BlockOurTeamProps {
309
- title?: string;
310
- text?: string;
311
- team?: IWorker$1[];
309
+ title?: string | null;
310
+ text?: string | null;
311
+ team?: IWorker$1[] | null;
312
312
  className?: string;
313
313
  full?: boolean;
314
314
  }
@@ -1541,9 +1541,9 @@ declare const BreadCrumbs: FC<BreadCrumbsProps>;
1541
1541
 
1542
1542
  interface TeamPersonCardProps {
1543
1543
  image_url?: string | null;
1544
- name?: string;
1545
- position?: string;
1546
- text?: string;
1544
+ name?: string | null;
1545
+ position?: string | null;
1546
+ description?: ReactNode | null;
1547
1547
  }
1548
1548
  declare const TeamPersonCard: FC<TeamPersonCardProps>;
1549
1549
 
package/dist/index.d.ts CHANGED
@@ -292,23 +292,23 @@ interface BlockImagesProps {
292
292
  declare function BlockImages({ className, images, title, }: BlockImagesProps): react_jsx_runtime.JSX.Element;
293
293
 
294
294
  interface IWorker$1 {
295
- imageUrl?: string;
296
- description?: string;
297
- firstName?: string;
298
- lastName?: string;
299
- fullName?: string;
300
- position?: string;
301
- instagram?: string;
302
- facebook?: string;
303
- youTube?: string;
304
- linkedIn?: string;
305
- phone?: string;
306
- email?: string;
295
+ imageUrl?: string | null;
296
+ description?: ReactNode | null;
297
+ firstName?: string | null;
298
+ lastName?: string | null;
299
+ fullName?: string | null;
300
+ position?: string | null;
301
+ instagram?: string | null;
302
+ facebook?: string | null;
303
+ youTube?: string | null;
304
+ linkedIn?: string | null;
305
+ phone?: string | null;
306
+ email?: string | null;
307
307
  }
308
308
  interface BlockOurTeamProps {
309
- title?: string;
310
- text?: string;
311
- team?: IWorker$1[];
309
+ title?: string | null;
310
+ text?: string | null;
311
+ team?: IWorker$1[] | null;
312
312
  className?: string;
313
313
  full?: boolean;
314
314
  }
@@ -1541,9 +1541,9 @@ declare const BreadCrumbs: FC<BreadCrumbsProps>;
1541
1541
 
1542
1542
  interface TeamPersonCardProps {
1543
1543
  image_url?: string | null;
1544
- name?: string;
1545
- position?: string;
1546
- text?: string;
1544
+ name?: string | null;
1545
+ position?: string | null;
1546
+ description?: ReactNode | null;
1547
1547
  }
1548
1548
  declare const TeamPersonCard: FC<TeamPersonCardProps>;
1549
1549