@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.
- package/README.de.md +148 -11
- package/README.md +174 -16
- package/cli/__fixtures__/atelier-library/showcases/01-login/app.css +1 -0
- package/cli/__fixtures__/atelier-library/showcases/01-login/app.js +2 -0
- package/cli/__fixtures__/atelier-library/showcases/01-login/index.html +5 -0
- package/cli/__fixtures__/atelier-library/showcases/04-pricing/app.css +1 -0
- package/cli/__fixtures__/atelier-library/showcases/04-pricing/app.js +2 -0
- package/cli/__fixtures__/atelier-library/showcases/04-pricing/index.html +5 -0
- package/cli/__fixtures__/atelier-library/showcases/36-calendar/app.css +1 -0
- package/cli/__fixtures__/atelier-library/showcases/36-calendar/app.js +2 -0
- package/cli/__fixtures__/atelier-library/showcases/36-calendar/index.html +5 -0
- package/cli/atelier-catalog.json +1267 -0
- package/cli/atelier-formats.js +159 -0
- package/cli/atelier.js +382 -0
- package/cli/blueprints/empty-state.html +3 -5
- package/cli/cli-manifest.json +441 -161
- 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 +1384 -361
- package/cli/motion.js +738 -0
- package/cli/production/component-graph.json +166 -0
- package/cli/production/explain.js +52 -0
- package/cli/production/extract.js +278 -0
- package/cli/production/graph.js +102 -0
- package/cli/production/report.js +168 -0
- package/cli/production/run.js +355 -0
- package/cli/production/trim-css.js +177 -0
- package/cli/production/trim-fonts.js +23 -0
- package/cli/production/trim-icons.js +38 -0
- package/cli/production/trim-js.js +48 -0
- package/cli/production/trim-motion.js +22 -0
- package/cli/production/trim-themes.js +50 -0
- package/cli/production/watch.js +38 -0
- package/cli/review.js +48 -1
- package/cli/scripts/write-atelier-fixtures.mjs +33 -0
- 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/index.js +3 -0
- package/components/runtime/component-loaders.js +3 -0
- package/components/velin-drawer.js +43 -4
- package/components/velin-empty-state.js +83 -0
- package/components/velin-modal.js +76 -15
- package/components/velin-otp-input.js +220 -0
- package/components/velin-password-strength.js +147 -0
- package/components/velin-sheet.js +49 -4
- package/components/velin-theme-toggle.js +15 -1
- package/core/a11y/component-contracts.json +391 -255
- package/core/attributes/registry.js +1 -1
- package/core/meta/knowledge/components.json +75 -3
- 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-2ORR27KA.js +404 -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/chunk-Y6HN7HWX.js +116 -0
- package/dist/chunks/runtime-entry.js +1 -1
- package/dist/chunks/velin-drawer-A7Q7EBOS.js +162 -0
- package/dist/chunks/velin-empty-state-3NTUH2RF.js +81 -0
- package/dist/chunks/velin-modal-3MV4FYBK.js +231 -0
- package/dist/chunks/velin-otp-input-PSK42MM6.js +207 -0
- package/dist/chunks/velin-password-strength-TAXMLSED.js +136 -0
- package/dist/chunks/velin-sheet-N2VVYXFP.js +157 -0
- package/dist/chunks/velin-theme-toggle-J2NHC7IM.js +304 -0
- package/dist/llms.txt +4 -4
- package/dist/search-index.json +232 -5
- package/dist/velin-agent.json +433 -46
- package/dist/velinstyle-components.iife.js +3695 -2272
- package/dist/velinstyle-components.js +3698 -2271
- package/dist/velinstyle-components.min.js +262 -120
- package/dist/velinstyle.css +96 -13
- package/dist/velinstyle.d.ts +3 -0
- package/dist/velinstyle.min.css +1 -1
- package/package.json +19 -4
- 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/components/data-table.css +19 -0
- package/src/components/empty-auth.css +33 -0
- package/src/components/table.css +16 -6
- package/src/tokens/motion.css +7 -0
- package/src/utilities/scroll-animation.css +66 -0
- package/src/velinstyle.css +1 -0
package/dist/velin-agent.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
3
|
"mime": "application/vnd.velinstyle.meta+json",
|
|
4
|
-
"generatedAt": "2026-08-
|
|
4
|
+
"generatedAt": "2026-08-09T18:36:22.648Z",
|
|
5
5
|
"framework": {
|
|
6
6
|
"name": "@birdapi/velinstyle",
|
|
7
|
-
"version": "1.
|
|
7
|
+
"version": "1.3.0",
|
|
8
8
|
"homepage": "https://velinstyle.info",
|
|
9
9
|
"repository": "https://github.com/SkyliteDesign/velinstyle.git",
|
|
10
10
|
"tagline": "VelinStyle is a CSS framework with WCAG 2.2 AAA-oriented defaults, native JavaScript runtime, and Web Components.",
|
|
@@ -20,12 +20,20 @@
|
|
|
20
20
|
"./email",
|
|
21
21
|
"./search",
|
|
22
22
|
"./motion",
|
|
23
|
+
"./motion-clip",
|
|
23
24
|
"./attributes",
|
|
24
25
|
"./highlight",
|
|
25
26
|
"./meta",
|
|
26
27
|
"./transparency",
|
|
28
|
+
"./security",
|
|
27
29
|
"./a11y",
|
|
28
|
-
"./skills-registry"
|
|
30
|
+
"./skills-registry",
|
|
31
|
+
"./experience",
|
|
32
|
+
"./cli-core",
|
|
33
|
+
"./cli-registry",
|
|
34
|
+
"./cli-theme",
|
|
35
|
+
"./cli-ui",
|
|
36
|
+
"./cli-renderer"
|
|
29
37
|
],
|
|
30
38
|
"release": {
|
|
31
39
|
"breaking": [
|
|
@@ -57,6 +65,7 @@
|
|
|
57
65
|
"velin-drawer",
|
|
58
66
|
"velin-dropdown",
|
|
59
67
|
"velin-email",
|
|
68
|
+
"velin-empty-state",
|
|
60
69
|
"velin-file-dropzone",
|
|
61
70
|
"velin-form-summary",
|
|
62
71
|
"velin-icon",
|
|
@@ -64,6 +73,8 @@
|
|
|
64
73
|
"velin-live-dot",
|
|
65
74
|
"velin-menubar",
|
|
66
75
|
"velin-modal",
|
|
76
|
+
"velin-otp-input",
|
|
77
|
+
"velin-password-strength",
|
|
67
78
|
"velin-persist",
|
|
68
79
|
"velin-popover",
|
|
69
80
|
"velin-progress-ring",
|
|
@@ -81,7 +92,7 @@
|
|
|
81
92
|
"velin-toast",
|
|
82
93
|
"velin-tooltip"
|
|
83
94
|
],
|
|
84
|
-
"count":
|
|
95
|
+
"count": 43,
|
|
85
96
|
"loaderTags": [
|
|
86
97
|
"velin-accordion",
|
|
87
98
|
"velin-announcer",
|
|
@@ -100,6 +111,7 @@
|
|
|
100
111
|
"velin-drawer",
|
|
101
112
|
"velin-dropdown",
|
|
102
113
|
"velin-email",
|
|
114
|
+
"velin-empty-state",
|
|
103
115
|
"velin-file-dropzone",
|
|
104
116
|
"velin-form-summary",
|
|
105
117
|
"velin-icon",
|
|
@@ -107,6 +119,8 @@
|
|
|
107
119
|
"velin-live-dot",
|
|
108
120
|
"velin-menubar",
|
|
109
121
|
"velin-modal",
|
|
122
|
+
"velin-otp-input",
|
|
123
|
+
"velin-password-strength",
|
|
110
124
|
"velin-persist",
|
|
111
125
|
"velin-popover",
|
|
112
126
|
"velin-progress-ring",
|
|
@@ -126,7 +140,7 @@
|
|
|
126
140
|
"velin-tooltip",
|
|
127
141
|
"velin-tooltip-wc"
|
|
128
142
|
],
|
|
129
|
-
"loaderCount":
|
|
143
|
+
"loaderCount": 45,
|
|
130
144
|
"legacyAliases": [
|
|
131
145
|
"velin-stepper-wc",
|
|
132
146
|
"velin-tooltip-wc"
|
|
@@ -618,6 +632,7 @@
|
|
|
618
632
|
"reducedMotionSafe": true
|
|
619
633
|
},
|
|
620
634
|
"examples": [
|
|
635
|
+
"<velin-modal title=\"Confirm\"></velin-modal>",
|
|
621
636
|
"<velin-modal><h2 slot=\"title\">…</h2></velin-modal>"
|
|
622
637
|
],
|
|
623
638
|
"promptKeywords": [
|
|
@@ -1255,7 +1270,8 @@
|
|
|
1255
1270
|
"reducedMotionSafe": true
|
|
1256
1271
|
},
|
|
1257
1272
|
"examples": [
|
|
1258
|
-
"<velin-drawer></velin-drawer>"
|
|
1273
|
+
"<velin-drawer title=\"Filters\"></velin-drawer>",
|
|
1274
|
+
"<velin-drawer><span slot=\"title\">Filters</span></velin-drawer>"
|
|
1259
1275
|
],
|
|
1260
1276
|
"promptKeywords": [
|
|
1261
1277
|
"drawer",
|
|
@@ -1349,7 +1365,8 @@
|
|
|
1349
1365
|
"reducedMotionSafe": true
|
|
1350
1366
|
},
|
|
1351
1367
|
"examples": [
|
|
1352
|
-
"<velin-sheet></velin-sheet>"
|
|
1368
|
+
"<velin-sheet title=\"Actions\"></velin-sheet>",
|
|
1369
|
+
"<velin-sheet><span slot=\"title\">Actions</span></velin-sheet>"
|
|
1353
1370
|
],
|
|
1354
1371
|
"promptKeywords": [
|
|
1355
1372
|
"sheet",
|
|
@@ -1567,9 +1584,194 @@
|
|
|
1567
1584
|
"auto-dismiss with pause on focus/hover"
|
|
1568
1585
|
]
|
|
1569
1586
|
}
|
|
1587
|
+
},
|
|
1588
|
+
{
|
|
1589
|
+
"id": "velin-otp-input",
|
|
1590
|
+
"kind": "web-component",
|
|
1591
|
+
"tag": "velin-otp-input",
|
|
1592
|
+
"category": "forms",
|
|
1593
|
+
"subcategory": "otp",
|
|
1594
|
+
"purpose": "Segmented one-time-password / PIN digit entry with paste and keyboard support.",
|
|
1595
|
+
"family": "forms",
|
|
1596
|
+
"maturity": "core",
|
|
1597
|
+
"recommendedPages": [
|
|
1598
|
+
"auth",
|
|
1599
|
+
"saas"
|
|
1600
|
+
],
|
|
1601
|
+
"recommendedSections": [],
|
|
1602
|
+
"compatibleWith": [
|
|
1603
|
+
"css-button",
|
|
1604
|
+
"velin-form-summary",
|
|
1605
|
+
"velin-secure-field"
|
|
1606
|
+
],
|
|
1607
|
+
"incompatibleWith": [],
|
|
1608
|
+
"accessibility": {
|
|
1609
|
+
"role": "group",
|
|
1610
|
+
"notes": "Per-digit labels; autocomplete one-time-code"
|
|
1611
|
+
},
|
|
1612
|
+
"seo": {
|
|
1613
|
+
"impact": "none"
|
|
1614
|
+
},
|
|
1615
|
+
"performance": {
|
|
1616
|
+
"cost": "lazy-ok"
|
|
1617
|
+
},
|
|
1618
|
+
"variants": [],
|
|
1619
|
+
"density": [
|
|
1620
|
+
"default"
|
|
1621
|
+
],
|
|
1622
|
+
"themeSupport": [
|
|
1623
|
+
"light",
|
|
1624
|
+
"dark"
|
|
1625
|
+
],
|
|
1626
|
+
"motion": {
|
|
1627
|
+
"reducedMotionSafe": true
|
|
1628
|
+
},
|
|
1629
|
+
"examples": [
|
|
1630
|
+
"<velin-otp-input length=\"6\"></velin-otp-input>"
|
|
1631
|
+
],
|
|
1632
|
+
"promptKeywords": [
|
|
1633
|
+
"otp",
|
|
1634
|
+
"2fa",
|
|
1635
|
+
"pin",
|
|
1636
|
+
"one-time password"
|
|
1637
|
+
],
|
|
1638
|
+
"api": {
|
|
1639
|
+
"events": [
|
|
1640
|
+
"velin-change",
|
|
1641
|
+
"velin-complete"
|
|
1642
|
+
],
|
|
1643
|
+
"attributes": [
|
|
1644
|
+
"length",
|
|
1645
|
+
"value",
|
|
1646
|
+
"disabled",
|
|
1647
|
+
"name"
|
|
1648
|
+
]
|
|
1649
|
+
}
|
|
1650
|
+
},
|
|
1651
|
+
{
|
|
1652
|
+
"id": "velin-password-strength",
|
|
1653
|
+
"kind": "web-component",
|
|
1654
|
+
"tag": "velin-password-strength",
|
|
1655
|
+
"category": "forms",
|
|
1656
|
+
"subcategory": "password",
|
|
1657
|
+
"purpose": "Heuristic password strength meter linked to an input via for= or value.",
|
|
1658
|
+
"family": "forms",
|
|
1659
|
+
"maturity": "core",
|
|
1660
|
+
"recommendedPages": [
|
|
1661
|
+
"auth",
|
|
1662
|
+
"saas"
|
|
1663
|
+
],
|
|
1664
|
+
"recommendedSections": [],
|
|
1665
|
+
"compatibleWith": [
|
|
1666
|
+
"css-input",
|
|
1667
|
+
"velin-secure-field",
|
|
1668
|
+
"velin-form-summary"
|
|
1669
|
+
],
|
|
1670
|
+
"incompatibleWith": [],
|
|
1671
|
+
"accessibility": {
|
|
1672
|
+
"role": "progressbar",
|
|
1673
|
+
"notes": "aria-live polite label"
|
|
1674
|
+
},
|
|
1675
|
+
"seo": {
|
|
1676
|
+
"impact": "none"
|
|
1677
|
+
},
|
|
1678
|
+
"performance": {
|
|
1679
|
+
"cost": "lazy-ok"
|
|
1680
|
+
},
|
|
1681
|
+
"variants": [],
|
|
1682
|
+
"density": [
|
|
1683
|
+
"default"
|
|
1684
|
+
],
|
|
1685
|
+
"themeSupport": [
|
|
1686
|
+
"light",
|
|
1687
|
+
"dark"
|
|
1688
|
+
],
|
|
1689
|
+
"motion": {
|
|
1690
|
+
"reducedMotionSafe": true
|
|
1691
|
+
},
|
|
1692
|
+
"examples": [
|
|
1693
|
+
"<input id=\"pw\" type=\"password\"><velin-password-strength for=\"pw\"></velin-password-strength>"
|
|
1694
|
+
],
|
|
1695
|
+
"promptKeywords": [
|
|
1696
|
+
"password strength",
|
|
1697
|
+
"meter",
|
|
1698
|
+
"signup"
|
|
1699
|
+
],
|
|
1700
|
+
"api": {
|
|
1701
|
+
"events": [
|
|
1702
|
+
"velin-strength"
|
|
1703
|
+
],
|
|
1704
|
+
"attributes": [
|
|
1705
|
+
"for",
|
|
1706
|
+
"value",
|
|
1707
|
+
"label"
|
|
1708
|
+
]
|
|
1709
|
+
}
|
|
1710
|
+
},
|
|
1711
|
+
{
|
|
1712
|
+
"id": "velin-empty-state",
|
|
1713
|
+
"kind": "web-component",
|
|
1714
|
+
"tag": "velin-empty-state",
|
|
1715
|
+
"category": "feedback",
|
|
1716
|
+
"subcategory": "empty",
|
|
1717
|
+
"purpose": "Consistent empty / zero-data surface with illustration, title, description, and actions slots.",
|
|
1718
|
+
"family": "feedback",
|
|
1719
|
+
"maturity": "core",
|
|
1720
|
+
"recommendedPages": [
|
|
1721
|
+
"dashboard",
|
|
1722
|
+
"saas",
|
|
1723
|
+
"shop",
|
|
1724
|
+
"docs"
|
|
1725
|
+
],
|
|
1726
|
+
"recommendedSections": [],
|
|
1727
|
+
"compatibleWith": [
|
|
1728
|
+
"css-button",
|
|
1729
|
+
"velin-icon"
|
|
1730
|
+
],
|
|
1731
|
+
"incompatibleWith": [],
|
|
1732
|
+
"accessibility": {
|
|
1733
|
+
"role": "status"
|
|
1734
|
+
},
|
|
1735
|
+
"seo": {
|
|
1736
|
+
"impact": "none"
|
|
1737
|
+
},
|
|
1738
|
+
"performance": {
|
|
1739
|
+
"cost": "lazy-ok"
|
|
1740
|
+
},
|
|
1741
|
+
"variants": [],
|
|
1742
|
+
"density": [
|
|
1743
|
+
"default"
|
|
1744
|
+
],
|
|
1745
|
+
"themeSupport": [
|
|
1746
|
+
"light",
|
|
1747
|
+
"dark"
|
|
1748
|
+
],
|
|
1749
|
+
"motion": {
|
|
1750
|
+
"reducedMotionSafe": true
|
|
1751
|
+
},
|
|
1752
|
+
"examples": [
|
|
1753
|
+
"<velin-empty-state heading=\"No items yet\" description=\"Create your first entry.\"><button slot=\"actions\" class=\"velin-btn velin-btn--primary\">Create</button></velin-empty-state>"
|
|
1754
|
+
],
|
|
1755
|
+
"promptKeywords": [
|
|
1756
|
+
"empty state",
|
|
1757
|
+
"no results",
|
|
1758
|
+
"zero data"
|
|
1759
|
+
],
|
|
1760
|
+
"api": {
|
|
1761
|
+
"attributes": [
|
|
1762
|
+
"heading",
|
|
1763
|
+
"description"
|
|
1764
|
+
],
|
|
1765
|
+
"slots": [
|
|
1766
|
+
"illustration",
|
|
1767
|
+
"title",
|
|
1768
|
+
"description",
|
|
1769
|
+
"actions"
|
|
1770
|
+
]
|
|
1771
|
+
}
|
|
1570
1772
|
}
|
|
1571
1773
|
],
|
|
1572
|
-
"componentCount":
|
|
1774
|
+
"componentCount": 20,
|
|
1573
1775
|
"tokens": {
|
|
1574
1776
|
"version": 1,
|
|
1575
1777
|
"tokens": [
|
|
@@ -3923,7 +4125,10 @@
|
|
|
3923
4125
|
"velin-code",
|
|
3924
4126
|
"velin-copy",
|
|
3925
4127
|
"velin-counter",
|
|
4128
|
+
"velin-delay",
|
|
3926
4129
|
"velin-disclosure",
|
|
4130
|
+
"velin-duration",
|
|
4131
|
+
"velin-ease",
|
|
3927
4132
|
"velin-fade",
|
|
3928
4133
|
"velin-grid",
|
|
3929
4134
|
"velin-highlight",
|
|
@@ -3931,6 +4136,8 @@
|
|
|
3931
4136
|
"velin-lazy",
|
|
3932
4137
|
"velin-loading",
|
|
3933
4138
|
"velin-modal",
|
|
4139
|
+
"velin-motion",
|
|
4140
|
+
"velin-motion-sequence",
|
|
3934
4141
|
"velin-notify",
|
|
3935
4142
|
"velin-parallax",
|
|
3936
4143
|
"velin-progress",
|
|
@@ -3945,10 +4152,12 @@
|
|
|
3945
4152
|
"velin-stagger",
|
|
3946
4153
|
"velin-tabs",
|
|
3947
4154
|
"velin-theme",
|
|
4155
|
+
"velin-timeline",
|
|
3948
4156
|
"velin-tooltip",
|
|
3949
|
-
"velin-transparency"
|
|
4157
|
+
"velin-transparency",
|
|
4158
|
+
"velin-trigger"
|
|
3950
4159
|
],
|
|
3951
|
-
"count":
|
|
4160
|
+
"count": 36
|
|
3952
4161
|
},
|
|
3953
4162
|
"cli": {
|
|
3954
4163
|
"commands": [
|
|
@@ -3960,14 +4169,38 @@
|
|
|
3960
4169
|
},
|
|
3961
4170
|
{
|
|
3962
4171
|
"name": "build",
|
|
3963
|
-
"summary": "Build custom CSS with selected layers from config",
|
|
4172
|
+
"summary": "Build custom CSS with selected layers from config, or production output with --production",
|
|
3964
4173
|
"flags": [
|
|
3965
4174
|
"--output",
|
|
3966
4175
|
"-o",
|
|
4176
|
+
"--out",
|
|
3967
4177
|
"--minify",
|
|
3968
|
-
"--preset"
|
|
4178
|
+
"--preset",
|
|
4179
|
+
"--production",
|
|
4180
|
+
"--explain",
|
|
4181
|
+
"--watch",
|
|
4182
|
+
"--report",
|
|
4183
|
+
"--safelist"
|
|
3969
4184
|
],
|
|
3970
|
-
"example": "velinstyle build --
|
|
4185
|
+
"example": "velinstyle build --production --explain -o ./dist/velin-production"
|
|
4186
|
+
},
|
|
4187
|
+
{
|
|
4188
|
+
"name": "production",
|
|
4189
|
+
"summary": "Content-aware production builder (CSS/JS/themes/icons/fonts/motion + report)",
|
|
4190
|
+
"flags": [
|
|
4191
|
+
"--out",
|
|
4192
|
+
"-o",
|
|
4193
|
+
"--explain",
|
|
4194
|
+
"--watch",
|
|
4195
|
+
"--report",
|
|
4196
|
+
"--safelist",
|
|
4197
|
+
"--no-js",
|
|
4198
|
+
"--no-icons",
|
|
4199
|
+
"--no-themes",
|
|
4200
|
+
"--no-motion",
|
|
4201
|
+
"--no-minify"
|
|
4202
|
+
],
|
|
4203
|
+
"example": "velinstyle production . --explain --report ./report.json"
|
|
3971
4204
|
},
|
|
3972
4205
|
{
|
|
3973
4206
|
"name": "themes",
|
|
@@ -3988,13 +4221,13 @@
|
|
|
3988
4221
|
"--icons",
|
|
3989
4222
|
"--variant"
|
|
3990
4223
|
],
|
|
4224
|
+
"example": "velinstyle icons add lucide --icons menu,search",
|
|
3991
4225
|
"subcommands": [
|
|
3992
4226
|
"list",
|
|
3993
4227
|
"add",
|
|
3994
4228
|
"remove",
|
|
3995
4229
|
"build"
|
|
3996
|
-
]
|
|
3997
|
-
"example": "velinstyle icons add lucide --icons menu,search"
|
|
4230
|
+
]
|
|
3998
4231
|
},
|
|
3999
4232
|
{
|
|
4000
4233
|
"name": "scan",
|
|
@@ -4027,10 +4260,10 @@
|
|
|
4027
4260
|
"-o",
|
|
4028
4261
|
"--strict"
|
|
4029
4262
|
],
|
|
4263
|
+
"example": "velinstyle blueprint modal -o snippet.html --strict",
|
|
4030
4264
|
"subcommands": [
|
|
4031
4265
|
"list"
|
|
4032
|
-
]
|
|
4033
|
-
"example": "velinstyle blueprint modal -o snippet.html --strict"
|
|
4266
|
+
]
|
|
4034
4267
|
},
|
|
4035
4268
|
{
|
|
4036
4269
|
"name": "create",
|
|
@@ -4039,13 +4272,13 @@
|
|
|
4039
4272
|
"--theme",
|
|
4040
4273
|
"--no-copy"
|
|
4041
4274
|
],
|
|
4275
|
+
"example": "velinstyle create landing ./my-site --theme earth",
|
|
4042
4276
|
"subcommands": [
|
|
4043
4277
|
"landing",
|
|
4044
4278
|
"dashboard",
|
|
4045
4279
|
"docs",
|
|
4046
4280
|
"auth"
|
|
4047
|
-
]
|
|
4048
|
-
"example": "velinstyle create landing ./my-site --theme earth"
|
|
4281
|
+
]
|
|
4049
4282
|
},
|
|
4050
4283
|
{
|
|
4051
4284
|
"name": "serve",
|
|
@@ -4073,26 +4306,46 @@
|
|
|
4073
4306
|
},
|
|
4074
4307
|
{
|
|
4075
4308
|
"name": "scaffold",
|
|
4076
|
-
"summary": "Plan-first page HTML
|
|
4309
|
+
"summary": "Plan-first page HTML, recipe fragment, or Atelier Library compose (--atelier, beta)",
|
|
4077
4310
|
"flags": [
|
|
4078
4311
|
"--output",
|
|
4079
4312
|
"-o",
|
|
4080
|
-
"--json"
|
|
4313
|
+
"--json",
|
|
4314
|
+
"--atelier",
|
|
4315
|
+
"--from",
|
|
4316
|
+
"--base-url"
|
|
4081
4317
|
],
|
|
4318
|
+
"example": "velinstyle scaffold --atelier 04,07 -o compose.html --from ./atelier/library",
|
|
4082
4319
|
"subcommands": [
|
|
4083
4320
|
"list-intents"
|
|
4084
|
-
]
|
|
4085
|
-
"example": "velinstyle scaffold \"Steuerberater Landingpage mit Kontakt\""
|
|
4321
|
+
]
|
|
4086
4322
|
},
|
|
4087
4323
|
{
|
|
4088
4324
|
"name": "plan",
|
|
4089
|
-
"summary": "Emit page plan JSON from a prompt (
|
|
4325
|
+
"summary": "Emit page plan JSON from a prompt or --atelier Library ids (beta)",
|
|
4090
4326
|
"flags": [
|
|
4091
4327
|
"--output",
|
|
4092
4328
|
"-o",
|
|
4093
|
-
"--json"
|
|
4329
|
+
"--json",
|
|
4330
|
+
"--atelier"
|
|
4331
|
+
],
|
|
4332
|
+
"example": "velinstyle plan --atelier 04,07"
|
|
4333
|
+
},
|
|
4334
|
+
{
|
|
4335
|
+
"name": "atelier",
|
|
4336
|
+
"summary": "Pull curated Atelier Library showcase by number/id; blade/vue/react = wrappers only",
|
|
4337
|
+
"flags": [
|
|
4338
|
+
"--output",
|
|
4339
|
+
"-o",
|
|
4340
|
+
"--format",
|
|
4341
|
+
"--from",
|
|
4342
|
+
"--base-url",
|
|
4343
|
+
"--rewrite-vendor"
|
|
4094
4344
|
],
|
|
4095
|
-
"example": "velinstyle
|
|
4345
|
+
"example": "velinstyle atelier 36 -o ./velin-atelier/36-calendar --format html",
|
|
4346
|
+
"subcommands": [
|
|
4347
|
+
"list"
|
|
4348
|
+
]
|
|
4096
4349
|
},
|
|
4097
4350
|
{
|
|
4098
4351
|
"name": "review",
|
|
@@ -4108,10 +4361,10 @@
|
|
|
4108
4361
|
"name": "wc",
|
|
4109
4362
|
"summary": "Inspect Web Component APIs from source",
|
|
4110
4363
|
"flags": [],
|
|
4364
|
+
"example": "velinstyle wc api velin-toast",
|
|
4111
4365
|
"subcommands": [
|
|
4112
4366
|
"api"
|
|
4113
|
-
]
|
|
4114
|
-
"example": "velinstyle wc api velin-toast"
|
|
4367
|
+
]
|
|
4115
4368
|
},
|
|
4116
4369
|
{
|
|
4117
4370
|
"name": "layout",
|
|
@@ -4121,12 +4374,12 @@
|
|
|
4121
4374
|
"--write",
|
|
4122
4375
|
"--dry-run"
|
|
4123
4376
|
],
|
|
4377
|
+
"example": "velinstyle layout suggest index.html",
|
|
4124
4378
|
"subcommands": [
|
|
4125
4379
|
"audit",
|
|
4126
4380
|
"suggest",
|
|
4127
4381
|
"fix"
|
|
4128
|
-
]
|
|
4129
|
-
"example": "velinstyle layout suggest index.html"
|
|
4382
|
+
]
|
|
4130
4383
|
},
|
|
4131
4384
|
{
|
|
4132
4385
|
"name": "perf",
|
|
@@ -4136,12 +4389,12 @@
|
|
|
4136
4389
|
"--write",
|
|
4137
4390
|
"--dry-run"
|
|
4138
4391
|
],
|
|
4392
|
+
"example": "velinstyle perf audit index.html",
|
|
4139
4393
|
"subcommands": [
|
|
4140
4394
|
"audit",
|
|
4141
4395
|
"suggest",
|
|
4142
4396
|
"fix"
|
|
4143
|
-
]
|
|
4144
|
-
"example": "velinstyle perf audit index.html"
|
|
4397
|
+
]
|
|
4145
4398
|
},
|
|
4146
4399
|
{
|
|
4147
4400
|
"name": "tokens",
|
|
@@ -4151,11 +4404,11 @@
|
|
|
4151
4404
|
"--output",
|
|
4152
4405
|
"-o"
|
|
4153
4406
|
],
|
|
4407
|
+
"example": "velinstyle tokens validate --input examples/tokens.full.json",
|
|
4154
4408
|
"subcommands": [
|
|
4155
4409
|
"build",
|
|
4156
4410
|
"validate"
|
|
4157
|
-
]
|
|
4158
|
-
"example": "velinstyle tokens validate --input examples/tokens.full.json"
|
|
4411
|
+
]
|
|
4159
4412
|
},
|
|
4160
4413
|
{
|
|
4161
4414
|
"name": "docs",
|
|
@@ -4164,10 +4417,10 @@
|
|
|
4164
4417
|
"--scope",
|
|
4165
4418
|
"--out"
|
|
4166
4419
|
],
|
|
4420
|
+
"example": "velinstyle docs generate --scope all",
|
|
4167
4421
|
"subcommands": [
|
|
4168
4422
|
"generate"
|
|
4169
|
-
]
|
|
4170
|
-
"example": "velinstyle docs generate --scope all"
|
|
4423
|
+
]
|
|
4171
4424
|
},
|
|
4172
4425
|
{
|
|
4173
4426
|
"name": "meta",
|
|
@@ -4179,10 +4432,10 @@
|
|
|
4179
4432
|
"--no-llms",
|
|
4180
4433
|
"--write"
|
|
4181
4434
|
],
|
|
4435
|
+
"example": "velinstyle meta page index.html --write",
|
|
4182
4436
|
"subcommands": [
|
|
4183
4437
|
"page"
|
|
4184
|
-
]
|
|
4185
|
-
"example": "velinstyle meta page index.html --write"
|
|
4438
|
+
]
|
|
4186
4439
|
},
|
|
4187
4440
|
{
|
|
4188
4441
|
"name": "search",
|
|
@@ -4191,10 +4444,10 @@
|
|
|
4191
4444
|
"--out",
|
|
4192
4445
|
"--extra-html"
|
|
4193
4446
|
],
|
|
4447
|
+
"example": "velinstyle search index --out dist/search-index.json",
|
|
4194
4448
|
"subcommands": [
|
|
4195
4449
|
"index"
|
|
4196
|
-
]
|
|
4197
|
-
"example": "velinstyle search index --out dist/search-index.json"
|
|
4450
|
+
]
|
|
4198
4451
|
},
|
|
4199
4452
|
{
|
|
4200
4453
|
"name": "skills",
|
|
@@ -4210,6 +4463,7 @@
|
|
|
4210
4463
|
"--json",
|
|
4211
4464
|
"--human"
|
|
4212
4465
|
],
|
|
4466
|
+
"example": "velinstyle skills show scaffold.landing --human",
|
|
4213
4467
|
"subcommands": [
|
|
4214
4468
|
"list",
|
|
4215
4469
|
"show",
|
|
@@ -4222,8 +4476,7 @@
|
|
|
4222
4476
|
"templates",
|
|
4223
4477
|
"projects",
|
|
4224
4478
|
"graphs"
|
|
4225
|
-
]
|
|
4226
|
-
"example": "velinstyle skills show scaffold.landing --human"
|
|
4479
|
+
]
|
|
4227
4480
|
},
|
|
4228
4481
|
{
|
|
4229
4482
|
"name": "workflow",
|
|
@@ -4234,6 +4487,115 @@
|
|
|
4234
4487
|
"--step"
|
|
4235
4488
|
],
|
|
4236
4489
|
"example": "velinstyle workflow landingpage --json"
|
|
4490
|
+
},
|
|
4491
|
+
{
|
|
4492
|
+
"name": "dashboard",
|
|
4493
|
+
"summary": "Aggregate Production, Review, Accessibility, Transparency, Performance, Security",
|
|
4494
|
+
"flags": [],
|
|
4495
|
+
"example": "velinstyle dashboard"
|
|
4496
|
+
},
|
|
4497
|
+
{
|
|
4498
|
+
"name": "replay",
|
|
4499
|
+
"summary": "Replay a Velin Experience record.json through the same renderer",
|
|
4500
|
+
"flags": [],
|
|
4501
|
+
"example": "velinstyle replay record.json"
|
|
4502
|
+
},
|
|
4503
|
+
{
|
|
4504
|
+
"name": "transparency",
|
|
4505
|
+
"summary": "Transparency Framework doctor, validate, report, export, migrate",
|
|
4506
|
+
"flags": [
|
|
4507
|
+
"--policy",
|
|
4508
|
+
"--json"
|
|
4509
|
+
],
|
|
4510
|
+
"example": "velinstyle transparency doctor .",
|
|
4511
|
+
"subcommands": [
|
|
4512
|
+
"doctor",
|
|
4513
|
+
"validate",
|
|
4514
|
+
"report",
|
|
4515
|
+
"export",
|
|
4516
|
+
"migrate"
|
|
4517
|
+
]
|
|
4518
|
+
},
|
|
4519
|
+
{
|
|
4520
|
+
"name": "motion",
|
|
4521
|
+
"summary": "Velin Motion — page registry + clip pipeline (create, atelier, AI providers)",
|
|
4522
|
+
"flags": [
|
|
4523
|
+
"--json",
|
|
4524
|
+
"--write",
|
|
4525
|
+
"--out",
|
|
4526
|
+
"--output",
|
|
4527
|
+
"-o",
|
|
4528
|
+
"--policy",
|
|
4529
|
+
"--preset",
|
|
4530
|
+
"--ai",
|
|
4531
|
+
"--yes",
|
|
4532
|
+
"-y",
|
|
4533
|
+
"--provider",
|
|
4534
|
+
"--model",
|
|
4535
|
+
"--quality",
|
|
4536
|
+
"--duration",
|
|
4537
|
+
"--style",
|
|
4538
|
+
"--prompt",
|
|
4539
|
+
"--count",
|
|
4540
|
+
"--dry-run",
|
|
4541
|
+
"--clips"
|
|
4542
|
+
],
|
|
4543
|
+
"example": "velinstyle motion create atelier.webp",
|
|
4544
|
+
"subcommands": [
|
|
4545
|
+
"list",
|
|
4546
|
+
"presets",
|
|
4547
|
+
"create",
|
|
4548
|
+
"atelier",
|
|
4549
|
+
"transition",
|
|
4550
|
+
"sequence",
|
|
4551
|
+
"export",
|
|
4552
|
+
"usage",
|
|
4553
|
+
"providers",
|
|
4554
|
+
"setup",
|
|
4555
|
+
"zoom",
|
|
4556
|
+
"pan",
|
|
4557
|
+
"rotate",
|
|
4558
|
+
"particles",
|
|
4559
|
+
"intro",
|
|
4560
|
+
"outro",
|
|
4561
|
+
"doctor",
|
|
4562
|
+
"scan",
|
|
4563
|
+
"policy",
|
|
4564
|
+
"demo",
|
|
4565
|
+
"analyze",
|
|
4566
|
+
"review",
|
|
4567
|
+
"report",
|
|
4568
|
+
"optimize",
|
|
4569
|
+
"blueprint"
|
|
4570
|
+
]
|
|
4571
|
+
},
|
|
4572
|
+
{
|
|
4573
|
+
"name": "security",
|
|
4574
|
+
"summary": "Velin Security Suite — Security Engine: doctor, scan, audit, publish, ci, deps, secrets, report",
|
|
4575
|
+
"flags": [
|
|
4576
|
+
"--json",
|
|
4577
|
+
"--strict",
|
|
4578
|
+
"--repo",
|
|
4579
|
+
"--consumer",
|
|
4580
|
+
"--ci",
|
|
4581
|
+
"--publish",
|
|
4582
|
+
"--deps",
|
|
4583
|
+
"--secrets",
|
|
4584
|
+
"--out",
|
|
4585
|
+
"--output",
|
|
4586
|
+
"-o"
|
|
4587
|
+
],
|
|
4588
|
+
"example": "velinstyle security doctor .",
|
|
4589
|
+
"subcommands": [
|
|
4590
|
+
"doctor",
|
|
4591
|
+
"scan",
|
|
4592
|
+
"audit",
|
|
4593
|
+
"publish",
|
|
4594
|
+
"ci",
|
|
4595
|
+
"deps",
|
|
4596
|
+
"secrets",
|
|
4597
|
+
"report"
|
|
4598
|
+
]
|
|
4237
4599
|
}
|
|
4238
4600
|
]
|
|
4239
4601
|
},
|
|
@@ -4409,7 +4771,8 @@
|
|
|
4409
4771
|
"dialog"
|
|
4410
4772
|
],
|
|
4411
4773
|
"keyboard": "Escape, Tab trap",
|
|
4412
|
-
"requiredAttributes": []
|
|
4774
|
+
"requiredAttributes": [],
|
|
4775
|
+
"notes": "Reactive title attribute + slot=title."
|
|
4413
4776
|
},
|
|
4414
4777
|
"velin-dropdown": {
|
|
4415
4778
|
"status": "pass",
|
|
@@ -4428,6 +4791,13 @@
|
|
|
4428
4791
|
"aria-label"
|
|
4429
4792
|
]
|
|
4430
4793
|
},
|
|
4794
|
+
"velin-empty-state": {
|
|
4795
|
+
"status": "pass",
|
|
4796
|
+
"roles": [
|
|
4797
|
+
"status"
|
|
4798
|
+
],
|
|
4799
|
+
"notes": "heading/description attributes or slots; actions slot for CTAs."
|
|
4800
|
+
},
|
|
4431
4801
|
"velin-form-summary": {
|
|
4432
4802
|
"status": "pass",
|
|
4433
4803
|
"roles": [
|
|
@@ -4483,7 +4853,23 @@
|
|
|
4483
4853
|
"dialog"
|
|
4484
4854
|
],
|
|
4485
4855
|
"keyboard": "Escape, Tab trap",
|
|
4486
|
-
"requiredAttributes": []
|
|
4856
|
+
"requiredAttributes": [],
|
|
4857
|
+
"notes": "Reactive title attribute + slot=title; footer slot."
|
|
4858
|
+
},
|
|
4859
|
+
"velin-otp-input": {
|
|
4860
|
+
"status": "pass",
|
|
4861
|
+
"roles": [
|
|
4862
|
+
"group"
|
|
4863
|
+
],
|
|
4864
|
+
"keyboard": "Digits, arrows, backspace, paste",
|
|
4865
|
+
"notes": "autocomplete one-time-code on first digit."
|
|
4866
|
+
},
|
|
4867
|
+
"velin-password-strength": {
|
|
4868
|
+
"status": "pass",
|
|
4869
|
+
"roles": [
|
|
4870
|
+
"progressbar"
|
|
4871
|
+
],
|
|
4872
|
+
"notes": "Heuristic meter; aria-live label; for= links to password input."
|
|
4487
4873
|
},
|
|
4488
4874
|
"velin-persist": {
|
|
4489
4875
|
"status": "pass",
|
|
@@ -4563,7 +4949,8 @@
|
|
|
4563
4949
|
"roles": [
|
|
4564
4950
|
"dialog"
|
|
4565
4951
|
],
|
|
4566
|
-
"keyboard": "Escape, Tab trap"
|
|
4952
|
+
"keyboard": "Escape, Tab trap",
|
|
4953
|
+
"notes": "Reactive title/label + slot=title."
|
|
4567
4954
|
},
|
|
4568
4955
|
"velin-sparkline": {
|
|
4569
4956
|
"status": "pass",
|
|
@@ -4623,7 +5010,7 @@
|
|
|
4623
5010
|
},
|
|
4624
5011
|
"searchIndex": {
|
|
4625
5012
|
"path": "dist/search-index.json",
|
|
4626
|
-
"entryCount":
|
|
5013
|
+
"entryCount": 171
|
|
4627
5014
|
},
|
|
4628
5015
|
"documentation": {
|
|
4629
5016
|
"generated": "docs/generated/",
|