This repository was archived by the owner on Aug 2, 2026. It is now read-only.
v0.2.10
MeoNode UI v0.2.10 – New render API & Constants Update
Release Date: 2025-09-10
What's Added
- Core: Introduced a top-level
renderfunction for a cleaner and simpler API when mounting a MeoNode instance to the DOM. This abstracts away the need to manually callreact-dom/client.- Before:
import { createRoot } from 'react-dom/client'; import { Div } from '@meonode/ui'; const container = document.getElementById('root'); const root = createRoot(container); root.render(Div({ children: 'Hello' }).render());
- After:
import { Div } from '@meonode/ui'; import { render } from '@meonode/ui/client'; const container = document.getElementById('root'); render(Div({ children: 'Hello' }), container);
- Before:
- Constants: Added
NO_STYLE_TAGSarray andnoStyleTagsSetfor fast lookup of tags that should not receive styles.
What's Enhanced
- Core: Improved
StyledRendererintegration to check for no-style tags.
What's Changed
- Helper: Updated CSS property set to rely on constants and respect no-style tags.
- Package: Dependencies updated to latest versions.
- Directory: Renamed
data→constantsfor clarity. - File: Renamed
cssProperties.ts→cssProperties.const.tsto better reflect its purpose.
Version Update
- Incremented version to 0.2.10.