@tuya-miniapp/ark-extension-virtual-device 1.8.11 → 1.8.12-beta.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/view/app.min.css +71 -8
- package/dist/view/app.min.js +1 -1
- package/dist/view/index.html +5 -2
- package/dist/worker/index.js +545 -199
- package/package.json +1 -1
package/dist/view/app.min.css
CHANGED
|
@@ -546,6 +546,15 @@ template {
|
|
|
546
546
|
.raw-container .schema::-ms-scrollbar {
|
|
547
547
|
display: none;
|
|
548
548
|
}
|
|
549
|
+
[data-theme='light'] .raw-container {
|
|
550
|
+
background-color: #f5f5f5;
|
|
551
|
+
}
|
|
552
|
+
[data-theme='light'] .raw-container .head .title {
|
|
553
|
+
color: #000000d9;
|
|
554
|
+
}
|
|
555
|
+
[data-theme='light'] .raw-container .head .line {
|
|
556
|
+
background: #d9d9d9;
|
|
557
|
+
}
|
|
549
558
|
.raw-row-item {
|
|
550
559
|
display: flex;
|
|
551
560
|
flex-direction: column;
|
|
@@ -577,6 +586,12 @@ template {
|
|
|
577
586
|
white-space: nowrap;
|
|
578
587
|
max-width: 190px;
|
|
579
588
|
}
|
|
589
|
+
[data-theme='light'] .raw-row-item .title {
|
|
590
|
+
color: #00000073;
|
|
591
|
+
}
|
|
592
|
+
[data-theme='light'] .raw-row-item .options {
|
|
593
|
+
color: #000000d9;
|
|
594
|
+
}
|
|
580
595
|
|
|
581
596
|
.dev-item-wrapper {
|
|
582
597
|
width: 331px;
|
|
@@ -808,6 +823,9 @@ template {
|
|
|
808
823
|
/* 文字/标准色 */
|
|
809
824
|
color: #bbbbbb;
|
|
810
825
|
}
|
|
826
|
+
[data-theme='light'] .top-status-bar .home-icon span {
|
|
827
|
+
color: #000000d9;
|
|
828
|
+
}
|
|
811
829
|
.top-status-bar .dev-name {
|
|
812
830
|
flex: 1;
|
|
813
831
|
display: flex;
|
|
@@ -823,6 +841,9 @@ template {
|
|
|
823
841
|
/* 文字/标准色 */
|
|
824
842
|
color: #bbbbbb;
|
|
825
843
|
}
|
|
844
|
+
[data-theme='light'] .top-status-bar .dev-name {
|
|
845
|
+
color: #000000d9;
|
|
846
|
+
}
|
|
826
847
|
.top-status-bar .extensions {
|
|
827
848
|
z-index: 99;
|
|
828
849
|
font-family: PingFang SC;
|
|
@@ -833,6 +854,9 @@ template {
|
|
|
833
854
|
color: #bbbbbb;
|
|
834
855
|
margin-right: 20px;
|
|
835
856
|
}
|
|
857
|
+
[data-theme='light'] .top-status-bar .extensions {
|
|
858
|
+
color: #000000d9;
|
|
859
|
+
}
|
|
836
860
|
.top-status-bar .theme-toggle {
|
|
837
861
|
z-index: 99;
|
|
838
862
|
display: flex;
|
|
@@ -875,6 +899,9 @@ template {
|
|
|
875
899
|
flex-direction: row;
|
|
876
900
|
align-items: center;
|
|
877
901
|
}
|
|
902
|
+
[data-theme='light'] .top-status-bar .version-tag {
|
|
903
|
+
color: #000000d9;
|
|
904
|
+
}
|
|
878
905
|
|
|
879
906
|
.top-bar-wrapper {
|
|
880
907
|
width: 100vw;
|
|
@@ -911,6 +938,11 @@ template {
|
|
|
911
938
|
justify-content: space-around;
|
|
912
939
|
align-items: center;
|
|
913
940
|
}
|
|
941
|
+
.top-bar-wrapper .home-wrapper .select-wrapper .select-trigger-anchor {
|
|
942
|
+
display: flex;
|
|
943
|
+
align-items: center;
|
|
944
|
+
min-width: 0;
|
|
945
|
+
}
|
|
914
946
|
.top-bar-wrapper .home-wrapper .select-wrapper .select {
|
|
915
947
|
min-width: 150px;
|
|
916
948
|
/* 填充/背景 */
|
|
@@ -1182,14 +1214,6 @@ template {
|
|
|
1182
1214
|
border-color: #515151;
|
|
1183
1215
|
position: relative;
|
|
1184
1216
|
}
|
|
1185
|
-
.extension-container .top-header {
|
|
1186
|
-
position: fixed;
|
|
1187
|
-
width: 100vw;
|
|
1188
|
-
height: 154px;
|
|
1189
|
-
z-index: 0;
|
|
1190
|
-
top: 0;
|
|
1191
|
-
left: 0;
|
|
1192
|
-
}
|
|
1193
1217
|
.extension-container .content {
|
|
1194
1218
|
margin: 16px;
|
|
1195
1219
|
z-index: 100;
|
|
@@ -1202,6 +1226,10 @@ template {
|
|
|
1202
1226
|
align-items: center;
|
|
1203
1227
|
justify-content: center;
|
|
1204
1228
|
}
|
|
1229
|
+
.extension-container .head h1 {
|
|
1230
|
+
/* 文字/标准 */
|
|
1231
|
+
color: #BBBBBB;
|
|
1232
|
+
}
|
|
1205
1233
|
.extension-container .list {
|
|
1206
1234
|
display: grid;
|
|
1207
1235
|
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
|
|
@@ -1219,6 +1247,13 @@ template {
|
|
|
1219
1247
|
align-items: center;
|
|
1220
1248
|
justify-content: center;
|
|
1221
1249
|
}
|
|
1250
|
+
[data-theme='light'] .extension-container {
|
|
1251
|
+
background: #ffffff;
|
|
1252
|
+
border-color: #d9d9d9;
|
|
1253
|
+
}
|
|
1254
|
+
[data-theme='light'] .extension-container .head h1 {
|
|
1255
|
+
color: #000000d9;
|
|
1256
|
+
}
|
|
1222
1257
|
.debug {
|
|
1223
1258
|
position: absolute;
|
|
1224
1259
|
top: 50px;
|
|
@@ -1329,4 +1364,32 @@ template {
|
|
|
1329
1364
|
/* 文字/标准 */
|
|
1330
1365
|
color: #BBBBBB;
|
|
1331
1366
|
}
|
|
1367
|
+
[data-theme='light'] .ext-item {
|
|
1368
|
+
background: #ffffff;
|
|
1369
|
+
box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.15), 0px 0px 2px 0px rgba(0, 0, 0, 0.08);
|
|
1370
|
+
}
|
|
1371
|
+
[data-theme='light'] .ext-item .info .info-item {
|
|
1372
|
+
color: #00000073;
|
|
1373
|
+
}
|
|
1374
|
+
[data-theme='light'] .ext-item .info .info-item .title {
|
|
1375
|
+
color: #000000d9;
|
|
1376
|
+
}
|
|
1377
|
+
[data-theme='light'] .ext-item .info .info-item .version {
|
|
1378
|
+
background: #f6ffed;
|
|
1379
|
+
color: #389e0d;
|
|
1380
|
+
border-color: #b7eb8f;
|
|
1381
|
+
}
|
|
1382
|
+
[data-theme='light'] .ext-item .info .info-item .installed {
|
|
1383
|
+
background: #fffbe6;
|
|
1384
|
+
color: #d48806;
|
|
1385
|
+
border-color: #ffe58f;
|
|
1386
|
+
}
|
|
1387
|
+
[data-theme='light'] .ext-item .info .install-container .uninstall {
|
|
1388
|
+
background: #ffffff;
|
|
1389
|
+
border: 1px solid #d9d9d9;
|
|
1390
|
+
color: #000000d9;
|
|
1391
|
+
}
|
|
1392
|
+
[data-theme='light'] .ext-item .info .author .owner {
|
|
1393
|
+
color: #306FFF;
|
|
1394
|
+
}
|
|
1332
1395
|
|