@marimo-team/islands 0.23.14-dev3 → 0.23.14-dev31

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 (97) 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/{click-outside-container-BDd67_1U.js → click-outside-container-BLPjMamz.js} +141 -113
  4. package/dist/{code-visibility-BbnxGblD.js → code-visibility-0uqOIXQg.js} +1122 -924
  5. package/dist/data-grid-overlay-editor-C6lxUJp-.js +136 -0
  6. package/dist/{dist-D_bzzWBm.js → dist-Bf9f8MuT.js} +3 -3
  7. package/dist/{formats-d6MhLuQ9.js → formats-WsOgyW_K.js} +1 -1
  8. package/dist/{glide-data-editor-DkzAInWG.js → glide-data-editor-7wxMGXjG.js} +2084 -1889
  9. package/dist/{html-to-image-DXwLcQ6l.js → html-to-image-DLSOS-bE.js} +2351 -2282
  10. package/dist/{input-CbEz_aj_.js → input-BSdZp5Ng.js} +1 -1
  11. package/dist/main.js +1231 -1133
  12. package/dist/{mermaid-CJW9vIyO.js → mermaid-D-HYBMEV.js} +2 -2
  13. package/dist/{number-overlay-editor-D-a0qCT8.js → number-overlay-editor-BLJXvX9c.js} +1 -1
  14. package/dist/{process-output-C6_e1pT_.js → process-output-B9ysqk1y.js} +1 -1
  15. package/dist/{reveal-component-B2onAQFS.js → reveal-component-DxTNjwZw.js} +600 -596
  16. package/dist/{spec-Bv-XlYiv.js → spec-CnTgI25l.js} +1 -1
  17. package/dist/style.css +1 -1
  18. package/dist/{toDate-D-l5s8nn.js → toDate-D1Z7ZXWh.js} +1 -1
  19. package/dist/{useAsyncData-1Dhzjfwf.js → useAsyncData-BMc8itk2.js} +1 -1
  20. package/dist/{useDeepCompareMemoize-CDWT3BDz.js → useDeepCompareMemoize-ZwmDBRDY.js} +1 -1
  21. package/dist/{useLifecycle-AHlswLw-.js → useLifecycle-CxffarYV.js} +1 -1
  22. package/dist/{useTheme-BrYvK-_A.js → useTheme-yGsGEk82.js} +26 -24
  23. package/dist/{vega-component-Pk6lyc_a.js → vega-component-BFJTyykA.js} +5 -5
  24. package/package.json +3 -3
  25. package/src/components/chat/acp/agent-panel.tsx +35 -1
  26. package/src/components/chat/chat-panel.tsx +68 -29
  27. package/src/components/data-table/__tests__/column-explorer.test.tsx +25 -0
  28. package/src/components/data-table/__tests__/column-visibility-dropdown.test.tsx +60 -3
  29. package/src/components/data-table/charts/__tests__/merge-index-fields.test.ts +33 -0
  30. package/src/components/data-table/charts/charts.tsx +23 -1
  31. package/src/components/data-table/column-explorer-panel/column-explorer.tsx +33 -12
  32. package/src/components/data-table/column-visibility-dropdown.tsx +15 -0
  33. package/src/components/editor/actions/useNotebookActions.tsx +2 -2
  34. package/src/components/editor/chrome/panels/snippets-panel.tsx +5 -2
  35. package/src/components/editor/chrome/wrapper/__tests__/useOpenAiAssistant.test.ts +36 -0
  36. package/src/components/editor/chrome/wrapper/footer-items/pyodide-status.tsx +6 -36
  37. package/src/components/editor/chrome/wrapper/useAiPanel.ts +3 -1
  38. package/src/components/editor/chrome/wrapper/useOpenAiAssistant.ts +88 -0
  39. package/src/components/editor/code/readonly-python-code.tsx +16 -2
  40. package/src/components/editor/errors/__tests__/auto-fix.test.ts +23 -0
  41. package/src/components/editor/errors/auto-fix.tsx +88 -34
  42. package/src/components/editor/errors/fix-mode.ts +1 -1
  43. package/src/components/editor/output/MarimoTracebackOutput.tsx +10 -1
  44. package/src/components/editor/output/__tests__/traceback.test.tsx +14 -6
  45. package/src/components/editor/renderers/grid-layout/grid-layout.tsx +7 -2
  46. package/src/components/editor/renderers/vertical-layout/vertical-layout.tsx +6 -2
  47. package/src/components/lifecycle/ProgressiveBoundary.tsx +42 -0
  48. package/src/components/lifecycle/RuntimeStatusBadge.tsx +59 -0
  49. package/src/components/lifecycle/__tests__/ProgressiveBoundary.test.tsx +147 -0
  50. package/src/components/lifecycle/__tests__/RuntimeStatusBadge.test.tsx +72 -0
  51. package/src/components/slides/__tests__/slide.test.tsx +33 -0
  52. package/src/components/slides/minimap.tsx +7 -1
  53. package/src/components/slides/reveal-component.tsx +3 -0
  54. package/src/components/slides/slide-cell-view.tsx +10 -6
  55. package/src/components/slides/slide.tsx +16 -13
  56. package/src/core/ai/config.ts +2 -2
  57. package/src/core/ai/context/__tests__/registry.test.ts +133 -3
  58. package/src/core/ai/context/providers/__tests__/datasource.test.ts +3 -1
  59. package/src/core/ai/context/providers/__tests__/error.test.ts +200 -15
  60. package/src/core/ai/context/providers/datasource.ts +27 -2
  61. package/src/core/ai/context/providers/error.ts +226 -36
  62. package/src/core/ai/context/registry.ts +77 -43
  63. package/src/core/ai/state.ts +11 -0
  64. package/src/core/cells/__tests__/readonly-code-display.test.ts +46 -0
  65. package/src/core/cells/readonly-code-display.ts +35 -0
  66. package/src/core/codemirror/__tests__/setup.test.ts +33 -1
  67. package/src/core/codemirror/ai/resources.ts +15 -10
  68. package/src/core/codemirror/cells/extensions.ts +1 -4
  69. package/src/core/codemirror/completion/__tests__/signature-hint.test.ts +94 -0
  70. package/src/core/codemirror/completion/completer.ts +12 -1
  71. package/src/core/codemirror/completion/signature-hint.ts +68 -0
  72. package/src/core/codemirror/language/languages/python.ts +10 -4
  73. package/src/core/codemirror/utils.ts +15 -0
  74. package/src/core/edit-app.tsx +8 -5
  75. package/src/core/errors/errors.ts +2 -1
  76. package/src/core/lifecycle/__tests__/render-policy.test.ts +247 -0
  77. package/src/core/lifecycle/render-policy.ts +125 -0
  78. package/src/core/mime.ts +11 -4
  79. package/src/core/run-app.tsx +27 -23
  80. package/src/core/runtime/__tests__/adapter.test.ts +160 -0
  81. package/src/core/runtime/adapter.ts +182 -0
  82. package/src/core/wasm/PyodideLoader.tsx +20 -62
  83. package/src/core/wasm/bridge.ts +9 -4
  84. package/src/core/wasm/state.ts +8 -19
  85. package/src/css/app/codemirror.css +14 -0
  86. package/src/hooks/__tests__/useDelayElapsed.test.tsx +55 -0
  87. package/src/hooks/useDelayElapsed.ts +27 -0
  88. package/src/plugins/impl/DataTablePlugin.tsx +1 -0
  89. package/src/plugins/impl/anywidget/AnyWidgetPlugin.tsx +53 -2
  90. package/src/plugins/impl/anywidget/__tests__/AnyWidgetPlugin.test.tsx +52 -2
  91. package/src/plugins/impl/data-editor/__tests__/glide-data-editor.test.tsx +187 -0
  92. package/src/plugins/impl/data-editor/glide-data-editor.tsx +6 -0
  93. package/src/plugins/impl/data-editor/glide-portal.tsx +73 -0
  94. package/dist/data-grid-overlay-editor-mfEJ5475.js +0 -128
  95. package/src/core/ai/context/providers/__tests__/__snapshots__/error.test.ts.snap +0 -3
  96. package/src/core/wasm/__tests__/PyodideLoader.test.ts +0 -72
  97. package/src/core/wasm/__tests__/state.test.ts +0 -124
@@ -7,9 +7,9 @@ import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
7
7
  import "./zod-CijjQh4u.js";
8
8
  import { n as ErrorBanner } from "./error-banner-DFPfz_Qf.js";
9
9
  import { t as isEmpty_default } from "./isEmpty-CJJMn-QP.js";
10
- import { n as useTheme } from "./useTheme-BrYvK-_A.js";
10
+ import { n as useTheme } from "./useTheme-yGsGEk82.js";
11
11
  import { t as purify } from "./purify.es-H92eMd9-.js";
12
- import { t as useAsyncData } from "./useAsyncData-1Dhzjfwf.js";
12
+ import { t as useAsyncData } from "./useAsyncData-BMc8itk2.js";
13
13
  import { a as decodeEntities, f as isDetailedError, g as utils_default, h as removeDirectives, i as cleanAndMerge, o as encodeEntities } from "./chunk-S3R3BYOJ-oAe3dEbO.js";
14
14
  import { a as setLogLevel, i as log, r as __name, t as select_default } from "./src-Bf2iLOlr.js";
15
15
  import { t as package_default } from "./chunk-DR5Q36YT-BflwErH1.js";
@@ -1,6 +1,6 @@
1
1
  import { s as __toESM } from "./chunk-BNovOVIE.js";
2
2
  import { t as require_react } from "./react-DA-nE2FX.js";
3
- import { t as styled_default } from "./dist-D_bzzWBm.js";
3
+ import { t as styled_default } from "./dist-Bf9f8MuT.js";
4
4
  var import_react = /* @__PURE__ */ __toESM(require_react());
5
5
  const NumberOverlayEditorStyle = /* @__PURE__ */ styled_default("div")({
6
6
  name: "NumberOverlayEditorStyle",
@@ -1,6 +1,6 @@
1
1
  import { s as __toESM } from "./chunk-BNovOVIE.js";
2
2
  import { t as require_compiler_runtime } from "./compiler-runtime-CEbnTgxf.js";
3
- import { at as parseHtmlContent, it as ansiToPlainText } from "./html-to-image-DXwLcQ6l.js";
3
+ import { at as parseHtmlContent, it as ansiToPlainText } from "./html-to-image-DLSOS-bE.js";
4
4
  import { u as createLucideIcon } from "./dist--2Bqjvs0.js";
5
5
  import { t as Strings } from "./strings-Dq_j3Rxw.js";
6
6
  import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";