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 +1 -1
- package/src/Dashboard.css +1 -2
- package/src/Dashboard.js +6 -1
package/package.json
CHANGED
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
|
-
|
|
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', {
|
|
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 }) {
|