@marimo-team/islands 0.20.3-dev76 → 0.20.3-dev78
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 +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/editor/actions/__tests__/pdf-export.test.ts +42 -0
- package/src/components/editor/actions/pdf-export.ts +26 -0
- package/src/components/editor/actions/useNotebookActions.tsx +86 -44
- package/src/components/editor/controls/notebook-menu-dropdown.tsx +32 -29
- package/src/core/network/__tests__/requests-network.test.ts +21 -0
- package/src/utils/__tests__/download.test.tsx +39 -0
- package/src/utils/download.ts +21 -1
package/dist/main.js
CHANGED
|
@@ -70347,7 +70347,7 @@ Image URL: ${r.imageUrl}`)), contextToXml({
|
|
|
70347
70347
|
return Logger.warn("Failed to get version from mount config"), null;
|
|
70348
70348
|
}
|
|
70349
70349
|
}
|
|
70350
|
-
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.20.3-
|
|
70350
|
+
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.20.3-dev78"), showCodeInRunModeAtom = atom(true);
|
|
70351
70351
|
atom(null);
|
|
70352
70352
|
var import_compiler_runtime$88 = require_compiler_runtime();
|
|
70353
70353
|
function useKeydownOnElement(e, r) {
|