@marimo-team/islands 0.23.14-dev37 → 0.23.14-dev39
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/{code-visibility-DcykAbWl.js → code-visibility-CqDnWUEQ.js} +1 -1
- package/dist/main.js +2469 -1057
- package/dist/{reveal-component-CotAAD_d.js → reveal-component-BtwLhHQU.js} +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/editor/cell/cell-context-menu.tsx +2 -2
- package/src/components/editor/code/__tests__/readonly-python-code.test.tsx +79 -0
- package/src/components/editor/code/readonly-python-code.tsx +35 -30
- package/src/components/editor/renderers/vertical-layout/vertical-layout.tsx +1 -1
- package/src/core/codemirror/go-to-definition/__tests__/utils.test.ts +75 -3
- package/src/core/codemirror/go-to-definition/extension.ts +3 -3
- package/src/core/codemirror/go-to-definition/underline.ts +5 -14
- package/src/core/codemirror/go-to-definition/utils.ts +49 -1
|
@@ -36198,7 +36198,7 @@ ${d}`,
|
|
|
36198
36198
|
return Logger.warn("Failed to get version from mount config"), null;
|
|
36199
36199
|
}
|
|
36200
36200
|
}
|
|
36201
|
-
marimoVersionAtom = atom(getVersionFromMountConfig() || "0.23.14-
|
|
36201
|
+
marimoVersionAtom = atom(getVersionFromMountConfig() || "0.23.14-dev39");
|
|
36202
36202
|
showCodeInRunModeAtom = atom(true);
|
|
36203
36203
|
atom(null);
|
|
36204
36204
|
var import_compiler_runtime = require_compiler_runtime();
|