9remote 2.0.31 → 2.0.55
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/assets/tray.ps1 +129 -0
- package/dist/cli.cjs +154 -60
- package/dist/install.cjs +1 -1
- package/dist/ptyDaemon.cjs +5 -5
- package/dist/server.cjs +64 -62
- package/dist/ui/agents/claude.svg +1 -0
- package/dist/ui/agents/codex.svg +1 -0
- package/dist/ui/agents/gemini.svg +1 -0
- package/dist/ui/agents/opencode.svg +1 -0
- package/dist/ui/assets/{index-CzK2QQU8.js → index-2FuQGIl3.js} +3449 -2426
- package/dist/ui/assets/{index-Casn8c07.css → index-DbeWsL_A.css} +50 -0
- package/dist/ui/index.html +2 -2
- package/package.json +1 -1
|
@@ -922,6 +922,9 @@ button {
|
|
|
922
922
|
top: 0px;
|
|
923
923
|
bottom: 0px;
|
|
924
924
|
}
|
|
925
|
+
.bottom-0{
|
|
926
|
+
bottom: 0px;
|
|
927
|
+
}
|
|
925
928
|
.bottom-5{
|
|
926
929
|
bottom: 1.25rem;
|
|
927
930
|
}
|
|
@@ -983,6 +986,9 @@ button {
|
|
|
983
986
|
.mb-1{
|
|
984
987
|
margin-bottom: 0.25rem;
|
|
985
988
|
}
|
|
989
|
+
.mb-1\.5{
|
|
990
|
+
margin-bottom: 0.375rem;
|
|
991
|
+
}
|
|
986
992
|
.mb-2{
|
|
987
993
|
margin-bottom: 0.5rem;
|
|
988
994
|
}
|
|
@@ -1022,6 +1028,9 @@ button {
|
|
|
1022
1028
|
.hidden{
|
|
1023
1029
|
display: none;
|
|
1024
1030
|
}
|
|
1031
|
+
.h-0\.5{
|
|
1032
|
+
height: 0.125rem;
|
|
1033
|
+
}
|
|
1025
1034
|
.h-1{
|
|
1026
1035
|
height: 0.25rem;
|
|
1027
1036
|
}
|
|
@@ -1034,6 +1043,9 @@ button {
|
|
|
1034
1043
|
.h-2{
|
|
1035
1044
|
height: 0.5rem;
|
|
1036
1045
|
}
|
|
1046
|
+
.h-4{
|
|
1047
|
+
height: 1rem;
|
|
1048
|
+
}
|
|
1037
1049
|
.h-44{
|
|
1038
1050
|
height: 11rem;
|
|
1039
1051
|
}
|
|
@@ -1082,6 +1094,9 @@ button {
|
|
|
1082
1094
|
.w-2{
|
|
1083
1095
|
width: 0.5rem;
|
|
1084
1096
|
}
|
|
1097
|
+
.w-4{
|
|
1098
|
+
width: 1rem;
|
|
1099
|
+
}
|
|
1085
1100
|
.w-44{
|
|
1086
1101
|
width: 11rem;
|
|
1087
1102
|
}
|
|
@@ -1149,6 +1164,9 @@ button {
|
|
|
1149
1164
|
.flex-1{
|
|
1150
1165
|
flex: 1 1 0%;
|
|
1151
1166
|
}
|
|
1167
|
+
.flex-shrink{
|
|
1168
|
+
flex-shrink: 1;
|
|
1169
|
+
}
|
|
1152
1170
|
.flex-shrink-0{
|
|
1153
1171
|
flex-shrink: 0;
|
|
1154
1172
|
}
|
|
@@ -1174,6 +1192,14 @@ button {
|
|
|
1174
1192
|
.transform{
|
|
1175
1193
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1176
1194
|
}
|
|
1195
|
+
@keyframes spin{
|
|
1196
|
+
to{
|
|
1197
|
+
transform: rotate(360deg);
|
|
1198
|
+
}
|
|
1199
|
+
}
|
|
1200
|
+
.animate-spin{
|
|
1201
|
+
animation: spin 1s linear infinite;
|
|
1202
|
+
}
|
|
1177
1203
|
.cursor-pointer{
|
|
1178
1204
|
cursor: pointer;
|
|
1179
1205
|
}
|
|
@@ -1230,6 +1256,9 @@ button {
|
|
|
1230
1256
|
.gap-2{
|
|
1231
1257
|
gap: 0.5rem;
|
|
1232
1258
|
}
|
|
1259
|
+
.gap-2\.5{
|
|
1260
|
+
gap: 0.625rem;
|
|
1261
|
+
}
|
|
1233
1262
|
.gap-3{
|
|
1234
1263
|
gap: 0.75rem;
|
|
1235
1264
|
}
|
|
@@ -1450,9 +1479,15 @@ button {
|
|
|
1450
1479
|
.text-\[11px\]{
|
|
1451
1480
|
font-size: 11px;
|
|
1452
1481
|
}
|
|
1482
|
+
.text-\[12px\]{
|
|
1483
|
+
font-size: 12px;
|
|
1484
|
+
}
|
|
1453
1485
|
.text-\[13px\]{
|
|
1454
1486
|
font-size: 13px;
|
|
1455
1487
|
}
|
|
1488
|
+
.text-\[16px\]{
|
|
1489
|
+
font-size: 16px;
|
|
1490
|
+
}
|
|
1456
1491
|
.text-\[18px\]{
|
|
1457
1492
|
font-size: 18px;
|
|
1458
1493
|
}
|
|
@@ -1503,6 +1538,9 @@ button {
|
|
|
1503
1538
|
.tracking-tight{
|
|
1504
1539
|
letter-spacing: -0.025em;
|
|
1505
1540
|
}
|
|
1541
|
+
.tracking-wide{
|
|
1542
|
+
letter-spacing: 0.025em;
|
|
1543
|
+
}
|
|
1506
1544
|
.tracking-wider{
|
|
1507
1545
|
letter-spacing: 0.05em;
|
|
1508
1546
|
}
|
|
@@ -1565,12 +1603,18 @@ button {
|
|
|
1565
1603
|
transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
1566
1604
|
transition-duration: 150ms;
|
|
1567
1605
|
}
|
|
1606
|
+
.duration-1000{
|
|
1607
|
+
transition-duration: 1000ms;
|
|
1608
|
+
}
|
|
1568
1609
|
.duration-150{
|
|
1569
1610
|
transition-duration: 150ms;
|
|
1570
1611
|
}
|
|
1571
1612
|
.duration-300{
|
|
1572
1613
|
transition-duration: 300ms;
|
|
1573
1614
|
}
|
|
1615
|
+
.ease-linear{
|
|
1616
|
+
transition-timing-function: linear;
|
|
1617
|
+
}
|
|
1574
1618
|
.ease-out{
|
|
1575
1619
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
1576
1620
|
}
|
|
@@ -1746,6 +1790,12 @@ button {
|
|
|
1746
1790
|
--tw-scale-y: 0.94;
|
|
1747
1791
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
1748
1792
|
}
|
|
1793
|
+
.group:hover .group-hover\:block{
|
|
1794
|
+
display: block;
|
|
1795
|
+
}
|
|
1796
|
+
.group:hover .group-hover\:hidden{
|
|
1797
|
+
display: none;
|
|
1798
|
+
}
|
|
1749
1799
|
@media (min-width: 640px){
|
|
1750
1800
|
.sm\:grid-cols-2{
|
|
1751
1801
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
package/dist/ui/index.html
CHANGED
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
const savedTheme = localStorage.getItem("9remote-theme") || "dark";
|
|
15
15
|
document.documentElement.setAttribute("data-theme", savedTheme);
|
|
16
16
|
</script>
|
|
17
|
-
<script type="module" crossorigin src="/assets/index-
|
|
18
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
17
|
+
<script type="module" crossorigin src="/assets/index-2FuQGIl3.js"></script>
|
|
18
|
+
<link rel="stylesheet" crossorigin href="/assets/index-DbeWsL_A.css">
|
|
19
19
|
</head>
|
|
20
20
|
<body>
|
|
21
21
|
<div id="root"></div>
|