@marimo-team/islands 0.23.17-dev3 → 0.23.17-dev30

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 (76) hide show
  1. package/dist/{ConnectedDataExplorerComponent-f9vLjQiF.js → ConnectedDataExplorerComponent-BEb8RZam.js} +13 -13
  2. package/dist/{ErrorBoundary-DhLqwSWA.js → ErrorBoundary-8ZHte0h9.js} +3 -3
  3. package/dist/{ImageComparisonComponent-C3y7L3eJ.js → ImageComparisonComponent-fdY0LUuf.js} +38 -27
  4. package/dist/{any-language-editor-DifE-fl7.js → any-language-editor-CioNaP-T.js} +5 -5
  5. package/dist/{button-BSm8IXRU.js → button-8aS1QcHr.js} +4 -2
  6. package/dist/{capabilities-C6OQ5YBO.js → capabilities-D23lgbH_.js} +1 -1
  7. package/dist/{chat-ui-DsZJj75A.js → chat-ui-CnjFz0bt.js} +16 -16
  8. package/dist/{check-DP7U0H0G.js → check-CCvJTB2E.js} +1 -1
  9. package/dist/{common-D747zlkP.js → common-BxnkCaMd.js} +21 -21
  10. package/dist/{copy-DNq8q3zw.js → copy-D45ZUY3j.js} +2 -2
  11. package/dist/{dist-DIlxLFXG.js → dist-DgzzIPS4.js} +2 -2
  12. package/dist/{error-banner-B_GQfxxD.js → error-banner-DHfPl1w3.js} +2 -2
  13. package/dist/{esm-DzZVaNH4.js → esm-DJsE6wi-.js} +1 -1
  14. package/dist/{extends-w2_S44bV.js → extends-xQ_2Cylt.js} +4 -4
  15. package/dist/{formats-Dwq1THhr.js → formats-D10vOEsT.js} +3 -3
  16. package/dist/{glide-data-editor-B9K6-MJe.js → glide-data-editor-FiwJJzrV.js} +9 -9
  17. package/dist/{html-to-image-CZ1kLKkq.js → html-to-image-B8KJvlou.js} +2111 -2105
  18. package/dist/{input-C5K4VBvB.js → input-DtTqU0xh.js} +6 -6
  19. package/dist/{label-DjoYwqmj.js → label-5IC840tS.js} +2 -2
  20. package/dist/{loader-DX-IDS7n.js → loader-DP2JkPth.js} +1 -1
  21. package/dist/main.js +47 -44
  22. package/dist/{mermaid-hv6IckVw.js → mermaid-BNhC-PrB.js} +5 -5
  23. package/dist/{process-output-bVfbcx5_.js → process-output-CjS9wS4l.js} +3 -3
  24. package/dist/{reveal-component-CcSMtt1K.js → reveal-component-D8ttQmaR.js} +11 -11
  25. package/dist/{spec-CQKL_D3i.js → spec-C7rMyZ_8.js} +4 -4
  26. package/dist/{strings-DIy9NAmg.js → strings-CITcoFNY.js} +4 -4
  27. package/dist/style.css +1 -1
  28. package/dist/{swiper-component-CEdAYjb7.js → swiper-component-dl1H9WIW.js} +2 -2
  29. package/dist/{toDate-CqhBWjvO.js → toDate-kxcuDOWd.js} +3 -3
  30. package/dist/{tooltip-f-qR0iUx.js → tooltip-BkSv4x8S.js} +3 -3
  31. package/dist/{types-DicH9Oi0.js → types-kNUyqkDD.js} +1 -1
  32. package/dist/{useAsyncData-CYOQb1EW.js → useAsyncData-Uo4VFafD.js} +1 -1
  33. package/dist/{useDateFormatter-Bt2qr_XS.js → useDateFormatter-ZCfHadYP.js} +2 -2
  34. package/dist/{useDeepCompareMemoize-CSHQeQEI.js → useDeepCompareMemoize-s3ZvmdK3.js} +1 -1
  35. package/dist/{useIframeCapabilities-kA09ykNq.js → useIframeCapabilities-pLC-ceDP.js} +1 -1
  36. package/dist/{useLifecycle-CMJGqBaY.js → useLifecycle-CLPBATCv.js} +3 -3
  37. package/dist/{useTheme-DYfby65G.js → useTheme-CEMsu1Js.js} +2 -2
  38. package/dist/{vega-component-C7nO5zcf.js → vega-component-DGkcoXu3.js} +10 -10
  39. package/dist/{zod-BUcyXSdR.js → zod-DdNi9290.js} +1 -1
  40. package/package.json +1 -1
  41. package/src/__mocks__/requests.ts +5 -0
  42. package/src/components/databases/icons/huggingface.svg +8 -0
  43. package/src/components/editor/actions/export-dialog/__tests__/export-dialog.test.tsx +35 -0
  44. package/src/components/editor/actions/export-dialog/__tests__/state.test.ts +61 -0
  45. package/src/components/editor/actions/export-dialog/export-dialog.tsx +27 -23
  46. package/src/components/editor/actions/export-dialog/format-notice.tsx +28 -0
  47. package/src/components/editor/actions/export-dialog/state.ts +23 -5
  48. package/src/components/editor/actions/export-dialog/use-export-dialog.ts +7 -15
  49. package/src/components/editor/chrome/panels/outline/__tests__/useActiveOutline.test.ts +26 -0
  50. package/src/components/editor/code/__tests__/readonly-python-code.test.tsx +114 -2
  51. package/src/components/editor/connections/storage/__tests__/__snapshots__/as-code.test.ts.snap +14 -0
  52. package/src/components/editor/connections/storage/__tests__/as-code.test.ts +20 -0
  53. package/src/components/editor/connections/storage/add-storage-form.tsx +10 -0
  54. package/src/components/editor/connections/storage/as-code.ts +19 -1
  55. package/src/components/editor/connections/storage/schemas.ts +19 -0
  56. package/src/components/storage/__tests__/storage-snippets.test.ts +88 -0
  57. package/src/components/storage/components.tsx +2 -0
  58. package/src/components/storage/storage-snippets.ts +58 -0
  59. package/src/core/__tests__/mode.test.ts +85 -0
  60. package/src/core/codemirror/code-lens/__tests__/extension.test.ts +2 -7
  61. package/src/core/codemirror/code-lens/extension.ts +0 -4
  62. package/src/core/codemirror/find-replace/search-highlight.ts +8 -3
  63. package/src/core/codemirror/theme/__tests__/light.test.ts +59 -123
  64. package/src/core/codemirror/theme/dark.ts +6 -5
  65. package/src/core/codemirror/theme/light.ts +6 -4
  66. package/src/core/config/feature-flag.tsx +0 -2
  67. package/src/core/dom/outline.ts +25 -2
  68. package/src/core/hotkeys/hotkeys.ts +2 -0
  69. package/src/core/mode.ts +11 -9
  70. package/src/core/network/__tests__/requests-lazy.test.ts +1 -0
  71. package/src/core/storage/types.ts +1 -0
  72. package/src/css/app/codemirror.css +11 -7
  73. package/src/css/globals.css +8 -0
  74. package/src/plugins/impl/image-comparison/ImageComparisonComponent.tsx +20 -1
  75. package/src/plugins/impl/image-comparison/__tests__/ImageComparisonComponent.test.tsx +58 -0
  76. package/src/stories/theme.stories.tsx +71 -1
@@ -3,18 +3,18 @@ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { en
3
3
  var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
4
4
  var _a;
5
5
  import { s as __toESM } from "./chunk-BNovOVIE.js";
6
- import { f as composeRefs, g as Logger, h as cn, m as Events, p as useComposedRefs, u as createSlot } from "./button-BSm8IXRU.js";
6
+ import { f as composeRefs, g as Logger, h as cn, m as Events, p as useComposedRefs, u as createSlot } from "./button-8aS1QcHr.js";
7
7
  import { t as require_react } from "./react-DA-nE2FX.js";
8
8
  import { t as require_compiler_runtime } from "./compiler-runtime-CEbnTgxf.js";
9
- import { a as createPopperScope, i as Root2$1, n as Arrow, r as Content, t as Anchor, u as createLucideIcon } from "./dist-DIlxLFXG.js";
10
- import { t as Check } from "./check-DP7U0H0G.js";
11
- import { E as $18f2051aff69b9bf$export$43bb16f9c6d9e3f7, F as createCollection, I as X, L as ChevronUp, P as useDirection, R as ChevronDown, T as $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5, _ as menuControlVariants, b as menuSeparatorVariants, g as menuControlCheckVariants, h as menuContentCommon, k as $b5e257d569688ac6$export$619500959fc48b26, m as MenuShortcut, v as menuItemVariants, w as $a916eb452884faea$export$b7a616150fdb9f44, x as menuSubTriggerVariants, y as menuLabelVariants } from "./strings-DIy9NAmg.js";
9
+ import { a as createPopperScope, i as Root2$1, n as Arrow, r as Content, t as Anchor, u as createLucideIcon } from "./dist-DgzzIPS4.js";
10
+ import { t as Check } from "./check-CCvJTB2E.js";
11
+ import { E as $18f2051aff69b9bf$export$43bb16f9c6d9e3f7, F as createCollection, I as X, L as ChevronUp, P as useDirection, R as ChevronDown, T as $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5, _ as menuControlVariants, b as menuSeparatorVariants, g as menuControlCheckVariants, h as menuContentCommon, k as $b5e257d569688ac6$export$619500959fc48b26, m as MenuShortcut, v as menuItemVariants, w as $a916eb452884faea$export$b7a616150fdb9f44, x as menuSubTriggerVariants, y as menuLabelVariants } from "./strings-CITcoFNY.js";
12
12
  import { n as clsx_default } from "./clsx-CIWA5tNO.js";
13
13
  import { t as require_react_dom } from "./react-dom-BTJzcVJ9.js";
14
14
  import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
15
- import { Q as withSmartCollisionBoundary, Y as MAX_HEIGHT_OFFSET, Z as withFullScreenAsRoot, _t as createContextScope, at as Portal, ct as DismissableLayer, dt as useId, et as StyleNamespace, ft as Presence, ht as composeEventHandlers, it as useFocusGuards, nt as Combination_default, ot as FocusScope, pt as useControllableState, tt as hideOthers, ut as useCallbackRef, vt as Primitive, yt as dispatchDiscreteCustomEvent } from "./zod-BUcyXSdR.js";
15
+ import { Q as withSmartCollisionBoundary, Y as MAX_HEIGHT_OFFSET, Z as withFullScreenAsRoot, _t as createContextScope, at as Portal, ct as DismissableLayer, dt as useId, et as StyleNamespace, ft as Presence, ht as composeEventHandlers, it as useFocusGuards, nt as Combination_default, ot as FocusScope, pt as useControllableState, tt as hideOthers, ut as useCallbackRef, vt as Primitive, yt as dispatchDiscreteCustomEvent } from "./zod-DdNi9290.js";
16
16
  import { t as debounce_default } from "./debounce-BOD3DbfP.js";
17
- import { A as useEvent_default } from "./useTheme-DYfby65G.js";
17
+ import { A as useEvent_default } from "./useTheme-CEMsu1Js.js";
18
18
  import { t as memoizeLastValue } from "./once-B60G2fuJ.js";
19
19
  var ChevronRight = createLucideIcon("chevron-right", [["path", {
20
20
  d: "m9 18 6-6-6-6",
@@ -1,9 +1,9 @@
1
1
  import { s as __toESM } from "./chunk-BNovOVIE.js";
2
- import { h as cn, r as cva } from "./button-BSm8IXRU.js";
2
+ import { h as cn, r as cva } from "./button-8aS1QcHr.js";
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 { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
6
- import { vt as Primitive } from "./zod-BUcyXSdR.js";
6
+ import { vt as Primitive } from "./zod-DdNi9290.js";
7
7
  var import_react = /* @__PURE__ */ __toESM(require_react(), 1), import_jsx_runtime = /* @__PURE__ */ __toESM(require_jsx_runtime(), 1), NAME = "Label", Label$1 = import_react.forwardRef((e, c) => /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Primitive.label, {
8
8
  ...e,
9
9
  ref: c,
@@ -2,7 +2,7 @@ var __defProp = Object.defineProperty;
2
2
  var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
3
3
  var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
4
4
  var _a, _b, _c, _d, _e;
5
- import { g as Logger } from "./button-BSm8IXRU.js";
5
+ import { g as Logger } from "./button-8aS1QcHr.js";
6
6
  import { t as Objects } from "./objects-De59twF-.js";
7
7
  import { Rt as isObject, a as loader, c as typeParsers$1, o as read$1, rt as isString, zt as isArray } from "./vega-loader.browser-DmpxCJqx.js";
8
8
  var pkg = { version: "1.1.0" };
package/dist/main.js CHANGED
@@ -18,34 +18,34 @@ var __privateWrapper = (obj, member, setter, getter) => ({
18
18
  }
19
19
  });
20
20
  import { a as __toCommonJS, n as __esmMin, r as __export, s as __toESM, t as __commonJSMin } from "./chunk-BNovOVIE.js";
21
- import { _ as Functions, c as useEventListener, f as composeRefs, g as Logger, h as cn, i as NOT_SET, l as Slot, m as Events, n as buttonVariants, o as isPlatformMac, p as useComposedRefs, r as cva, t as Button, v as throwNotImplemented } from "./button-BSm8IXRU.js";
21
+ import { _ as Functions, c as useEventListener, f as composeRefs, g as Logger, h as cn, i as NOT_SET, l as Slot, m as Events, n as buttonVariants, o as isPlatformMac, p as useComposedRefs, r as cva, t as Button, v as throwNotImplemented } from "./button-8aS1QcHr.js";
22
22
  import { t as require_react } from "./react-DA-nE2FX.js";
23
23
  import { t as require_compiler_runtime } from "./compiler-runtime-CEbnTgxf.js";
24
- import { n as Copy, r as toast, t as copyToClipboard } from "./copy-DNq8q3zw.js";
25
- import { $ as notebookOutline, $t as publishedCellClasses, A as ChevronDownIcon, An as Root2$1, At as DeferredRequestRegistry, Bn as Info, C as Accordion, Cn as atomWithReducer, Ct as MarkdownLanguageAdapter, D as BorderAllIcon, E as AccordionTrigger, Et as Paths, Fn as PaintRoller, G as hasRunAnyCellAtom, Gn as Columns2, H as renderHTML, Hn as Eye, Ht as DATA_TYPE_ICON, I as base64ToDataView, Jn as Braces, Jt as convertStatsName, K as cellIdsAtom, Lt as repl, Nn as Trash2, On as Content2, Pn as Table2, Pt as jotaiJsonStorage, Q as notebookAtom, Qt as isUninstantiated, R as dataViewToBase64, Rn as LoaderCircle, Rt as SQLParser, St as isRecord, T as AccordionItem, Tn as selectAtom, Tt as PathBuilder, U as getMarimoExportContext, V as safeExtractSetUIElementMessageBuffers, Vn as FileText, Vt as PluralWords, W as hasTrustedExportContext, Wn as Database, Wt as require_client, X as hasOnlyOneCellAtom, Xt as requestClientAtom, Y as getCellNames, Yt as getRequestClient, Z as initialNotebookState, Zt as useRequestClient, _n as UIElementId, _t as isInternalCellName, a as useCellFocusActions, at as createCell, bn as RANDOM_ID_ATTR, bt as customPythonLanguageSupport, cn as NotebookScopedLocalStorage, dn as parseAttrValue, dt as headingToIdentifier, en as shouldHidePublishedCell, et as numColumnsAtom, f as isOutputEmpty, fn as parseDataset, gt as getValidName, hn as HTMLCellId, i as LazyAnyLanguageCodeMirror, jn as Trigger2, jt as generateUUID, kn as Item$1, lt as outputIsLoading, n as Spinner, nt as useCellActions, o as useLastFocusedCellId, p as useExpandedConsoleOutput, pn as parseInitialValue, q as createActions, qn as CircleAlert, rt as useCellIds, s as maybeAddAltairImport, tt as reducer, ut as outputIsStale, vn as findCellId, vt as normalizeName, w as AccordionContent, wn as atomWithStorage, xn as jsonParseWithSpecialChar, xt as hasFunctionProperty, yn as OBJECT_ID_ATTR, yt as Checkbox, zn as Layers, zt as MarkdownParser, __tla as __tla_0 } from "./html-to-image-CZ1kLKkq.js";
24
+ import { n as Copy, r as toast, t as copyToClipboard } from "./copy-D45ZUY3j.js";
25
+ import { $ as notebookOutline, $t as publishedCellClasses, A as ChevronDownIcon, An as Root2$1, At as DeferredRequestRegistry, Bn as Info, C as Accordion, Cn as atomWithReducer, Ct as MarkdownLanguageAdapter, D as BorderAllIcon, E as AccordionTrigger, Et as Paths, Fn as PaintRoller, G as hasRunAnyCellAtom, Gn as Columns2, H as renderHTML, Hn as Eye, Ht as DATA_TYPE_ICON, I as base64ToDataView, Jn as Braces, Jt as convertStatsName, K as cellIdsAtom, Lt as repl, Nn as Trash2, On as Content2, Pn as Table2, Pt as jotaiJsonStorage, Q as notebookAtom, Qt as isUninstantiated, R as dataViewToBase64, Rn as LoaderCircle, Rt as SQLParser, St as isRecord, T as AccordionItem, Tn as selectAtom, Tt as PathBuilder, U as getMarimoExportContext, V as safeExtractSetUIElementMessageBuffers, Vn as FileText, Vt as PluralWords, W as hasTrustedExportContext, Wn as Database, Wt as require_client, X as hasOnlyOneCellAtom, Xt as requestClientAtom, Y as getCellNames, Yt as getRequestClient, Z as initialNotebookState, Zt as useRequestClient, _n as UIElementId, _t as isInternalCellName, a as useCellFocusActions, at as createCell, bn as RANDOM_ID_ATTR, bt as customPythonLanguageSupport, cn as NotebookScopedLocalStorage, dn as parseAttrValue, dt as headingToIdentifier, en as shouldHidePublishedCell, et as numColumnsAtom, f as isOutputEmpty, fn as parseDataset, gt as getValidName, hn as HTMLCellId, i as LazyAnyLanguageCodeMirror, jn as Trigger2, jt as generateUUID, kn as Item$1, lt as outputIsLoading, n as Spinner, nt as useCellActions, o as useLastFocusedCellId, p as useExpandedConsoleOutput, pn as parseInitialValue, q as createActions, qn as CircleAlert, rt as useCellIds, s as maybeAddAltairImport, tt as reducer, ut as outputIsStale, vn as findCellId, vt as normalizeName, w as AccordionContent, wn as atomWithStorage, xn as jsonParseWithSpecialChar, xt as hasFunctionProperty, yn as OBJECT_ID_ATTR, yt as Checkbox, zn as Layers, zt as MarkdownParser, __tla as __tla_0 } from "./html-to-image-B8KJvlou.js";
26
26
  import { __tla as __tla_1 } from "./chunk-5FQGJX7Z-B9WoXK1R.js";
27
- import { o as useSize, s as Root$1, u as createLucideIcon } from "./dist-DIlxLFXG.js";
28
- import { A as SquareFunction, C as DEFAULT_COLOR_SCHEME, D as SCALE_TYPE_DESCRIPTIONS, E as EMPTY_VALUE$1, O as TIME_UNIT_DESCRIPTIONS, S as DEFAULT_AGGREGATION, T as DEFAULT_TIME_UNIT, _ as AGGREGATION_TYPE_DESCRIPTIONS, a as AGGREGATION_FNS$1, b as COLOR_SCHEMES, c as COLOR_BY_FIELDS, d as NONE_VALUE, f as SELECTABLE_DATA_TYPES, g as TIME_UNITS, h as STRING_AGGREGATION_FNS, i as convertDataTypeToSelectable, j as ChartColumn, k as escapeFieldName, l as COMBINED_TIME_UNITS, m as SORT_TYPES, n as createSpecWithoutData, o as BIN_AGGREGATION, p as SINGLE_TIME_UNITS, r as isFieldSet, s as CHART_TYPES, t as augmentSpecWithData, u as ChartType, v as AGGREGATION_TYPE_ICON, w as DEFAULT_MAX_BINS_FACET, x as COUNT_FIELD, y as CHART_TYPE_ICON } from "./spec-CQKL_D3i.js";
29
- import { $ as CommandSeparator, $t as Kbd, A as ErrorState, At as getPageIndexForRow, B as ContextMenuTrigger, Bt as dateToLocalISODate, C as downloadHTMLAsImage, Ct as inferFieldTypes, D as ColumnName, Dt as DelayMount, E as downloadSizeLimitAtom, Et as ColumnChartSpecModel, F as getUserColumnVisibilityCounts, Ft as TOO_MANY_ROWS, G as DateRangePicker, Gt as TabsList, H as useSelectList, Ht as dateToLocalISOTime, I as ContextMenu, It as toFieldTypes, J as Command, Jt as ChartInfoState, K as Combobox, Kt as TabsTrigger, L as ContextMenuContent, Lt as getMimeValues, M as prettifyRowColumnCount, Mt as loadTableData, N as prettifyRowCount, Nt as INDEX_COLUMN_NAME, O as ColumnPreviewContainer, Ot as useIntersectionObserver, P as getColumnCountForDisplay, Pt as SELECT_COLUMN_ID, Q as CommandList, Qt as RenderTextWithLinks, R as ContextMenuItem, Rt as isNullishFilter, S as downloadExportedFile, St as generateColumns, T as Filenames, Tt as ColumnChartContext, U as CompactChipRow, Ut as Tabs, V as useInternalStateWithSync, Vt as dateToLocalISODateTime, W as DatePicker, Wt as TabsContent, X as CommandInput, Xt as LazyVegaEmbed, Y as CommandEmpty, Yt as ChartLoadingState, Z as CommandItem, Zt as useOverflowDetection, _ as DataTable, _n as ChevronLeft, _t as TableCell, an as TextWrap, at as contextAwarePanelType, b as downloadBlob, bt as TableRow, c as SLIDE_TYPE_OPTIONS_BY_VALUE, cn as EyeOff, ct as slotsController, d as Switch, dn as Download, en as HtmlOutput, et as smartMatch, f as RadioGroup, fn as Code, g as OutputRenderer, gn as ChevronsDownUp, gt as TableBody, h as OutputArea, hn as ChevronsLeft, ht as Table, i as showCodeInRunModeAtom, in as $fae977aafc393c5c$export$6b862160d295c8e, it as contextAwarePanelOwner, j as LoadingState, jt as loadTableAndRawData, k as EmptyState, kt as usePrevious$1, lt as Toggle, m as JsonOutput, mn as ChevronsRight, mt as Provider$1, n as useNotebookCodeAvailable, nn as safeLocale, nt as PANEL_TYPES, on as GripHorizontal, ot as isCellAwareAtom, p as RadioGroupItem, pn as ChevronsUpDown, pt as Fill, q as ComboboxItem, qt as ChartErrorState, r as marimoVersionAtom, rn as $fae977aafc393c5c$export$588937bcd60ade55, rt as contextAwarePanelOpen, sn as Funnel, st as SlotNames, t as cellDomProps, tn as EmotionCacheProvider, tt as ContextAwarePanelItem, u as Slide, un as Ellipsis, v as InstallPackageButton, vn as ArrowDownWideNarrow, vt as TableHead, w as Progress, wt as renderCellValue, x as downloadByURL, xt as NAMELESS_COLUMN_PREFIX, y as ADD_PRINTING_CLASS, yt as TableHeader, z as ContextMenuSeparator, zt as Maps, __tla as __tla_2 } from "./common-D747zlkP.js";
30
- import { c as Calendar, i as createReducerAndAtoms, n as useOnUnmount, o as ToggleLeft, t as useOnMount } from "./useLifecycle-CMJGqBaY.js";
31
- import { t as Check } from "./check-DP7U0H0G.js";
32
- import { A as Icon, C as logNever, D as $18f2051aff69b9bf$export$a54013f0d02a8f82, E as $18f2051aff69b9bf$export$43bb16f9c6d9e3f7, F as createCollection, I as X, M as clamp$2, N as usePrevious$2, P as useDirection, R as ChevronDown, S as assertNever, a as SelectGroup, c as SelectSeparator, d as NativeSelect, i as SelectContent, j as Trigger$1, l as SelectTrigger, n as capitalize, o as SelectItem, r as Select, s as SelectLabel, t as Strings, u as SelectValue, w as $a916eb452884faea$export$b7a616150fdb9f44 } from "./strings-DIy9NAmg.js";
33
- import { B as $64fa3d84918910a7$export$4d86445c2cf5e3, C as DropdownMenuTrigger, Ft as $65484d02dcb7eb3e$export$457c3d6518dd4c6f, It as $3ef42575df84b30b$export$9d1611c77c2fe928, W as $64fa3d84918910a7$export$df3a06d6289f983e, Wt as $ff5963eb1fccf552$export$e08e3b67e392101e, X as useDebouncedCallback, Y as useDebounceControlledState, a as NumberField, d as roundToFractionDigits, f as DropdownMenu, g as DropdownMenuLabel, gn as ChevronRight, h as DropdownMenuItem, hn as Circle, i as OnBlurredInput, l as prettyNumber, m as DropdownMenuGroup, n as DebouncedNumberInput, o as maxFractionDigitsForSteps, ot as $f7dceffc5ad7768b$export$4e328f61c538687f, p as DropdownMenuContent, pt as $6179b936705e76d3$export$ae780daf29e6d456, r as Input, st as $701a24aa0da5b062$export$ea18c227d4417cc3, t as DebouncedInput, u as prettyScientificNumber, v as DropdownMenuSeparator, xt as $458b0a5536c1a7cf$export$40bfa8c7b0832715, y as DropdownMenuShortcut, z as $64fa3d84918910a7$export$29f1550f4b0d4415 } from "./input-C5K4VBvB.js";
34
- import { S as isWasm, _ as initialModeAtom, b as viewStateAtom, c as asRemoteURL, d as isStaticNotebook, f as appendQueryParams, g as getInitialAppMode, m as require_cuid2, u as getStaticVirtualFiles, v as kioskModeAtom, w as CircleQuestionMark, x as Deferred } from "./toDate-CqhBWjvO.js";
35
- import { a as MarimoIncomingMessageEvent, c as MarimoValueUpdateEvent, f as Square, i as PythonIcon, l as createInputEvent, n as blobToString, o as MarimoValueInputEvent, p as File, r as filesToBase64, s as MarimoValueReadyEvent, t as processOutput, u as deserializeBlob } from "./process-output-bVfbcx5_.js";
36
- import { n as Trash, r as Pencil, t as BulkEdit } from "./types-DicH9Oi0.js";
37
- import { n as require_prop_types, r as Plus, t as ErrorBoundary } from "./ErrorBoundary-DhLqwSWA.js";
27
+ import { o as useSize, s as Root$1, u as createLucideIcon } from "./dist-DgzzIPS4.js";
28
+ import { A as SquareFunction, C as DEFAULT_COLOR_SCHEME, D as SCALE_TYPE_DESCRIPTIONS, E as EMPTY_VALUE$1, O as TIME_UNIT_DESCRIPTIONS, S as DEFAULT_AGGREGATION, T as DEFAULT_TIME_UNIT, _ as AGGREGATION_TYPE_DESCRIPTIONS, a as AGGREGATION_FNS$1, b as COLOR_SCHEMES, c as COLOR_BY_FIELDS, d as NONE_VALUE, f as SELECTABLE_DATA_TYPES, g as TIME_UNITS, h as STRING_AGGREGATION_FNS, i as convertDataTypeToSelectable, j as ChartColumn, k as escapeFieldName, l as COMBINED_TIME_UNITS, m as SORT_TYPES, n as createSpecWithoutData, o as BIN_AGGREGATION, p as SINGLE_TIME_UNITS, r as isFieldSet, s as CHART_TYPES, t as augmentSpecWithData, u as ChartType, v as AGGREGATION_TYPE_ICON, w as DEFAULT_MAX_BINS_FACET, x as COUNT_FIELD, y as CHART_TYPE_ICON } from "./spec-C7rMyZ_8.js";
29
+ import { $ as CommandSeparator, $t as Kbd, A as ErrorState, At as getPageIndexForRow, B as ContextMenuTrigger, Bt as dateToLocalISODate, C as downloadHTMLAsImage, Ct as inferFieldTypes, D as ColumnName, Dt as DelayMount, E as downloadSizeLimitAtom, Et as ColumnChartSpecModel, F as getUserColumnVisibilityCounts, Ft as TOO_MANY_ROWS, G as DateRangePicker, Gt as TabsList, H as useSelectList, Ht as dateToLocalISOTime, I as ContextMenu, It as toFieldTypes, J as Command, Jt as ChartInfoState, K as Combobox, Kt as TabsTrigger, L as ContextMenuContent, Lt as getMimeValues, M as prettifyRowColumnCount, Mt as loadTableData, N as prettifyRowCount, Nt as INDEX_COLUMN_NAME, O as ColumnPreviewContainer, Ot as useIntersectionObserver, P as getColumnCountForDisplay, Pt as SELECT_COLUMN_ID, Q as CommandList, Qt as RenderTextWithLinks, R as ContextMenuItem, Rt as isNullishFilter, S as downloadExportedFile, St as generateColumns, T as Filenames, Tt as ColumnChartContext, U as CompactChipRow, Ut as Tabs, V as useInternalStateWithSync, Vt as dateToLocalISODateTime, W as DatePicker, Wt as TabsContent, X as CommandInput, Xt as LazyVegaEmbed, Y as CommandEmpty, Yt as ChartLoadingState, Z as CommandItem, Zt as useOverflowDetection, _ as DataTable, _n as ChevronLeft, _t as TableCell, an as TextWrap, at as contextAwarePanelType, b as downloadBlob, bt as TableRow, c as SLIDE_TYPE_OPTIONS_BY_VALUE, cn as EyeOff, ct as slotsController, d as Switch, dn as Download, en as HtmlOutput, et as smartMatch, f as RadioGroup, fn as Code, g as OutputRenderer, gn as ChevronsDownUp, gt as TableBody, h as OutputArea, hn as ChevronsLeft, ht as Table, i as showCodeInRunModeAtom, in as $fae977aafc393c5c$export$6b862160d295c8e, it as contextAwarePanelOwner, j as LoadingState, jt as loadTableAndRawData, k as EmptyState, kt as usePrevious$1, lt as Toggle, m as JsonOutput, mn as ChevronsRight, mt as Provider$1, n as useNotebookCodeAvailable, nn as safeLocale, nt as PANEL_TYPES, on as GripHorizontal, ot as isCellAwareAtom, p as RadioGroupItem, pn as ChevronsUpDown, pt as Fill, q as ComboboxItem, qt as ChartErrorState, r as marimoVersionAtom, rn as $fae977aafc393c5c$export$588937bcd60ade55, rt as contextAwarePanelOpen, sn as Funnel, st as SlotNames, t as cellDomProps, tn as EmotionCacheProvider, tt as ContextAwarePanelItem, u as Slide, un as Ellipsis, v as InstallPackageButton, vn as ArrowDownWideNarrow, vt as TableHead, w as Progress, wt as renderCellValue, x as downloadByURL, xt as NAMELESS_COLUMN_PREFIX, y as ADD_PRINTING_CLASS, yt as TableHeader, z as ContextMenuSeparator, zt as Maps, __tla as __tla_2 } from "./common-BxnkCaMd.js";
30
+ import { c as Calendar, i as createReducerAndAtoms, n as useOnUnmount, o as ToggleLeft, t as useOnMount } from "./useLifecycle-CLPBATCv.js";
31
+ import { t as Check } from "./check-CCvJTB2E.js";
32
+ import { A as Icon, C as logNever, D as $18f2051aff69b9bf$export$a54013f0d02a8f82, E as $18f2051aff69b9bf$export$43bb16f9c6d9e3f7, F as createCollection, I as X, M as clamp$2, N as usePrevious$2, P as useDirection, R as ChevronDown, S as assertNever, a as SelectGroup, c as SelectSeparator, d as NativeSelect, i as SelectContent, j as Trigger$1, l as SelectTrigger, n as capitalize, o as SelectItem, r as Select, s as SelectLabel, t as Strings, u as SelectValue, w as $a916eb452884faea$export$b7a616150fdb9f44 } from "./strings-CITcoFNY.js";
33
+ import { B as $64fa3d84918910a7$export$4d86445c2cf5e3, C as DropdownMenuTrigger, Ft as $65484d02dcb7eb3e$export$457c3d6518dd4c6f, It as $3ef42575df84b30b$export$9d1611c77c2fe928, W as $64fa3d84918910a7$export$df3a06d6289f983e, Wt as $ff5963eb1fccf552$export$e08e3b67e392101e, X as useDebouncedCallback, Y as useDebounceControlledState, a as NumberField, d as roundToFractionDigits, f as DropdownMenu, g as DropdownMenuLabel, gn as ChevronRight, h as DropdownMenuItem, hn as Circle, i as OnBlurredInput, l as prettyNumber, m as DropdownMenuGroup, n as DebouncedNumberInput, o as maxFractionDigitsForSteps, ot as $f7dceffc5ad7768b$export$4e328f61c538687f, p as DropdownMenuContent, pt as $6179b936705e76d3$export$ae780daf29e6d456, r as Input, st as $701a24aa0da5b062$export$ea18c227d4417cc3, t as DebouncedInput, u as prettyScientificNumber, v as DropdownMenuSeparator, xt as $458b0a5536c1a7cf$export$40bfa8c7b0832715, y as DropdownMenuShortcut, z as $64fa3d84918910a7$export$29f1550f4b0d4415 } from "./input-DtTqU0xh.js";
34
+ import { S as isWasm, _ as initialModeAtom, b as viewStateAtom, c as asRemoteURL, d as isStaticNotebook, f as appendQueryParams, g as getInitialAppMode, m as require_cuid2, u as getStaticVirtualFiles, v as kioskModeAtom, w as CircleQuestionMark, x as Deferred } from "./toDate-kxcuDOWd.js";
35
+ import { a as MarimoIncomingMessageEvent, c as MarimoValueUpdateEvent, f as Square, i as PythonIcon, l as createInputEvent, n as blobToString, o as MarimoValueInputEvent, p as File, r as filesToBase64, s as MarimoValueReadyEvent, t as processOutput, u as deserializeBlob } from "./process-output-CjS9wS4l.js";
36
+ import { n as Trash, r as Pencil, t as BulkEdit } from "./types-kNUyqkDD.js";
37
+ import { n as require_prop_types, r as Plus, t as ErrorBoundary } from "./ErrorBoundary-8ZHte0h9.js";
38
38
  import { t as require_react_dom } from "./react-dom-BTJzcVJ9.js";
39
39
  import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
40
- import { $ as isInVscodeExtension, A as looseObject, B as union, C as any, E as custom, F as optional, G as parse$1, I as record, J as prettifyError, K as parseAsync, N as number, O as lazy$2, P as object, R as string, S as _null, T as boolean, U as ZodError, V as unknown, Z as withFullScreenAsRoot, _ as ZodString, _t as createContextScope, a as ZodIssueCode, b as _enum, c as ZodBoolean, ct as DismissableLayer, d as ZodDiscriminatedUnion, dt as useId$11, et as StyleNamespace, f as ZodEnum, ft as Presence, g as ZodOptional, h as ZodObject, ht as composeEventHandlers$1, i as string$1, j as nan, k as literal, l as ZodDate, m as ZodNumber, mt as useLayoutEffect2, n as date, o as ZodAny, p as ZodLiteral, pt as useControllableState, q as $ZodError, r as number$1, rt as __awaiter, s as ZodArray, t as zod_default, u as ZodDefault, ut as useCallbackRef, v as ZodType, vt as Primitive, w as array, x as _instanceof, y as ZodUnion, yt as dispatchDiscreteCustomEvent, z as tuple } from "./zod-BUcyXSdR.js";
41
- import { i as FunctionNotFoundError, n as ErrorBanner, r as CellNotInitializedError, t as Banner } from "./error-banner-B_GQfxxD.js";
42
- import { t as Label } from "./label-DjoYwqmj.js";
43
- import { a as TooltipRoot, i as TooltipProvider, n as TooltipContent, o as TooltipTrigger, r as TooltipPortal, t as Tooltip } from "./tooltip-f-qR0iUx.js";
44
- import { f as CopyClipboardIcon } from "./extends-w2_S44bV.js";
40
+ import { $ as isInVscodeExtension, A as looseObject, B as union, C as any, E as custom, F as optional, G as parse$1, I as record, J as prettifyError, K as parseAsync, N as number, O as lazy$2, P as object, R as string, S as _null, T as boolean, U as ZodError, V as unknown, Z as withFullScreenAsRoot, _ as ZodString, _t as createContextScope, a as ZodIssueCode, b as _enum, c as ZodBoolean, ct as DismissableLayer, d as ZodDiscriminatedUnion, dt as useId$11, et as StyleNamespace, f as ZodEnum, ft as Presence, g as ZodOptional, h as ZodObject, ht as composeEventHandlers$1, i as string$1, j as nan, k as literal, l as ZodDate, m as ZodNumber, mt as useLayoutEffect2, n as date, o as ZodAny, p as ZodLiteral, pt as useControllableState, q as $ZodError, r as number$1, rt as __awaiter, s as ZodArray, t as zod_default, u as ZodDefault, ut as useCallbackRef, v as ZodType, vt as Primitive, w as array, x as _instanceof, y as ZodUnion, yt as dispatchDiscreteCustomEvent, z as tuple } from "./zod-DdNi9290.js";
41
+ import { i as FunctionNotFoundError, n as ErrorBanner, r as CellNotInitializedError, t as Banner } from "./error-banner-DHfPl1w3.js";
42
+ import { t as Label } from "./label-5IC840tS.js";
43
+ import { a as TooltipRoot, i as TooltipProvider, n as TooltipContent, o as TooltipTrigger, r as TooltipPortal, t as Tooltip } from "./tooltip-BkSv4x8S.js";
44
+ import { f as CopyClipboardIcon } from "./extends-xQ_2Cylt.js";
45
45
  import { a as get_default } from "./hasIn-Deg7jl_j.js";
46
46
  import { n as _baseSet_default, t as pick_default } from "./pick-D1Qo8s2C.js";
47
47
  import { t as debounce_default } from "./debounce-BOD3DbfP.js";
48
- import { A as useEvent_default, S as useAtomValue, T as atom, a as KnownQueryParams, b as Provider, c as autoInstantiateAtom, f as useResolvedMarimoConfig, g as store, k as dequal, m as AppConfigSchema, n as useTheme, r as CSSClasses, u as localeAtom, x as useAtom, y as isIslands } from "./useTheme-DYfby65G.js";
48
+ import { A as useEvent_default, S as useAtomValue, T as atom, a as KnownQueryParams, b as Provider, c as autoInstantiateAtom, f as useResolvedMarimoConfig, g as store, k as dequal, m as AppConfigSchema, n as useTheme, r as CSSClasses, u as localeAtom, x as useAtom, y as isIslands } from "./useTheme-CEMsu1Js.js";
49
49
  import { $ as EditorView, F as syntaxHighlighting, H as tags, a as HighlightStyle, g as defaultHighlightStyle } from "./dist-De-GlSAs.js";
50
50
  import { t as invariant } from "./invariant-wRzNXIsJ.js";
51
51
  import { c as uniqueBy, l as clamp, o as arrayShallowEquals, t as Arrays } from "./arrays-sEtDRoG4.js";
@@ -58,15 +58,15 @@ import "./dist-BTdrwBWP.js";
58
58
  import "./dist-4lVIWUT3.js";
59
59
  import "./dist-DgjbnqTg.js";
60
60
  import { r as python } from "./dist-CRmSjkLP.js";
61
- import { n as minimalSetup, t as esm_default } from "./esm-DzZVaNH4.js";
61
+ import { n as minimalSetup, t as esm_default } from "./esm-DJsE6wi-.js";
62
62
  import "./purify.es-EnR5yhgI.js";
63
- import { i as AlertTitle, n as Alert, r as AlertDescription } from "./formats-Dwq1THhr.js";
63
+ import { i as AlertTitle, n as Alert, r as AlertDescription } from "./formats-D10vOEsT.js";
64
64
  import { H as getVegaFieldTypes, V as getContainerWidth } from "./vega-loader.browser-DmpxCJqx.js";
65
- import { a as tooltipHandler, n as vegaLoadData } from "./loader-DX-IDS7n.js";
65
+ import { a as tooltipHandler, n as vegaLoadData } from "./loader-DP2JkPth.js";
66
66
  import "./defaultLocale-BpsHxBd7.js";
67
67
  import "./defaultLocale-DoeErsX2.js";
68
- import { t as useAsyncData } from "./useAsyncData-CYOQb1EW.js";
69
- import { t as useDeepCompareMemoize } from "./useDeepCompareMemoize-CSHQeQEI.js";
68
+ import { t as useAsyncData } from "./useAsyncData-Uo4VFafD.js";
69
+ import { t as useDeepCompareMemoize } from "./useDeepCompareMemoize-s3ZvmdK3.js";
70
70
  import "./dist-BP39XM8u.js";
71
71
  import "./dist-C18MUWTj.js";
72
72
  import "./dist-BwhXBwMd.js";
@@ -9017,7 +9017,7 @@ let __tla = Promise.all([
9017
9017
  };
9018
9018
  }
9019
9019
  };
9020
- var LazyChatbot = import_react.lazy(() => import("./chat-ui-DsZJj75A.js").then((e) => ({
9020
+ var LazyChatbot = import_react.lazy(() => import("./chat-ui-CnjFz0bt.js").then((e) => ({
9021
9021
  default: e.Chatbot
9022
9022
  }))), messageSchema = array(object({
9023
9023
  id: string(),
@@ -9166,7 +9166,7 @@ let __tla = Promise.all([
9166
9166
  "time",
9167
9167
  "unknown"
9168
9168
  ];
9169
- var import_compiler_runtime$76 = require_compiler_runtime(), LazyDataEditor = import_react.lazy(() => import("./glide-data-editor-B9K6-MJe.js").then(async (m) => {
9169
+ var import_compiler_runtime$76 = require_compiler_runtime(), LazyDataEditor = import_react.lazy(() => import("./glide-data-editor-FiwJJzrV.js").then(async (m) => {
9170
9170
  await m.__tla;
9171
9171
  return m;
9172
9172
  }));
@@ -12547,7 +12547,7 @@ ${c}
12547
12547
  background: "var(--cm-background)",
12548
12548
  foreground: "#abb2bf",
12549
12549
  caret: "#528bff",
12550
- selection: "#3E4451",
12550
+ selection: "var(--cm-selection-background)",
12551
12551
  lineHighlight: "#2c313c",
12552
12552
  gutterBackground: "var(--color-background)",
12553
12553
  gutterForeground: "var(--gray-10)"
@@ -12629,15 +12629,16 @@ ${c}
12629
12629
  ]
12630
12630
  }),
12631
12631
  EditorView.theme({
12632
+ "&": {
12633
+ "--cm-selection-background": "var(--cm-selection-background-dark)"
12634
+ },
12632
12635
  ".mo-cm-reactive-reference": {
12633
12636
  fontWeight: "400",
12634
- color: "#2a7aa5",
12635
- borderBottom: "2px solid #bad3de"
12637
+ color: "var(--cm-reactive-reference-color-dark)",
12638
+ borderBottom: "2px solid var(--cm-reactive-reference-border-color)"
12636
12639
  },
12637
12640
  ".mo-cm-reactive-reference-hover": {
12638
- cursor: "pointer",
12639
- borderBottomWidth: "3px",
12640
- borderBottomColor: "#4a90a5"
12641
+ cursor: "pointer"
12641
12642
  }
12642
12643
  })
12643
12644
  ], lightTheme = [
@@ -12647,7 +12648,7 @@ ${c}
12647
12648
  background: "#ffffff",
12648
12649
  foreground: "#000000",
12649
12650
  caret: "#000000",
12650
- selection: "#d7d4f0",
12651
+ selection: "var(--cm-selection-background)",
12651
12652
  lineHighlight: "#cceeff44",
12652
12653
  gutterBackground: "var(--color-background)",
12653
12654
  gutterForeground: "var(--gray-10)"
@@ -12729,14 +12730,16 @@ ${c}
12729
12730
  ]
12730
12731
  }),
12731
12732
  EditorView.theme({
12733
+ "&": {
12734
+ "--cm-selection-background": "var(--cm-selection-background-light)"
12735
+ },
12732
12736
  ".mo-cm-reactive-reference": {
12733
12737
  fontWeight: "400",
12734
- color: "#005f87",
12735
- borderBottom: "2px solid #bad3de"
12738
+ color: "var(--cm-reactive-reference-color-light)",
12739
+ borderBottom: "2px solid var(--cm-reactive-reference-border-color)"
12736
12740
  },
12737
12741
  ".mo-cm-reactive-reference-hover": {
12738
- cursor: "pointer",
12739
- borderBottomWidth: "3px"
12742
+ cursor: "pointer"
12740
12743
  }
12741
12744
  })
12742
12745
  ];
@@ -17034,7 +17037,7 @@ ${c}
17034
17037
  fullWidth: p,
17035
17038
  children: T
17036
17039
  }), r[20] = p, r[21] = g, r[22] = c, r[23] = T, r[24] = E) : E = r[24], E;
17037
- }, LazyDataExplorerComponent = import_react.lazy(() => import("./ConnectedDataExplorerComponent-f9vLjQiF.js"));
17040
+ }, LazyDataExplorerComponent = import_react.lazy(() => import("./ConnectedDataExplorerComponent-BEb8RZam.js"));
17038
17041
  const DataExplorerPlugin = createPlugin("marimo-data-explorer").withData(object({
17039
17042
  label: string().nullish(),
17040
17043
  data: string()
@@ -28446,7 +28449,7 @@ ${c}
28446
28449
  return true;
28447
28450
  }
28448
28451
  }
28449
- var LazyVegaComponent = import_react.lazy(() => import("./vega-component-C7nO5zcf.js")), VegaPlugin = class {
28452
+ var LazyVegaComponent = import_react.lazy(() => import("./vega-component-DGkcoXu3.js")), VegaPlugin = class {
28450
28453
  constructor() {
28451
28454
  __publicField(this, "tagName", "marimo-vega");
28452
28455
  __publicField(this, "validator", object({
@@ -28585,7 +28588,7 @@ ${c}
28585
28588
  children: e.children
28586
28589
  });
28587
28590
  }
28588
- }, LazySlidesComponent$1 = import_react.lazy(() => import("./swiper-component-CEdAYjb7.js"));
28591
+ }, LazySlidesComponent$1 = import_react.lazy(() => import("./swiper-component-dl1H9WIW.js"));
28589
28592
  const DownloadPlugin = createPlugin("marimo-download").withData(object({
28590
28593
  data: string(),
28591
28594
  disabled: boolean().default(false),
@@ -28641,7 +28644,7 @@ ${c}
28641
28644
  f
28642
28645
  ]
28643
28646
  });
28644
- }, LazyImageComparisonComponent = import_react.lazy(() => import("./ImageComparisonComponent-C3y7L3eJ.js")), ImageComparisonPlugin = class {
28647
+ }, LazyImageComparisonComponent = import_react.lazy(() => import("./ImageComparisonComponent-fdY0LUuf.js")), ImageComparisonPlugin = class {
28645
28648
  constructor() {
28646
28649
  __publicField(this, "tagName", "marimo-image-comparison");
28647
28650
  __publicField(this, "validator", object({
@@ -28775,7 +28778,7 @@ ${c}
28775
28778
  themeVariables: e.data.theme_variables
28776
28779
  });
28777
28780
  }
28778
- }, LazyMermaid = (0, import_react.lazy)(() => import("./mermaid-hv6IckVw.js").then(async (m) => {
28781
+ }, LazyMermaid = (0, import_react.lazy)(() => import("./mermaid-BNhC-PrB.js").then(async (m) => {
28779
28782
  await m.__tla;
28780
28783
  return m;
28781
28784
  })), import_compiler_runtime$22 = require_compiler_runtime();
@@ -38218,7 +38221,7 @@ ${c}
38218
38221
  function _temp2$2(e) {
38219
38222
  e.target === e.currentTarget && e.key === "Enter" && (e.preventDefault(), e.stopPropagation(), e.currentTarget.click());
38220
38223
  }
38221
- var LazySlidesComponent = import_react.lazy(() => import("./reveal-component-CcSMtt1K.js"));
38224
+ var LazySlidesComponent = import_react.lazy(() => import("./reveal-component-D8ttQmaR.js"));
38222
38225
  const SlidesLayoutRenderer = ({ layout: e, setLayout: r, cells: c, mode: l }) => {
38223
38226
  var _a5;
38224
38227
  let u = useAtomValue(kioskModeAtom), d = l === "read" || u, f = useAtomValue(numColumnsAtom) > 1, [p, m] = (0, import_react.useState)(null), { slideCells: h, skippedIds: g, noOutputIds: _, slideTypes: v, startCellIndex: y } = (0, import_react.useMemo)(() => computeSlideCellsInfo(c, e), [
@@ -1,15 +1,15 @@
1
1
  import { s as __toESM } from "./chunk-BNovOVIE.js";
2
- import { g as Logger } from "./button-BSm8IXRU.js";
2
+ import { g as Logger } from "./button-8aS1QcHr.js";
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 "./react-dom-BTJzcVJ9.js";
6
6
  import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
7
- import "./zod-BUcyXSdR.js";
8
- import { n as ErrorBanner } from "./error-banner-B_GQfxxD.js";
7
+ import "./zod-DdNi9290.js";
8
+ import { n as ErrorBanner } from "./error-banner-DHfPl1w3.js";
9
9
  import { t as isEmpty_default } from "./isEmpty-CJJMn-QP.js";
10
- import { n as useTheme } from "./useTheme-DYfby65G.js";
10
+ import { n as useTheme } from "./useTheme-CEMsu1Js.js";
11
11
  import { t as purify } from "./purify.es-EnR5yhgI.js";
12
- import { t as useAsyncData } from "./useAsyncData-CYOQb1EW.js";
12
+ import { t as useAsyncData } from "./useAsyncData-Uo4VFafD.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-BdgLc8AM.js";
14
14
  import { a as setLogLevel, i as log, r as __name, t as select_default } from "./src-DV3ha_nA.js";
15
15
  import { t as package_default } from "./chunk-DR5Q36YT-5Yp2GWwR.js";
@@ -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 { F as base64ToDataURL, ot as ansiToPlainText, st as parseHtmlContent } from "./html-to-image-CZ1kLKkq.js";
4
- import { u as createLucideIcon } from "./dist-DIlxLFXG.js";
5
- import { t as Strings } from "./strings-DIy9NAmg.js";
3
+ import { F as base64ToDataURL, ot as ansiToPlainText, st as parseHtmlContent } from "./html-to-image-B8KJvlou.js";
4
+ import { u as createLucideIcon } from "./dist-DgzzIPS4.js";
5
+ import { t as Strings } from "./strings-CITcoFNY.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", {
@@ -3,21 +3,21 @@ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { en
3
3
  var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
4
4
  var _a, _b;
5
5
  import { s as __toESM } from "./chunk-BNovOVIE.js";
6
- import { c as useEventListener, g as Logger, h as cn, m as Events, t as Button } from "./button-BSm8IXRU.js";
6
+ import { c as useEventListener, g as Logger, h as cn, m as Events, t as Button } from "./button-8aS1QcHr.js";
7
7
  import { t as require_react } from "./react-DA-nE2FX.js";
8
8
  import { t as require_compiler_runtime } from "./compiler-runtime-CEbnTgxf.js";
9
- import { ut as outputIsStale } from "./html-to-image-CZ1kLKkq.js";
9
+ import { ut as outputIsStale } from "./html-to-image-B8KJvlou.js";
10
10
  import "./chunk-5FQGJX7Z-B9WoXK1R.js";
11
- import { u as createLucideIcon } from "./dist-DIlxLFXG.js";
12
- import { a as DEFAULT_DECK_TRANSITION, cn as EyeOff, dt as PanelGroup, fn as Code, ft as PanelResizeHandle, l as SlideSidebar, ln as Expand, n as useNotebookCodeAvailable, o as DEFAULT_DECK_VERTICAL_ALIGN, s as DEFAULT_SLIDE_TYPE, t as cellDomProps, u as Slide, ut as Panel } from "./common-D747zlkP.js";
13
- import { R as ChevronDown } from "./strings-DIy9NAmg.js";
14
- import { X as useDebouncedCallback } from "./input-C5K4VBvB.js";
15
- import { v as kioskModeAtom } from "./toDate-CqhBWjvO.js";
11
+ import { u as createLucideIcon } from "./dist-DgzzIPS4.js";
12
+ import { a as DEFAULT_DECK_TRANSITION, cn as EyeOff, dt as PanelGroup, fn as Code, ft as PanelResizeHandle, l as SlideSidebar, ln as Expand, n as useNotebookCodeAvailable, o as DEFAULT_DECK_VERTICAL_ALIGN, s as DEFAULT_SLIDE_TYPE, t as cellDomProps, u as Slide, ut as Panel } from "./common-BxnkCaMd.js";
13
+ import { R as ChevronDown } from "./strings-CITcoFNY.js";
14
+ import { X as useDebouncedCallback } from "./input-DtTqU0xh.js";
15
+ import { v as kioskModeAtom } from "./toDate-kxcuDOWd.js";
16
16
  import "./react-dom-BTJzcVJ9.js";
17
17
  import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
18
- import { X as useFullScreenElement } from "./zod-BUcyXSdR.js";
19
- import { t as Tooltip } from "./tooltip-f-qR0iUx.js";
20
- import { A as useEvent_default, S as useAtomValue, y as isIslands } from "./useTheme-DYfby65G.js";
18
+ import { X as useFullScreenElement } from "./zod-DdNi9290.js";
19
+ import { t as Tooltip } from "./tooltip-BkSv4x8S.js";
20
+ import { A as useEvent_default, S as useAtomValue, y as isIslands } from "./useTheme-CEMsu1Js.js";
21
21
  import "./dist-De-GlSAs.js";
22
22
  import "./main-B1Jo_8pC.js";
23
23
  import "./dist-BOMbzyb3.js";
@@ -27,7 +27,7 @@ import "./dist-DgjbnqTg.js";
27
27
  import "./dist-CRmSjkLP.js";
28
28
  import "./purify.es-EnR5yhgI.js";
29
29
  import "./vega-loader.browser-DmpxCJqx.js";
30
- import "./loader-DX-IDS7n.js";
30
+ import "./loader-DP2JkPth.js";
31
31
  import "./defaultLocale-BpsHxBd7.js";
32
32
  import "./defaultLocale-DoeErsX2.js";
33
33
  var StickyNote = createLucideIcon("sticky-note", [["path", {
@@ -1,7 +1,7 @@
1
- import { u as createLucideIcon } from "./dist-DIlxLFXG.js";
2
- import { s as Hash } from "./useLifecycle-CMJGqBaY.js";
3
- import { i as Table, o as ChartPie } from "./useDateFormatter-Bt2qr_XS.js";
4
- import { C as logNever } from "./strings-DIy9NAmg.js";
1
+ import { u as createLucideIcon } from "./dist-DgzzIPS4.js";
2
+ import { s as Hash } from "./useLifecycle-CLPBATCv.js";
3
+ import { i as Table, o as ChartPie } from "./useDateFormatter-ZCfHadYP.js";
4
+ import { C as logNever } from "./strings-CITcoFNY.js";
5
5
  var AlignCenterVertical = createLucideIcon("align-center-vertical", [
6
6
  ["path", {
7
7
  d: "M12 2v20",
@@ -1,12 +1,12 @@
1
1
  import { s as __toESM } from "./chunk-BNovOVIE.js";
2
- import { g as Logger, h as cn, m as Events, p as useComposedRefs, r as cva, u as createSlot } from "./button-BSm8IXRU.js";
2
+ import { g as Logger, h as cn, m as Events, p as useComposedRefs, r as cva, u as createSlot } from "./button-8aS1QcHr.js";
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
- import { a as createPopperScope, c as VISUALLY_HIDDEN_STYLES, i as Root2$1, n as Arrow, r as Content, t as Anchor, u as createLucideIcon } from "./dist-DIlxLFXG.js";
6
- import { t as Check } from "./check-DP7U0H0G.js";
5
+ import { a as createPopperScope, c as VISUALLY_HIDDEN_STYLES, i as Root2$1, n as Arrow, r as Content, t as Anchor, u as createLucideIcon } from "./dist-DgzzIPS4.js";
6
+ import { t as Check } from "./check-CCvJTB2E.js";
7
7
  import { t as require_react_dom } from "./react-dom-BTJzcVJ9.js";
8
8
  import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
9
- import { Q as withSmartCollisionBoundary, Z as withFullScreenAsRoot, _t as createContextScope, at as Portal, ct as DismissableLayer, dt as useId, et as StyleNamespace, ht as composeEventHandlers, it as useFocusGuards, mt as useLayoutEffect2, nt as Combination_default, ot as FocusScope, pt as useControllableState, tt as hideOthers, ut as useCallbackRef, vt as Primitive } from "./zod-BUcyXSdR.js";
9
+ import { Q as withSmartCollisionBoundary, Z as withFullScreenAsRoot, _t as createContextScope, at as Portal, ct as DismissableLayer, dt as useId, et as StyleNamespace, ht as composeEventHandlers, it as useFocusGuards, mt as useLayoutEffect2, nt as Combination_default, ot as FocusScope, pt as useControllableState, tt as hideOthers, ut as useCallbackRef, vt as Primitive } from "./zod-DdNi9290.js";
10
10
  import { t as invariant } from "./invariant-wRzNXIsJ.js";
11
11
  var ChevronDown = createLucideIcon("chevron-down", [["path", {
12
12
  d: "m6 9 6 6 6-6",