create-interview-cockpit 0.9.0 → 0.11.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/package.json +1 -1
- package/template/client/src/App.tsx +1 -0
- package/template/client/src/components/CodeContextPanel.tsx +853 -850
- package/template/client/src/components/CodeRunnerModal.tsx +2273 -7
- package/template/client/src/reactLab.ts +418 -49
- package/template/client/tsconfig.tsbuildinfo +1 -30
- package/template/cockpit.json +1 -1
- package/template/server/src/index.ts +4 -0
package/package.json
CHANGED
|
@@ -120,6 +120,7 @@ export default function App() {
|
|
|
120
120
|
</div>
|
|
121
121
|
{showCodePanel && (
|
|
122
122
|
<div
|
|
123
|
+
className="min-h-0 flex overflow-hidden"
|
|
123
124
|
onWheel={(e) => {
|
|
124
125
|
// Walk up from the event target to check if any ancestor
|
|
125
126
|
// inside the code panel is itself scrollable — if so, let
|