@marimo-team/islands 0.23.16-dev2 → 0.23.16-dev21

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 (75) hide show
  1. package/dist/{ConnectedDataExplorerComponent-CJaUI-S-.js → ConnectedDataExplorerComponent-f9vLjQiF.js} +13 -13
  2. package/dist/{ErrorBoundary-DXlxsrTF.js → ErrorBoundary-DhLqwSWA.js} +3 -3
  3. package/dist/{any-language-editor-P9tjkj4n.js → any-language-editor-DifE-fl7.js} +5 -5
  4. package/dist/{button-BcSml68y.js → button-BSm8IXRU.js} +2 -4
  5. package/dist/{capabilities-BYLFYTYv.js → capabilities-C6OQ5YBO.js} +1 -1
  6. package/dist/{chat-ui-BdSDiVjk.js → chat-ui-BMBk8I78.js} +3129 -3129
  7. package/dist/{check-Cs-KV5XY.js → check-DP7U0H0G.js} +1 -1
  8. package/dist/{code-visibility-mgBayy67.js → code-visibility-Dt0oSVz1.js} +778 -755
  9. package/dist/{copy-Cs3yt6Vt.js → copy-DNq8q3zw.js} +2 -2
  10. package/dist/{dist-B96tMAst.js → dist-DIlxLFXG.js} +2 -2
  11. package/dist/{error-banner-DR7o3CbX.js → error-banner-B_GQfxxD.js} +2 -2
  12. package/dist/{esm-k8PIvuZW.js → esm-DzZVaNH4.js} +1 -1
  13. package/dist/{extends-Cq2JYHKy.js → extends-w2_S44bV.js} +4 -4
  14. package/dist/{formats-BFhkZJwd.js → formats-Dwq1THhr.js} +3 -3
  15. package/dist/{glide-data-editor--CaN-f27.js → glide-data-editor-B9K6-MJe.js} +9 -9
  16. package/dist/{html-to-image-DDENewl2.js → html-to-image-27MFfyOf.js} +4121 -2739
  17. package/dist/{input-DStQIuqD.js → input-C5K4VBvB.js} +7 -7
  18. package/dist/{label-DIk0QoFe.js → label-DjoYwqmj.js} +2 -2
  19. package/dist/{loader-CTHCI-qe.js → loader-DX-IDS7n.js} +1 -1
  20. package/dist/main.js +915 -923
  21. package/dist/{mermaid-CdSvixW2.js → mermaid-hv6IckVw.js} +5 -5
  22. package/dist/{node-sql-parser-DLl_zNw0.js → node-sql-parser-v1Vi-Fft.js} +16867 -16665
  23. package/dist/{process-output-2QPcgBQg.js → process-output-BpssYna4.js} +3 -3
  24. package/dist/{reveal-component-BDdfO6U_.js → reveal-component-BW-0eLEt.js} +702 -628
  25. package/dist/{spec-CnaxwDqy.js → spec-CQKL_D3i.js} +4 -4
  26. package/dist/{strings-BYAhZnQi.js → strings-DIy9NAmg.js} +4 -4
  27. package/dist/style.css +1 -1
  28. package/dist/{swiper-component-DE94711u.js → swiper-component-CEdAYjb7.js} +2 -2
  29. package/dist/toDate-CqhBWjvO.js +713 -0
  30. package/dist/{tooltip-B-qh7UPB.js → tooltip-f-qR0iUx.js} +3 -3
  31. package/dist/{types-DQl7jVYK.js → types-DicH9Oi0.js} +1 -1
  32. package/dist/{useAsyncData-CvO8WUy3.js → useAsyncData-CYOQb1EW.js} +1 -1
  33. package/dist/{useDateFormatter-BSoGim-G.js → useDateFormatter-Bt2qr_XS.js} +2 -2
  34. package/dist/{useDeepCompareMemoize-J3MKRdA4.js → useDeepCompareMemoize-CSHQeQEI.js} +1 -1
  35. package/dist/{useIframeCapabilities-POcFXHbw.js → useIframeCapabilities-kA09ykNq.js} +1 -1
  36. package/dist/{useLifecycle-DqPxHgAN.js → useLifecycle-CMJGqBaY.js} +3 -3
  37. package/dist/{useTheme-XMq9mNf_.js → useTheme-DYfby65G.js} +2 -2
  38. package/dist/{vega-component-CrFoZT1S.js → vega-component-C7nO5zcf.js} +10 -10
  39. package/dist/{zod-D0yOqoGe.js → zod-BUcyXSdR.js} +1 -1
  40. package/package.json +2 -2
  41. package/src/components/data-table/column-formatting/feature.ts +2 -1
  42. package/src/components/editor/connections/storage/__tests__/__snapshots__/as-code.test.ts.snap +50 -0
  43. package/src/components/editor/connections/storage/__tests__/as-code.test.ts +87 -8
  44. package/src/components/editor/connections/storage/as-code.ts +40 -21
  45. package/src/components/editor/connections/storage/schemas.ts +83 -42
  46. package/src/components/editor/file-tree/__tests__/file-render-mode.test.ts +27 -0
  47. package/src/components/editor/file-tree/__tests__/file-viewer.test.tsx +150 -0
  48. package/src/components/editor/file-tree/file-preview-metadata.tsx +51 -0
  49. package/src/components/editor/file-tree/file-render-mode.ts +32 -0
  50. package/src/components/editor/file-tree/file-viewer.tsx +76 -50
  51. package/src/components/slides/__tests__/slide-scroll-hint.test.tsx +198 -0
  52. package/src/components/slides/reveal-component.tsx +3 -2
  53. package/src/components/slides/slide-scroll-hint.tsx +161 -0
  54. package/src/components/ui/input.tsx +1 -1
  55. package/src/core/codemirror/keymaps/__tests__/keymaps.test.ts +31 -2
  56. package/src/core/codemirror/keymaps/keymaps.ts +12 -0
  57. package/src/core/codemirror/language/__tests__/sql.test.ts +443 -61
  58. package/src/core/codemirror/language/languages/sql/completion-store.ts +5 -1
  59. package/src/core/codemirror/language/languages/sql/sql.ts +210 -3
  60. package/src/core/hotkeys/hotkeys.ts +0 -2
  61. package/src/core/i18n/__tests__/locale-provider.test.tsx +54 -118
  62. package/src/core/i18n/__tests__/locale.test.ts +113 -0
  63. package/src/core/i18n/locale-provider.tsx +1 -19
  64. package/src/core/i18n/locale.ts +71 -0
  65. package/src/core/islands/__tests__/bridge.test.ts +107 -0
  66. package/src/core/islands/bridge.ts +15 -0
  67. package/src/core/mode.ts +10 -0
  68. package/src/core/network/__tests__/connection.test.ts +45 -0
  69. package/src/core/network/__tests__/requests-network.test.ts +13 -0
  70. package/src/core/network/connection.ts +15 -0
  71. package/src/core/network/requests-network.ts +6 -3
  72. package/src/core/network/types.ts +3 -1
  73. package/src/plugins/impl/FormPlugin.tsx +1 -1
  74. package/src/plugins/impl/__tests__/FormPlugin.test.tsx +162 -0
  75. package/dist/toDate-B3IRfHhw.js +0 -692
@@ -1,8 +1,8 @@
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 { ot as ansiToPlainText, st as parseHtmlContent } from "./html-to-image-DDENewl2.js";
4
- import { u as createLucideIcon } from "./dist-B96tMAst.js";
5
- import { t as Strings } from "./strings-BYAhZnQi.js";
3
+ import { ot as ansiToPlainText, st as parseHtmlContent } from "./html-to-image-27MFfyOf.js";
4
+ import { u as createLucideIcon } from "./dist-DIlxLFXG.js";
5
+ import { t as Strings } from "./strings-DIy9NAmg.js";
6
6
  import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
7
7
  import { n as mapWithConcurrency } from "./semaphore-C8rmHdhj.js";
8
8
  var File = createLucideIcon("file", [["path", {