@signaltree/core 1.1.2 → 1.1.4
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/README.md +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,14 +4,14 @@ The foundation package for SignalTree - featuring revolutionary recursive typing
|
|
|
4
4
|
|
|
5
5
|
## ✨ What is @signaltree/core?
|
|
6
6
|
|
|
7
|
-
SignalTree Core is the lightweight (5.
|
|
7
|
+
SignalTree Core is the lightweight (5.1KB gzipped) foundation that provides:
|
|
8
8
|
|
|
9
9
|
- **🔥 Revolutionary Recursive Typing** with deep nesting support and strong type inference
|
|
10
10
|
- **⚡ Excellent Performance** - 0.021ms at 15+ levels with consistent speed
|
|
11
11
|
- **🏆 Strong Type Safety** with TypeScript inference at 25+ recursive levels
|
|
12
12
|
- **💾 Memory Efficient** through structural sharing and lazy signals
|
|
13
13
|
- **🌳 Lightweight Abstractions** for recursive patterns
|
|
14
|
-
- **📦 Compact Bundle Size** - Complete recursive power in just 5.
|
|
14
|
+
- **📦 Compact Bundle Size** - Complete recursive power in just 5.1KB gzipped
|
|
15
15
|
|
|
16
16
|
### 🔥 Recursive Depth Performance Metrics
|
|
17
17
|
|
|
@@ -577,7 +577,7 @@ _Exceptional scaling: Only 92% performance overhead for 4x depth increase_
|
|
|
577
577
|
| Batching efficiency | Standard | **455.8x improvement** | vs non-batched |
|
|
578
578
|
| Memoization speedup | Basic | **197.9x speedup** | vs non-memoized |
|
|
579
579
|
| Memory efficiency | **Optimized** | **Further optimized** | Lazy signals + cleanup |
|
|
580
|
-
| Bundle impact | **5.
|
|
580
|
+
| Bundle impact | **5.1KB gzipped** | **+15KB max** | Tree-shakeable |
|
|
581
581
|
|
|
582
582
|
### Developer Experience (Core Package)
|
|
583
583
|
|
|
@@ -864,10 +864,10 @@ const tree = signalTree(initialState).pipe(withBatching(), withMemoization(), wi
|
|
|
864
864
|
- **@signaltree/async** (+1.7KB gzipped) - Advanced async actions & states
|
|
865
865
|
- **@signaltree/entities** (+929B gzipped) - Advanced entity management
|
|
866
866
|
- **@signaltree/devtools** (+2.3KB gzipped) - Redux DevTools integration
|
|
867
|
-
- **@signaltree/time-travel** (+1.
|
|
867
|
+
- **@signaltree/time-travel** (+1.5KB gzipped) - Undo/redo functionality
|
|
868
868
|
- **@signaltree/ng-forms** (+3.4KB gzipped) - Complete Angular forms integration
|
|
869
869
|
- **@signaltree/serialization** (+3.6KB gzipped) - State persistence & SSR support
|
|
870
|
-
- **@signaltree/presets** (+
|
|
870
|
+
- **@signaltree/presets** (+0.5KB gzipped) - Environment-based configurations
|
|
871
871
|
|
|
872
872
|
## 🎯 When to Use Core Only
|
|
873
873
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@signaltree/core",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
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
|
"peerDependencies": {
|
|
6
6
|
"@angular/core": "^20.1.0"
|