@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 1,
3
- "generatedAt": "2026-08-02T07:30:23.643Z",
3
+ "generatedAt": "2026-08-09T18:36:19.641Z",
4
4
  "entries": [
5
5
  {
6
6
  "id": "examples:samples/a11y-patterns.html",
@@ -57,7 +57,7 @@
57
57
  {
58
58
  "id": "api:commands",
59
59
  "title": "CLI commands",
60
- "excerpt": "VelinStyle CLI v1.2.1. Run velinstyle --help for full usage.",
60
+ "excerpt": "VelinStyle CLI v1.3.0. Run velinstyle --help for full usage.",
61
61
  "url": "docs/generated/cli/commands.html",
62
62
  "category": "api",
63
63
  "keywords": [
@@ -79,6 +79,18 @@
79
79
  ],
80
80
  "weight": 1.1
81
81
  },
82
+ {
83
+ "id": "api:atelier",
84
+ "title": "CLI: atelier",
85
+ "excerpt": "Pull curated Atelier Library showcase by number/id; blade/vue/react = wrappers only",
86
+ "url": "docs/generated/cli/commands.html#atelier",
87
+ "category": "api",
88
+ "keywords": [
89
+ "cli",
90
+ "atelier"
91
+ ],
92
+ "weight": 1.1
93
+ },
82
94
  {
83
95
  "id": "api:blueprint",
84
96
  "title": "CLI: blueprint",
@@ -94,7 +106,7 @@
94
106
  {
95
107
  "id": "api:build",
96
108
  "title": "CLI: build",
97
- "excerpt": "Build custom CSS with selected layers from config",
109
+ "excerpt": "Build custom CSS with selected layers from config, or production output with --production",
98
110
  "url": "docs/generated/cli/commands.html#build",
99
111
  "category": "api",
100
112
  "keywords": [
@@ -127,6 +139,18 @@
127
139
  ],
128
140
  "weight": 1.1
129
141
  },
142
+ {
143
+ "id": "api:dashboard",
144
+ "title": "CLI: dashboard",
145
+ "excerpt": "Aggregate Production, Review, Accessibility, Transparency, Performance, Security",
146
+ "url": "docs/generated/cli/commands.html#dashboard",
147
+ "category": "api",
148
+ "keywords": [
149
+ "cli",
150
+ "dashboard"
151
+ ],
152
+ "weight": 1.1
153
+ },
130
154
  {
131
155
  "id": "api:docs",
132
156
  "title": "CLI: docs",
@@ -199,6 +223,18 @@
199
223
  ],
200
224
  "weight": 1.1
201
225
  },
226
+ {
227
+ "id": "api:motion",
228
+ "title": "CLI: motion",
229
+ "excerpt": "Velin Motion — page registry + clip pipeline (create, atelier, AI providers)",
230
+ "url": "docs/generated/cli/commands.html#motion",
231
+ "category": "api",
232
+ "keywords": [
233
+ "cli",
234
+ "motion"
235
+ ],
236
+ "weight": 1.1
237
+ },
202
238
  {
203
239
  "id": "api:perf",
204
240
  "title": "CLI: perf",
@@ -214,7 +250,7 @@
214
250
  {
215
251
  "id": "api:plan",
216
252
  "title": "CLI: plan",
217
- "excerpt": "Emit page plan JSON from a prompt (no HTML)",
253
+ "excerpt": "Emit page plan JSON from a prompt or --atelier Library ids (beta)",
218
254
  "url": "docs/generated/cli/commands.html#plan",
219
255
  "category": "api",
220
256
  "keywords": [
@@ -235,6 +271,30 @@
235
271
  ],
236
272
  "weight": 1.1
237
273
  },
274
+ {
275
+ "id": "api:production",
276
+ "title": "CLI: production",
277
+ "excerpt": "Content-aware production builder (CSS/JS/themes/icons/fonts/motion + report)",
278
+ "url": "docs/generated/cli/commands.html#production",
279
+ "category": "api",
280
+ "keywords": [
281
+ "cli",
282
+ "production"
283
+ ],
284
+ "weight": 1.1
285
+ },
286
+ {
287
+ "id": "api:replay",
288
+ "title": "CLI: replay",
289
+ "excerpt": "Replay a Velin Experience record.json through the same renderer",
290
+ "url": "docs/generated/cli/commands.html#replay",
291
+ "category": "api",
292
+ "keywords": [
293
+ "cli",
294
+ "replay"
295
+ ],
296
+ "weight": 1.1
297
+ },
238
298
  {
239
299
  "id": "api:review",
240
300
  "title": "CLI: review",
@@ -250,7 +310,7 @@
250
310
  {
251
311
  "id": "api:scaffold",
252
312
  "title": "CLI: scaffold",
253
- "excerpt": "Plan-first page HTML or recipe fragment from natural language",
313
+ "excerpt": "Plan-first page HTML, recipe fragment, or Atelier Library compose (--atelier, beta)",
254
314
  "url": "docs/generated/cli/commands.html#scaffold",
255
315
  "category": "api",
256
316
  "keywords": [
@@ -283,6 +343,18 @@
283
343
  ],
284
344
  "weight": 1.1
285
345
  },
346
+ {
347
+ "id": "api:security",
348
+ "title": "CLI: security",
349
+ "excerpt": "Velin Security Suite — Security Engine: doctor, scan, audit, publish, ci, deps, secrets, report",
350
+ "url": "docs/generated/cli/commands.html#security",
351
+ "category": "api",
352
+ "keywords": [
353
+ "cli",
354
+ "security"
355
+ ],
356
+ "weight": 1.1
357
+ },
286
358
  {
287
359
  "id": "api:serve",
288
360
  "title": "CLI: serve",
@@ -331,6 +403,18 @@
331
403
  ],
332
404
  "weight": 1.1
333
405
  },
406
+ {
407
+ "id": "api:transparency",
408
+ "title": "CLI: transparency",
409
+ "excerpt": "Transparency Framework doctor, validate, report, export, migrate",
410
+ "url": "docs/generated/cli/commands.html#transparency",
411
+ "category": "api",
412
+ "keywords": [
413
+ "cli",
414
+ "transparency"
415
+ ],
416
+ "weight": 1.1
417
+ },
334
418
  {
335
419
  "id": "api:wc",
336
420
  "title": "CLI: wc",
@@ -407,6 +491,19 @@
407
491
  ],
408
492
  "weight": 0.85
409
493
  },
494
+ {
495
+ "id": "examples:samples/motion-gallery.html",
496
+ "title": "Motion Gallery",
497
+ "excerpt": "samples/motion-gallery.html",
498
+ "url": "samples/motion-gallery.html",
499
+ "category": "examples",
500
+ "keywords": [
501
+ "motion-gallery.html",
502
+ "sample",
503
+ "example"
504
+ ],
505
+ "weight": 0.85
506
+ },
410
507
  {
411
508
  "id": "examples:samples/email.html",
412
509
  "title": "Q3 Strategy Review — Action Items",
@@ -1187,6 +1284,19 @@
1187
1284
  ],
1188
1285
  "weight": 1.3
1189
1286
  },
1287
+ {
1288
+ "id": "docs:velin-delay",
1289
+ "title": "velin-delay",
1290
+ "excerpt": "Velin HTML attribute extension.",
1291
+ "url": "docs/generated/attributes/velin-delay.html",
1292
+ "category": "docs",
1293
+ "keywords": [
1294
+ "velin-delay",
1295
+ "docs",
1296
+ "velin-delay"
1297
+ ],
1298
+ "weight": 1.2
1299
+ },
1190
1300
  {
1191
1301
  "id": "components:velin-dialog",
1192
1302
  "title": "velin-dialog",
@@ -1239,6 +1349,32 @@
1239
1349
  ],
1240
1350
  "weight": 1.3
1241
1351
  },
1352
+ {
1353
+ "id": "docs:velin-duration",
1354
+ "title": "velin-duration",
1355
+ "excerpt": "Velin HTML attribute extension.",
1356
+ "url": "docs/generated/attributes/velin-duration.html",
1357
+ "category": "docs",
1358
+ "keywords": [
1359
+ "velin-duration",
1360
+ "docs",
1361
+ "velin-duration"
1362
+ ],
1363
+ "weight": 1.2
1364
+ },
1365
+ {
1366
+ "id": "docs:velin-ease",
1367
+ "title": "velin-ease",
1368
+ "excerpt": "Velin HTML attribute extension.",
1369
+ "url": "docs/generated/attributes/velin-ease.html",
1370
+ "category": "docs",
1371
+ "keywords": [
1372
+ "velin-ease",
1373
+ "docs",
1374
+ "velin-ease"
1375
+ ],
1376
+ "weight": 1.2
1377
+ },
1242
1378
  {
1243
1379
  "id": "components:velin-email",
1244
1380
  "title": "velin-email",
@@ -1252,6 +1388,19 @@
1252
1388
  ],
1253
1389
  "weight": 1.3
1254
1390
  },
1391
+ {
1392
+ "id": "components:velin-empty-state",
1393
+ "title": "velin-empty-state",
1394
+ "excerpt": "Source: components/velin-empty-state.js",
1395
+ "url": "docs/generated/components/velin-empty-state.html",
1396
+ "category": "components",
1397
+ "keywords": [
1398
+ "velin-empty-state",
1399
+ "components",
1400
+ "velin-empty-state"
1401
+ ],
1402
+ "weight": 1.3
1403
+ },
1255
1404
  {
1256
1405
  "id": "docs:velin-fade",
1257
1406
  "title": "velin-fade",
@@ -1460,6 +1609,32 @@
1460
1609
  ],
1461
1610
  "weight": 1.2
1462
1611
  },
1612
+ {
1613
+ "id": "docs:velin-motion",
1614
+ "title": "velin-motion",
1615
+ "excerpt": "Velin HTML attribute extension.",
1616
+ "url": "docs/generated/attributes/velin-motion.html",
1617
+ "category": "docs",
1618
+ "keywords": [
1619
+ "velin-motion",
1620
+ "docs",
1621
+ "velin-motion"
1622
+ ],
1623
+ "weight": 1.2
1624
+ },
1625
+ {
1626
+ "id": "docs:velin-motion-sequence",
1627
+ "title": "velin-motion-sequence",
1628
+ "excerpt": "Velin HTML attribute extension.",
1629
+ "url": "docs/generated/attributes/velin-motion-sequence.html",
1630
+ "category": "docs",
1631
+ "keywords": [
1632
+ "velin-motion-sequence",
1633
+ "docs",
1634
+ "velin-motion-sequence"
1635
+ ],
1636
+ "weight": 1.2
1637
+ },
1463
1638
  {
1464
1639
  "id": "docs:velin-notify",
1465
1640
  "title": "velin-notify",
@@ -1473,6 +1648,19 @@
1473
1648
  ],
1474
1649
  "weight": 1.2
1475
1650
  },
1651
+ {
1652
+ "id": "components:velin-otp-input",
1653
+ "title": "velin-otp-input",
1654
+ "excerpt": "Source: components/velin-otp-input.js",
1655
+ "url": "docs/generated/components/velin-otp-input.html",
1656
+ "category": "components",
1657
+ "keywords": [
1658
+ "velin-otp-input",
1659
+ "components",
1660
+ "velin-otp-input"
1661
+ ],
1662
+ "weight": 1.3
1663
+ },
1476
1664
  {
1477
1665
  "id": "docs:velin-parallax",
1478
1666
  "title": "velin-parallax",
@@ -1486,6 +1674,19 @@
1486
1674
  ],
1487
1675
  "weight": 1.2
1488
1676
  },
1677
+ {
1678
+ "id": "components:velin-password-strength",
1679
+ "title": "velin-password-strength",
1680
+ "excerpt": "Source: components/velin-password-strength.js",
1681
+ "url": "docs/generated/components/velin-password-strength.html",
1682
+ "category": "components",
1683
+ "keywords": [
1684
+ "velin-password-strength",
1685
+ "components",
1686
+ "velin-password-strength"
1687
+ ],
1688
+ "weight": 1.3
1689
+ },
1489
1690
  {
1490
1691
  "id": "components:velin-persist",
1491
1692
  "title": "velin-persist",
@@ -1837,6 +2038,19 @@
1837
2038
  ],
1838
2039
  "weight": 1.3
1839
2040
  },
2041
+ {
2042
+ "id": "docs:velin-timeline",
2043
+ "title": "velin-timeline",
2044
+ "excerpt": "Velin HTML attribute extension.",
2045
+ "url": "docs/generated/attributes/velin-timeline.html",
2046
+ "category": "docs",
2047
+ "keywords": [
2048
+ "velin-timeline",
2049
+ "docs",
2050
+ "velin-timeline"
2051
+ ],
2052
+ "weight": 1.2
2053
+ },
1840
2054
  {
1841
2055
  "id": "components:velin-toast",
1842
2056
  "title": "velin-toast",
@@ -1889,6 +2103,19 @@
1889
2103
  ],
1890
2104
  "weight": 1.2
1891
2105
  },
2106
+ {
2107
+ "id": "docs:velin-trigger",
2108
+ "title": "velin-trigger",
2109
+ "excerpt": "Velin HTML attribute extension.",
2110
+ "url": "docs/generated/attributes/velin-trigger.html",
2111
+ "category": "docs",
2112
+ "keywords": [
2113
+ "velin-trigger",
2114
+ "docs",
2115
+ "velin-trigger"
2116
+ ],
2117
+ "weight": 1.2
2118
+ },
1892
2119
  {
1893
2120
  "id": "examples:samples/velin-search.html",
1894
2121
  "title": "VelinSearch",