mayak-common-library-payload 0.1.63 → 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 +7 -7
- package/dist/index.d.ts +7 -7
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -482,17 +482,17 @@ declare const PopularAreas: FC<PopularAreasProps>;
|
|
|
482
482
|
declare const ObjectProperties: FC<PropsWithChildren>;
|
|
483
483
|
|
|
484
484
|
interface IBoxItem$1 {
|
|
485
|
-
img?: string;
|
|
486
|
-
label?: string;
|
|
487
|
-
from?: string;
|
|
488
|
-
to?: string;
|
|
485
|
+
img?: string | null;
|
|
486
|
+
label?: string | null;
|
|
487
|
+
from?: string | null;
|
|
488
|
+
to?: string | null;
|
|
489
489
|
description?: ReactNode;
|
|
490
490
|
date?: string | null;
|
|
491
|
-
income?: string;
|
|
491
|
+
income?: string | null;
|
|
492
492
|
}
|
|
493
493
|
interface IPortfoliosProps {
|
|
494
494
|
className?: string;
|
|
495
|
-
title?: string;
|
|
495
|
+
title?: string | null;
|
|
496
496
|
box?: IBoxItem$1[];
|
|
497
497
|
actionComponent?: ReactNode;
|
|
498
498
|
}
|
|
@@ -626,7 +626,7 @@ declare const WeOffer: FC<IWeOffer>;
|
|
|
626
626
|
|
|
627
627
|
interface WeTakeFullProps {
|
|
628
628
|
className?: string;
|
|
629
|
-
imageUrl?: string;
|
|
629
|
+
imageUrl?: string | null;
|
|
630
630
|
title?: string | null;
|
|
631
631
|
content?: ReactNode;
|
|
632
632
|
actionComponent?: ReactNode;
|
package/dist/index.d.ts
CHANGED
|
@@ -482,17 +482,17 @@ declare const PopularAreas: FC<PopularAreasProps>;
|
|
|
482
482
|
declare const ObjectProperties: FC<PropsWithChildren>;
|
|
483
483
|
|
|
484
484
|
interface IBoxItem$1 {
|
|
485
|
-
img?: string;
|
|
486
|
-
label?: string;
|
|
487
|
-
from?: string;
|
|
488
|
-
to?: string;
|
|
485
|
+
img?: string | null;
|
|
486
|
+
label?: string | null;
|
|
487
|
+
from?: string | null;
|
|
488
|
+
to?: string | null;
|
|
489
489
|
description?: ReactNode;
|
|
490
490
|
date?: string | null;
|
|
491
|
-
income?: string;
|
|
491
|
+
income?: string | null;
|
|
492
492
|
}
|
|
493
493
|
interface IPortfoliosProps {
|
|
494
494
|
className?: string;
|
|
495
|
-
title?: string;
|
|
495
|
+
title?: string | null;
|
|
496
496
|
box?: IBoxItem$1[];
|
|
497
497
|
actionComponent?: ReactNode;
|
|
498
498
|
}
|
|
@@ -626,7 +626,7 @@ declare const WeOffer: FC<IWeOffer>;
|
|
|
626
626
|
|
|
627
627
|
interface WeTakeFullProps {
|
|
628
628
|
className?: string;
|
|
629
|
-
imageUrl?: string;
|
|
629
|
+
imageUrl?: string | null;
|
|
630
630
|
title?: string | null;
|
|
631
631
|
content?: ReactNode;
|
|
632
632
|
actionComponent?: ReactNode;
|