@meonode/ui 0.3.5 → 0.3.6
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 +17 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,23 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.3.6] - 2025-09-27
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- **changelog:** update missing changelog entries
|
|
13
|
+
|
|
14
|
+
## [0.3.5] - 2025-09-27
|
|
15
|
+
|
|
16
|
+
### Refactor
|
|
17
|
+
|
|
18
|
+
- **refactor:** remove automatic key generation and use spread children in createElement
|
|
19
|
+
- Remove _generateKey method and all automatic key generation logic
|
|
20
|
+
- Simplify _processRawNode by removing nodeIndex parameter and complex case handling
|
|
21
|
+
- Update render() to spread array children as individual arguments to createElement
|
|
22
|
+
- Only preserve explicit non-null keys from original React elements
|
|
23
|
+
- Fix component remounting issues when children content changes (e.g., during typing)
|
|
24
|
+
|
|
8
25
|
## [0.3.4] - 2025-09-26
|
|
9
26
|
|
|
10
27
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meonode/ui",
|
|
3
3
|
"description": "A structured approach to component composition, direct CSS-first prop styling, built-in theming, smart prop handling (including raw property pass-through), and dynamic children.",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/main.js",
|
|
7
7
|
"types": "./dist/main.d.ts",
|