mayak-common-library 0.0.795 → 0.0.797
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1081,7 +1081,9 @@ interface MainContainerProps {
|
|
|
1081
1081
|
}
|
|
1082
1082
|
declare const MainContainer: FC<PropsWithChildren & MainContainerProps>;
|
|
1083
1083
|
|
|
1084
|
-
declare const PageContainer: FC<PropsWithChildren
|
|
1084
|
+
declare const PageContainer: FC<PropsWithChildren & {
|
|
1085
|
+
className?: string;
|
|
1086
|
+
}>;
|
|
1085
1087
|
|
|
1086
1088
|
declare function useWindowSize(): {
|
|
1087
1089
|
windowSize: number;
|
package/dist/index.d.ts
CHANGED
|
@@ -1081,7 +1081,9 @@ interface MainContainerProps {
|
|
|
1081
1081
|
}
|
|
1082
1082
|
declare const MainContainer: FC<PropsWithChildren & MainContainerProps>;
|
|
1083
1083
|
|
|
1084
|
-
declare const PageContainer: FC<PropsWithChildren
|
|
1084
|
+
declare const PageContainer: FC<PropsWithChildren & {
|
|
1085
|
+
className?: string;
|
|
1086
|
+
}>;
|
|
1085
1087
|
|
|
1086
1088
|
declare function useWindowSize(): {
|
|
1087
1089
|
windowSize: number;
|