vzcode 0.74.0 → 0.75.0
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/index.html
CHANGED
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap"
|
|
21
21
|
rel="stylesheet"
|
|
22
22
|
/>
|
|
23
|
-
<script type="module" crossorigin src="/assets/index-
|
|
24
|
-
<link rel="stylesheet" crossorigin href="/assets/index-
|
|
23
|
+
<script type="module" crossorigin src="/assets/index-Cs47XQOn.js"></script>
|
|
24
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BpuOxvvE.css">
|
|
25
25
|
</head>
|
|
26
26
|
<body>
|
|
27
27
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vzcode",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.75.0",
|
|
4
4
|
"description": "Multiplayer code editor system",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"@uiw/codemirror-themes": "^4.21.24",
|
|
91
91
|
"body-parser": "^1.20.2",
|
|
92
92
|
"codemirror": "^6.0.1",
|
|
93
|
-
"codemirror-ot": "^4.
|
|
93
|
+
"codemirror-ot": "^4.4.0",
|
|
94
94
|
"color-hash": "^2.0.2",
|
|
95
95
|
"d3-array": "^3.2.4",
|
|
96
96
|
"diff-match-patch": "^1.0.5",
|
|
@@ -112,14 +112,14 @@
|
|
|
112
112
|
"ws": "^8.16.0"
|
|
113
113
|
},
|
|
114
114
|
"devDependencies": {
|
|
115
|
-
"@types/react": "^18.2.
|
|
115
|
+
"@types/react": "^18.2.65",
|
|
116
116
|
"@types/react-dom": "^18.2.21",
|
|
117
117
|
"@vitejs/plugin-react": "^4.2.1",
|
|
118
118
|
"concurrently": "^8.2.2",
|
|
119
119
|
"prettier": "^3.2.5",
|
|
120
120
|
"sass": "^1.71.1",
|
|
121
121
|
"typescript": "^5.4.2",
|
|
122
|
-
"vite": "^5.1.
|
|
122
|
+
"vite": "^5.1.6",
|
|
123
123
|
"vitest": "^1.3.1"
|
|
124
124
|
}
|
|
125
125
|
}
|
|
@@ -149,7 +149,7 @@ export const Item = ({
|
|
|
149
149
|
>
|
|
150
150
|
<div className="name">
|
|
151
151
|
{isRenaming ? (
|
|
152
|
-
|
|
152
|
+
<>
|
|
153
153
|
<i className="file-icon">
|
|
154
154
|
<FileSVG />
|
|
155
155
|
</i>
|
|
@@ -163,7 +163,7 @@ export const Item = ({
|
|
|
163
163
|
onBlur={onBlur}
|
|
164
164
|
onChange={onChange}
|
|
165
165
|
/>
|
|
166
|
-
|
|
166
|
+
</>
|
|
167
167
|
) : (
|
|
168
168
|
children
|
|
169
169
|
)}
|