@uistate/core 3.1.0 → 3.1.2
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 +11 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,10 +1,19 @@
|
|
|
1
|
-
# @uistate/core v3.
|
|
1
|
+
# @uistate/core v3.1.2
|
|
2
2
|
|
|
3
3
|
**author**: Ajdin Imsirovic <ajdika@live.com> (GitHub)
|
|
4
4
|
**maintainer**: uistate <ajdika.i@gmail.com> (npm)
|
|
5
5
|
|
|
6
6
|
High-performance UI state management using CSS custom properties and ADSI (Attribute-Driven State Inheritance). Focused heavily on DX and performance with a fully declarative approach.
|
|
7
7
|
|
|
8
|
+
## What's New in v3.1.1
|
|
9
|
+
|
|
10
|
+
- 🛠️ Added `setStates()` method for batch state updates
|
|
11
|
+
- 🧩 Added `registerSpecialHandler()` and `registerEventBinding()` for extensibility
|
|
12
|
+
- 🏷️ New `setupObservers()` for automatic state-to-DOM binding
|
|
13
|
+
- ⚡ Improved `setupStateActions()` with customizable event handling
|
|
14
|
+
- 💾 Default event handlers for clicks and inputs with declarative binding
|
|
15
|
+
- 🗡️ Enhanced attribute serialization with specialized handlers
|
|
16
|
+
|
|
8
17
|
## What's New in v3.0.0
|
|
9
18
|
|
|
10
19
|
- 🔄 Fully declarative state management approach
|
|
@@ -62,7 +71,7 @@ npm install @uistate/core
|
|
|
62
71
|
│ ├── stateInspector.js # State inspection tools
|
|
63
72
|
│ └── stateSerializer.js # State serialization
|
|
64
73
|
└── examples/ # Example applications
|
|
65
|
-
└── 001
|
|
74
|
+
└── 001-.../ # Progressive examples from simpler to more complex
|
|
66
75
|
```
|
|
67
76
|
|
|
68
77
|
## Browser Support
|
package/package.json
CHANGED