@bloom-housing/ui-components 12.6.1 → 12.6.2

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.
@@ -2,7 +2,7 @@ import React from "react";
2
2
  import "./LoadingOverlay.scss";
3
3
  type LoadingOverlayProps = {
4
4
  isLoading: boolean;
5
- children: React.ReactChild;
5
+ children: React.ReactNode;
6
6
  };
7
7
  declare const LoadingOverlay: ({ isLoading, children }: LoadingOverlayProps) => JSX.Element;
8
8
  export { LoadingOverlay as default, LoadingOverlay };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bloom-housing/ui-components",
3
- "version": "12.6.1",
3
+ "version": "12.6.2",
4
4
  "author": "Sean Albert <sean.albert@exygy.com>",
5
5
  "description": "Shared user interface components for Bloom affordable housing system",
6
6
  "homepage": "https://github.com/bloom-housing/ui-components",
@@ -4,7 +4,7 @@ import "./LoadingOverlay.scss"
4
4
 
5
5
  type LoadingOverlayProps = {
6
6
  isLoading: boolean
7
- children: React.ReactChild
7
+ children: React.ReactNode
8
8
  }
9
9
 
10
10
  const LoadingOverlay = ({ isLoading, children }: LoadingOverlayProps) => {