@illuma-ai/code-sandbox 1.2.0 → 1.2.1
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/hooks/useRuntime.d.ts +2 -2
- package/dist/index.cjs +79 -83
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -2
- package/dist/index.js +6144 -6412
- package/dist/index.js.map +1 -1
- package/dist/services/runtime.d.ts +1 -1
- package/dist/types.d.ts +3 -32
- package/package.json +1 -1
- package/src/hooks/useRuntime.ts +3 -3
- package/src/index.ts +0 -5
- package/src/services/runtime.ts +1 -1
- package/src/types.ts +3 -40
- package/dist/services/git.d.ts +0 -57
- package/src/services/git.ts +0 -415
|
@@ -18,8 +18,8 @@ import type { CodeSandboxProps, FileChangeStatus, FileMap, RuntimeState, Sandbox
|
|
|
18
18
|
/**
|
|
19
19
|
* Hook that manages the full Nodepod runtime lifecycle.
|
|
20
20
|
*
|
|
21
|
-
* The sandbox is a pure renderer —
|
|
22
|
-
* imperative handle. No
|
|
21
|
+
* The sandbox is a pure renderer — it receives files via props or the
|
|
22
|
+
* imperative handle. No polling, no storage backends.
|
|
23
23
|
*
|
|
24
24
|
* @param props - CodeSandbox component props
|
|
25
25
|
* @returns Reactive runtime state + control functions + imperative methods
|