@meonode/ui 1.2.0-0 → 1.2.0
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 +26 -0
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.2.0] - 2026-02-15
|
|
6
|
+
|
|
7
|
+
### Feat
|
|
8
|
+
|
|
9
|
+
- **portal**: implement stack-based portal system with PortalProvider and PortalHost ([`7196f6f`](https://github.com/l7aromeo/meonode-ui/commit/7196f6f))
|
|
10
|
+
- Introduced `PortalProvider` and `PortalHost` for managed overlay stacks.
|
|
11
|
+
- **helper**: add data-channel helper for efficient portal updates ([`6508c0a`](https://github.com/l7aromeo/meonode-ui/commit/6508c0a))
|
|
12
|
+
- Added `createDataChannel` for high-performance, subscription-based state updates between components.
|
|
13
|
+
- **hook**: add usePortal and useDataChannel hooks ([`b2f7d19`](https://github.com/l7aromeo/meonode-ui/commit/b2f7d19))
|
|
14
|
+
- Added reactive hooks to interact with the new portal system and data channels.
|
|
15
|
+
|
|
16
|
+
### Refactor
|
|
17
|
+
|
|
18
|
+
- **portal**: remove legacy portal system and update core ([`91ced63`](https://github.com/l7aromeo/meonode-ui/commit/91ced63))
|
|
19
|
+
- **BREAKING CHANGE**: Removed legacy `portal.hoc.ts` and associated logic in favor of the new stack-based architecture.
|
|
20
|
+
- Updated `BaseNode` and `NodeUtil` for better portal integration.
|
|
21
|
+
|
|
22
|
+
### Test
|
|
23
|
+
|
|
24
|
+
- **portal**: add tests for new portal system ([`92cd3c0`](https://github.com/l7aromeo/meonode-ui/commit/92cd3c0))
|
|
25
|
+
- Added integration tests for stack management and data synchronization.
|
|
26
|
+
|
|
27
|
+
### Docs
|
|
28
|
+
|
|
29
|
+
- **portal**: update README with new portal system examples ([`3f7a314`](https://github.com/l7aromeo/meonode-ui/commit/3f7a314))
|
|
30
|
+
|
|
5
31
|
## [1.2.0-0] - 2026-02-15
|
|
6
32
|
|
|
7
33
|
### Feat
|
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": "1.2.0
|
|
4
|
+
"version": "1.2.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/main.js",
|
|
7
7
|
"types": "./dist/main.d.ts",
|
|
@@ -131,6 +131,5 @@
|
|
|
131
131
|
"accessible-components",
|
|
132
132
|
"meonode-ui",
|
|
133
133
|
"meonode"
|
|
134
|
-
]
|
|
135
|
-
"stableVersion": "1.1.4"
|
|
134
|
+
]
|
|
136
135
|
}
|