mayak-common-library 0.1.64 → 0.1.65

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
@@ -535,17 +535,17 @@ declare const PopularAreas: FC<PopularAreasProps>;
535
535
  declare const ObjectProperties: FC<PropsWithChildren>;
536
536
 
537
537
  interface IBoxItem$2 {
538
- img?: string;
539
- label?: string;
540
- from?: string;
541
- to?: string;
542
- description?: string[] | ReactNode;
543
- date?: string;
544
- income?: string;
538
+ img?: string | null;
539
+ label?: string | null;
540
+ from?: string | null;
541
+ to?: string | null;
542
+ description?: ReactNode;
543
+ date?: string | null;
544
+ income?: string | null;
545
545
  }
546
546
  interface IPortfoliosProps {
547
547
  className?: string;
548
- title?: string;
548
+ title?: string | null;
549
549
  box?: IBoxItem$2[];
550
550
  actionComponent?: ReactNode;
551
551
  }
package/dist/index.d.ts CHANGED
@@ -535,17 +535,17 @@ declare const PopularAreas: FC<PopularAreasProps>;
535
535
  declare const ObjectProperties: FC<PropsWithChildren>;
536
536
 
537
537
  interface IBoxItem$2 {
538
- img?: string;
539
- label?: string;
540
- from?: string;
541
- to?: string;
542
- description?: string[] | ReactNode;
543
- date?: string;
544
- income?: string;
538
+ img?: string | null;
539
+ label?: string | null;
540
+ from?: string | null;
541
+ to?: string | null;
542
+ description?: ReactNode;
543
+ date?: string | null;
544
+ income?: string | null;
545
545
  }
546
546
  interface IPortfoliosProps {
547
547
  className?: string;
548
- title?: string;
548
+ title?: string | null;
549
549
  box?: IBoxItem$2[];
550
550
  actionComponent?: ReactNode;
551
551
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mayak-common-library",
3
- "version": "0.1.64",
3
+ "version": "0.1.65",
4
4
  "private": false,
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",