@marimo-team/islands 0.23.14-dev2 → 0.23.14-dev23

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/{ConnectedDataExplorerComponent-Du3_nUzI.js → ConnectedDataExplorerComponent-DXBx_nQg.js} +4 -4
  2. package/dist/{chat-ui-CsPewo4h.js → chat-ui-CO8WuXGb.js} +3243 -3039
  3. package/dist/{code-visibility-CRYdBxcA.js → code-visibility-B3ntFQLc.js} +1115 -917
  4. package/dist/{formats-d6MhLuQ9.js → formats-WsOgyW_K.js} +1 -1
  5. package/dist/{glide-data-editor-DkzAInWG.js → glide-data-editor-qpmKyAPn.js} +2 -2
  6. package/dist/{html-to-image-DXwLcQ6l.js → html-to-image-DLSOS-bE.js} +2351 -2282
  7. package/dist/{input-CbEz_aj_.js → input-BSdZp5Ng.js} +1 -1
  8. package/dist/main.js +1139 -1071
  9. package/dist/{mermaid-CJW9vIyO.js → mermaid-D-HYBMEV.js} +2 -2
  10. package/dist/{process-output-C6_e1pT_.js → process-output-B9ysqk1y.js} +1 -1
  11. package/dist/{reveal-component-CbqUMhp8.js → reveal-component-C8j14RKU.js} +16 -16
  12. package/dist/{spec-Bv-XlYiv.js → spec-CnTgI25l.js} +1 -1
  13. package/dist/{toDate-D-l5s8nn.js → toDate-D1Z7ZXWh.js} +1 -1
  14. package/dist/{useAsyncData-1Dhzjfwf.js → useAsyncData-BMc8itk2.js} +1 -1
  15. package/dist/{useDeepCompareMemoize-CDWT3BDz.js → useDeepCompareMemoize-ZwmDBRDY.js} +1 -1
  16. package/dist/{useLifecycle-AHlswLw-.js → useLifecycle-CxffarYV.js} +1 -1
  17. package/dist/{useTheme-BrYvK-_A.js → useTheme-yGsGEk82.js} +26 -24
  18. package/dist/{vega-component-Pk6lyc_a.js → vega-component-BFJTyykA.js} +5 -5
  19. package/package.json +2 -2
  20. package/src/components/chat/acp/agent-panel.tsx +35 -1
  21. package/src/components/chat/chat-panel.tsx +68 -29
  22. package/src/components/data-table/__tests__/column-explorer.test.tsx +25 -0
  23. package/src/components/data-table/__tests__/column-visibility-dropdown.test.tsx +60 -3
  24. package/src/components/data-table/column-explorer-panel/column-explorer.tsx +33 -12
  25. package/src/components/data-table/column-visibility-dropdown.tsx +15 -0
  26. package/src/components/editor/actions/useNotebookActions.tsx +2 -2
  27. package/src/components/editor/chrome/panels/snippets-panel.tsx +5 -2
  28. package/src/components/editor/chrome/wrapper/__tests__/useOpenAiAssistant.test.ts +36 -0
  29. package/src/components/editor/chrome/wrapper/footer-items/pyodide-status.tsx +6 -36
  30. package/src/components/editor/chrome/wrapper/useAiPanel.ts +3 -1
  31. package/src/components/editor/chrome/wrapper/useOpenAiAssistant.ts +88 -0
  32. package/src/components/editor/code/readonly-python-code.tsx +16 -2
  33. package/src/components/editor/errors/__tests__/auto-fix.test.ts +23 -0
  34. package/src/components/editor/errors/auto-fix.tsx +88 -34
  35. package/src/components/editor/errors/fix-mode.ts +1 -1
  36. package/src/components/editor/output/MarimoTracebackOutput.tsx +10 -1
  37. package/src/components/editor/output/__tests__/traceback.test.tsx +14 -6
  38. package/src/components/editor/renderers/vertical-layout/vertical-layout.tsx +6 -2
  39. package/src/components/lifecycle/ProgressiveBoundary.tsx +42 -0
  40. package/src/components/lifecycle/RuntimeStatusBadge.tsx +59 -0
  41. package/src/components/lifecycle/__tests__/ProgressiveBoundary.test.tsx +147 -0
  42. package/src/components/lifecycle/__tests__/RuntimeStatusBadge.test.tsx +72 -0
  43. package/src/components/slides/slide-cell-view.tsx +7 -6
  44. package/src/core/ai/config.ts +2 -2
  45. package/src/core/ai/context/__tests__/registry.test.ts +133 -3
  46. package/src/core/ai/context/providers/__tests__/datasource.test.ts +3 -1
  47. package/src/core/ai/context/providers/__tests__/error.test.ts +200 -15
  48. package/src/core/ai/context/providers/datasource.ts +27 -2
  49. package/src/core/ai/context/providers/error.ts +226 -36
  50. package/src/core/ai/context/registry.ts +77 -43
  51. package/src/core/ai/state.ts +11 -0
  52. package/src/core/cells/__tests__/readonly-code-display.test.ts +46 -0
  53. package/src/core/cells/readonly-code-display.ts +35 -0
  54. package/src/core/codemirror/__tests__/setup.test.ts +33 -1
  55. package/src/core/codemirror/ai/resources.ts +15 -10
  56. package/src/core/codemirror/cells/extensions.ts +1 -4
  57. package/src/core/codemirror/completion/__tests__/signature-hint.test.ts +94 -0
  58. package/src/core/codemirror/completion/completer.ts +12 -1
  59. package/src/core/codemirror/completion/signature-hint.ts +68 -0
  60. package/src/core/codemirror/language/languages/python.ts +10 -4
  61. package/src/core/codemirror/utils.ts +15 -0
  62. package/src/core/edit-app.tsx +8 -5
  63. package/src/core/errors/errors.ts +2 -1
  64. package/src/core/lifecycle/__tests__/render-policy.test.ts +247 -0
  65. package/src/core/lifecycle/render-policy.ts +125 -0
  66. package/src/core/mime.ts +11 -4
  67. package/src/core/run-app.tsx +27 -23
  68. package/src/core/runtime/__tests__/adapter.test.ts +160 -0
  69. package/src/core/runtime/adapter.ts +182 -0
  70. package/src/core/wasm/PyodideLoader.tsx +20 -62
  71. package/src/core/wasm/bridge.ts +9 -4
  72. package/src/core/wasm/state.ts +8 -19
  73. package/src/core/wasm/store.ts +1 -1
  74. package/src/hooks/__tests__/useDelayElapsed.test.tsx +55 -0
  75. package/src/hooks/useDelayElapsed.ts +27 -0
  76. package/src/core/ai/context/providers/__tests__/__snapshots__/error.test.ts.snap +0 -3
  77. package/src/core/wasm/__tests__/PyodideLoader.test.ts +0 -72
  78. package/src/core/wasm/__tests__/state.test.ts +0 -124
  79. /package/dist/{files → export_demos}/wasm-intro.py +0 -0
@@ -3,8 +3,8 @@ import { _ as Logger, c as Objects, g as cn, t as Button } from "./button-BacYv-
3
3
  import { t as require_react } from "./react-DA-nE2FX.js";
4
4
  import { t as require_compiler_runtime } from "./compiler-runtime-CEbnTgxf.js";
5
5
  import { u as createLucideIcon } from "./dist--2Bqjvs0.js";
6
- import { A as SquareFunction, t as augmentSpecWithData } from "./spec-Bv-XlYiv.js";
7
- import { a as Type, c as Calendar, i as createReducerAndAtoms, o as ToggleLeft, r as Badge, s as Hash, t as useOnMount } from "./useLifecycle-AHlswLw-.js";
6
+ import { A as SquareFunction, t as augmentSpecWithData } from "./spec-CnTgI25l.js";
7
+ import { a as Type, c as Calendar, i as createReducerAndAtoms, o as ToggleLeft, r as Badge, s as Hash, t as useOnMount } from "./useLifecycle-CxffarYV.js";
8
8
  import { a as ListFilter, t as $896ba0a80a8f4d36$export$85fd5fdf27bacc79 } from "./useDateFormatter-CMnRuVmN.js";
9
9
  import { a as SelectGroup, c as SelectSeparator, i as SelectContent, l as SelectTrigger, o as SelectItem, r as Select, s as SelectLabel, t as Strings, u as SelectValue, w as $a916eb452884faea$export$b7a616150fdb9f44 } from "./strings-Dq_j3Rxw.js";
10
10
  import "./react-dom-BTJzcVJ9.js";
@@ -13,14 +13,14 @@ import "./zod-CijjQh4u.js";
13
13
  import { n as ErrorBanner } from "./error-banner-DFPfz_Qf.js";
14
14
  import { t as Label } from "./label-WfTSU8L4.js";
15
15
  import { t as Tooltip } from "./tooltip-Czds6Qr8.js";
16
- import { _ as useAtomValue, b as atom, h as Provider, n as useTheme, x as createStore } from "./useTheme-BrYvK-_A.js";
16
+ import { C as createStore, S as atom, _ as Provider, n as useTheme, y as useAtomValue } from "./useTheme-yGsGEk82.js";
17
17
  import { t as invariant } from "./invariant-wRzNXIsJ.js";
18
18
  import "./vega-loader.browser-CZ-J8Py3.js";
19
19
  import { a as getContainerWidth, n as vegaLoadData, s as tooltipHandler } from "./loader-Boph2xIS.js";
20
20
  import { n as q, r as contains } from "./react-vega-B0sAlDTL.js";
21
21
  import "./defaultLocale-u-3osm0P.js";
22
22
  import "./defaultLocale-BoHTsDG6.js";
23
- import { t as useAsyncData } from "./useAsyncData-1Dhzjfwf.js";
23
+ import { t as useAsyncData } from "./useAsyncData-BMc8itk2.js";
24
24
  var ChartColumnBig = createLucideIcon("chart-column-big", [
25
25
  ["path", {
26
26
  d: "M3 3v16a2 2 0 0 0 2 2h16",