@moto-nrw/design-system 0.3.0 → 0.3.1

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 (2) hide show
  1. package/dist/tailwind.css +31 -1
  2. package/package.json +1 -1
package/dist/tailwind.css CHANGED
@@ -411,38 +411,68 @@
411
411
  0% {
412
412
  background-position: 200% 0;
413
413
  }
414
+ 100% {
415
+ background-position: -200% 0;
416
+ }
417
+ }
414
418
 
415
419
  @keyframes ds-spin {
416
420
  to {
417
421
  transform: rotate(360deg);
418
422
  }
423
+ }
419
424
 
420
425
  @keyframes modalEnter {
421
426
  from {
422
427
  opacity: 0;
423
428
  transform: scale(0.95) translateY(8px);
424
429
  }
430
+ to {
431
+ opacity: 1;
432
+ transform: scale(1) translateY(0);
433
+ }
434
+ }
425
435
 
426
436
  @keyframes modalExit {
427
437
  from {
428
438
  opacity: 1;
429
439
  transform: scale(1) translateY(0);
430
440
  }
441
+ to {
442
+ opacity: 0;
443
+ transform: scale(0.95) translateY(8px);
444
+ }
445
+ }
431
446
 
432
447
  @keyframes contentReveal {
433
448
  from {
434
449
  opacity: 0;
435
450
  transform: translateY(4px);
436
451
  }
452
+ to {
453
+ opacity: 1;
454
+ transform: translateY(0);
455
+ }
456
+ }
437
457
 
438
458
  @keyframes toastSlideIn {
439
459
  from {
440
460
  opacity: 0;
441
461
  transform: translateX(100%);
442
462
  }
463
+ to {
464
+ opacity: 1;
465
+ transform: translateX(0);
466
+ }
467
+ }
443
468
 
444
469
  @keyframes toastSlideOut {
445
470
  from {
446
471
  opacity: 1;
447
472
  transform: translateX(0);
448
- }
473
+ }
474
+ to {
475
+ opacity: 0;
476
+ transform: translateX(100%);
477
+ }
478
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moto-nrw/design-system",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Ganztagshelden Design System - shared components and design tokens",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.js",