@marimo-team/islands 0.20.3-dev92 → 0.20.3-dev96
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 +8 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- 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/cells/__tests__/session.test.ts +1 -1
- package/src/core/codemirror/__tests__/format.test.ts +9 -1
- package/src/core/storage/types.ts +1 -0
- package/src/plugins/core/__test__/sanitize.test.ts +47 -2
- package/src/plugins/core/sanitize.ts +4 -0
- 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
|
@@ -32103,6 +32103,13 @@ ${c.sqlString}
|
|
|
32103
32103
|
svg: true,
|
|
32104
32104
|
mathMl: true
|
|
32105
32105
|
},
|
|
32106
|
+
ADD_TAGS: [
|
|
32107
|
+
"use"
|
|
32108
|
+
],
|
|
32109
|
+
ADD_ATTR: [
|
|
32110
|
+
"href",
|
|
32111
|
+
"xlink:href"
|
|
32112
|
+
],
|
|
32106
32113
|
FORCE_BODY: true,
|
|
32107
32114
|
CUSTOM_ELEMENT_HANDLING: {
|
|
32108
32115
|
tagNameCheck: /^(marimo-[A-Za-z][\w-]*|iconify-icon)$/,
|
|
@@ -70351,7 +70358,7 @@ Image URL: ${r.imageUrl}`)), contextToXml({
|
|
|
70351
70358
|
return Logger.warn("Failed to get version from mount config"), null;
|
|
70352
70359
|
}
|
|
70353
70360
|
}
|
|
70354
|
-
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.20.3-
|
|
70361
|
+
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.20.3-dev96"), showCodeInRunModeAtom = atom(true);
|
|
70355
70362
|
atom(null);
|
|
70356
70363
|
var import_compiler_runtime$88 = require_compiler_runtime();
|
|
70357
70364
|
function useKeydownOnElement(e, r) {
|