mayak-common-library-payload 0.1.27 → 0.1.29

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;
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;