@meonode/ui 0.2.12 → 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 +22 -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/constants/common.const.d.ts +2 -2
- package/dist/constants/common.const.d.ts.map +1 -1
- package/dist/constants/common.const.js +1 -1
- 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 +17 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,28 @@ 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
|
+
|
|
20
|
+
## [0.2.13] - 2025-09-11
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
- **feat**: Add pre-commit hook for linting and testing, update package.json scripts.
|
|
24
|
+
- **feat**: Add Jest configuration and setup for testing with TypeScript.
|
|
25
|
+
- **test**: Add comprehensive tests for BaseNode core functionality.
|
|
26
|
+
|
|
27
|
+
### Fixed
|
|
28
|
+
- **core**: Remove stylable elements from NO_STYLE_TAGS to ensure only non-visual/metadata tags are excluded from CSS styling.
|
|
29
|
+
|
|
8
30
|
## [0.2.12] - 2025-09-11
|
|
9
31
|
|
|
10
32
|
### Fixed
|
|
@@ -223,17 +245,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
223
245
|
- The project focuses on building React UIs with type-safe fluency without JSX syntax
|
|
224
246
|
- Recent development has emphasized Emotion integration, type safety improvements, and enhanced flexbox support
|
|
225
247
|
- For a complete history, view all commits on GitHub: [View all commits](https://github.com/l7aromeo/meonode-ui/commits)
|
|
226
|
-
|
|
227
|
-
## Development Highlights
|
|
228
|
-
|
|
229
|
-
### Major Features Added
|
|
230
|
-
- **Emotion Support**: Complete integration with @emotion/react for CSS-in-JS styling
|
|
231
|
-
- **Next.js Integration**: Style registry support for server-side rendering
|
|
232
|
-
- **Enhanced Type Safety**: Improved TypeScript definitions and prop handling
|
|
233
|
-
- **Flexbox Enhancements**: Advanced flex shorthand parsing and default style resolution
|
|
234
|
-
|
|
235
|
-
### Core Improvements
|
|
236
|
-
- Better component flexibility with native props extraction
|
|
237
|
-
- Simplified style resolution and prop handling
|
|
238
|
-
- Enhanced documentation and examples
|
|
239
|
-
- Improved dependency management and version constraints
|