@marimo-team/islands 0.19.3-dev8 → 0.19.4-dev0
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/{Combination-33P1MEPK.js → Combination-BOmAhdTT.js} +1 -1
- package/dist/{ConnectedDataExplorerComponent-BIfUtj_S.js → ConnectedDataExplorerComponent-D5KcOOzu.js} +7 -7
- package/dist/{any-language-editor-Bda9cY1_.js → any-language-editor-vYraVrwE.js} +3 -3
- package/dist/assets/__vite-browser-external-CgHmDpAZ.js +1 -0
- package/dist/assets/{worker-njnjDMwL.js → worker-BR7KVExK.js} +2 -2
- package/dist/{button-BlF-78eJ.js → button-D6ZIdUA3.js} +1 -1
- package/dist/{check-DDykH_Yi.js → check-S8ldILuD.js} +1 -1
- package/dist/{copy-B5nooU3m.js → copy-ACOJ1BXr.js} +1 -1
- package/dist/{error-banner-UH0Nxilf.js → error-banner-BhqH4mGj.js} +2 -2
- package/dist/{esm-D197NGQX.js → esm-DOBJQbuy.js} +4 -4
- package/dist/{glide-data-editor-Bv8bVIJ9.js → glide-data-editor-DsVDCmV2.js} +6 -6
- package/dist/{label-oKuiQuiM.js → label-BaX2bLJa.js} +4 -4
- package/dist/main.js +453 -459
- package/dist/{mermaid-JA6veDHv.js → mermaid-DZjjc-kI.js} +2 -2
- package/dist/{slides-component-CJJp5XN4.js → slides-component-BHWhzwDN.js} +1 -1
- package/dist/{spec-hsYzGr6F.js → spec-B1PGDiGh.js} +4 -4
- package/dist/style.css +1 -1
- package/dist/{types-DEmfj_i8.js → types-CbQF8CBX.js} +294 -255
- package/dist/{useAsyncData-BGpae_uu.js → useAsyncData-TLXJC7yx.js} +1 -1
- package/dist/{useDeepCompareMemoize-1wVjsLov.js → useDeepCompareMemoize-DVnEG7jx.js} +3 -3
- package/dist/{useTheme-DdLjooMf.js → useTheme-BllQjRdW.js} +1 -0
- package/dist/{vega-component-BGTsperM.js → vega-component-B2QrGnW8.js} +6 -6
- package/package.json +5 -5
- package/src/__mocks__/requests.ts +1 -0
- package/src/__tests__/mount.test.ts +128 -0
- package/src/components/app-config/__tests__/get-dirty-values.test.ts +1 -1
- package/src/components/app-config/ai-config.tsx +328 -28
- package/src/components/app-config/user-config-form.tsx +10 -3
- package/src/components/chat/acp/agent-panel.tsx +56 -43
- package/src/components/chat/chat-utils.ts +0 -19
- package/src/components/data-table/column-header.tsx +1 -1
- package/src/components/editor/KernelStartupErrorModal.tsx +2 -2
- package/src/components/editor/actions/name-cell-input.tsx +10 -4
- package/src/components/editor/ai/completion-handlers.tsx +1 -1
- package/src/components/editor/alerts/connecting-alert.tsx +33 -6
- package/src/components/editor/chrome/types.ts +2 -4
- package/src/components/editor/chrome/wrapper/app-chrome.tsx +55 -58
- package/src/components/editor/chrome/wrapper/footer-items/runtime-settings.tsx +150 -96
- package/src/components/editor/renderers/vertical-layout/__tests__/useFocusFirstEditor.test.ts +27 -0
- package/src/components/editor/renderers/vertical-layout/useFocusFirstEditor.ts +6 -0
- package/src/components/utils/lazy-mount.tsx +29 -8
- package/src/core/ai/ids/ids.ts +12 -4
- package/src/core/cells/cells.ts +2 -0
- package/src/core/cells/scrollCellIntoView.ts +3 -2
- package/src/core/codemirror/cm.ts +2 -0
- package/src/core/codemirror/lsp/__tests__/notebook-lsp.test.ts +123 -0
- package/src/core/codemirror/lsp/notebook-lsp.ts +44 -4
- package/src/core/codemirror/misc/__tests__/string-braces.test.ts +200 -0
- package/src/core/codemirror/misc/string-braces.ts +37 -0
- package/src/core/config/__tests__/config-schema.test.ts +36 -0
- package/src/core/config/config-schema.ts +1 -0
- package/src/core/export/__tests__/hooks.test.ts +504 -0
- package/src/core/export/hooks.ts +93 -4
- package/src/core/islands/bridge.ts +1 -0
- package/src/core/kernel/__tests__/handlers.test.ts +2 -2
- package/src/core/kernel/state.ts +1 -0
- package/src/core/network/__tests__/requests-lazy.test.ts +1 -1
- package/src/core/network/__tests__/requests-network.test.ts +0 -18
- package/src/core/network/requests-lazy.ts +3 -2
- package/src/core/network/requests-network.ts +10 -7
- package/src/core/network/requests-static.ts +1 -0
- package/src/core/network/requests-toasting.tsx +1 -0
- package/src/core/network/types.ts +2 -0
- package/src/core/wasm/bridge.ts +1 -0
- package/src/css/globals.css +2 -0
- package/src/hooks/__tests__/useInterval.test.tsx +104 -0
- package/src/hooks/useInterval.ts +32 -6
- package/src/mount.tsx +6 -0
- package/src/plugins/impl/chat/ChatPlugin.tsx +2 -4
- package/src/plugins/impl/chat/chat-ui.tsx +62 -191
- package/src/plugins/impl/chat/types.ts +5 -12
- package/src/plugins/impl/data-frames/DataFramePlugin.tsx +3 -1
- package/src/utils/events.ts +1 -0
- package/dist/assets/__vite-browser-external-CpAWmIPM.js +0 -1
|
@@ -4,8 +4,8 @@ import { t as require_compiler_runtime } from "./compiler-runtime-DHFVbq0b.js";
|
|
|
4
4
|
import { s as Logger } from "./hotkeys-C4e3s3sJ.js";
|
|
5
5
|
import { t as require_jsx_runtime } from "./jsx-runtime-CTBg5pdT.js";
|
|
6
6
|
import "./purify.es-Brw-U87Q.js";
|
|
7
|
-
import { n as useTheme } from "./useTheme-
|
|
8
|
-
import { t as useAsyncData } from "./useAsyncData-
|
|
7
|
+
import { n as useTheme } from "./useTheme-BllQjRdW.js";
|
|
8
|
+
import { t as useAsyncData } from "./useAsyncData-TLXJC7yx.js";
|
|
9
9
|
import "./marked.esm-BiQFxVJV.js";
|
|
10
10
|
import "./chunk-S3R3BYOJ-BhcrQySJ.js";
|
|
11
11
|
import "./src-CHUphWwL.js";
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { s as __toESM } from "./chunk-BNovOVIE.js";
|
|
2
2
|
import { t as require_react } from "./react-DdA8EBol.js";
|
|
3
3
|
import { t as require_compiler_runtime } from "./compiler-runtime-DHFVbq0b.js";
|
|
4
|
-
import { o as useEventListener, t as Button, u as cn } from "./button-
|
|
4
|
+
import { o as useEventListener, t as Button, u as cn } from "./button-D6ZIdUA3.js";
|
|
5
5
|
import { t as require_jsx_runtime } from "./jsx-runtime-CTBg5pdT.js";
|
|
6
6
|
import { t as useIframeCapabilities } from "./useIframeCapabilities-BsIPDupA.js";
|
|
7
7
|
var import_compiler_runtime = require_compiler_runtime(), import_react = /* @__PURE__ */ __toESM(require_react(), 1);
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { s as __toESM } from "./chunk-BNovOVIE.js";
|
|
2
2
|
import { t as require_react } from "./react-DdA8EBol.js";
|
|
3
3
|
import { t as require_compiler_runtime } from "./compiler-runtime-DHFVbq0b.js";
|
|
4
|
-
import { N as createLucideIcon } from "./Combination-
|
|
5
|
-
import { A as logNever, P as $18f2051aff69b9bf$export$43bb16f9c6d9e3f7, j as upperFirst_default } from "./label-
|
|
6
|
-
import { a as cva, u as cn } from "./button-
|
|
4
|
+
import { N as createLucideIcon } from "./Combination-BOmAhdTT.js";
|
|
5
|
+
import { A as logNever, P as $18f2051aff69b9bf$export$43bb16f9c6d9e3f7, j as upperFirst_default } from "./label-BaX2bLJa.js";
|
|
6
|
+
import { a as cva, u as cn } from "./button-D6ZIdUA3.js";
|
|
7
7
|
import { s as Logger } from "./hotkeys-C4e3s3sJ.js";
|
|
8
8
|
import { t as require_jsx_runtime } from "./jsx-runtime-CTBg5pdT.js";
|
|
9
|
-
import { x as atom, y as useSetAtom } from "./useTheme-
|
|
9
|
+
import { x as atom, y as useSetAtom } from "./useTheme-BllQjRdW.js";
|
|
10
10
|
import { t as toString_default } from "./toString-C4TLO6FA.js";
|
|
11
11
|
import { t as _arrayReduce_default } from "./_arrayReduce-BoSa0zEn.js";
|
|
12
12
|
var AlignCenterVertical = createLucideIcon("align-center-vertical", [
|