mockaton 10.4.0 → 10.4.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.
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "mockaton",
3
3
  "description": "HTTP Mock Server",
4
4
  "type": "module",
5
- "version": "10.4.0",
5
+ "version": "10.4.1",
6
6
  "main": "index.js",
7
7
  "types": "index.d.ts",
8
8
  "license": "MIT",
package/src/Dashboard.css CHANGED
@@ -642,8 +642,7 @@ table {
642
642
  background: var(--colorAccent);
643
643
  animation-name: _kfProgress;
644
644
  animation-timing-function: linear;
645
- animation-delay: 80ms;
646
- /*animation-duration: It's in JavaScript */
645
+ /* duration in JavaScript */
647
646
  }
648
647
  }
649
648
  @keyframes _kfProgress {
package/src/Dashboard.js CHANGED
@@ -716,7 +716,12 @@ function PayloadViewer() {
716
716
  function PayloadViewerProgressBar() {
717
717
  return (
718
718
  r('div', className(CSS.ProgressBar),
719
- r('div', { style: { animationDuration: state.delay + 'ms' } })))
719
+ r('div', {
720
+ style: {
721
+ animationDelay: 80 + 'ms',
722
+ animationDuration: -80 + state.delay + 'ms'
723
+ }
724
+ })))
720
725
  }
721
726
 
722
727
  function PayloadViewerTitle({ file, statusText }) {