@birdapi/velinstyle 1.2.2 → 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.
- package/README.de.md +18 -4
- package/README.md +42 -7
- package/cli/cli-manifest.json +441 -174
- package/cli/docgen/extract-cli.js +2 -1
- package/cli/docs-generate.js +9 -0
- package/cli/experience.js +173 -0
- package/cli/index.js +1294 -417
- package/cli/motion.js +738 -0
- package/cli/production/extract.js +46 -6
- package/cli/production/report.js +104 -14
- package/cli/production/run.js +44 -1
- package/cli/security.js +190 -0
- package/cli/skills.js +53 -10
- package/cli/transparency.js +140 -41
- package/cli/workflow.js +32 -17
- package/components/velin-theme-toggle.js +15 -1
- package/core/a11y/component-contracts.json +391 -274
- package/core/attributes/registry.js +1 -1
- package/core/motion/analyze.js +38 -0
- package/core/motion/blueprint.js +51 -0
- package/core/motion/composer.js +114 -0
- package/core/motion/data/registry.json +352 -0
- package/core/motion/effects.js +17 -1
- package/core/motion/index.js +112 -9
- package/core/motion/optimize.js +44 -0
- package/core/motion/policy.js +77 -0
- package/core/motion/registry.js +131 -0
- package/core/motion/review.js +59 -0
- package/core/motion/scan.js +150 -0
- package/core/motion/timeline.js +68 -0
- package/core/motion/transitions.js +49 -0
- package/core/motion/triggers.js +168 -0
- package/core/security/checks/fs.js +92 -0
- package/core/security/detect.js +35 -0
- package/core/security/engine.js +116 -0
- package/core/security/index.js +18 -0
- package/core/security/registry.js +85 -0
- package/core/security/report/report.js +113 -0
- package/core/security/rules/ci/index.js +146 -0
- package/core/security/rules/consumer/index.js +174 -0
- package/core/security/rules/deps/index.js +182 -0
- package/core/security/rules/index.js +24 -0
- package/core/security/rules/publish/index.js +230 -0
- package/core/security/rules/repo/index.js +143 -0
- package/core/security/rules/secrets/index.js +133 -0
- package/core/security/score/dependency-health.js +53 -0
- package/core/security/score/release-health.js +66 -0
- package/core/security/score/score.js +102 -0
- package/core/security/timeline/timeline.js +76 -0
- package/dist/chunks/attributes-HK7VIOLA.js +1080 -0
- package/dist/chunks/attributes-VRHHVNDO.js +1080 -0
- package/dist/chunks/chunk-MYKUI364.js +116 -0
- package/dist/chunks/chunk-NEVBPD5T.js +116 -0
- package/dist/chunks/runtime-entry.js +1 -1
- package/dist/chunks/velin-theme-toggle-J2NHC7IM.js +304 -0
- package/dist/llms.txt +2 -2
- package/dist/search-index.json +166 -2
- package/dist/velin-agent.json +156 -32
- package/dist/velinstyle-components.iife.js +862 -17
- package/dist/velinstyle-components.js +862 -17
- package/dist/velinstyle-components.min.js +126 -126
- package/dist/velinstyle.css +42 -7
- package/dist/velinstyle.min.css +1 -1
- package/package.json +158 -143
- package/packages/velinstyle-cli-core/package.json +11 -0
- package/packages/velinstyle-cli-core/src/config.js +84 -0
- package/packages/velinstyle-cli-core/src/contract.js +56 -0
- package/packages/velinstyle-cli-core/src/event-bus.js +50 -0
- package/packages/velinstyle-cli-core/src/index.js +18 -0
- package/packages/velinstyle-cli-core/src/lifecycle.js +33 -0
- package/packages/velinstyle-cli-core/src/runner.js +129 -0
- package/packages/velinstyle-cli-registry/data/commands.json +1216 -0
- package/packages/velinstyle-cli-registry/data/layouts.json +33 -0
- package/packages/velinstyle-cli-registry/data/widgets.json +35 -0
- package/packages/velinstyle-cli-registry/package.json +13 -0
- package/packages/velinstyle-cli-registry/src/index.js +88 -0
- package/packages/velinstyle-cli-renderer/package.json +8 -0
- package/packages/velinstyle-cli-renderer/src/index.js +286 -0
- package/packages/velinstyle-cli-theme/package.json +8 -0
- package/packages/velinstyle-cli-theme/src/index.js +84 -0
- package/packages/velinstyle-cli-ui/package.json +8 -0
- package/packages/velinstyle-cli-ui/src/index.js +34 -0
- package/packages/velinstyle-motion/README.md +81 -0
- package/packages/velinstyle-motion/package.json +37 -0
- package/packages/velinstyle-motion/src/ai/mini-prompt.js +119 -0
- package/packages/velinstyle-motion/src/ai/provider.js +59 -0
- package/packages/velinstyle-motion/src/ai/providers/pixverse-setup.js +402 -0
- package/packages/velinstyle-motion/src/ai/providers/pixverse.js +245 -0
- package/packages/velinstyle-motion/src/config.js +257 -0
- package/packages/velinstyle-motion/src/export/html-clip.js +141 -0
- package/packages/velinstyle-motion/src/index.js +304 -0
- package/packages/velinstyle-motion/src/jobs/cache.js +30 -0
- package/packages/velinstyle-motion/src/jobs/queue.js +69 -0
- package/packages/velinstyle-motion/src/jobs/usage.js +53 -0
- package/packages/velinstyle-motion/src/local/effects.js +139 -0
- package/packages/velinstyle-motion/src/local/engine.js +96 -0
- package/packages/velinstyle-motion/src/providers-catalog.js +44 -0
- package/packages/velinstyle-motion/src/registry/presets.js +25 -0
- package/packages/velinstyle-motion/src/registry/presets.json +85 -0
- package/packages/velinstyle-motion/src/ux/cost-gate.js +37 -0
- package/packages/velinstyle-motion/src/ux/pixverse-gate.js +153 -0
- package/packages/velinstyle-motion/src/ux/wizard.js +171 -0
- package/packages/velinstyle-motion/src/validate-image.js +91 -0
- package/packages/velinstyle-skills/catalog.json +1 -1
- package/packages/velinstyle-skills/registry.json +1 -142
- package/packages/velinstyle-skills/skills/velin-motion-reduced-safe/SKILL.md +1 -1
- package/packages/velinstyle-skills/skills/velin-motion-reveal-feedback/SKILL.md +1 -1
- package/src/tokens/motion.css +7 -0
- package/src/utilities/scroll-animation.css +66 -0
package/README.de.md
CHANGED
|
@@ -39,7 +39,7 @@ VelinStyle ist ein **produktives CSS- + Web-Components-Framework** mit **WCAG-2.
|
|
|
39
39
|
**Passung heute:** Marketing-Landings, Docs-Shells, Admin-/SaaS-Starter, Shop- und Community-UIs über Atelier.
|
|
40
40
|
**Noch nicht:** alleiniger Primary-Stack für große Multipage-Shops + Enterprise-Admin ohne Custom-Arbeit.
|
|
41
41
|
|
|
42
|
-
> **Release:** **1.
|
|
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).
|
|
43
43
|
|
|
44
44
|
---
|
|
45
45
|
|
|
@@ -113,6 +113,20 @@ Englischer Hub: [atelier/](https://velinstyle.info/atelier/)
|
|
|
113
113
|
|
|
114
114
|
---
|
|
115
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
|
+
|
|
116
130
|
## Neu in 1.2.2
|
|
117
131
|
|
|
118
132
|
**Production Release** — **Build only what your project actually uses.** / Nur bauen, was das Projekt wirklich nutzt.
|
|
@@ -167,11 +181,11 @@ bun add @birdapi/velinstyle
|
|
|
167
181
|
**CDN** (Version pinnen):
|
|
168
182
|
|
|
169
183
|
```html
|
|
170
|
-
<link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.
|
|
171
|
-
<script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.
|
|
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>
|
|
172
186
|
```
|
|
173
187
|
|
|
174
|
-
> Pin **`@1.
|
|
188
|
+
> Pin **`@1.3.0`** (oder `@latest` nach Publish). Nach Clone: `npm install && npm run build`.
|
|
175
189
|
|
|
176
190
|
---
|
|
177
191
|
|
package/README.md
CHANGED
|
@@ -39,7 +39,7 @@ VelinStyle is a **production CSS + Web Components framework** with **WCAG 2.2 AA
|
|
|
39
39
|
**Best fit today:** marketing landings, docs shells, admin/SaaS starters, shop & community UIs via Atelier.
|
|
40
40
|
**Not yet:** sole primary stack for large multipage shop + enterprise admin without custom work.
|
|
41
41
|
|
|
42
|
-
> **Release:** **1.
|
|
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).
|
|
43
43
|
|
|
44
44
|
---
|
|
45
45
|
|
|
@@ -113,6 +113,41 @@ German Atelier hub: [atelier/index.de.html](https://velinstyle.info/atelier/inde
|
|
|
113
113
|
|
|
114
114
|
---
|
|
115
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
|
+
|
|
116
151
|
## What's new in 1.2.2
|
|
117
152
|
|
|
118
153
|
**Production Release** — **Build only what your project actually uses.**
|
|
@@ -167,11 +202,11 @@ bun add @birdapi/velinstyle
|
|
|
167
202
|
**CDN** (pin a version):
|
|
168
203
|
|
|
169
204
|
```html
|
|
170
|
-
<link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.
|
|
171
|
-
<script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.
|
|
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>
|
|
172
207
|
```
|
|
173
208
|
|
|
174
|
-
> Pin **`@1.2.
|
|
209
|
+
> Pin **`@1.2.5`** (or `@latest` after publish). Examples above match this package version.
|
|
175
210
|
|
|
176
211
|
| Export | Use |
|
|
177
212
|
|--------|-----|
|
|
@@ -191,8 +226,8 @@ After clone: `npm install && npm run build` — `dist/` is generated, not commit
|
|
|
191
226
|
<head>
|
|
192
227
|
<meta charset="UTF-8">
|
|
193
228
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
194
|
-
<link rel="stylesheet" href="https://unpkg.com/@birdapi/velinstyle@1.
|
|
195
|
-
<script type="module" src="https://unpkg.com/@birdapi/velinstyle@1.
|
|
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>
|
|
196
231
|
</head>
|
|
197
232
|
<body class="velin-p-6">
|
|
198
233
|
<button type="button" class="velin-btn velin-btn--primary">Ship it</button>
|
|
@@ -298,7 +333,7 @@ Docs: [a11y matrix](https://velinstyle.info/docs/getting-started/accessibility.h
|
|
|
298
333
|
| Product site | [velinstyle.info/docs](https://velinstyle.info/docs/getting-started/introduction.html) | Guides, demos, reference |
|
|
299
334
|
| Atelier | [velinstyle.info/atelier](https://velinstyle.info/atelier/) | Template library + product worlds |
|
|
300
335
|
| 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 |
|
|
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 |
|
|
302
337
|
| North star | [`VELINSTYLE_2030.md`](VELINSTYLE_2030.md) | Long-term vision |
|
|
303
338
|
|
|
304
339
|
---
|