@birdapi/velinstyle 1.2.0 → 1.2.2

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.
Files changed (89) hide show
  1. package/README.de.md +150 -24
  2. package/README.md +155 -33
  3. package/cli/__fixtures__/atelier-library/showcases/01-login/app.css +1 -0
  4. package/cli/__fixtures__/atelier-library/showcases/01-login/app.js +2 -0
  5. package/cli/__fixtures__/atelier-library/showcases/01-login/index.html +5 -0
  6. package/cli/__fixtures__/atelier-library/showcases/04-pricing/app.css +1 -0
  7. package/cli/__fixtures__/atelier-library/showcases/04-pricing/app.js +2 -0
  8. package/cli/__fixtures__/atelier-library/showcases/04-pricing/index.html +5 -0
  9. package/cli/__fixtures__/atelier-library/showcases/36-calendar/app.css +1 -0
  10. package/cli/__fixtures__/atelier-library/showcases/36-calendar/app.js +2 -0
  11. package/cli/__fixtures__/atelier-library/showcases/36-calendar/index.html +5 -0
  12. package/cli/atelier-catalog.json +1267 -0
  13. package/cli/atelier-formats.js +159 -0
  14. package/cli/atelier.js +382 -0
  15. package/cli/blueprints/empty-state.html +3 -5
  16. package/cli/cli-manifest.json +23 -10
  17. package/cli/docgen/extract-attributes.js +2 -0
  18. package/cli/docgen/extract-cli.js +1 -1
  19. package/cli/index.js +181 -6
  20. package/cli/production/component-graph.json +166 -0
  21. package/cli/production/explain.js +52 -0
  22. package/cli/production/extract.js +238 -0
  23. package/cli/production/graph.js +102 -0
  24. package/cli/production/report.js +78 -0
  25. package/cli/production/run.js +312 -0
  26. package/cli/production/trim-css.js +177 -0
  27. package/cli/production/trim-fonts.js +23 -0
  28. package/cli/production/trim-icons.js +38 -0
  29. package/cli/production/trim-js.js +48 -0
  30. package/cli/production/trim-motion.js +22 -0
  31. package/cli/production/trim-themes.js +50 -0
  32. package/cli/production/watch.js +38 -0
  33. package/cli/review.js +48 -1
  34. package/cli/scripts/write-atelier-fixtures.mjs +33 -0
  35. package/cli/transparency.js +221 -0
  36. package/components/index.js +3 -0
  37. package/components/runtime/component-loaders.js +3 -0
  38. package/components/velin-drawer.js +43 -4
  39. package/components/velin-empty-state.js +83 -0
  40. package/components/velin-modal.js +76 -15
  41. package/components/velin-otp-input.js +220 -0
  42. package/components/velin-password-strength.js +147 -0
  43. package/components/velin-sheet.js +49 -4
  44. package/core/a11y/component-contracts.json +23 -4
  45. package/core/attributes/registry.js +14 -0
  46. package/core/meta/knowledge/components.json +75 -3
  47. package/core/meta/schema.js +10 -0
  48. package/core/transparency/attach.js +74 -0
  49. package/core/transparency/claims.js +97 -0
  50. package/core/transparency/doctor.js +142 -0
  51. package/core/transparency/engine.js +75 -0
  52. package/core/transparency/export.js +98 -0
  53. package/core/transparency/index.js +30 -0
  54. package/core/transparency/migrate.js +130 -0
  55. package/core/transparency/normalize.js +125 -0
  56. package/core/transparency/policy.js +105 -0
  57. package/core/transparency/providers.js +235 -0
  58. package/core/transparency/registry.js +104 -0
  59. package/core/transparency/renderer.js +111 -0
  60. package/core/transparency/reporter.js +113 -0
  61. package/core/transparency/validator.js +112 -0
  62. package/dist/chunks/attach-H2ZSEAE6.js +365 -0
  63. package/dist/chunks/attributes-2ORR27KA.js +404 -0
  64. package/dist/chunks/attributes-DZCXX2RZ.js +404 -0
  65. package/dist/chunks/chunk-CQMTCEI6.js +113 -0
  66. package/dist/chunks/chunk-Y6HN7HWX.js +116 -0
  67. package/dist/chunks/runtime-entry.js +1 -1
  68. package/dist/chunks/velin-drawer-A7Q7EBOS.js +162 -0
  69. package/dist/chunks/velin-empty-state-3NTUH2RF.js +81 -0
  70. package/dist/chunks/velin-modal-3MV4FYBK.js +231 -0
  71. package/dist/chunks/velin-otp-input-PSK42MM6.js +207 -0
  72. package/dist/chunks/velin-password-strength-TAXMLSED.js +136 -0
  73. package/dist/chunks/velin-sheet-N2VVYXFP.js +157 -0
  74. package/dist/llms.txt +5 -4
  75. package/dist/search-index.json +94 -5
  76. package/dist/velin-agent.json +290 -23
  77. package/dist/velinstyle-components.iife.js +3189 -2202
  78. package/dist/velinstyle-components.js +3187 -2196
  79. package/dist/velinstyle-components.min.js +261 -119
  80. package/dist/velinstyle.css +214 -6
  81. package/dist/velinstyle.d.ts +3 -0
  82. package/dist/velinstyle.min.css +1 -1
  83. package/package.json +143 -142
  84. package/packages/velinstyle-skills/catalog.json +1 -1
  85. package/src/components/data-table.css +19 -0
  86. package/src/components/empty-auth.css +33 -0
  87. package/src/components/table.css +16 -6
  88. package/src/components/transparency.css +138 -0
  89. package/src/velinstyle.css +2 -0
package/README.de.md CHANGED
@@ -19,25 +19,27 @@ Ein Framework. Eine CLI. Ein Design System. Ein AI-fähiges Ökosystem.
19
19
  [![GitHub Stars](https://img.shields.io/github/stars/SkyliteDesign/velinstyle?style=flat-square)](https://github.com/SkyliteDesign/velinstyle/stargazers)
20
20
  [![Node.js](https://img.shields.io/badge/Node.js-18%2B-339933?style=flat-square)](https://nodejs.org/)
21
21
  [![Browser](https://img.shields.io/badge/Browser-modern-0ea5e9?style=flat-square)](https://velinstyle.info/docs/getting-started/introduction.html)
22
- [![WCAG 2.2 AAA Support](https://img.shields.io/badge/WCAG_2.2-AAA_Support-16a34a?style=flat-square)](https://velinstyle.info/docs/a11y.html)
22
+ [![WCAG 2.2 AAA Support](https://img.shields.io/badge/WCAG_2.2-AAA_Support-16a34a?style=flat-square)](https://velinstyle.info/docs/getting-started/accessibility.html)
23
23
  [![PRs Welcome](https://img.shields.io/badge/PRs-willkommen-2563eb?style=flat-square)](CONTRIBUTING.de.md)
24
24
 
25
25
  ```bash
26
26
  npm i @birdapi/velinstyle
27
27
  ```
28
28
 
29
- **[Website](https://velinstyle.info)** · **[Doku](https://velinstyle.info/docs/getting-started/introduction.html)** · **[Demos](https://velinstyle.info/demos/)** · **[Getting Started](GETTING_STARTED.md)** · **[Architecture](ARCHITECTURE.md)** · **[English](README.md)**
29
+ **[Website](https://velinstyle.info)** · **[Atelier](https://velinstyle.info/atelier/index.de.html)** · **[Doku](https://velinstyle.info/docs/getting-started/introduction.html)** · **[Demos](https://velinstyle.info/demos/)** · **[Getting Started](GETTING_STARTED.md)** · **[Architecture](ARCHITECTURE.md)** · **[English](README.md)**
30
30
 
31
31
  </div>
32
32
 
33
33
  ---
34
34
 
35
- VelinStyle ist ein **produktives CSS- + Web-Components-Framework** mit **WCAG-2.2-AAA-orientierten Defaults**, einer echten **CLI-Ship-Surface** und den ersten **Design-Intelligence- / AI-Foundation**-Systemen (Beta). Kein externes UI-Framework im Kern.
35
+ VelinStyle ist ein **produktives CSS- + Web-Components-Framework** mit **WCAG-2.2-AAA-orientierten Defaults**, einer echten **CLI-Ship-Surface**, dem **Transparency Framework** (Kennzeichnung + Nachweis, Beta) und den ersten **Design-Intelligence- / AI-Foundation**-Systemen (Beta). Kein externes UI-Framework im Kern.
36
36
 
37
- **Passung heute:** Marketing-Landings, Docs-Shells, einfache Admin-Starter.
37
+ **VelinStyle Atelier** ist die kuratierte Oberfläche darüber: **über 2.600 produktionsreife Interfaces**, vier komplette Produktwelten und eine durchsuchbare Bibliothek — fertige Oberflächen statt leerer Komponenten-Fragmente.
38
+
39
+ **Passung heute:** Marketing-Landings, Docs-Shells, Admin-/SaaS-Starter, Shop- und Community-UIs über Atelier.
38
40
  **Noch nicht:** alleiniger Primary-Stack für große Multipage-Shops + Enterprise-Admin ohne Custom-Arbeit.
39
41
 
40
- > **Release:** **1.2.0** (Core + Design Intelligence Foundation + Trust/Ship). VelinStyle **zertifiziert keine Anwendung** — siehe [A11y-Matrix](https://velinstyle.info/docs/a11y.html).
42
+ > **Release:** **1.2.2** (Production Release Production Builder + Atelier CLI). VelinStyle **zertifiziert keine Anwendung** — siehe [A11y-Matrix](https://velinstyle.info/docs/getting-started/accessibility.html).
41
43
 
42
44
  ---
43
45
 
@@ -52,7 +54,21 @@ VelinStyle ist ein **produktives CSS- + Web-Components-Framework** mit **WCAG-2.
52
54
  | Quality Gates | `scan`, `review`, `check` — echte Defekte vor dem Merge |
53
55
  | KI, die hilft | Skills, Workflows, Agent-Metadata — **Mensch → Framework → KI** |
54
56
 
55
- Gegenüber **Tailwind**: weniger Class-Sprawl, stärkere Defaults für Kontrast und Semantik.
57
+ ### Das Tailwind-Sprawl-Problem
58
+
59
+ Intensive Tailwind-Nutzung wird im HTML oft zum **Klassensalat** — ein einfacher Button braucht dann 10–15 Utilities (`flex items-center … hover:bg-blue-700 … focus:ring-2 …`). VelinStyle nutzt zwar ein `velin-`-Präfix, liefert aber **semantische, fertige Komponenten** (Utilities nur für Feinschliff) statt jedes UI aus atomaren Einzelteilen zusammenzustecken. Ergebnis: kürzeres Markup, AAA-orientierte Defaults und optionale Blueprints / `plan`-Rezepte — kein fertiges Studio-Produkt (Studio bleibt **planned**).
60
+
61
+ ```html
62
+ <!-- Tailwind-Sprawl -->
63
+ <button class="inline-flex items-center justify-center px-4 py-2 bg-blue-600 hover:bg-blue-700 text-white text-sm font-medium rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-blue-500">
64
+ Speichern
65
+ </button>
66
+
67
+ <!-- VelinStyle -->
68
+ <button class="velin-btn velin-btn--primary">Speichern</button>
69
+ ```
70
+
71
+ Gegenüber **Tailwind**: weniger Class-Sprawl, stärkere Defaults für Kontrast und Semantik. Siehe den [Migrationsleitfaden](https://velinstyle.info/docs/migration-de.html).
56
72
  Gegenüber **Bootstrap**: moderne Tokens/Layers, progressive WCs, CLI-Automation statt Legacy-JS-Chrome.
57
73
 
58
74
  ---
@@ -62,9 +78,10 @@ Gegenüber **Bootstrap**: moderne Tokens/Layers, progressive WCs, CLI-Automation
62
78
  | | Bereich | Kurz |
63
79
  |---|--------|------|
64
80
  | 🎨 | **CSS-Framework** | OKLCH-Themes, Utilities, Komponenten, Lite-Preset |
65
- | 🧩 | **Web Components** | 40 kanonische Custom Elements; CSS allein reicht oft |
81
+ | 🧩 | **Web Components** | 43 kanonische Custom Elements; CSS allein reicht oft |
66
82
  | ⚡ | **Runtime** | Search, Motion, Highlight, Attributes, Tree-Shaking |
67
- | 🛠 | **CLI** | `create` · `serve` · `doctor` · `check` · `scan` · `review` · `skills` |
83
+ | 🛠 | **CLI** | `create` · `serve` · `doctor` · `check` · `scan` · `review` · `skills` · `transparency` |
84
+ | 🔎 | **Transparency** | Kennzeichnung + Nachweis (KI / Trust / Compliance / Metadaten) — Beta-Foundation |
68
85
  | 🧠 | **Design Intelligence** | Plan → Constraints → Registry → Review (Beta) |
69
86
  | 🤖 | **AI Skills** | 40 Skills, Packs, Bundles, Templates, Workflows (Beta) |
70
87
  | 📦 | **Registry** | Skills + Page/Section als maschinenlesbare Verträge |
@@ -74,20 +91,67 @@ Gegenüber **Bootstrap**: moderne Tokens/Layers, progressive WCs, CLI-Automation
74
91
  | 🛡 | **Scan Engine** | A11y, Security, CSS-Honesty, PII |
75
92
  | 🚀 | **Performance** | Lite-CSS, Chunked Runtime, CLS-Platzhalter |
76
93
  | ♿ | **Accessibility** | Contracts, WCAG-2.2-Tooling, Keyboard + ARIA |
94
+ | 🖼 | **Atelier** | Kuratierte Bibliothek kompletter Interfaces, Layouts & Studio-Bausteine |
77
95
 
78
96
  ---
79
97
 
80
- ## Neu in 1.2
98
+ ## VelinStyle Atelier
81
99
 
82
- Kein reines CSS-Bump ein **Foundation-Release**.
100
+ [Atelier](https://velinstyle.info/atelier/index.de.html) ist die Produkt-Showcase-Fläche für VelinStyle: **komplette Interfaces**, keine einzelnen Buttons und Karten. Nach Einsatzzweck browsen (Apps, Marketing, Commerce, Auth…), Live-Welten öffnen, Quellcode kopieren oder ZIPs laden.
83
101
 
84
- - **Ship Surface** `create`, `serve`, `doctor`, `check` (`--json` / `--sarif`)
85
- - **Design Intelligence (Beta)** — Prompt Engine, Review Engine, Knowledge-Graph-Seed, Constraints
86
- - **AI Foundation (Beta)** — Skill Engine, Workflows, reicheres Agent-Metadata
87
- - **Neue Primitives** — Calendar, File-Dropzone, editierbare Data-Table
88
- - **Trust Gates** strengere Scan/Review-Regeln
102
+ | Fläche | Was du bekommst | Link |
103
+ |--------|-----------------|------|
104
+ | **Atelier Home** | Brand-Hub Warum Atelier, vier Welten, Bau-Pfade | [Öffnen](https://velinstyle.info/atelier/index.de.html) |
105
+ | **Library** | 2.638 Templates Filter nach Mode, Kategorie, Tags, Qualität | [Durchsuchen](https://velinstyle.info/atelier/library/) |
106
+ | **Cascade Console** | Enterprise-/SaaS-Dashboard-Welt | [Live-Demo](https://velinstyle.info/showcase-reihe/01-enterprise-api-ai-dashboard/) |
107
+ | **LUMEN** | Kompletter Shop — Katalog, Warenkorb, Checkout | [Live-Demo](https://velinstyle.info/showcase-reihe/02-enterprise-ecommerce-storefront/) |
108
+ | **FORGE** | Community- & Forum-System | [Live-Demo](https://velinstyle.info/showcase-reihe/03-modern-community-forum/) |
89
109
 
90
- Details: [`RELEASE_NOTES_1.2.0.md`](RELEASE_NOTES_1.2.0.md) · Historie: [`CHANGELOG.md`](CHANGELOG.md)
110
+ Library-Shortcuts: [Apps](https://velinstyle.info/atelier/library/?mode=apps) · [Studio-Bausteine](https://velinstyle.info/atelier/library/?mode=studio) · [Recipes](https://velinstyle.info/atelier/library/?mode=recipes) · [Marketing](https://velinstyle.info/atelier/library/?cat=marketing) · [Dashboards](https://velinstyle.info/atelier/library/?cat=dashboards) · [Auth](https://velinstyle.info/atelier/library/?cat=authentication)
111
+
112
+ Englischer Hub: [atelier/](https://velinstyle.info/atelier/)
113
+
114
+ ---
115
+
116
+ ## Neu in 1.2.2
117
+
118
+ **Production Release** — **Build only what your project actually uses.** / Nur bauen, was das Projekt wirklich nutzt.
119
+
120
+ VelinStyle analysiert das Projekt und erzeugt ein optimiertes Produktionspaket statt das komplette Framework auszuliefern. Dazu: erste **Atelier-CLI** (Beta) und neue produktionsreife Komponenten.
121
+
122
+ ### Production Builder
123
+
124
+ ```bash
125
+ npx velinstyle build --production --explain
126
+ # → ./dist/velin-production/
127
+ ```
128
+
129
+ - CSS nur für verwendete Komponenten · Runtime nur für benötigte Web Components
130
+ - Themes / Icons / Motion nur bei Nutzung · Größen-Report
131
+
132
+ ### Atelier CLI (Beta)
133
+
134
+ ```bash
135
+ npx velinstyle atelier list
136
+ npx velinstyle atelier 24
137
+ npx velinstyle scaffold --atelier 24
138
+ ```
139
+
140
+ Atelier Library ≠ Velin Studio (Studio bleibt **planned**). Siehe [`docs/guides/atelier-cli.md`](docs/guides/atelier-cli.md).
141
+
142
+ ### Neue Komponenten & Verbesserungen
143
+
144
+ - `<velin-otp-input>`, `<velin-password-strength>`, `<velin-empty-state>`
145
+ - Tabellen-Severity · dynamische Overlay-Titel (Modal / Drawer / Sheet)
146
+
147
+ Siehe [`RELEASE_NOTES_1.2.2.md`](RELEASE_NOTES_1.2.2.md) und [`docs/guides/production-build.md`](docs/guides/production-build.md).
148
+
149
+ ## Neu in 1.2.1
150
+
151
+ - **Transparency Framework (Beta)** — `@birdapi/velinstyle/transparency`, Bridge `velin-transparency`, Claim-Taxonomie, CLI `transparency doctor|validate|report|export|migrate`
152
+ - Baut auf der **1.2.0**-Foundation auf: Ship Surface, Design Intelligence, AI Skills, neue WC-Primitives
153
+
154
+ Details: [`CHANGELOG.md`](CHANGELOG.md) · 1.2.0-Überblick: [`RELEASE_NOTES_1.2.0.md`](RELEASE_NOTES_1.2.0.md)
91
155
 
92
156
  ---
93
157
 
@@ -100,8 +164,14 @@ yarn add @birdapi/velinstyle
100
164
  bun add @birdapi/velinstyle
101
165
  ```
102
166
 
103
- **CDN** (Version pinnen) — siehe [`README.md`](README.md#installation).
104
- Nach Clone: `npm install && npm run build`.
167
+ **CDN** (Version pinnen):
168
+
169
+ ```html
170
+ <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.2.2/dist/velinstyle.min.css">
171
+ <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.2.2/dist/velinstyle-components.min.js"></script>
172
+ ```
173
+
174
+ > Pin **`@1.2.2`** (oder `@latest` nach Publish). Nach Clone: `npm install && npm run build`.
105
175
 
106
176
  ---
107
177
 
@@ -121,19 +191,24 @@ Minimal-HTML und Import-Pfade: [`GETTING_STARTED.md`](GETTING_STARTED.md) · Sys
121
191
  | Befehl | Rolle |
122
192
  |--------|------|
123
193
  | `create` | Scaffolds (`landing` · `dashboard` · `docs` · `auth`) |
124
- | `check` | doctor + blueprints + scan + review |
194
+ | `check` | doctor + blueprints + scan + review (+ Transparency-Scores) |
125
195
  | `scan` / `review` | Statische bzw. Design-Intelligence-Gates |
196
+ | `transparency` | doctor · validate · report · export · migrate (Beta) |
197
+ | `atelier` | Library-Showcase per Nummer/ID pullen (`--format`-Wrapper) |
198
+ | `scaffold` / `plan` | Prompt-HTML oder `--atelier`-Compose (Beta) |
126
199
  | `skills` / `workflow` | AI-Registry & Graphen (Beta) |
127
200
  | `wc api <tag>` | WC-API aus dem Source |
128
201
  | `meta` | Agent-Bundle + `llms.txt` |
129
202
 
203
+ Atelier-Pull/Compose und **Einschränkungen** (Wrapper ≠ natives Blade/Vue/React; Studio geplant): [`docs/guides/atelier-cli.md`](docs/guides/atelier-cli.md).
204
+
130
205
  ---
131
206
 
132
207
  ## Komponenten & Accessibility
133
208
 
134
- **40 kanonische** Custom Elements (**42** Lazy-Loader inkl. Legacy-`*-wc`). Progressive Enhancement: HTML/CSS first, WC nur bei Verhalten.
209
+ **43 kanonische** Custom Elements (**45** Lazy-Loader inkl. Legacy-`*-wc`). Progressive Enhancement: HTML/CSS first, WC nur bei Verhalten.
135
210
 
136
- AAA-orientierte Token-Defaults, Fokus-Management, Reduced Motion, Scanner-Contracts — siehe [A11y-Matrix](https://velinstyle.info/docs/a11y.html).
211
+ AAA-orientierte Token-Defaults, Fokus-Management, Reduced Motion, Scanner-Contracts — siehe [A11y-Matrix](https://velinstyle.info/docs/getting-started/accessibility.html).
137
212
 
138
213
  ---
139
214
 
@@ -142,9 +217,9 @@ AAA-orientierte Token-Defaults, Fokus-Management, Reduced Motion, Scanner-Contra
142
217
  | Status | Surfaces |
143
218
  |--------|----------|
144
219
  | **Stable** | CSS · Runtime · WC · CLI-Kern · Blueprints |
145
- | **Beta** | Review · Prompt · Knowledge Graph · AI Metadata · Constraints |
146
- | **Foundation** | AI Skills · Workflow Graphs · Registries |
147
- | **Planned** | Studio · Utility Engine Generator |
220
+ | **Beta** | Transparency Framework · Review · Prompt · Knowledge Graph · AI Metadata · Constraints · Atelier-Compose (`--atelier`) |
221
+ | **Foundation** | AI Skills · Workflow Graphs · Registries · Transparency pillars |
222
+ | **Planned** | Velin Studio Builder · Utility Engine Generator · native Blade/Vue/React-Bausteine |
148
223
 
149
224
  ---
150
225
 
@@ -153,3 +228,54 @@ AAA-orientierte Token-Defaults, Fokus-Management, Reduced Motion, Scanner-Contra
153
228
  Siehe [`CONTRIBUTING.de.md`](CONTRIBUTING.de.md). Lizenz: [MIT](LICENSE).
154
229
 
155
230
  Vollständige englische README: [`README.md`](README.md).
231
+
232
+ ---
233
+
234
+ ## Live-Demos & Module
235
+
236
+ Fertige Oberflächen erkunden — Atelier-Welten, Template-Bibliothek und klassische Demo-Module.
237
+
238
+ ### Atelier-Produktwelten
239
+
240
+ | Modul | Fokus | Demo |
241
+ |-------|-------|------|
242
+ | **Cascade Console** | Enterprise-API- / AI-Dashboard | [Öffnen](https://velinstyle.info/showcase-reihe/01-enterprise-api-ai-dashboard/) |
243
+ | **LUMEN** | E-Commerce-Storefront | [Öffnen](https://velinstyle.info/showcase-reihe/02-enterprise-ecommerce-storefront/) |
244
+ | **FORGE** | Community-Forum | [Öffnen](https://velinstyle.info/showcase-reihe/03-modern-community-forum/) |
245
+ | **Atelier Library** | Vollständige Template-Hub (2.638) | [Öffnen](https://velinstyle.info/atelier/library/) |
246
+ | **Atelier Home** | Marketing-Hub (DE) | [Öffnen](https://velinstyle.info/atelier/index.de.html) |
247
+ | **Atelier Home** | Marketing-Hub (EN) | [Öffnen](https://velinstyle.info/atelier/) |
248
+
249
+ ### Klassische Demo-Module
250
+
251
+ | Modul | Fokus | Demo |
252
+ |-------|-------|------|
253
+ | **Demo-Index** | Alle klassischen Showcases | [Öffnen](https://velinstyle.info/demos/) |
254
+ | **Crypto-Dashboard** | Dichtes Admin / Charts | [Öffnen](https://velinstyle.info/demos/showcase-crypto.html) |
255
+ | **Dashboard** | App-Shell & KPIs | [Öffnen](https://velinstyle.info/demos/showcase-dashboard.html) |
256
+ | **SaaS** | Product Marketing | [Öffnen](https://velinstyle.info/demos/showcase-saas.html) |
257
+ | **E-Commerce** | Shop-Patterns | [Öffnen](https://velinstyle.info/demos/showcase-ecommerce.html) |
258
+ | **Forum** | Community-UI | [Öffnen](https://velinstyle.info/demos/showcase-forum.html) |
259
+ | **UI Kit** | Komponenten-Galerie | [Öffnen](https://velinstyle.info/demos/showcase-ui-kit.html) |
260
+ | **Interactive** | WC-Verhalten | [Öffnen](https://velinstyle.info/demos/showcase-interactive.html) |
261
+ | **Runtime** | Search / Motion / Boot | [Öffnen](https://velinstyle.info/demos/showcase-runtime.html) |
262
+
263
+ ### Library nach Intent
264
+
265
+ | Intent | Link |
266
+ |--------|------|
267
+ | Applications | [library/?mode=apps](https://velinstyle.info/atelier/library/?mode=apps) |
268
+ | Studio-Bausteine | [library/?mode=studio](https://velinstyle.info/atelier/library/?mode=studio) |
269
+ | Recipes | [library/?mode=recipes](https://velinstyle.info/atelier/library/?mode=recipes) |
270
+ | Marketing | [library/?cat=marketing](https://velinstyle.info/atelier/library/?cat=marketing) |
271
+ | Dashboards | [library/?cat=dashboards](https://velinstyle.info/atelier/library/?cat=dashboards) |
272
+ | Commerce | [library/?cat=commerce](https://velinstyle.info/atelier/library/?cat=commerce) |
273
+ | Authentication | [library/?cat=authentication](https://velinstyle.info/atelier/library/?cat=authentication) |
274
+ | Community | [library/?cat=community](https://velinstyle.info/atelier/library/?cat=community) |
275
+ | Admin | [library/?cat=admin](https://velinstyle.info/atelier/library/?cat=admin) |
276
+
277
+ <p align="center">
278
+ <a href="https://velinstyle.info/atelier/index.de.html">
279
+ <img src=".github/assets/readme/hero-demo.webp" alt="VelinStyle Atelier und Demo-Oberflächen" width="720">
280
+ </a>
281
+ </p>
package/README.md CHANGED
@@ -19,25 +19,27 @@ One framework. One CLI. One design system. One AI-ready ecosystem.
19
19
  [![GitHub stars](https://img.shields.io/github/stars/SkyliteDesign/velinstyle?style=flat-square)](https://github.com/SkyliteDesign/velinstyle/stargazers)
20
20
  [![Node.js](https://img.shields.io/badge/Node.js-18%2B-339933?style=flat-square)](https://nodejs.org/)
21
21
  [![Browsers](https://img.shields.io/badge/Browsers-modern-0ea5e9?style=flat-square)](https://velinstyle.info/docs/getting-started/introduction.html)
22
- [![WCAG 2.2 AAA support](https://img.shields.io/badge/WCAG_2.2-AAA_support-16a34a?style=flat-square)](https://velinstyle.info/docs/a11y.html)
22
+ [![WCAG 2.2 AAA support](https://img.shields.io/badge/WCAG_2.2-AAA_support-16a34a?style=flat-square)](https://velinstyle.info/docs/getting-started/accessibility.html)
23
23
  [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-2563eb?style=flat-square)](CONTRIBUTING.md)
24
24
 
25
25
  ```bash
26
26
  npm i @birdapi/velinstyle
27
27
  ```
28
28
 
29
- **[Website](https://velinstyle.info)** · **[Docs](https://velinstyle.info/docs/getting-started/introduction.html)** · **[Demos](https://velinstyle.info/demos/)** · **[Getting Started](GETTING_STARTED.md)** · **[Architecture](ARCHITECTURE.md)** · **[Deutsch](README.de.md)**
29
+ **[Website](https://velinstyle.info)** · **[Atelier](https://velinstyle.info/atelier/)** · **[Docs](https://velinstyle.info/docs/getting-started/introduction.html)** · **[Demos](https://velinstyle.info/demos/)** · **[Getting Started](GETTING_STARTED.md)** · **[Architecture](ARCHITECTURE.md)** · **[Deutsch](README.de.md)**
30
30
 
31
31
  </div>
32
32
 
33
33
  ---
34
34
 
35
- VelinStyle is a **production CSS + Web Components framework** with **WCAG 2.2 AAA-oriented defaults**, a real **CLI ship surface**, and the first **Design Intelligence / AI Foundation** systems (beta). No external UI framework in the core.
35
+ VelinStyle is a **production CSS + Web Components framework** with **WCAG 2.2 AAA-oriented defaults**, a real **CLI ship surface**, the **Transparency Framework** (labeling + provenance, beta), and the first **Design Intelligence / AI Foundation** systems (beta). No external UI framework in the core.
36
36
 
37
- **Best fit today:** marketing landings, docs shells, simple admin starters.
37
+ **VelinStyle Atelier** is the curated surface on top: **2,600+ production-ready interfaces**, four complete product worlds, and a browsable library — complete screens instead of empty component fragments.
38
+
39
+ **Best fit today:** marketing landings, docs shells, admin/SaaS starters, shop & community UIs via Atelier.
38
40
  **Not yet:** sole primary stack for large multipage shop + enterprise admin without custom work.
39
41
 
40
- > **Release:** **1.2.0** (Core + Design Intelligence Foundation + Trust/Ship). Using VelinStyle does **not** certify your app — see the [a11y matrix](https://velinstyle.info/docs/a11y.html).
42
+ > **Release:** **1.2.2** (Production Release Production Builder + Atelier CLI). Using VelinStyle does **not** certify your app — see the [a11y matrix](https://velinstyle.info/docs/getting-started/accessibility.html).
41
43
 
42
44
  ---
43
45
 
@@ -52,7 +54,21 @@ VelinStyle is a **production CSS + Web Components framework** with **WCAG 2.2 AA
52
54
  | Quality gates | `scan`, `review`, `check` — catch real defects before merge |
53
55
  | AI that helps | Skills, workflows, and agent metadata — **Mensch → Framework → KI** |
54
56
 
55
- Compared to **Tailwind**: less class sprawl, stronger defaults for contrast and semantics.
57
+ ### The Tailwind sprawl problem
58
+
59
+ Heavy Tailwind use often turns HTML into a **class salad** — a simple button can need 10–15 utilities (`flex items-center … hover:bg-blue-700 … focus:ring-2 …`). VelinStyle still uses a `velin-` prefix, but ships **semantic, ready-made components** (plus utilities for one-off tweaks) instead of assembling every surface from atomic pieces. You get shorter markup, built-in a11y defaults, and optional blueprints / `plan` recipes — not a finished Studio product (Studio remains **planned**).
60
+
61
+ ```html
62
+ <!-- Tailwind sprawl -->
63
+ <button class="inline-flex items-center justify-center px-4 py-2 bg-blue-600 hover:bg-blue-700 text-white text-sm font-medium rounded-md shadow-sm focus:outline-none focus:ring-2 focus:ring-blue-500">
64
+ Save
65
+ </button>
66
+
67
+ <!-- VelinStyle -->
68
+ <button class="velin-btn velin-btn--primary">Save</button>
69
+ ```
70
+
71
+ Compared to **Tailwind**: less class sprawl, stronger defaults for contrast and semantics. See the [Migration Guide](https://velinstyle.info/docs/migration.html).
56
72
  Compared to **Bootstrap**: modern tokens/layers, optional progressive WCs, CLI automation instead of jQuery-era chrome.
57
73
 
58
74
  ---
@@ -62,9 +78,10 @@ Compared to **Bootstrap**: modern tokens/layers, optional progressive WCs, CLI a
62
78
  | | Area | What it does |
63
79
  |---|------|----------------|
64
80
  | 🎨 | **CSS Framework** | OKLCH themes, utilities, components, lite preset for marketing budgets |
65
- | 🧩 | **Web Components** | 40 canonical custom elements; use CSS alone when you need no JS |
81
+ | 🧩 | **Web Components** | 43 canonical custom elements; use CSS alone when you need no JS |
66
82
  | ⚡ | **Runtime** | Search, motion, highlight, attributes, `bootFromDOM` tree-shaking |
67
- | 🛠 | **CLI** | `create` · `serve` · `doctor` · `check` · `scan` · `review` · `skills` |
83
+ | 🛠 | **CLI** | `create` · `serve` · `doctor` · `check` · `scan` · `review` · `skills` · `transparency` |
84
+ | 🔎 | **Transparency** | Labeling + provenance (AI / trust / compliance / metadata) — beta foundation |
68
85
  | 🧠 | **Design Intelligence** | Plan → constraints → page/section registry → review (beta) |
69
86
  | 🤖 | **AI Skills** | 40 skills, packs, bundles, templates, workflow graphs (beta) |
70
87
  | 📦 | **Registry** | Skills + page/section registries as machine-readable contracts |
@@ -74,20 +91,67 @@ Compared to **Bootstrap**: modern tokens/layers, optional progressive WCs, CLI a
74
91
  | 🛡 | **Scan Engine** | A11y, security, CSS honesty, PII |
75
92
  | 🚀 | **Performance** | Lite CSS, chunked runtime, CLS placeholders |
76
93
  | ♿ | **Accessibility** | Contracts, WCAG 2.2 tooling, keyboard + ARIA patterns |
94
+ | 🖼 | **Atelier** | Curated library of complete interfaces, layouts & studio blocks |
77
95
 
78
96
  ---
79
97
 
80
- ## What's new in 1.2
98
+ ## VelinStyle Atelier
99
+
100
+ [Atelier](https://velinstyle.info/atelier/) is the product showcase for VelinStyle: **complete interfaces**, not isolated buttons and cards. Browse by intent (apps, marketing, commerce, auth…), open live worlds, copy source, or download ZIPs.
101
+
102
+ | Surface | What you get | Link |
103
+ |---------|--------------|------|
104
+ | **Atelier home** | Brand hub — why Atelier, four worlds, build paths | [Open](https://velinstyle.info/atelier/) |
105
+ | **Library** | 2,638 templates — filter by mode, category, tags, quality | [Browse](https://velinstyle.info/atelier/library/) |
106
+ | **Cascade Console** | Enterprise / SaaS dashboard world | [Live demo](https://velinstyle.info/showcase-reihe/01-enterprise-api-ai-dashboard/) |
107
+ | **LUMEN** | Full shop — catalog, cart, checkout | [Live demo](https://velinstyle.info/showcase-reihe/02-enterprise-ecommerce-storefront/) |
108
+ | **FORGE** | Community & forum system | [Live demo](https://velinstyle.info/showcase-reihe/03-modern-community-forum/) |
109
+
110
+ Library shortcuts: [Apps](https://velinstyle.info/atelier/library/?mode=apps) · [Studio blocks](https://velinstyle.info/atelier/library/?mode=studio) · [Recipes](https://velinstyle.info/atelier/library/?mode=recipes) · [Marketing](https://velinstyle.info/atelier/library/?cat=marketing) · [Dashboards](https://velinstyle.info/atelier/library/?cat=dashboards) · [Auth](https://velinstyle.info/atelier/library/?cat=authentication)
111
+
112
+ German Atelier hub: [atelier/index.de.html](https://velinstyle.info/atelier/index.de.html)
113
+
114
+ ---
115
+
116
+ ## What's new in 1.2.2
117
+
118
+ **Production Release** — **Build only what your project actually uses.**
119
+
120
+ VelinStyle analyzes your project and creates an optimized production package instead of shipping the complete framework. This release also adds the first **Atelier CLI** (beta) and new production-ready components.
121
+
122
+ ### Production Builder
81
123
 
82
- Not a CSS bump — a **foundation release**.
124
+ ```bash
125
+ npx velinstyle build --production --explain
126
+ # → ./dist/velin-production/ (CSS, JS stub, themes, icons, report)
127
+ ```
128
+
129
+ - CSS only for used components · runtime only for needed Web Components
130
+ - Themes / icons / motion only when used · size report
131
+
132
+ ### Atelier CLI (Beta)
133
+
134
+ ```bash
135
+ npx velinstyle atelier list
136
+ npx velinstyle atelier 24
137
+ npx velinstyle scaffold --atelier 24
138
+ ```
139
+
140
+ Atelier Library ≠ Velin Studio (Studio remains **planned**). See [`docs/guides/atelier-cli.md`](docs/guides/atelier-cli.md).
141
+
142
+ ### New components & improvements
83
143
 
84
- - **Ship surface** — `create landing|dashboard|docs|auth`, `serve`, `doctor`, `check` (`--json` / `--sarif`)
85
- - **Design Intelligence (beta)** Prompt Engine (`plan`), Review Engine, knowledge graph seed, design constraints
86
- - **AI Foundation (beta)** — skill engine, workflows, richer agent metadata
87
- - **New primitives** — `<velin-calendar>`, `<velin-file-dropzone>`, editable `<velin-data-table>`
88
- - **Trust gates** — stricter scan/review so junk pages cannot fake green scores
144
+ - `<velin-otp-input>`, `<velin-password-strength>`, `<velin-empty-state>`
145
+ - Table severity states · dynamic overlay titles (modal / drawer / sheet)
89
146
 
90
- Details: [`RELEASE_NOTES_1.2.0.md`](RELEASE_NOTES_1.2.0.md) · full history: [`CHANGELOG.md`](CHANGELOG.md)
147
+ See [`RELEASE_NOTES_1.2.2.md`](RELEASE_NOTES_1.2.2.md) and [`docs/guides/production-build.md`](docs/guides/production-build.md).
148
+
149
+ ## What's new in 1.2.1
150
+
151
+ - **Transparency Framework (beta)** — `@birdapi/velinstyle/transparency`, `velin-transparency` bridge, claim taxonomy, CLI `transparency doctor|validate|report|export|migrate`
152
+ - Builds on **1.2.0** foundation: ship surface, Design Intelligence, AI Skills, new WC primitives
153
+
154
+ Details: [`CHANGELOG.md`](CHANGELOG.md) · 1.2.0 overview: [`RELEASE_NOTES_1.2.0.md`](RELEASE_NOTES_1.2.0.md)
91
155
 
92
156
  ---
93
157
 
@@ -103,11 +167,11 @@ bun add @birdapi/velinstyle
103
167
  **CDN** (pin a version):
104
168
 
105
169
  ```html
106
- <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.2.0/dist/velinstyle.min.css">
107
- <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.2.0/dist/velinstyle-components.min.js"></script>
170
+ <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.2.2/dist/velinstyle.min.css">
171
+ <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.2.2/dist/velinstyle-components.min.js"></script>
108
172
  ```
109
173
 
110
- > Pin **`@1.2.0`** (or `@latest` after publish). Examples above match this package version.
174
+ > Pin **`@1.2.2`** (or `@latest` after publish). Examples above match this package version.
111
175
 
112
176
  | Export | Use |
113
177
  |--------|-----|
@@ -127,8 +191,8 @@ After clone: `npm install && npm run build` — `dist/` is generated, not commit
127
191
  <head>
128
192
  <meta charset="UTF-8">
129
193
  <meta name="viewport" content="width=device-width, initial-scale=1">
130
- <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.2.0/dist/velinstyle.min.css">
131
- <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.2.0/dist/velinstyle-components.min.js"></script>
194
+ <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.2.2/dist/velinstyle.min.css">
195
+ <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.2.2/dist/velinstyle-components.min.js"></script>
132
196
  </head>
133
197
  <body class="velin-p-6">
134
198
  <button type="button" class="velin-btn velin-btn--primary">Ship it</button>
@@ -157,19 +221,27 @@ More: [`GETTING_STARTED.md`](GETTING_STARTED.md)
157
221
  | `build` | CSS build (`--preset lite` for marketing) |
158
222
  | `serve` | Static preview |
159
223
  | `doctor` | Install / path health |
160
- | `check` | doctor + blueprints + scan + review |
224
+ | `check` | doctor + blueprints + scan + review (+ Transparency scores) |
161
225
  | `scan` | A11y / security / CSS / PII |
162
226
  | `review` | Design-intelligence gate (beta) |
163
- | `plan` | Prompt plan JSON render (beta) |
227
+ | `transparency` | doctor · validate · report · export · migrate (beta) |
228
+ | `plan` | Prompt → plan JSON → render (beta); `--atelier` Library plan (beta) |
229
+ | `scaffold` | Prompt HTML or `--atelier` Library compose (beta) |
230
+ | `atelier` | Pull curated Library showcase by number/id (`--format` wrappers) |
164
231
  | `skills` / `workflow` | AI skill registry & graphs (beta) |
165
232
  | `meta` | Agent bundle + `llms.txt` |
166
233
  | `wc api <tag>` | Human-readable WC API from source |
167
234
 
168
235
  ```bash
169
236
  npx @birdapi/velinstyle check . --profile marketing
237
+ npx @birdapi/velinstyle transparency doctor . --policy examples/transparency.policy.json
238
+ npx @birdapi/velinstyle atelier 36 -o ./velin-atelier/36-calendar
239
+ npx @birdapi/velinstyle scaffold --atelier 04,07 -o compose.html
170
240
  npx @birdapi/velinstyle wc api velin-toast
171
241
  ```
172
242
 
243
+ Atelier pull / compose details and **limitations** (wrappers ≠ native Blade/Vue/React; Studio planned): [`docs/guides/atelier-cli.md`](docs/guides/atelier-cli.md).
244
+
173
245
  ---
174
246
 
175
247
  ## AI Skills & Design Intelligence
@@ -178,13 +250,15 @@ npx @birdapi/velinstyle wc api velin-toast
178
250
 
179
251
  **Design Intelligence** adds structure ordinary CSS frameworks lack: a knowledge graph seed, page/section registries, design constraints, and `plan` / `review` so pages are assembled from known patterns — then checked against profiles (`marketing` · `app` · `docs` · `ecommerce`).
180
252
 
253
+ **Atelier compose (beta):** `scaffold --atelier` / `plan --atelier` can assemble pages from curated **Atelier Library** ids. This is Library compose — **not** Velin Studio (planned). Framework `--format` shells are wrappers only; native Blade/Vue/React blocks are planned later. See [`docs/guides/atelier-cli.md`](docs/guides/atelier-cli.md).
254
+
181
255
  Deep dive: [`ARCHITECTURE.md`](ARCHITECTURE.md) · [`VELINSTYLE_2030.md`](VELINSTYLE_2030.md) · Strategy (lokal, nicht im Git): [`docs/strategy/README.md`](docs/strategy/README.md)
182
256
 
183
257
  ---
184
258
 
185
259
  ## Components
186
260
 
187
- **40 canonical** custom elements (**42** lazy-loader entries including legacy `*-wc` aliases).
261
+ **43 canonical** custom elements (**45** lazy-loader entries including legacy `*-wc` aliases).
188
262
 
189
263
  Philosophy: **progressive enhancement** — semantic HTML + CSS first; upgrade to a Web Component only when you need behavior (focus traps, sorting, offline search).
190
264
 
@@ -204,7 +278,7 @@ Accessibility is a **default**, not a plugin.
204
278
  - `prefers-reduced-motion` gating
205
279
  - Component a11y contracts + scanner rules
206
280
 
207
- Docs: [a11y matrix](https://velinstyle.info/docs/a11y.html) · AAA marketing language: see `VELINSTYLE_2030.md` (strategy ADRs are local-only)
281
+ Docs: [a11y matrix](https://velinstyle.info/docs/getting-started/accessibility.html) · AAA marketing language: see `VELINSTYLE_2030.md` (strategy ADRs are local-only)
208
282
 
209
283
  ---
210
284
 
@@ -222,7 +296,9 @@ Docs: [a11y matrix](https://velinstyle.info/docs/a11y.html) · AAA marketing lan
222
296
  | CLI ship surface | [`docs/guides/cli-ship-surface.md`](docs/guides/cli-ship-surface.md) | create / check / wc |
223
297
  | AI Skills | [`docs/guides/ai-skills.md`](docs/guides/ai-skills.md) | Skills / workflows |
224
298
  | Product site | [velinstyle.info/docs](https://velinstyle.info/docs/getting-started/introduction.html) | Guides, demos, reference |
225
- | Upgrade | [`UPGRADING.md`](UPGRADING.md) | 1.1 1.2 |
299
+ | Atelier | [velinstyle.info/atelier](https://velinstyle.info/atelier/) | Template library + product worlds |
300
+ | Transparency | [Site guide](https://velinstyle.info/docs/guides/transparency.html) · `@birdapi/velinstyle/transparency` | Labeling + provenance |
301
+ | Upgrade | [`UPGRADING.md`](UPGRADING.md) | 1.2.1 → 1.2.2 · 1.2.0 → 1.2.1 · 1.1 → 1.2 |
226
302
  | North star | [`VELINSTYLE_2030.md`](VELINSTYLE_2030.md) | Long-term vision |
227
303
 
228
304
  ---
@@ -233,7 +309,7 @@ Docs: [a11y matrix](https://velinstyle.info/docs/a11y.html) · AAA marketing lan
233
309
  velinstyle/
234
310
  ├── src/ # CSS source (tokens, base, components, utilities)
235
311
  ├── components/ # Web Components (JS)
236
- ├── core/ # Runtime: search, motion, highlight, attributes, meta
312
+ ├── core/ # Runtime: search, motion, highlight, attributes, meta, transparency
237
313
  ├── cli/ # velinstyle binary
238
314
  ├── packages/ # React wrappers, skill-engine, skills registry
239
315
  ├── schemas/ # Design Intelligence + skill contracts
@@ -259,9 +335,9 @@ Humans own product intent. The framework ships reliable CSS and components. Desi
259
335
  | Status | Surfaces |
260
336
  |--------|----------|
261
337
  | **Stable** | CSS · Utilities · Runtime · Web Components · CLI core · Blueprints |
262
- | **Beta** | Review Engine · Prompt Engine · Knowledge Graph · AI Metadata · Design Constraints |
263
- | **Foundation** | AI Skills · Workflow Graphs · Registries |
264
- | **Planned** | Studio · Utility Engine Generator |
338
+ | **Beta** | Transparency Framework · Review Engine · Prompt Engine · Knowledge Graph · AI Metadata · Design Constraints |
339
+ | **Foundation** | AI Skills · Workflow Graphs · Registries · Transparency pillars |
340
+ | **Planned** | Velin Studio builder · Utility Engine Generator · native Blade/Vue/React blocks |
265
341
 
266
342
  ---
267
343
 
@@ -270,11 +346,12 @@ Humans own product intent. The framework ships reliable CSS and components. Desi
270
346
  | | Bootstrap | Tailwind | **VelinStyle** |
271
347
  |---|:---:|:---:|:---:|
272
348
  | HTML readability | Medium | Low | **High** |
349
+ | Markup density | Low | High | **Controlled** |
273
350
  | Utility sprawl | Low | High | **Controlled** |
274
351
  | A11y defaults | Partial | DIY | **AAA-capable tokens** |
275
352
  | Dark mode | Manual | `dark:` everywhere | **Token swap** |
276
353
  | Build required | No | Usually | **CDN optional** |
277
- | Design / AI gates | — | — | **plan · review · skills** |
354
+ | Design / AI gates | — | — | **plan · review · skills · transparency** |
278
355
 
279
356
  ---
280
357
 
@@ -292,8 +369,53 @@ See [`CONTRIBUTING.md`](CONTRIBUTING.md).
292
369
 
293
370
  [MIT](LICENSE) — © 2026 VelinStyle · [SkyliteDesign](https://github.com/SkyliteDesign)
294
371
 
372
+ ---
373
+
374
+ ## Live demos & modules
375
+
376
+ Explore finished surfaces — Atelier worlds, the template library, and classic component demos.
377
+
378
+ ### Atelier product worlds
379
+
380
+ | Module | Focus | Demo |
381
+ |--------|-------|------|
382
+ | **Cascade Console** | Enterprise API / AI dashboard | [Open](https://velinstyle.info/showcase-reihe/01-enterprise-api-ai-dashboard/) |
383
+ | **LUMEN** | E-commerce storefront | [Open](https://velinstyle.info/showcase-reihe/02-enterprise-ecommerce-storefront/) |
384
+ | **FORGE** | Community forum | [Open](https://velinstyle.info/showcase-reihe/03-modern-community-forum/) |
385
+ | **Atelier Library** | Full template hub (2,638) | [Open](https://velinstyle.info/atelier/library/) |
386
+ | **Atelier home** | Marketing hub (EN) | [Open](https://velinstyle.info/atelier/) |
387
+ | **Atelier home** | Marketing hub (DE) | [Open](https://velinstyle.info/atelier/index.de.html) |
388
+
389
+ ### Classic demo modules
390
+
391
+ | Module | Focus | Demo |
392
+ |--------|-------|------|
393
+ | **Demo index** | All classic showcases | [Open](https://velinstyle.info/demos/) |
394
+ | **Crypto dashboard** | Dense admin / charts | [Open](https://velinstyle.info/demos/showcase-crypto.html) |
395
+ | **Dashboard** | App shell & KPIs | [Open](https://velinstyle.info/demos/showcase-dashboard.html) |
396
+ | **SaaS** | Product marketing | [Open](https://velinstyle.info/demos/showcase-saas.html) |
397
+ | **E-commerce** | Shop patterns | [Open](https://velinstyle.info/demos/showcase-ecommerce.html) |
398
+ | **Forum** | Community UI | [Open](https://velinstyle.info/demos/showcase-forum.html) |
399
+ | **UI Kit** | Component gallery | [Open](https://velinstyle.info/demos/showcase-ui-kit.html) |
400
+ | **Interactive** | WC behavior samples | [Open](https://velinstyle.info/demos/showcase-interactive.html) |
401
+ | **Runtime** | Search / motion / boot | [Open](https://velinstyle.info/demos/showcase-runtime.html) |
402
+
403
+ ### Library by intent
404
+
405
+ | Intent | Link |
406
+ |--------|------|
407
+ | Applications | [library/?mode=apps](https://velinstyle.info/atelier/library/?mode=apps) |
408
+ | Studio blocks | [library/?mode=studio](https://velinstyle.info/atelier/library/?mode=studio) |
409
+ | Recipes | [library/?mode=recipes](https://velinstyle.info/atelier/library/?mode=recipes) |
410
+ | Marketing | [library/?cat=marketing](https://velinstyle.info/atelier/library/?cat=marketing) |
411
+ | Dashboards | [library/?cat=dashboards](https://velinstyle.info/atelier/library/?cat=dashboards) |
412
+ | Commerce | [library/?cat=commerce](https://velinstyle.info/atelier/library/?cat=commerce) |
413
+ | Authentication | [library/?cat=authentication](https://velinstyle.info/atelier/library/?cat=authentication) |
414
+ | Community | [library/?cat=community](https://velinstyle.info/atelier/library/?cat=community) |
415
+ | Admin | [library/?cat=admin](https://velinstyle.info/atelier/library/?cat=admin) |
416
+
295
417
  <p align="center">
296
- <a href="https://velinstyle.info/demos/showcase-crypto.html">
297
- <img src=".github/assets/readme/hero-demo.webp" alt="VelinStyle crypto dashboard demo" width="720">
418
+ <a href="https://velinstyle.info/atelier/">
419
+ <img src=".github/assets/readme/hero-demo.webp" alt="VelinStyle Atelier and demo surfaces" width="720">
298
420
  </a>
299
421
  </p>
@@ -0,0 +1 @@
1
+ [data-fixture="01-login"] { padding: 1rem; }
@@ -0,0 +1,2 @@
1
+ const root = document.getElementById('root');
2
+ root.innerHTML = '<section class="velin-section" data-fixture="01-login"><h1>Fixture Login</h1></section>';
@@ -0,0 +1,5 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en"><head><meta charset="UTF-8"><title>Fixture Login</title>
3
+ <link rel="stylesheet" href="app.css"></head>
4
+ <body><div id="root" data-atelier-id="01-login"></div>
5
+ <script type="module" src="app.js"></script></body></html>
@@ -0,0 +1 @@
1
+ [data-fixture="04-pricing"] { padding: 1rem; }
@@ -0,0 +1,2 @@
1
+ const root = document.getElementById('root');
2
+ root.innerHTML = '<section class="velin-section" data-fixture="04-pricing"><h1>Fixture Pricing</h1></section>';
@@ -0,0 +1,5 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en"><head><meta charset="UTF-8"><title>Fixture Pricing</title>
3
+ <link rel="stylesheet" href="app.css"></head>
4
+ <body><div id="root" data-atelier-id="04-pricing"></div>
5
+ <script type="module" src="app.js"></script></body></html>
@@ -0,0 +1 @@
1
+ [data-fixture="36-calendar"] { padding: 1rem; }
@@ -0,0 +1,2 @@
1
+ const root = document.getElementById('root');
2
+ root.innerHTML = '<section class="velin-section" data-fixture="36-calendar"><h1>Fixture Calendar</h1></section>';
@@ -0,0 +1,5 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en"><head><meta charset="UTF-8"><title>Fixture Calendar</title>
3
+ <link rel="stylesheet" href="app.css"></head>
4
+ <body><div id="root" data-atelier-id="36-calendar"></div>
5
+ <script type="module" src="app.js"></script></body></html>