@meonode/ui 0.2.13 → 0.2.14
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 +12 -14
- package/README.md +51 -1468
- package/dist/components/html.node.d.ts +22 -3
- package/dist/components/html.node.d.ts.map +1 -1
- package/dist/components/html.node.js +18 -3
- package/dist/core.node.d.ts +30 -7
- package/dist/core.node.d.ts.map +1 -1
- package/dist/core.node.js +51 -23
- package/dist/helper/common.helper.d.ts +0 -2
- package/dist/helper/common.helper.d.ts.map +1 -1
- package/dist/helper/common.helper.js +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ 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.2.14] - 2025-09-12
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **feat**: Add `Container` alias for `Div` to simplify general-purpose container usage.
|
|
12
|
+
- **feat**: Add caching for processed children to optimize performance in `BaseNode` class.
|
|
13
|
+
|
|
14
|
+
### Removed
|
|
15
|
+
- **feat**: Remove `shallowEqual` utility function from `common.helper.ts`.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
- **feat**: Improve performance by optimizing existing key checks and handling null values in rendering functions.
|
|
19
|
+
|
|
8
20
|
## [0.2.13] - 2025-09-11
|
|
9
21
|
|
|
10
22
|
### Added
|
|
@@ -233,17 +245,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
233
245
|
- The project focuses on building React UIs with type-safe fluency without JSX syntax
|
|
234
246
|
- Recent development has emphasized Emotion integration, type safety improvements, and enhanced flexbox support
|
|
235
247
|
- For a complete history, view all commits on GitHub: [View all commits](https://github.com/l7aromeo/meonode-ui/commits)
|
|
236
|
-
|
|
237
|
-
## Development Highlights
|
|
238
|
-
|
|
239
|
-
### Major Features Added
|
|
240
|
-
- **Emotion Support**: Complete integration with @emotion/react for CSS-in-JS styling
|
|
241
|
-
- **Next.js Integration**: Style registry support for server-side rendering
|
|
242
|
-
- **Enhanced Type Safety**: Improved TypeScript definitions and prop handling
|
|
243
|
-
- **Flexbox Enhancements**: Advanced flex shorthand parsing and default style resolution
|
|
244
|
-
|
|
245
|
-
### Core Improvements
|
|
246
|
-
- Better component flexibility with native props extraction
|
|
247
|
-
- Simplified style resolution and prop handling
|
|
248
|
-
- Enhanced documentation and examples
|
|
249
|
-
- Improved dependency management and version constraints
|