mayak-common-library 0.1.14 → 0.1.16

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
@@ -737,8 +737,8 @@ interface WhyWeProps {
737
737
  declare const WhyWe: FC<WhyWeProps>;
738
738
 
739
739
  interface ObjectInfoBlockProps {
740
- title: string | null;
741
- text: string | null;
740
+ title?: string | null;
741
+ text?: string | null;
742
742
  properties: {
743
743
  title: string;
744
744
  desc?: string | null;
@@ -833,8 +833,8 @@ declare const ServicesFull: FC<ServicesFullProps>;
833
833
 
834
834
  interface DeveloperBannerProps {
835
835
  className?: string;
836
- imgBanner?: string;
837
- imgLogo?: string;
836
+ imgBanner?: string | null;
837
+ imgLogo?: string | null;
838
838
  }
839
839
  declare const DeveloperBanner: FC<DeveloperBannerProps>;
840
840
 
package/dist/index.d.ts CHANGED
@@ -737,8 +737,8 @@ interface WhyWeProps {
737
737
  declare const WhyWe: FC<WhyWeProps>;
738
738
 
739
739
  interface ObjectInfoBlockProps {
740
- title: string | null;
741
- text: string | null;
740
+ title?: string | null;
741
+ text?: string | null;
742
742
  properties: {
743
743
  title: string;
744
744
  desc?: string | null;
@@ -833,8 +833,8 @@ declare const ServicesFull: FC<ServicesFullProps>;
833
833
 
834
834
  interface DeveloperBannerProps {
835
835
  className?: string;
836
- imgBanner?: string;
837
- imgLogo?: string;
836
+ imgBanner?: string | null;
837
+ imgLogo?: string | null;
838
838
  }
839
839
  declare const DeveloperBanner: FC<DeveloperBannerProps>;
840
840