Compare commits

...

3 Commits

Author SHA1 Message Date
unkn0wn 94acacbd6c fix: update current version to 1.2.1 in project status section of README.md
Deploy Documentation / check-and-deploy (push) Successful in 11s
2026-06-24 09:23:50 +02:00
unkn0wn 6811dda340 fix: update version to 1.2.1 in package.json and related components
Deploy Documentation / check-and-deploy (push) Successful in 11s
Publish to npm / check-and-publish (push) Successful in 19s
2026-06-24 09:21:40 +02:00
unkn0wn bd0e5b0191 fix: refactor modal close button to use icon directly and remove unnecessary button element 2026-06-24 09:20:43 +02:00
4 changed files with 5 additions and 7 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ Nova Design System (NDS) is a lightweight, responsive UI component library built
NDS provides a focused set of reusable Astro components with centralized design tokens, light/dark theming, and a strong focus on consistency and maintainability. The component documentation and showcase are also built with Astro. NDS provides a focused set of reusable Astro components with centralized design tokens, light/dark theming, and a strong focus on consistency and maintainability. The component documentation and showcase are also built with Astro.
## Project Status ## Project Status
> **ALPHA** — The library is under active development. Current version: `1.01.0`. Component APIs, token naming, and internal architecture may change before a stable release. > **ALPHA** — The library is under active development. Current version: `1.2.1`. Component APIs, token naming, and internal architecture may change before a stable release.
## Core Principles ## Core Principles
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"name": "@unkn0wndo3s/nova-design-system", "name": "@unkn0wndo3s/nova-design-system",
"type": "module", "type": "module",
"version": "1.2.0", "version": "1.2.1",
"description": "Nova Design System — Astro component library", "description": "Nova Design System — Astro component library",
"license": "LICENSE.md", "license": "LICENSE.md",
"author": "Unkn0wn", "author": "Unkn0wn",
+1 -3
View File
@@ -20,9 +20,7 @@ const hasFooter = Astro.slots.has("footer");
> >
<div class="modal__head"> <div class="modal__head">
<span class="modal__title">{title}</span> <span class="modal__title">{title}</span>
<button class="modal__close" data-modal-close aria-label="Close"> <XIcon data-modal-close class="modal__close" size={18} aria-label="Close"/>
<XIcon size={18} />
</button>
</div> </div>
<div class="modal__body"><slot /></div> <div class="modal__body"><slot /></div>
{ {
+2 -2
View File
@@ -82,13 +82,13 @@ const spacingScale = [
const radiusScale = ["xs", "sm", "md", "lg", "xl", "2xl", "full"]; const radiusScale = ["xs", "sm", "md", "lg", "xl", "2xl", "full"];
--- ---
<Layout title="Nova Design System v1.2.0"> <Layout title="Nova Design System v1.2.1">
<div class="g-page"> <div class="g-page">
<header class="g-topbar"> <header class="g-topbar">
<div class="g-brand"> <div class="g-brand">
<span class="g-mark"></span> <span class="g-mark"></span>
<span class="g-name">Nova Design System</span> <span class="g-name">Nova Design System</span>
<Badge type="primary" variant="soft">v1.2.0</Badge> <Badge type="primary" variant="soft">v1.2.1</Badge>
</div> </div>
<Button type="secondary" size="sm" id="theme-btn">Toggle theme</Button> <Button type="secondary" size="sm" id="theme-btn">Toggle theme</Button>
</header> </header>