vzcode 0.77.0 → 0.78.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-DVG2p8p3.js"></script>
24
- <link rel="stylesheet" crossorigin href="/assets/index-B1DSqTuG.css">
23
+ <script type="module" crossorigin src="/assets/index-Cv26Z85N.js"></script>
24
+ <link rel="stylesheet" crossorigin href="/assets/index-WtPPom-d.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.77.0",
3
+ "version": "0.78.0",
4
4
  "description": "Multiplayer code editor system",
5
5
  "main": "src/index.ts",
6
6
  "type": "module",
@@ -95,12 +95,12 @@
95
95
  "d3-array": "^3.2.4",
96
96
  "diff-match-patch": "^1.0.5",
97
97
  "dotenv": "^16.4.5",
98
- "express": "^4.18.3",
98
+ "express": "^4.19.0",
99
99
  "ignore": "^5.3.1",
100
100
  "json0-ot-diff": "^1.1.2",
101
101
  "ngrok": "^4.3.3",
102
102
  "open": "^10.1.0",
103
- "openai": "^4.29.1",
103
+ "openai": "^4.29.2",
104
104
  "prettier-plugin-svelte": "^3.2.2",
105
105
  "react": "^18.2.0",
106
106
  "react-bootstrap": "^2.10.2",
@@ -119,7 +119,7 @@
119
119
  "prettier": "^3.2.5",
120
120
  "sass": "^1.72.0",
121
121
  "typescript": "^5.4.2",
122
- "vite": "^5.1.6",
122
+ "vite": "^5.2.2",
123
123
  "vitest": "^1.4.0"
124
124
  }
125
125
  }
@@ -121,7 +121,6 @@ export const VZCodeProvider = ({
121
121
  initialUsername,
122
122
  children,
123
123
  codeError = null,
124
- enableManualPretter = true,
125
124
  connected,
126
125
  }: {
127
126
  content: VZCodeContent;
@@ -134,7 +133,6 @@ export const VZCodeProvider = ({
134
133
  initialUsername: Username;
135
134
  children: React.ReactNode;
136
135
  codeError?: string | null;
137
- enableManualPretter?: boolean;
138
136
  connected: boolean;
139
137
  }) => {
140
138
  // Auto-run Pretter after local changes.
@@ -150,7 +148,6 @@ export const VZCodeProvider = ({
150
148
  shareDBDoc,
151
149
  submitOperation,
152
150
  prettierWorker,
153
- enableManualPretter,
154
151
  });
155
152
 
156
153
  const runCodeRef = useRunCode(submitOperation);
@@ -157,6 +157,7 @@
157
157
  }
158
158
 
159
159
  .drop-zone {
160
+ height: 100%;
160
161
  border: 3px solid #0a1731;
161
162
  width: auto;
162
163
  color: #bdc7dc;