@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/dist/velinstyle.css
CHANGED
|
@@ -228,6 +228,11 @@
|
|
|
228
228
|
--velin-duration-slower: .5s;
|
|
229
229
|
--velin-duration-slowest: .8s;
|
|
230
230
|
--velin-duration-cinematic: 1.2s;
|
|
231
|
+
--velin-motion-fast: var(--velin-duration-fast);
|
|
232
|
+
--velin-motion-normal: var(--velin-duration-normal);
|
|
233
|
+
--velin-motion-slow: var(--velin-duration-slow);
|
|
234
|
+
--velin-bounce: var(--velin-ease-bounce);
|
|
235
|
+
--velin-spring: var(--velin-ease-spring);
|
|
231
236
|
--velin-ease-default: cubic-bezier(.4, 0, .2, 1);
|
|
232
237
|
--velin-ease-in: cubic-bezier(.4, 0, 1, 1);
|
|
233
238
|
--velin-ease-out: cubic-bezier(0, 0, .2, 1);
|
|
@@ -7005,7 +7010,7 @@
|
|
|
7005
7010
|
@keyframes velin-slide-up {
|
|
7006
7011
|
from {
|
|
7007
7012
|
opacity: 0;
|
|
7008
|
-
transform: translateY(
|
|
7013
|
+
transform: translateY(2rem);
|
|
7009
7014
|
}
|
|
7010
7015
|
|
|
7011
7016
|
to {
|
|
@@ -7017,7 +7022,7 @@
|
|
|
7017
7022
|
@keyframes velin-slide-down {
|
|
7018
7023
|
from {
|
|
7019
7024
|
opacity: 0;
|
|
7020
|
-
transform: translateY(-
|
|
7025
|
+
transform: translateY(-2rem);
|
|
7021
7026
|
}
|
|
7022
7027
|
|
|
7023
7028
|
to {
|
|
@@ -7029,7 +7034,7 @@
|
|
|
7029
7034
|
@keyframes velin-slide-left {
|
|
7030
7035
|
from {
|
|
7031
7036
|
opacity: 0;
|
|
7032
|
-
transform: translateX(
|
|
7037
|
+
transform: translateX(2rem);
|
|
7033
7038
|
}
|
|
7034
7039
|
|
|
7035
7040
|
to {
|
|
@@ -7041,7 +7046,7 @@
|
|
|
7041
7046
|
@keyframes velin-slide-right {
|
|
7042
7047
|
from {
|
|
7043
7048
|
opacity: 0;
|
|
7044
|
-
transform: translateX(-
|
|
7049
|
+
transform: translateX(-2rem);
|
|
7045
7050
|
}
|
|
7046
7051
|
|
|
7047
7052
|
to {
|
|
@@ -7053,7 +7058,7 @@
|
|
|
7053
7058
|
@keyframes velin-scale-in {
|
|
7054
7059
|
from {
|
|
7055
7060
|
opacity: 0;
|
|
7056
|
-
transform: scale(.
|
|
7061
|
+
transform: scale(.92);
|
|
7057
7062
|
}
|
|
7058
7063
|
|
|
7059
7064
|
to {
|
|
@@ -9242,6 +9247,21 @@
|
|
|
9242
9247
|
animation-range: entry entry 60%;
|
|
9243
9248
|
}
|
|
9244
9249
|
|
|
9250
|
+
.velin-animate-on-scroll--slide-down {
|
|
9251
|
+
animation: linear both velin-slide-down view();
|
|
9252
|
+
animation-range: entry entry 60%;
|
|
9253
|
+
}
|
|
9254
|
+
|
|
9255
|
+
.velin-animate-on-scroll--slide-left {
|
|
9256
|
+
animation: linear both velin-slide-left view();
|
|
9257
|
+
animation-range: entry entry 60%;
|
|
9258
|
+
}
|
|
9259
|
+
|
|
9260
|
+
.velin-animate-on-scroll--slide-right {
|
|
9261
|
+
animation: linear both velin-slide-right view();
|
|
9262
|
+
animation-range: entry entry 60%;
|
|
9263
|
+
}
|
|
9264
|
+
|
|
9245
9265
|
.velin-animate-on-scroll--scale {
|
|
9246
9266
|
animation: linear both velin-scale-in view();
|
|
9247
9267
|
animation-range: entry entry 80%;
|
|
@@ -9329,12 +9349,27 @@
|
|
|
9329
9349
|
transform: translateY(2rem);
|
|
9330
9350
|
}
|
|
9331
9351
|
|
|
9352
|
+
.velin-animate-on-scroll--slide-down:not(.velin-in-view) {
|
|
9353
|
+
opacity: 0;
|
|
9354
|
+
transform: translateY(-2rem);
|
|
9355
|
+
}
|
|
9356
|
+
|
|
9357
|
+
.velin-animate-on-scroll--slide-left:not(.velin-in-view) {
|
|
9358
|
+
opacity: 0;
|
|
9359
|
+
transform: translateX(2rem);
|
|
9360
|
+
}
|
|
9361
|
+
|
|
9362
|
+
.velin-animate-on-scroll--slide-right:not(.velin-in-view) {
|
|
9363
|
+
opacity: 0;
|
|
9364
|
+
transform: translateX(-2rem);
|
|
9365
|
+
}
|
|
9366
|
+
|
|
9332
9367
|
.velin-animate-on-scroll--scale:not(.velin-in-view) {
|
|
9333
9368
|
opacity: 0;
|
|
9334
9369
|
transform: scale(.92);
|
|
9335
9370
|
}
|
|
9336
9371
|
|
|
9337
|
-
.velin-animate-on-scroll.velin-in-view, .velin-animate-on-scroll--fade.velin-in-view, .velin-animate-on-scroll--slide-up.velin-in-view, .velin-animate-on-scroll--scale.velin-in-view {
|
|
9372
|
+
.velin-animate-on-scroll.velin-in-view, .velin-animate-on-scroll--fade.velin-in-view, .velin-animate-on-scroll--slide-up.velin-in-view, .velin-animate-on-scroll--slide-down.velin-in-view, .velin-animate-on-scroll--slide-left.velin-in-view, .velin-animate-on-scroll--slide-right.velin-in-view, .velin-animate-on-scroll--scale.velin-in-view {
|
|
9338
9373
|
opacity: 1;
|
|
9339
9374
|
transition: opacity var(--velin-duration-normal, .4s) var(--velin-ease-out, ease-out),
|
|
9340
9375
|
transform var(--velin-duration-normal, .4s) var(--velin-ease-out, ease-out);
|
|
@@ -9347,7 +9382,7 @@
|
|
|
9347
9382
|
}
|
|
9348
9383
|
|
|
9349
9384
|
@media (prefers-reduced-motion: reduce) {
|
|
9350
|
-
.velin-animate-on-scroll, .velin-animate-on-scroll--fade, .velin-animate-on-scroll--slide-up, .velin-animate-on-scroll--scale, .velin-parallax, .velin-parallax--slow {
|
|
9385
|
+
.velin-animate-on-scroll, .velin-animate-on-scroll--fade, .velin-animate-on-scroll--slide-up, .velin-animate-on-scroll--slide-down, .velin-animate-on-scroll--slide-left, .velin-animate-on-scroll--slide-right, .velin-animate-on-scroll--scale, .velin-parallax, .velin-parallax--slow {
|
|
9351
9386
|
opacity: 1;
|
|
9352
9387
|
animation: none;
|
|
9353
9388
|
transform: none;
|