@midscene/visualizer 0.6.1 → 0.6.2
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/dist/es/component/player.js +26 -23
- package/dist/es/component/replay-scripts.js +4 -4
- package/dist/es/component/store.js +64 -22
- package/dist/es/index.css +20 -0
- package/dist/es/index.js +54 -40
- package/dist/index.css +20 -0
- package/dist/index.js +1 -1
- package/dist/lib/component/player.js +25 -19
- package/dist/lib/component/replay-scripts.js +4 -4
- package/dist/lib/component/store.js +64 -22
- package/dist/lib/index.css +20 -0
- package/dist/lib/index.js +49 -38
- package/dist/report/demo-mobile.html +21 -1
- package/dist/report/demo.html +21 -1
- package/dist/report/empty-error.html +21 -1
- package/dist/report/index.css +20 -0
- package/dist/report/index.html +21 -1
- package/dist/report/index.js +1 -1
- package/dist/report/multi.html +21 -1
- package/dist/types/component/store.d.ts +5 -2
- package/package.json +4 -2
package/dist/report/index.css
CHANGED
|
@@ -79,6 +79,17 @@ footer.mt-8 {
|
|
|
79
79
|
display: flex;
|
|
80
80
|
flex-direction: row;
|
|
81
81
|
background: #F8F8F8;
|
|
82
|
+
justify-content: space-between;
|
|
83
|
+
}
|
|
84
|
+
.page-nav .page-nav-left {
|
|
85
|
+
display: flex;
|
|
86
|
+
flex-direction: row;
|
|
87
|
+
}
|
|
88
|
+
.page-nav .page-nav-toolbar {
|
|
89
|
+
margin-left: 20px;
|
|
90
|
+
}
|
|
91
|
+
.page-nav .page-nav-toolbar .ant-btn {
|
|
92
|
+
background: #E9E9E9;
|
|
82
93
|
}
|
|
83
94
|
.page-nav .logo img {
|
|
84
95
|
height: 20px;
|
|
@@ -104,6 +115,15 @@ footer.mt-8 {
|
|
|
104
115
|
height: 100%;
|
|
105
116
|
box-sizing: border-box;
|
|
106
117
|
}
|
|
118
|
+
.main-right .replay-all-mode-wrapper {
|
|
119
|
+
height: 100%;
|
|
120
|
+
display: flex;
|
|
121
|
+
flex-direction: column;
|
|
122
|
+
justify-content: center;
|
|
123
|
+
padding: 22px;
|
|
124
|
+
box-sizing: border-box;
|
|
125
|
+
margin: 0 auto;
|
|
126
|
+
}
|
|
107
127
|
.main-right .main-content {
|
|
108
128
|
display: flex;
|
|
109
129
|
flex-direction: row;
|