Compare commits
3 Commits
23a4175bc6
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 94acacbd6c | |||
| 6811dda340 | |||
| bd0e5b0191 |
@@ -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.
|
||||
|
||||
## 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
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@unkn0wndo3s/nova-design-system",
|
||||
"type": "module",
|
||||
"version": "1.2.0",
|
||||
"version": "1.2.1",
|
||||
"description": "Nova Design System — Astro component library",
|
||||
"license": "LICENSE.md",
|
||||
"author": "Unkn0wn",
|
||||
|
||||
@@ -20,9 +20,7 @@ const hasFooter = Astro.slots.has("footer");
|
||||
>
|
||||
<div class="modal__head">
|
||||
<span class="modal__title">{title}</span>
|
||||
<button class="modal__close" data-modal-close aria-label="Close">
|
||||
<XIcon size={18} />
|
||||
</button>
|
||||
<XIcon data-modal-close class="modal__close" size={18} aria-label="Close"/>
|
||||
</div>
|
||||
<div class="modal__body"><slot /></div>
|
||||
{
|
||||
|
||||
@@ -82,13 +82,13 @@ const spacingScale = [
|
||||
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">
|
||||
<header class="g-topbar">
|
||||
<div class="g-brand">
|
||||
<span class="g-mark"></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>
|
||||
<Button type="secondary" size="sm" id="theme-btn">Toggle theme</Button>
|
||||
</header>
|
||||
|
||||
Reference in New Issue
Block a user