@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/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);
|
|
@@ -3176,30 +3181,35 @@
|
|
|
3176
3181
|
font-size: var(--velin-text-sm);
|
|
3177
3182
|
}
|
|
3178
3183
|
|
|
3179
|
-
.velin-table-primary {
|
|
3184
|
+
.velin-table-primary, .velin-table--primary {
|
|
3180
3185
|
background-color: color-mix(in oklch, var(--velin-color-primary) 10%, transparent);
|
|
3181
3186
|
}
|
|
3182
3187
|
|
|
3183
|
-
.velin-table-secondary {
|
|
3188
|
+
.velin-table-secondary, .velin-table--secondary {
|
|
3184
3189
|
background-color: color-mix(in oklch, var(--velin-color-secondary) 10%, transparent);
|
|
3185
3190
|
}
|
|
3186
3191
|
|
|
3187
|
-
.velin-table-success {
|
|
3192
|
+
.velin-table-success, .velin-table--success {
|
|
3188
3193
|
background-color: color-mix(in oklch, var(--velin-color-success) 10%, transparent);
|
|
3189
3194
|
}
|
|
3190
3195
|
|
|
3191
|
-
.velin-table-warning {
|
|
3196
|
+
.velin-table-warning, .velin-table--warning {
|
|
3192
3197
|
background-color: color-mix(in oklch, var(--velin-color-warning) 10%, transparent);
|
|
3193
3198
|
}
|
|
3194
3199
|
|
|
3195
|
-
.velin-table-danger {
|
|
3200
|
+
.velin-table-danger, .velin-table--danger {
|
|
3196
3201
|
background-color: color-mix(in oklch, var(--velin-color-danger) 10%, transparent);
|
|
3197
3202
|
}
|
|
3198
3203
|
|
|
3199
|
-
.velin-table-info {
|
|
3204
|
+
.velin-table-info, .velin-table--info {
|
|
3200
3205
|
background-color: color-mix(in oklch, var(--velin-color-info) 10%, transparent);
|
|
3201
3206
|
}
|
|
3202
3207
|
|
|
3208
|
+
.velin-table--selected {
|
|
3209
|
+
background-color: color-mix(in oklch, var(--velin-color-primary) 12%, transparent);
|
|
3210
|
+
box-shadow: inset 3px 0 0 var(--velin-color-primary);
|
|
3211
|
+
}
|
|
3212
|
+
|
|
3203
3213
|
.velin-table .velin-caption-top {
|
|
3204
3214
|
caption-side: top;
|
|
3205
3215
|
padding-block: var(--velin-space-2);
|
|
@@ -3306,6 +3316,21 @@
|
|
|
3306
3316
|
text-align: center;
|
|
3307
3317
|
}
|
|
3308
3318
|
|
|
3319
|
+
.velin-data-table__row--danger, .velin-data-table tr[data-severity="danger"] {
|
|
3320
|
+
background-color: color-mix(in oklch, var(--velin-color-danger) 12%, transparent);
|
|
3321
|
+
box-shadow: inset 3px 0 0 var(--velin-color-danger);
|
|
3322
|
+
}
|
|
3323
|
+
|
|
3324
|
+
.velin-data-table__row--warning, .velin-data-table tr[data-severity="warning"] {
|
|
3325
|
+
background-color: color-mix(in oklch, var(--velin-color-warning) 12%, transparent);
|
|
3326
|
+
box-shadow: inset 3px 0 0 var(--velin-color-warning);
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3329
|
+
.velin-data-table__row--selected, .velin-data-table tr[data-severity="selected"] {
|
|
3330
|
+
background-color: color-mix(in oklch, var(--velin-color-primary) 12%, transparent);
|
|
3331
|
+
box-shadow: inset 3px 0 0 var(--velin-color-primary);
|
|
3332
|
+
}
|
|
3333
|
+
|
|
3309
3334
|
.velin-data-table__pagination {
|
|
3310
3335
|
justify-content: space-between;
|
|
3311
3336
|
align-items: center;
|
|
@@ -5222,6 +5247,34 @@
|
|
|
5222
5247
|
inset-block-start: var(--velin-space-2);
|
|
5223
5248
|
inset-inline-end: var(--velin-space-2);
|
|
5224
5249
|
}
|
|
5250
|
+
|
|
5251
|
+
.velin-otp-input, .velin-password-strength {
|
|
5252
|
+
display: block;
|
|
5253
|
+
}
|
|
5254
|
+
|
|
5255
|
+
.velin-empty-state {
|
|
5256
|
+
text-align: center;
|
|
5257
|
+
padding: var(--velin-space-8) var(--velin-space-4);
|
|
5258
|
+
display: block;
|
|
5259
|
+
}
|
|
5260
|
+
|
|
5261
|
+
.velin-empty-state__title {
|
|
5262
|
+
margin: 0 0 var(--velin-space-2);
|
|
5263
|
+
font-size: var(--velin-text-xl);
|
|
5264
|
+
font-weight: var(--velin-weight-bold);
|
|
5265
|
+
}
|
|
5266
|
+
|
|
5267
|
+
.velin-empty-state__description {
|
|
5268
|
+
margin: 0 0 var(--velin-space-4);
|
|
5269
|
+
color: var(--velin-color-text-muted);
|
|
5270
|
+
}
|
|
5271
|
+
|
|
5272
|
+
.velin-empty-state__actions {
|
|
5273
|
+
gap: var(--velin-space-3);
|
|
5274
|
+
flex-wrap: wrap;
|
|
5275
|
+
justify-content: center;
|
|
5276
|
+
display: flex;
|
|
5277
|
+
}
|
|
5225
5278
|
}
|
|
5226
5279
|
|
|
5227
5280
|
@layer utilities {
|
|
@@ -6957,7 +7010,7 @@
|
|
|
6957
7010
|
@keyframes velin-slide-up {
|
|
6958
7011
|
from {
|
|
6959
7012
|
opacity: 0;
|
|
6960
|
-
transform: translateY(
|
|
7013
|
+
transform: translateY(2rem);
|
|
6961
7014
|
}
|
|
6962
7015
|
|
|
6963
7016
|
to {
|
|
@@ -6969,7 +7022,7 @@
|
|
|
6969
7022
|
@keyframes velin-slide-down {
|
|
6970
7023
|
from {
|
|
6971
7024
|
opacity: 0;
|
|
6972
|
-
transform: translateY(-
|
|
7025
|
+
transform: translateY(-2rem);
|
|
6973
7026
|
}
|
|
6974
7027
|
|
|
6975
7028
|
to {
|
|
@@ -6981,7 +7034,7 @@
|
|
|
6981
7034
|
@keyframes velin-slide-left {
|
|
6982
7035
|
from {
|
|
6983
7036
|
opacity: 0;
|
|
6984
|
-
transform: translateX(
|
|
7037
|
+
transform: translateX(2rem);
|
|
6985
7038
|
}
|
|
6986
7039
|
|
|
6987
7040
|
to {
|
|
@@ -6993,7 +7046,7 @@
|
|
|
6993
7046
|
@keyframes velin-slide-right {
|
|
6994
7047
|
from {
|
|
6995
7048
|
opacity: 0;
|
|
6996
|
-
transform: translateX(-
|
|
7049
|
+
transform: translateX(-2rem);
|
|
6997
7050
|
}
|
|
6998
7051
|
|
|
6999
7052
|
to {
|
|
@@ -7005,7 +7058,7 @@
|
|
|
7005
7058
|
@keyframes velin-scale-in {
|
|
7006
7059
|
from {
|
|
7007
7060
|
opacity: 0;
|
|
7008
|
-
transform: scale(.
|
|
7061
|
+
transform: scale(.92);
|
|
7009
7062
|
}
|
|
7010
7063
|
|
|
7011
7064
|
to {
|
|
@@ -9194,6 +9247,21 @@
|
|
|
9194
9247
|
animation-range: entry entry 60%;
|
|
9195
9248
|
}
|
|
9196
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
|
+
|
|
9197
9265
|
.velin-animate-on-scroll--scale {
|
|
9198
9266
|
animation: linear both velin-scale-in view();
|
|
9199
9267
|
animation-range: entry entry 80%;
|
|
@@ -9281,12 +9349,27 @@
|
|
|
9281
9349
|
transform: translateY(2rem);
|
|
9282
9350
|
}
|
|
9283
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
|
+
|
|
9284
9367
|
.velin-animate-on-scroll--scale:not(.velin-in-view) {
|
|
9285
9368
|
opacity: 0;
|
|
9286
9369
|
transform: scale(.92);
|
|
9287
9370
|
}
|
|
9288
9371
|
|
|
9289
|
-
.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 {
|
|
9290
9373
|
opacity: 1;
|
|
9291
9374
|
transition: opacity var(--velin-duration-normal, .4s) var(--velin-ease-out, ease-out),
|
|
9292
9375
|
transform var(--velin-duration-normal, .4s) var(--velin-ease-out, ease-out);
|
|
@@ -9299,7 +9382,7 @@
|
|
|
9299
9382
|
}
|
|
9300
9383
|
|
|
9301
9384
|
@media (prefers-reduced-motion: reduce) {
|
|
9302
|
-
.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 {
|
|
9303
9386
|
opacity: 1;
|
|
9304
9387
|
animation: none;
|
|
9305
9388
|
transform: none;
|
package/dist/velinstyle.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ declare global {
|
|
|
29
29
|
'velin-drawer': HTMLElement;
|
|
30
30
|
'velin-dropdown': HTMLElement;
|
|
31
31
|
'velin-email': HTMLElement;
|
|
32
|
+
'velin-empty-state': HTMLElement;
|
|
32
33
|
'velin-file-dropzone': HTMLElement;
|
|
33
34
|
'velin-form-summary': HTMLElement;
|
|
34
35
|
'velin-icon': HTMLElement;
|
|
@@ -36,6 +37,8 @@ declare global {
|
|
|
36
37
|
'velin-live-dot': HTMLElement;
|
|
37
38
|
'velin-menubar': HTMLElement;
|
|
38
39
|
'velin-modal': HTMLElement;
|
|
40
|
+
'velin-otp-input': HTMLElement;
|
|
41
|
+
'velin-password-strength': HTMLElement;
|
|
39
42
|
'velin-persist': HTMLElement;
|
|
40
43
|
'velin-popover': HTMLElement;
|
|
41
44
|
'velin-progress-ring': HTMLElement;
|