@marimo-team/islands 0.20.3-dev94 → 0.20.3-dev97
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 +2 -2
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/chat/acp/agent-panel.tsx +29 -8
- package/src/components/databases/icons/google-drive.svg +8 -0
- package/src/components/datasources/datasources.tsx +5 -5
- package/src/components/editor/actions/useNotebookActions.tsx +15 -2
- package/src/components/editor/connections/add-connection-dialog.tsx +83 -0
- package/src/components/editor/connections/components.tsx +177 -0
- package/src/components/editor/{database → connections/database}/__tests__/as-code.test.ts +1 -1
- package/src/components/editor/connections/database/add-database-form.tsx +303 -0
- package/src/components/editor/{database → connections/database}/as-code.ts +1 -1
- package/src/components/editor/connections/storage/__tests__/__snapshots__/as-code.test.ts.snap +100 -0
- package/src/components/editor/connections/storage/__tests__/as-code.test.ts +166 -0
- package/src/components/editor/connections/storage/add-storage-form.tsx +135 -0
- package/src/components/editor/connections/storage/as-code.ts +188 -0
- package/src/components/editor/connections/storage/schemas.ts +141 -0
- package/src/components/storage/components.tsx +9 -3
- package/src/components/storage/storage-inspector.tsx +20 -1
- package/src/core/codemirror/__tests__/format.test.ts +9 -1
- package/src/core/saving/file-state.ts +7 -0
- package/src/core/storage/types.ts +1 -0
- package/src/mount.tsx +6 -1
- package/src/components/editor/database/add-database-form.tsx +0 -420
- /package/src/components/editor/{database → connections}/__tests__/secrets.test.ts +0 -0
- /package/src/components/editor/{database → connections/database}/__tests__/__snapshots__/as-code.test.ts.snap +0 -0
- /package/src/components/editor/{database → connections/database}/schemas.ts +0 -0
- /package/src/components/editor/{database → connections}/form-renderers.tsx +0 -0
- /package/src/components/editor/{database → connections}/secrets.ts +0 -0
package/dist/main.js
CHANGED
|
@@ -11720,7 +11720,7 @@ ${d.join("\n")}`;
|
|
|
11720
11720
|
return r.length === 0 ? null : r;
|
|
11721
11721
|
}
|
|
11722
11722
|
const filenameAtom = atom(getFilenameFromDOM());
|
|
11723
|
-
atom(void 0);
|
|
11723
|
+
atom(null), atom(void 0);
|
|
11724
11724
|
var InMemoryStorage = class {
|
|
11725
11725
|
constructor() {
|
|
11726
11726
|
__publicField(this, "store", /* @__PURE__ */ new Map());
|
|
@@ -70358,7 +70358,7 @@ Image URL: ${r.imageUrl}`)), contextToXml({
|
|
|
70358
70358
|
return Logger.warn("Failed to get version from mount config"), null;
|
|
70359
70359
|
}
|
|
70360
70360
|
}
|
|
70361
|
-
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.20.3-
|
|
70361
|
+
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.20.3-dev97"), showCodeInRunModeAtom = atom(true);
|
|
70362
70362
|
atom(null);
|
|
70363
70363
|
var import_compiler_runtime$88 = require_compiler_runtime();
|
|
70364
70364
|
function useKeydownOnElement(e, r) {
|