mayak-common-library-payload 0.1.28 → 0.1.30

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
@@ -379,10 +379,10 @@ declare const ExpertiseBlock: FC<ExpertiseBlockProps>;
379
379
 
380
380
  interface IFAQProps {
381
381
  className?: string;
382
- title?: string;
382
+ title?: string | null;
383
383
  items?: {
384
- question?: string;
385
- answer?: string;
384
+ question?: string | null;
385
+ answer?: ReactNode;
386
386
  }[];
387
387
  }
388
388
  declare function FAQ({ className, items, title }: IFAQProps): react_jsx_runtime.JSX.Element;
@@ -503,8 +503,8 @@ interface IBoxItem$2 {
503
503
  label?: string;
504
504
  from?: string;
505
505
  to?: string;
506
- description?: string[];
507
- date?: string;
506
+ description?: ReactNode;
507
+ date?: string | null;
508
508
  income?: string;
509
509
  }
510
510
  interface IPortfoliosProps {
package/dist/index.d.ts CHANGED
@@ -379,10 +379,10 @@ declare const ExpertiseBlock: FC<ExpertiseBlockProps>;
379
379
 
380
380
  interface IFAQProps {
381
381
  className?: string;
382
- title?: string;
382
+ title?: string | null;
383
383
  items?: {
384
- question?: string;
385
- answer?: string;
384
+ question?: string | null;
385
+ answer?: ReactNode;
386
386
  }[];
387
387
  }
388
388
  declare function FAQ({ className, items, title }: IFAQProps): react_jsx_runtime.JSX.Element;
@@ -503,8 +503,8 @@ interface IBoxItem$2 {
503
503
  label?: string;
504
504
  from?: string;
505
505
  to?: string;
506
- description?: string[];
507
- date?: string;
506
+ description?: ReactNode;
507
+ date?: string | null;
508
508
  income?: string;
509
509
  }
510
510
  interface IPortfoliosProps {