@meonode/ui 0.3.8 → 0.3.9
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 +7 -1
- package/README.md +1 -1
- package/dist/components/html.node.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,11 +5,17 @@ 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.9] - 2025-09-30
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- **html.node**: update `Root` node default minHeight and minWidth to use dynamic viewport units
|
|
13
|
+
|
|
8
14
|
## [0.3.8] - 2025-09-29
|
|
9
15
|
|
|
10
16
|
### Added
|
|
11
17
|
|
|
12
|
-
- **styling**: Enabled theme-aware functions
|
|
18
|
+
- **styling**: Enabled theme-aware functions for css props, allowing for more dynamic styling (e.g., `color: theme => theme.system.colors.primary`).
|
|
13
19
|
|
|
14
20
|
### Refactor
|
|
15
21
|
|
package/README.md
CHANGED
|
@@ -78,7 +78,7 @@ const App = Component(() =>
|
|
|
78
78
|
|
|
79
79
|
📚 **[Complete Documentation & Examples](https://meonode-ui.vercel.app)**
|
|
80
80
|
|
|
81
|
-
🎮 **[Interactive Playground](https://codesandbox.io/p/github/l7aromeo/
|
|
81
|
+
🎮 **[Interactive Playground](https://codesandbox.io/p/github/l7aromeo/nextjs-meonode/main?import=true)**
|
|
82
82
|
|
|
83
83
|
## Core API
|
|
84
84
|
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
* children: [Header(), Main(), Footer()]
|
|
27
27
|
* })
|
|
28
28
|
* ```
|
|
29
|
-
*/export var Root=createNode("div",{display:"flex",flexDirection:"column",minHeight:"
|
|
29
|
+
*/export var Root=createNode("div",{display:"flex",flexDirection:"column",minHeight:"100dvh",minWidth:"100dvw"});/**
|
|
30
30
|
* Represents a column layout using flexbox.
|
|
31
31
|
* @param props Optional properties for the column layout.
|
|
32
32
|
* @returns A div element node with flexbox column layout.
|
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.9",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/main.js",
|
|
7
7
|
"types": "./dist/main.d.ts",
|