@ikonai/sdk-react-ui 0.0.29 → 0.0.32

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": "@ikonai/sdk-react-ui",
3
- "version": "0.0.29",
3
+ "version": "0.0.32",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -2,7 +2,9 @@ import { IkonUi } from './ikon-ui';
2
2
  import { IkonUiStoreEntry } from './surface';
3
3
  /**
4
4
  * Hook that subscribes to IkonUi store changes.
5
- * Only triggers re-renders when the set of store keys changes (stores added/removed),
6
- * not on every node update within stores.
5
+ * Triggers re-renders when:
6
+ * - Stores are added/removed
7
+ * - A store transitions from empty to having valid data (rootViewId + views)
8
+ * Does NOT re-render on every node update within stores.
7
9
  */
8
10
  export declare function useIkonUiStores(ikonUi: IkonUi | null | undefined): ReadonlyMap<string, IkonUiStoreEntry> | undefined;