@xh/hoist 73.0.0-SNAPSHOT.1744728532873 → 73.0.0-SNAPSHOT.1745417754393

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/CHANGELOG.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## v73.0.0-SNAPSHOT - unreleased
4
4
 
5
+ ### ⚙️ Typescript API Adjustments
6
+
7
+ * Corrected `StoreCountLabelProps` interface.
8
+
5
9
  ## v72.5.1 - 2025-04-15
6
10
 
7
11
  ### 🐞 Bug Fixes
@@ -3,7 +3,7 @@ import { BoxProps, HoistProps } from '@xh/hoist/core';
3
3
  import { Store } from '@xh/hoist/data';
4
4
  export interface StoreCountLabelProps extends HoistProps, BoxProps {
5
5
  /** Store to which this component should bind. */
6
- store?: Store;
6
+ store: Store;
7
7
  /**
8
8
  * True to count nested child records.
9
9
  * If false (default) only root records will be included in count.
@@ -8,8 +8,7 @@ export declare function useOnMount(fn: () => void): void;
8
8
  export declare function useOnUnmount(fn: () => void): void;
9
9
  /**
10
10
  * Hook to run a function when a DOM element is resized.
11
- *
12
- * @see observeResize() for more details.
11
+ * See {@link observeResize} for more details.
13
12
  *
14
13
  * @param fn - receives a DOMRect containing the dimensions of the DOM element.
15
14
  * @param opts - extra options, currently supporting a `debounce` specified in ms.
@@ -12,7 +12,7 @@ import {pluralize, singularize} from '@xh/hoist/utils/js';
12
12
 
13
13
  export interface StoreCountLabelProps extends HoistProps, BoxProps {
14
14
  /** Store to which this component should bind. */
15
- store?: Store;
15
+ store: Store;
16
16
 
17
17
  /**
18
18
  * True to count nested child records.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "73.0.0-SNAPSHOT.1744728532873",
3
+ "version": "73.0.0-SNAPSHOT.1745417754393",
4
4
  "description": "Hoist add-on for building and deploying React Applications.",
5
5
  "repository": "github:xh/hoist-react",
6
6
  "homepage": "https://xh.io",