@marimo-team/islands 0.19.3-dev7 → 0.19.3

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.
Files changed (79) hide show
  1. package/dist/{Combination-33P1MEPK.js → Combination-BOmAhdTT.js} +1 -1
  2. package/dist/{ConnectedDataExplorerComponent-BIfUtj_S.js → ConnectedDataExplorerComponent-D5KcOOzu.js} +7 -7
  3. package/dist/{any-language-editor-Bda9cY1_.js → any-language-editor-vYraVrwE.js} +3 -3
  4. package/dist/assets/__vite-browser-external-CgHmDpAZ.js +1 -0
  5. package/dist/assets/{worker-njnjDMwL.js → worker-BR7KVExK.js} +2 -2
  6. package/dist/{button-BlF-78eJ.js → button-D6ZIdUA3.js} +1 -1
  7. package/dist/{check-DDykH_Yi.js → check-S8ldILuD.js} +1 -1
  8. package/dist/{copy-B5nooU3m.js → copy-ACOJ1BXr.js} +1 -1
  9. package/dist/{error-banner-UH0Nxilf.js → error-banner-BhqH4mGj.js} +2 -2
  10. package/dist/{esm-D197NGQX.js → esm-DOBJQbuy.js} +4 -4
  11. package/dist/{glide-data-editor-Bv8bVIJ9.js → glide-data-editor-DsVDCmV2.js} +6 -6
  12. package/dist/{label-oKuiQuiM.js → label-BaX2bLJa.js} +4 -4
  13. package/dist/main.js +455 -459
  14. package/dist/{mermaid-JA6veDHv.js → mermaid-DZjjc-kI.js} +2 -2
  15. package/dist/{slides-component-CJJp5XN4.js → slides-component-BHWhzwDN.js} +1 -1
  16. package/dist/{spec-hsYzGr6F.js → spec-B1PGDiGh.js} +4 -4
  17. package/dist/style.css +1 -1
  18. package/dist/{types-DEmfj_i8.js → types-CbQF8CBX.js} +294 -255
  19. package/dist/{useAsyncData-BGpae_uu.js → useAsyncData-TLXJC7yx.js} +1 -1
  20. package/dist/{useDeepCompareMemoize-1wVjsLov.js → useDeepCompareMemoize-DVnEG7jx.js} +3 -3
  21. package/dist/{useTheme-DdLjooMf.js → useTheme-BllQjRdW.js} +1 -0
  22. package/dist/{vega-component-BGTsperM.js → vega-component-B2QrGnW8.js} +6 -6
  23. package/package.json +5 -5
  24. package/src/__mocks__/requests.ts +1 -0
  25. package/src/__tests__/mount.test.ts +128 -0
  26. package/src/components/app-config/__tests__/get-dirty-values.test.ts +1 -1
  27. package/src/components/app-config/ai-config.tsx +328 -28
  28. package/src/components/app-config/user-config-form.tsx +10 -3
  29. package/src/components/chat/acp/agent-panel.tsx +56 -43
  30. package/src/components/chat/chat-utils.ts +0 -19
  31. package/src/components/data-table/column-header.tsx +1 -1
  32. package/src/components/editor/KernelStartupErrorModal.tsx +101 -0
  33. package/src/components/editor/actions/name-cell-input.tsx +10 -4
  34. package/src/components/editor/ai/completion-handlers.tsx +1 -1
  35. package/src/components/editor/alerts/connecting-alert.tsx +33 -6
  36. package/src/components/editor/chrome/types.ts +2 -4
  37. package/src/components/editor/chrome/wrapper/app-chrome.tsx +55 -58
  38. package/src/components/editor/chrome/wrapper/footer-items/runtime-settings.tsx +150 -96
  39. package/src/components/editor/renderers/vertical-layout/__tests__/useFocusFirstEditor.test.ts +27 -0
  40. package/src/components/editor/renderers/vertical-layout/useFocusFirstEditor.ts +6 -0
  41. package/src/components/utils/lazy-mount.tsx +29 -8
  42. package/src/core/MarimoApp.tsx +2 -0
  43. package/src/core/ai/ids/ids.ts +12 -4
  44. package/src/core/cells/cells.ts +2 -0
  45. package/src/core/cells/scrollCellIntoView.ts +3 -2
  46. package/src/core/codemirror/cm.ts +2 -0
  47. package/src/core/codemirror/lsp/__tests__/notebook-lsp.test.ts +123 -0
  48. package/src/core/codemirror/lsp/notebook-lsp.ts +44 -4
  49. package/src/core/codemirror/misc/__tests__/string-braces.test.ts +200 -0
  50. package/src/core/codemirror/misc/string-braces.ts +37 -0
  51. package/src/core/config/__tests__/config-schema.test.ts +36 -0
  52. package/src/core/config/config-schema.ts +1 -0
  53. package/src/core/errors/state.ts +7 -1
  54. package/src/core/export/__tests__/hooks.test.ts +504 -0
  55. package/src/core/export/hooks.ts +93 -4
  56. package/src/core/islands/bridge.ts +1 -0
  57. package/src/core/islands/main.ts +2 -0
  58. package/src/core/kernel/__tests__/handlers.test.ts +2 -2
  59. package/src/core/kernel/state.ts +1 -0
  60. package/src/core/network/__tests__/requests-lazy.test.ts +1 -1
  61. package/src/core/network/__tests__/requests-network.test.ts +0 -18
  62. package/src/core/network/requests-lazy.ts +3 -2
  63. package/src/core/network/requests-network.ts +10 -7
  64. package/src/core/network/requests-static.ts +1 -0
  65. package/src/core/network/requests-toasting.tsx +1 -0
  66. package/src/core/network/types.ts +2 -0
  67. package/src/core/wasm/bridge.ts +1 -0
  68. package/src/core/websocket/types.ts +1 -0
  69. package/src/core/websocket/useMarimoKernelConnection.tsx +18 -1
  70. package/src/css/globals.css +2 -0
  71. package/src/hooks/__tests__/useInterval.test.tsx +104 -0
  72. package/src/hooks/useInterval.ts +32 -6
  73. package/src/mount.tsx +6 -0
  74. package/src/plugins/impl/chat/ChatPlugin.tsx +2 -4
  75. package/src/plugins/impl/chat/chat-ui.tsx +62 -191
  76. package/src/plugins/impl/chat/types.ts +5 -12
  77. package/src/plugins/impl/data-frames/DataFramePlugin.tsx +3 -1
  78. package/src/utils/events.ts +1 -0
  79. package/dist/assets/__vite-browser-external-CpAWmIPM.js +0 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.