@signaltree/core 5.0.4 → 5.0.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 +1 -1
- package/src/lib/entity-signal.d.ts +1 -1
- package/src/lib/types.d.ts +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signaltree/core",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.5",
|
|
4
4
|
"description": "Lightweight, type-safe signal-based state management for Angular. Core package providing hierarchical signal trees, basic entity management, and async actions.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export
|
|
1
|
+
export {};
|
package/src/lib/types.d.ts
CHANGED
|
@@ -101,8 +101,7 @@ export type SignalTree<T> = NodeAccessor<T> & {
|
|
|
101
101
|
canUndo?: () => boolean;
|
|
102
102
|
canRedo?: () => boolean;
|
|
103
103
|
getCurrentIndex?: () => number;
|
|
104
|
-
|
|
105
|
-
};
|
|
104
|
+
} & Record<string, unknown>;
|
|
106
105
|
export type TreePreset = 'basic' | 'performance' | 'development' | 'production';
|
|
107
106
|
export interface TreeConfig {
|
|
108
107
|
batchUpdates?: boolean;
|