fansunited-management-components 1.50.4 → 1.50.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fansunited-management-components",
3
- "version": "1.50.4",
3
+ "version": "1.50.5",
4
4
  "main": "index.es.js",
5
5
  "module": "index.es.js",
6
6
  "types": "index.d.ts",
package/src/index.d.ts CHANGED
@@ -1,3 +1,15 @@
1
+ /**
2
+ * Centered loading spinner that fills its container.
3
+ *
4
+ * Recommended import:
5
+ * `import { Spinner } from 'fansunited-management-components'`
6
+ */
7
+ export { default as Spinner } from './components/Spinner/Spinner';
8
+ /**
9
+ * Props for the Spinner component.
10
+ * Provides typed access in consumer projects without importing from deep paths.
11
+ */
12
+ export type SpinnerProps = import('react').ComponentProps<typeof import('./components/Spinner/Spinner').default>;
1
13
  declare const _default: {
2
14
  APIProvider: import('react').FC<{
3
15
  config: any;