@birdapi/velinstyle 1.2.1 → 1.3.0

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 (156) hide show
  1. package/README.de.md +148 -11
  2. package/README.md +174 -16
  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 +441 -161
  17. package/cli/docgen/extract-cli.js +2 -1
  18. package/cli/docs-generate.js +9 -0
  19. package/cli/experience.js +173 -0
  20. package/cli/index.js +1384 -361
  21. package/cli/motion.js +738 -0
  22. package/cli/production/component-graph.json +166 -0
  23. package/cli/production/explain.js +52 -0
  24. package/cli/production/extract.js +278 -0
  25. package/cli/production/graph.js +102 -0
  26. package/cli/production/report.js +168 -0
  27. package/cli/production/run.js +355 -0
  28. package/cli/production/trim-css.js +177 -0
  29. package/cli/production/trim-fonts.js +23 -0
  30. package/cli/production/trim-icons.js +38 -0
  31. package/cli/production/trim-js.js +48 -0
  32. package/cli/production/trim-motion.js +22 -0
  33. package/cli/production/trim-themes.js +50 -0
  34. package/cli/production/watch.js +38 -0
  35. package/cli/review.js +48 -1
  36. package/cli/scripts/write-atelier-fixtures.mjs +33 -0
  37. package/cli/security.js +190 -0
  38. package/cli/skills.js +53 -10
  39. package/cli/transparency.js +140 -41
  40. package/cli/workflow.js +32 -17
  41. package/components/index.js +3 -0
  42. package/components/runtime/component-loaders.js +3 -0
  43. package/components/velin-drawer.js +43 -4
  44. package/components/velin-empty-state.js +83 -0
  45. package/components/velin-modal.js +76 -15
  46. package/components/velin-otp-input.js +220 -0
  47. package/components/velin-password-strength.js +147 -0
  48. package/components/velin-sheet.js +49 -4
  49. package/components/velin-theme-toggle.js +15 -1
  50. package/core/a11y/component-contracts.json +391 -255
  51. package/core/attributes/registry.js +1 -1
  52. package/core/meta/knowledge/components.json +75 -3
  53. package/core/motion/analyze.js +38 -0
  54. package/core/motion/blueprint.js +51 -0
  55. package/core/motion/composer.js +114 -0
  56. package/core/motion/data/registry.json +352 -0
  57. package/core/motion/effects.js +17 -1
  58. package/core/motion/index.js +112 -9
  59. package/core/motion/optimize.js +44 -0
  60. package/core/motion/policy.js +77 -0
  61. package/core/motion/registry.js +131 -0
  62. package/core/motion/review.js +59 -0
  63. package/core/motion/scan.js +150 -0
  64. package/core/motion/timeline.js +68 -0
  65. package/core/motion/transitions.js +49 -0
  66. package/core/motion/triggers.js +168 -0
  67. package/core/security/checks/fs.js +92 -0
  68. package/core/security/detect.js +35 -0
  69. package/core/security/engine.js +116 -0
  70. package/core/security/index.js +18 -0
  71. package/core/security/registry.js +85 -0
  72. package/core/security/report/report.js +113 -0
  73. package/core/security/rules/ci/index.js +146 -0
  74. package/core/security/rules/consumer/index.js +174 -0
  75. package/core/security/rules/deps/index.js +182 -0
  76. package/core/security/rules/index.js +24 -0
  77. package/core/security/rules/publish/index.js +230 -0
  78. package/core/security/rules/repo/index.js +143 -0
  79. package/core/security/rules/secrets/index.js +133 -0
  80. package/core/security/score/dependency-health.js +53 -0
  81. package/core/security/score/release-health.js +66 -0
  82. package/core/security/score/score.js +102 -0
  83. package/core/security/timeline/timeline.js +76 -0
  84. package/dist/chunks/attributes-2ORR27KA.js +404 -0
  85. package/dist/chunks/attributes-HK7VIOLA.js +1080 -0
  86. package/dist/chunks/attributes-VRHHVNDO.js +1080 -0
  87. package/dist/chunks/chunk-MYKUI364.js +116 -0
  88. package/dist/chunks/chunk-NEVBPD5T.js +116 -0
  89. package/dist/chunks/chunk-Y6HN7HWX.js +116 -0
  90. package/dist/chunks/runtime-entry.js +1 -1
  91. package/dist/chunks/velin-drawer-A7Q7EBOS.js +162 -0
  92. package/dist/chunks/velin-empty-state-3NTUH2RF.js +81 -0
  93. package/dist/chunks/velin-modal-3MV4FYBK.js +231 -0
  94. package/dist/chunks/velin-otp-input-PSK42MM6.js +207 -0
  95. package/dist/chunks/velin-password-strength-TAXMLSED.js +136 -0
  96. package/dist/chunks/velin-sheet-N2VVYXFP.js +157 -0
  97. package/dist/chunks/velin-theme-toggle-J2NHC7IM.js +304 -0
  98. package/dist/llms.txt +4 -4
  99. package/dist/search-index.json +232 -5
  100. package/dist/velin-agent.json +433 -46
  101. package/dist/velinstyle-components.iife.js +3695 -2272
  102. package/dist/velinstyle-components.js +3698 -2271
  103. package/dist/velinstyle-components.min.js +262 -120
  104. package/dist/velinstyle.css +96 -13
  105. package/dist/velinstyle.d.ts +3 -0
  106. package/dist/velinstyle.min.css +1 -1
  107. package/package.json +19 -4
  108. package/packages/velinstyle-cli-core/package.json +11 -0
  109. package/packages/velinstyle-cli-core/src/config.js +84 -0
  110. package/packages/velinstyle-cli-core/src/contract.js +56 -0
  111. package/packages/velinstyle-cli-core/src/event-bus.js +50 -0
  112. package/packages/velinstyle-cli-core/src/index.js +18 -0
  113. package/packages/velinstyle-cli-core/src/lifecycle.js +33 -0
  114. package/packages/velinstyle-cli-core/src/runner.js +129 -0
  115. package/packages/velinstyle-cli-registry/data/commands.json +1216 -0
  116. package/packages/velinstyle-cli-registry/data/layouts.json +33 -0
  117. package/packages/velinstyle-cli-registry/data/widgets.json +35 -0
  118. package/packages/velinstyle-cli-registry/package.json +13 -0
  119. package/packages/velinstyle-cli-registry/src/index.js +88 -0
  120. package/packages/velinstyle-cli-renderer/package.json +8 -0
  121. package/packages/velinstyle-cli-renderer/src/index.js +286 -0
  122. package/packages/velinstyle-cli-theme/package.json +8 -0
  123. package/packages/velinstyle-cli-theme/src/index.js +84 -0
  124. package/packages/velinstyle-cli-ui/package.json +8 -0
  125. package/packages/velinstyle-cli-ui/src/index.js +34 -0
  126. package/packages/velinstyle-motion/README.md +81 -0
  127. package/packages/velinstyle-motion/package.json +37 -0
  128. package/packages/velinstyle-motion/src/ai/mini-prompt.js +119 -0
  129. package/packages/velinstyle-motion/src/ai/provider.js +59 -0
  130. package/packages/velinstyle-motion/src/ai/providers/pixverse-setup.js +402 -0
  131. package/packages/velinstyle-motion/src/ai/providers/pixverse.js +245 -0
  132. package/packages/velinstyle-motion/src/config.js +257 -0
  133. package/packages/velinstyle-motion/src/export/html-clip.js +141 -0
  134. package/packages/velinstyle-motion/src/index.js +304 -0
  135. package/packages/velinstyle-motion/src/jobs/cache.js +30 -0
  136. package/packages/velinstyle-motion/src/jobs/queue.js +69 -0
  137. package/packages/velinstyle-motion/src/jobs/usage.js +53 -0
  138. package/packages/velinstyle-motion/src/local/effects.js +139 -0
  139. package/packages/velinstyle-motion/src/local/engine.js +96 -0
  140. package/packages/velinstyle-motion/src/providers-catalog.js +44 -0
  141. package/packages/velinstyle-motion/src/registry/presets.js +25 -0
  142. package/packages/velinstyle-motion/src/registry/presets.json +85 -0
  143. package/packages/velinstyle-motion/src/ux/cost-gate.js +37 -0
  144. package/packages/velinstyle-motion/src/ux/pixverse-gate.js +153 -0
  145. package/packages/velinstyle-motion/src/ux/wizard.js +171 -0
  146. package/packages/velinstyle-motion/src/validate-image.js +91 -0
  147. package/packages/velinstyle-skills/catalog.json +1 -1
  148. package/packages/velinstyle-skills/registry.json +1 -142
  149. package/packages/velinstyle-skills/skills/velin-motion-reduced-safe/SKILL.md +1 -1
  150. package/packages/velinstyle-skills/skills/velin-motion-reveal-feedback/SKILL.md +1 -1
  151. package/src/components/data-table.css +19 -0
  152. package/src/components/empty-auth.css +33 -0
  153. package/src/components/table.css +16 -6
  154. package/src/tokens/motion.css +7 -0
  155. package/src/utilities/scroll-animation.css +66 -0
  156. package/src/velinstyle.css +1 -0
package/README.de.md CHANGED
@@ -26,7 +26,7 @@ Ein Framework. Eine CLI. Ein Design System. Ein AI-fähiges Ökosystem.
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
 
@@ -34,10 +34,12 @@ npm i @birdapi/velinstyle
34
34
 
35
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.1** (Transparency Framework + Core + Design Intelligence Foundation + Trust/Ship). VelinStyle **zertifiziert keine Anwendung** — siehe [A11y-Matrix](https://velinstyle.info/docs/getting-started/accessibility.html).
42
+ > **Release:** **1.3.0** (Velin Motion Clips image→clip CLI + optional PixVerse). 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,7 +78,7 @@ 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
83
  | 🛠 | **CLI** | `create` · `serve` · `doctor` · `check` · `scan` · `review` · `skills` · `transparency` |
68
84
  | 🔎 | **Transparency** | Kennzeichnung + Nachweis (KI / Trust / Compliance / Metadaten) — Beta-Foundation |
@@ -75,9 +91,75 @@ Gegenüber **Bootstrap**: moderne Tokens/Layers, progressive WCs, CLI-Automation
75
91
  | 🛡 | **Scan Engine** | A11y, Security, CSS-Honesty, PII |
76
92
  | 🚀 | **Performance** | Lite-CSS, Chunked Runtime, CLS-Platzhalter |
77
93
  | ♿ | **Accessibility** | Contracts, WCAG-2.2-Tooling, Keyboard + ARIA |
94
+ | 🖼 | **Atelier** | Kuratierte Bibliothek kompletter Interfaces, Layouts & Studio-Bausteine |
95
+
96
+ ---
97
+
98
+ ## VelinStyle Atelier
99
+
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.
101
+
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/) |
109
+
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/)
78
113
 
79
114
  ---
80
115
 
116
+ ## Neu in 1.3.0
117
+
118
+ **Velin Motion Clips** — Bild→Clip-CLI (lokales HTML/CSS + optional PixVerse AI).
119
+
120
+ ```bash
121
+ npx velinstyle motion create hero.webp --preset cinematic
122
+ npx velinstyle motion providers
123
+ npx velinstyle motion setup pixverse
124
+ ```
125
+
126
+ - Package `@birdapi/velinstyle-motion` · lokale Clip-Engine · Presets · Wizard · optional **PixVerse** (externe Credits + API-Key)
127
+ - PixVerse-Signup **affiliate-first** (`motion setup pixverse`) — kein Direkt-Bypass; [Partnerlink](https://motivaiprivatelimited.sjv.io/c/7581758/3811144/49478) · [Site-Leitfaden](https://velinstyle.info/docs/guides/pixverse-leitfaden.html)
128
+ - Docs: [`docs/guides/velin-motion-clips.md`](docs/guides/velin-motion-clips.md) · [`RELEASE_NOTES_1.3.0.md`](RELEASE_NOTES_1.3.0.md)
129
+
130
+ ## Neu in 1.2.2
131
+
132
+ **Production Release** — **Build only what your project actually uses.** / Nur bauen, was das Projekt wirklich nutzt.
133
+
134
+ VelinStyle analysiert das Projekt und erzeugt ein optimiertes Produktionspaket statt das komplette Framework auszuliefern. Dazu: erste **Atelier-CLI** (Beta) und neue produktionsreife Komponenten.
135
+
136
+ ### Production Builder
137
+
138
+ ```bash
139
+ npx velinstyle build --production --explain
140
+ # → ./dist/velin-production/
141
+ ```
142
+
143
+ - CSS nur für verwendete Komponenten · Runtime nur für benötigte Web Components
144
+ - Themes / Icons / Motion nur bei Nutzung · Größen-Report
145
+
146
+ ### Atelier CLI (Beta)
147
+
148
+ ```bash
149
+ npx velinstyle atelier list
150
+ npx velinstyle atelier 24
151
+ npx velinstyle scaffold --atelier 24
152
+ ```
153
+
154
+ Atelier Library ≠ Velin Studio (Studio bleibt **planned**). Siehe [`docs/guides/atelier-cli.md`](docs/guides/atelier-cli.md).
155
+
156
+ ### Neue Komponenten & Verbesserungen
157
+
158
+ - `<velin-otp-input>`, `<velin-password-strength>`, `<velin-empty-state>`
159
+ - Tabellen-Severity · dynamische Overlay-Titel (Modal / Drawer / Sheet)
160
+
161
+ Siehe [`RELEASE_NOTES_1.2.2.md`](RELEASE_NOTES_1.2.2.md) und [`docs/guides/production-build.md`](docs/guides/production-build.md).
162
+
81
163
  ## Neu in 1.2.1
82
164
 
83
165
  - **Transparency Framework (Beta)** — `@birdapi/velinstyle/transparency`, Bridge `velin-transparency`, Claim-Taxonomie, CLI `transparency doctor|validate|report|export|migrate`
@@ -99,11 +181,11 @@ bun add @birdapi/velinstyle
99
181
  **CDN** (Version pinnen):
100
182
 
101
183
  ```html
102
- <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.2.1/dist/velinstyle.min.css">
103
- <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.2.1/dist/velinstyle-components.min.js"></script>
184
+ <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.3.0/dist/velinstyle.min.css">
185
+ <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.3.0/dist/velinstyle-components.min.js"></script>
104
186
  ```
105
187
 
106
- > Pin **`@1.2.1`** (oder `@latest` nach Publish). Nach Clone: `npm install && npm run build`.
188
+ > Pin **`@1.3.0`** (oder `@latest` nach Publish). Nach Clone: `npm install && npm run build`.
107
189
 
108
190
  ---
109
191
 
@@ -126,15 +208,19 @@ Minimal-HTML und Import-Pfade: [`GETTING_STARTED.md`](GETTING_STARTED.md) · Sys
126
208
  | `check` | doctor + blueprints + scan + review (+ Transparency-Scores) |
127
209
  | `scan` / `review` | Statische bzw. Design-Intelligence-Gates |
128
210
  | `transparency` | doctor · validate · report · export · migrate (Beta) |
211
+ | `atelier` | Library-Showcase per Nummer/ID pullen (`--format`-Wrapper) |
212
+ | `scaffold` / `plan` | Prompt-HTML oder `--atelier`-Compose (Beta) |
129
213
  | `skills` / `workflow` | AI-Registry & Graphen (Beta) |
130
214
  | `wc api <tag>` | WC-API aus dem Source |
131
215
  | `meta` | Agent-Bundle + `llms.txt` |
132
216
 
217
+ Atelier-Pull/Compose und **Einschränkungen** (Wrapper ≠ natives Blade/Vue/React; Studio geplant): [`docs/guides/atelier-cli.md`](docs/guides/atelier-cli.md).
218
+
133
219
  ---
134
220
 
135
221
  ## Komponenten & Accessibility
136
222
 
137
- **40 kanonische** Custom Elements (**42** Lazy-Loader inkl. Legacy-`*-wc`). Progressive Enhancement: HTML/CSS first, WC nur bei Verhalten.
223
+ **43 kanonische** Custom Elements (**45** Lazy-Loader inkl. Legacy-`*-wc`). Progressive Enhancement: HTML/CSS first, WC nur bei Verhalten.
138
224
 
139
225
  AAA-orientierte Token-Defaults, Fokus-Management, Reduced Motion, Scanner-Contracts — siehe [A11y-Matrix](https://velinstyle.info/docs/getting-started/accessibility.html).
140
226
 
@@ -145,9 +231,9 @@ AAA-orientierte Token-Defaults, Fokus-Management, Reduced Motion, Scanner-Contra
145
231
  | Status | Surfaces |
146
232
  |--------|----------|
147
233
  | **Stable** | CSS · Runtime · WC · CLI-Kern · Blueprints |
148
- | **Beta** | Transparency Framework · Review · Prompt · Knowledge Graph · AI Metadata · Constraints |
234
+ | **Beta** | Transparency Framework · Review · Prompt · Knowledge Graph · AI Metadata · Constraints · Atelier-Compose (`--atelier`) |
149
235
  | **Foundation** | AI Skills · Workflow Graphs · Registries · Transparency pillars |
150
- | **Planned** | Studio · Utility Engine Generator |
236
+ | **Planned** | Velin Studio Builder · Utility Engine Generator · native Blade/Vue/React-Bausteine |
151
237
 
152
238
  ---
153
239
 
@@ -156,3 +242,54 @@ AAA-orientierte Token-Defaults, Fokus-Management, Reduced Motion, Scanner-Contra
156
242
  Siehe [`CONTRIBUTING.de.md`](CONTRIBUTING.de.md). Lizenz: [MIT](LICENSE).
157
243
 
158
244
  Vollständige englische README: [`README.md`](README.md).
245
+
246
+ ---
247
+
248
+ ## Live-Demos & Module
249
+
250
+ Fertige Oberflächen erkunden — Atelier-Welten, Template-Bibliothek und klassische Demo-Module.
251
+
252
+ ### Atelier-Produktwelten
253
+
254
+ | Modul | Fokus | Demo |
255
+ |-------|-------|------|
256
+ | **Cascade Console** | Enterprise-API- / AI-Dashboard | [Öffnen](https://velinstyle.info/showcase-reihe/01-enterprise-api-ai-dashboard/) |
257
+ | **LUMEN** | E-Commerce-Storefront | [Öffnen](https://velinstyle.info/showcase-reihe/02-enterprise-ecommerce-storefront/) |
258
+ | **FORGE** | Community-Forum | [Öffnen](https://velinstyle.info/showcase-reihe/03-modern-community-forum/) |
259
+ | **Atelier Library** | Vollständige Template-Hub (2.638) | [Öffnen](https://velinstyle.info/atelier/library/) |
260
+ | **Atelier Home** | Marketing-Hub (DE) | [Öffnen](https://velinstyle.info/atelier/index.de.html) |
261
+ | **Atelier Home** | Marketing-Hub (EN) | [Öffnen](https://velinstyle.info/atelier/) |
262
+
263
+ ### Klassische Demo-Module
264
+
265
+ | Modul | Fokus | Demo |
266
+ |-------|-------|------|
267
+ | **Demo-Index** | Alle klassischen Showcases | [Öffnen](https://velinstyle.info/demos/) |
268
+ | **Crypto-Dashboard** | Dichtes Admin / Charts | [Öffnen](https://velinstyle.info/demos/showcase-crypto.html) |
269
+ | **Dashboard** | App-Shell & KPIs | [Öffnen](https://velinstyle.info/demos/showcase-dashboard.html) |
270
+ | **SaaS** | Product Marketing | [Öffnen](https://velinstyle.info/demos/showcase-saas.html) |
271
+ | **E-Commerce** | Shop-Patterns | [Öffnen](https://velinstyle.info/demos/showcase-ecommerce.html) |
272
+ | **Forum** | Community-UI | [Öffnen](https://velinstyle.info/demos/showcase-forum.html) |
273
+ | **UI Kit** | Komponenten-Galerie | [Öffnen](https://velinstyle.info/demos/showcase-ui-kit.html) |
274
+ | **Interactive** | WC-Verhalten | [Öffnen](https://velinstyle.info/demos/showcase-interactive.html) |
275
+ | **Runtime** | Search / Motion / Boot | [Öffnen](https://velinstyle.info/demos/showcase-runtime.html) |
276
+
277
+ ### Library nach Intent
278
+
279
+ | Intent | Link |
280
+ |--------|------|
281
+ | Applications | [library/?mode=apps](https://velinstyle.info/atelier/library/?mode=apps) |
282
+ | Studio-Bausteine | [library/?mode=studio](https://velinstyle.info/atelier/library/?mode=studio) |
283
+ | Recipes | [library/?mode=recipes](https://velinstyle.info/atelier/library/?mode=recipes) |
284
+ | Marketing | [library/?cat=marketing](https://velinstyle.info/atelier/library/?cat=marketing) |
285
+ | Dashboards | [library/?cat=dashboards](https://velinstyle.info/atelier/library/?cat=dashboards) |
286
+ | Commerce | [library/?cat=commerce](https://velinstyle.info/atelier/library/?cat=commerce) |
287
+ | Authentication | [library/?cat=authentication](https://velinstyle.info/atelier/library/?cat=authentication) |
288
+ | Community | [library/?cat=community](https://velinstyle.info/atelier/library/?cat=community) |
289
+ | Admin | [library/?cat=admin](https://velinstyle.info/atelier/library/?cat=admin) |
290
+
291
+ <p align="center">
292
+ <a href="https://velinstyle.info/atelier/index.de.html">
293
+ <img src=".github/assets/readme/hero-demo.webp" alt="VelinStyle Atelier und Demo-Oberflächen" width="720">
294
+ </a>
295
+ </p>
package/README.md CHANGED
@@ -26,7 +26,7 @@ One framework. One CLI. One design system. One AI-ready ecosystem.
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
 
@@ -34,10 +34,12 @@ npm i @birdapi/velinstyle
34
34
 
35
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.1** (Transparency Framework + Core + Design Intelligence Foundation + Trust/Ship). Using VelinStyle does **not** certify your app — see the [a11y matrix](https://velinstyle.info/docs/getting-started/accessibility.html).
42
+ > **Release:** **1.3.0** (Velin Motion Clips image→clip CLI + optional PixVerse). 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,7 +78,7 @@ 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
83
  | 🛠 | **CLI** | `create` · `serve` · `doctor` · `check` · `scan` · `review` · `skills` · `transparency` |
68
84
  | 🔎 | **Transparency** | Labeling + provenance (AI / trust / compliance / metadata) — beta foundation |
@@ -75,9 +91,96 @@ Compared to **Bootstrap**: modern tokens/layers, optional progressive WCs, CLI a
75
91
  | 🛡 | **Scan Engine** | A11y, security, CSS honesty, PII |
76
92
  | 🚀 | **Performance** | Lite CSS, chunked runtime, CLS placeholders |
77
93
  | ♿ | **Accessibility** | Contracts, WCAG 2.2 tooling, keyboard + ARIA patterns |
94
+ | 🖼 | **Atelier** | Curated library of complete interfaces, layouts & studio blocks |
95
+
96
+ ---
97
+
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)
78
113
 
79
114
  ---
80
115
 
116
+ ## What's new in 1.3.0
117
+
118
+ **Velin Motion Clips** — image→clip CLI (local HTML/CSS + optional PixVerse AI).
119
+
120
+ ```bash
121
+ npx velinstyle motion create hero.webp --preset cinematic
122
+ npx velinstyle motion providers
123
+ npx velinstyle motion setup pixverse
124
+ ```
125
+
126
+ - Package `@birdapi/velinstyle-motion` / export `@birdapi/velinstyle/motion-clip`
127
+ - Local clip engine: zoom · pan · rotate · particles · intro/outro · transitions
128
+ - Clip presets · interactive wizard · optional **PixVerse** provider (external credits + API key)
129
+ - PixVerse signup is **affiliate-first** (`motion setup pixverse`) — no bare platform bypass; [partner link](https://motivaiprivatelimited.sjv.io/c/7581758/3811144/49478) · [site guide](https://velinstyle.info/docs/guides/pixverse.html)
130
+ - Docs: [`docs/guides/velin-motion-clips.md`](docs/guides/velin-motion-clips.md) · [`RELEASE_NOTES_1.3.0.md`](RELEASE_NOTES_1.3.0.md)
131
+
132
+ ## What's new in 1.2.5
133
+
134
+ **Velin Experience** — the product layer behind `velinstyle` (1.2.3 Foundation · 1.2.4 Engine · 1.2.5 Product Surface).
135
+
136
+ ```bash
137
+ npx velinstyle doctor .
138
+ npx velinstyle dashboard
139
+ npx velinstyle production . --explain
140
+ npx velinstyle doctor . --record
141
+ npx velinstyle replay .velin/records/<file>.json
142
+ ```
143
+
144
+ - Output Contract · Event Bus · Registry Help · Themes/Modes
145
+ - Content Scanner: **Blade first-class** + Twig / Astro / MDX / Vue / React
146
+ - Production Report breakdown (CSS · Runtime · Icons · Themes · Motion · Components)
147
+ - `dashboard` · `--record` / `replay` · plugin skeleton · local analytics hints
148
+
149
+ See [`RELEASE_NOTES_1.2.5.md`](RELEASE_NOTES_1.2.5.md) · [`docs/guides/velin-experience.md`](docs/guides/velin-experience.md).
150
+
151
+ ## What's new in 1.2.2
152
+
153
+ **Production Release** — **Build only what your project actually uses.**
154
+
155
+ 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.
156
+
157
+ ### Production Builder
158
+
159
+ ```bash
160
+ npx velinstyle build --production --explain
161
+ # → ./dist/velin-production/ (CSS, JS stub, themes, icons, report)
162
+ ```
163
+
164
+ - CSS only for used components · runtime only for needed Web Components
165
+ - Themes / icons / motion only when used · size report
166
+
167
+ ### Atelier CLI (Beta)
168
+
169
+ ```bash
170
+ npx velinstyle atelier list
171
+ npx velinstyle atelier 24
172
+ npx velinstyle scaffold --atelier 24
173
+ ```
174
+
175
+ Atelier Library ≠ Velin Studio (Studio remains **planned**). See [`docs/guides/atelier-cli.md`](docs/guides/atelier-cli.md).
176
+
177
+ ### New components & improvements
178
+
179
+ - `<velin-otp-input>`, `<velin-password-strength>`, `<velin-empty-state>`
180
+ - Table severity states · dynamic overlay titles (modal / drawer / sheet)
181
+
182
+ See [`RELEASE_NOTES_1.2.2.md`](RELEASE_NOTES_1.2.2.md) and [`docs/guides/production-build.md`](docs/guides/production-build.md).
183
+
81
184
  ## What's new in 1.2.1
82
185
 
83
186
  - **Transparency Framework (beta)** — `@birdapi/velinstyle/transparency`, `velin-transparency` bridge, claim taxonomy, CLI `transparency doctor|validate|report|export|migrate`
@@ -99,11 +202,11 @@ bun add @birdapi/velinstyle
99
202
  **CDN** (pin a version):
100
203
 
101
204
  ```html
102
- <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.2.1/dist/velinstyle.min.css">
103
- <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.2.1/dist/velinstyle-components.min.js"></script>
205
+ <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.3.0/dist/velinstyle.min.css">
206
+ <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.3.0/dist/velinstyle-components.min.js"></script>
104
207
  ```
105
208
 
106
- > Pin **`@1.2.1`** (or `@latest` after publish). Examples above match this package version.
209
+ > Pin **`@1.2.5`** (or `@latest` after publish). Examples above match this package version.
107
210
 
108
211
  | Export | Use |
109
212
  |--------|-----|
@@ -123,8 +226,8 @@ After clone: `npm install && npm run build` — `dist/` is generated, not commit
123
226
  <head>
124
227
  <meta charset="UTF-8">
125
228
  <meta name="viewport" content="width=device-width, initial-scale=1">
126
- <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.2.1/dist/velinstyle.min.css">
127
- <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.2.1/dist/velinstyle-components.min.js"></script>
229
+ <link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.3.0/dist/velinstyle.min.css">
230
+ <script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.3.0/dist/velinstyle-components.min.js"></script>
128
231
  </head>
129
232
  <body class="velin-p-6">
130
233
  <button type="button" class="velin-btn velin-btn--primary">Ship it</button>
@@ -157,7 +260,9 @@ More: [`GETTING_STARTED.md`](GETTING_STARTED.md)
157
260
  | `scan` | A11y / security / CSS / PII |
158
261
  | `review` | Design-intelligence gate (beta) |
159
262
  | `transparency` | doctor · validate · report · export · migrate (beta) |
160
- | `plan` | Prompt → plan JSON → render (beta) |
263
+ | `plan` | Prompt → plan JSON → render (beta); `--atelier` Library plan (beta) |
264
+ | `scaffold` | Prompt HTML or `--atelier` Library compose (beta) |
265
+ | `atelier` | Pull curated Library showcase by number/id (`--format` wrappers) |
161
266
  | `skills` / `workflow` | AI skill registry & graphs (beta) |
162
267
  | `meta` | Agent bundle + `llms.txt` |
163
268
  | `wc api <tag>` | Human-readable WC API from source |
@@ -165,9 +270,13 @@ More: [`GETTING_STARTED.md`](GETTING_STARTED.md)
165
270
  ```bash
166
271
  npx @birdapi/velinstyle check . --profile marketing
167
272
  npx @birdapi/velinstyle transparency doctor . --policy examples/transparency.policy.json
273
+ npx @birdapi/velinstyle atelier 36 -o ./velin-atelier/36-calendar
274
+ npx @birdapi/velinstyle scaffold --atelier 04,07 -o compose.html
168
275
  npx @birdapi/velinstyle wc api velin-toast
169
276
  ```
170
277
 
278
+ Atelier pull / compose details and **limitations** (wrappers ≠ native Blade/Vue/React; Studio planned): [`docs/guides/atelier-cli.md`](docs/guides/atelier-cli.md).
279
+
171
280
  ---
172
281
 
173
282
  ## AI Skills & Design Intelligence
@@ -176,13 +285,15 @@ npx @birdapi/velinstyle wc api velin-toast
176
285
 
177
286
  **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`).
178
287
 
288
+ **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).
289
+
179
290
  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)
180
291
 
181
292
  ---
182
293
 
183
294
  ## Components
184
295
 
185
- **40 canonical** custom elements (**42** lazy-loader entries including legacy `*-wc` aliases).
296
+ **43 canonical** custom elements (**45** lazy-loader entries including legacy `*-wc` aliases).
186
297
 
187
298
  Philosophy: **progressive enhancement** — semantic HTML + CSS first; upgrade to a Web Component only when you need behavior (focus traps, sorting, offline search).
188
299
 
@@ -220,8 +331,9 @@ Docs: [a11y matrix](https://velinstyle.info/docs/getting-started/accessibility.h
220
331
  | CLI ship surface | [`docs/guides/cli-ship-surface.md`](docs/guides/cli-ship-surface.md) | create / check / wc |
221
332
  | AI Skills | [`docs/guides/ai-skills.md`](docs/guides/ai-skills.md) | Skills / workflows |
222
333
  | Product site | [velinstyle.info/docs](https://velinstyle.info/docs/getting-started/introduction.html) | Guides, demos, reference |
334
+ | Atelier | [velinstyle.info/atelier](https://velinstyle.info/atelier/) | Template library + product worlds |
223
335
  | Transparency | [Site guide](https://velinstyle.info/docs/guides/transparency.html) · `@birdapi/velinstyle/transparency` | Labeling + provenance |
224
- | Upgrade | [`UPGRADING.md`](UPGRADING.md) | 1.2.0 → 1.2.1 · 1.1 → 1.2 |
336
+ | Upgrade | [`UPGRADING.md`](UPGRADING.md) | 1.2.x → 1.3.0 · 1.2.2 → 1.2.5 · 1.2.1 → 1.2.2 · 1.2.0 → 1.2.1 · 1.1 → 1.2 |
225
337
  | North star | [`VELINSTYLE_2030.md`](VELINSTYLE_2030.md) | Long-term vision |
226
338
 
227
339
  ---
@@ -260,7 +372,7 @@ Humans own product intent. The framework ships reliable CSS and components. Desi
260
372
  | **Stable** | CSS · Utilities · Runtime · Web Components · CLI core · Blueprints |
261
373
  | **Beta** | Transparency Framework · Review Engine · Prompt Engine · Knowledge Graph · AI Metadata · Design Constraints |
262
374
  | **Foundation** | AI Skills · Workflow Graphs · Registries · Transparency pillars |
263
- | **Planned** | Studio · Utility Engine Generator |
375
+ | **Planned** | Velin Studio builder · Utility Engine Generator · native Blade/Vue/React blocks |
264
376
 
265
377
  ---
266
378
 
@@ -269,6 +381,7 @@ Humans own product intent. The framework ships reliable CSS and components. Desi
269
381
  | | Bootstrap | Tailwind | **VelinStyle** |
270
382
  |---|:---:|:---:|:---:|
271
383
  | HTML readability | Medium | Low | **High** |
384
+ | Markup density | Low | High | **Controlled** |
272
385
  | Utility sprawl | Low | High | **Controlled** |
273
386
  | A11y defaults | Partial | DIY | **AAA-capable tokens** |
274
387
  | Dark mode | Manual | `dark:` everywhere | **Token swap** |
@@ -291,8 +404,53 @@ See [`CONTRIBUTING.md`](CONTRIBUTING.md).
291
404
 
292
405
  [MIT](LICENSE) — © 2026 VelinStyle · [SkyliteDesign](https://github.com/SkyliteDesign)
293
406
 
407
+ ---
408
+
409
+ ## Live demos & modules
410
+
411
+ Explore finished surfaces — Atelier worlds, the template library, and classic component demos.
412
+
413
+ ### Atelier product worlds
414
+
415
+ | Module | Focus | Demo |
416
+ |--------|-------|------|
417
+ | **Cascade Console** | Enterprise API / AI dashboard | [Open](https://velinstyle.info/showcase-reihe/01-enterprise-api-ai-dashboard/) |
418
+ | **LUMEN** | E-commerce storefront | [Open](https://velinstyle.info/showcase-reihe/02-enterprise-ecommerce-storefront/) |
419
+ | **FORGE** | Community forum | [Open](https://velinstyle.info/showcase-reihe/03-modern-community-forum/) |
420
+ | **Atelier Library** | Full template hub (2,638) | [Open](https://velinstyle.info/atelier/library/) |
421
+ | **Atelier home** | Marketing hub (EN) | [Open](https://velinstyle.info/atelier/) |
422
+ | **Atelier home** | Marketing hub (DE) | [Open](https://velinstyle.info/atelier/index.de.html) |
423
+
424
+ ### Classic demo modules
425
+
426
+ | Module | Focus | Demo |
427
+ |--------|-------|------|
428
+ | **Demo index** | All classic showcases | [Open](https://velinstyle.info/demos/) |
429
+ | **Crypto dashboard** | Dense admin / charts | [Open](https://velinstyle.info/demos/showcase-crypto.html) |
430
+ | **Dashboard** | App shell & KPIs | [Open](https://velinstyle.info/demos/showcase-dashboard.html) |
431
+ | **SaaS** | Product marketing | [Open](https://velinstyle.info/demos/showcase-saas.html) |
432
+ | **E-commerce** | Shop patterns | [Open](https://velinstyle.info/demos/showcase-ecommerce.html) |
433
+ | **Forum** | Community UI | [Open](https://velinstyle.info/demos/showcase-forum.html) |
434
+ | **UI Kit** | Component gallery | [Open](https://velinstyle.info/demos/showcase-ui-kit.html) |
435
+ | **Interactive** | WC behavior samples | [Open](https://velinstyle.info/demos/showcase-interactive.html) |
436
+ | **Runtime** | Search / motion / boot | [Open](https://velinstyle.info/demos/showcase-runtime.html) |
437
+
438
+ ### Library by intent
439
+
440
+ | Intent | Link |
441
+ |--------|------|
442
+ | Applications | [library/?mode=apps](https://velinstyle.info/atelier/library/?mode=apps) |
443
+ | Studio blocks | [library/?mode=studio](https://velinstyle.info/atelier/library/?mode=studio) |
444
+ | Recipes | [library/?mode=recipes](https://velinstyle.info/atelier/library/?mode=recipes) |
445
+ | Marketing | [library/?cat=marketing](https://velinstyle.info/atelier/library/?cat=marketing) |
446
+ | Dashboards | [library/?cat=dashboards](https://velinstyle.info/atelier/library/?cat=dashboards) |
447
+ | Commerce | [library/?cat=commerce](https://velinstyle.info/atelier/library/?cat=commerce) |
448
+ | Authentication | [library/?cat=authentication](https://velinstyle.info/atelier/library/?cat=authentication) |
449
+ | Community | [library/?cat=community](https://velinstyle.info/atelier/library/?cat=community) |
450
+ | Admin | [library/?cat=admin](https://velinstyle.info/atelier/library/?cat=admin) |
451
+
294
452
  <p align="center">
295
- <a href="https://velinstyle.info/demos/showcase-crypto.html">
296
- <img src=".github/assets/readme/hero-demo.webp" alt="VelinStyle crypto dashboard demo" width="720">
453
+ <a href="https://velinstyle.info/atelier/">
454
+ <img src=".github/assets/readme/hero-demo.webp" alt="VelinStyle Atelier and demo surfaces" width="720">
297
455
  </a>
298
456
  </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>