@marimo-team/islands 0.23.4-dev7 → 0.23.4-dev9

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/main.js CHANGED
@@ -45232,7 +45232,7 @@ ${c}
45232
45232
  return Logger.warn("Failed to get version from mount config"), null;
45233
45233
  }
45234
45234
  }
45235
- const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.23.4-dev7"), showCodeInRunModeAtom = atom(true);
45235
+ const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.23.4-dev9"), showCodeInRunModeAtom = atom(true);
45236
45236
  atom(null);
45237
45237
  var VIRTUAL_FILE_REGEX = /\/@file\/([^\s"&'/]+)\.([\dA-Za-z]+)/g, VirtualFileTracker = class e {
45238
45238
  constructor() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marimo-team/islands",
3
- "version": "0.23.4-dev7",
3
+ "version": "0.23.4-dev9",
4
4
  "main": "dist/main.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",
@@ -37,7 +37,7 @@ function getPromptCommand(
37
37
  case "codex":
38
38
  return `codex "$(${base} --codex)"`;
39
39
  case "opencode":
40
- return `opencode "$(${base} --opencode)"`;
40
+ return `opencode --prompt "$(${base} --opencode)"`;
41
41
  default:
42
42
  assertNever(agent);
43
43
  }
@@ -348,6 +348,7 @@ export function useNotebookActions() {
348
348
  {
349
349
  icon: <SparklesIcon size={14} strokeWidth={1.5} />,
350
350
  label: "Pair with an agent",
351
+ hidden: isWasm(),
351
352
  handle: async () => {
352
353
  openModal(<PairWithAgentModal onClose={closeModal} />);
353
354
  },