@marimo-team/islands 0.23.16-dev76 → 0.23.16-dev9
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.
- package/dist/{ConnectedDataExplorerComponent-CJaUI-S-.js → ConnectedDataExplorerComponent-f9vLjQiF.js} +13 -13
- package/dist/{ErrorBoundary-DXlxsrTF.js → ErrorBoundary-DhLqwSWA.js} +3 -3
- package/dist/{any-language-editor-P9tjkj4n.js → any-language-editor-DifE-fl7.js} +5 -5
- package/dist/{button-BcSml68y.js → button-BSm8IXRU.js} +2 -4
- package/dist/{capabilities-BYLFYTYv.js → capabilities-C6OQ5YBO.js} +1 -1
- package/dist/{chat-ui-BdSDiVjk.js → chat-ui-JeekqoMH.js} +16 -16
- package/dist/{check-Cs-KV5XY.js → check-DP7U0H0G.js} +1 -1
- package/dist/{code-visibility-BQmXTtK5.js → code-visibility-DveLKNtj.js} +734 -711
- package/dist/{copy-Cs3yt6Vt.js → copy-DNq8q3zw.js} +2 -2
- package/dist/{dist-B96tMAst.js → dist-DIlxLFXG.js} +2 -2
- package/dist/{error-banner-DR7o3CbX.js → error-banner-B_GQfxxD.js} +2 -2
- package/dist/{esm-k8PIvuZW.js → esm-DzZVaNH4.js} +1 -1
- package/dist/{extends-Cq2JYHKy.js → extends-w2_S44bV.js} +4 -4
- package/dist/{formats-BFhkZJwd.js → formats-CO8cn5_K.js} +3 -3
- package/dist/{glide-data-editor--CaN-f27.js → glide-data-editor-B9K6-MJe.js} +9 -9
- package/dist/{html-to-image-DDENewl2.js → html-to-image-Bif4utQZ.js} +15 -15
- package/dist/{input-DStQIuqD.js → input-C5K4VBvB.js} +7 -7
- package/dist/{label-DIk0QoFe.js → label-DjoYwqmj.js} +2 -2
- package/dist/{loader-CTHCI-qe.js → loader-DX-IDS7n.js} +1 -1
- package/dist/main.js +1000 -1010
- package/dist/{mermaid-CdSvixW2.js → mermaid-hv6IckVw.js} +5 -5
- package/dist/{process-output-2QPcgBQg.js → process-output-TAzy-GUk.js} +3 -3
- package/dist/{reveal-component-B-AxUPCM.js → reveal-component-DxV4Ppa2.js} +692 -618
- package/dist/{spec-CnaxwDqy.js → spec-CQKL_D3i.js} +4 -4
- package/dist/{strings-BYAhZnQi.js → strings-DIy9NAmg.js} +4 -4
- package/dist/style.css +1 -1
- package/dist/{swiper-component-DE94711u.js → swiper-component-CEdAYjb7.js} +2 -2
- package/dist/{toDate-B3IRfHhw.js → toDate-CmR_xR3P.js} +3 -3
- package/dist/{tooltip-B-qh7UPB.js → tooltip-f-qR0iUx.js} +3 -3
- package/dist/{types-DQl7jVYK.js → types-DicH9Oi0.js} +1 -1
- package/dist/{useAsyncData-CvO8WUy3.js → useAsyncData-CYOQb1EW.js} +1 -1
- package/dist/{useDateFormatter-BSoGim-G.js → useDateFormatter-Bt2qr_XS.js} +2 -2
- package/dist/{useDeepCompareMemoize-J3MKRdA4.js → useDeepCompareMemoize-CSHQeQEI.js} +1 -1
- package/dist/{useIframeCapabilities-POcFXHbw.js → useIframeCapabilities-kA09ykNq.js} +1 -1
- package/dist/{useLifecycle-DqPxHgAN.js → useLifecycle-CMJGqBaY.js} +3 -3
- package/dist/{useTheme-XMq9mNf_.js → useTheme-DYfby65G.js} +2 -2
- package/dist/{vega-component-CrFoZT1S.js → vega-component-DphdxaJ_.js} +10 -10
- package/dist/{zod-D0yOqoGe.js → zod-BUcyXSdR.js} +1 -1
- package/package.json +1 -1
- package/src/components/data-table/column-formatting/feature.ts +2 -1
- package/src/components/editor/file-tree/__tests__/file-render-mode.test.ts +27 -0
- package/src/components/editor/file-tree/__tests__/file-viewer.test.tsx +150 -0
- package/src/components/editor/file-tree/file-preview-metadata.tsx +51 -0
- package/src/components/editor/file-tree/file-render-mode.ts +32 -0
- package/src/components/editor/file-tree/file-viewer.tsx +76 -50
- package/src/components/editor/output/CalloutOutput.tsx +17 -3
- package/src/components/slides/__tests__/slide-scroll-hint.test.tsx +198 -0
- package/src/components/slides/reveal-component.tsx +3 -2
- package/src/components/slides/slide-scroll-hint.tsx +161 -0
- package/src/components/ui/input.tsx +1 -1
- package/src/core/codemirror/keymaps/__tests__/keymaps.test.ts +31 -2
- package/src/core/codemirror/keymaps/keymaps.ts +12 -0
- package/src/core/hotkeys/hotkeys.ts +0 -2
- package/src/core/i18n/__tests__/locale-provider.test.tsx +54 -118
- package/src/core/i18n/__tests__/locale.test.ts +113 -0
- package/src/core/i18n/locale-provider.tsx +1 -19
- package/src/core/i18n/locale.ts +71 -0
- package/src/core/network/types.ts +3 -1
- package/src/css/admonition.css +52 -71
- package/src/plugins/impl/FormPlugin.tsx +1 -1
- package/src/plugins/impl/__tests__/FormPlugin.test.tsx +162 -0
- package/src/plugins/layout/CalloutPlugin.tsx +8 -1
- package/src/stories/callout.stories.tsx +12 -0
- package/src/components/editor/output/CalloutOutput.styles.ts +0 -22
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { s as __toESM } from "./chunk-BNovOVIE.js";
|
|
2
|
-
import { g as Logger } from "./button-
|
|
2
|
+
import { g as Logger } from "./button-BSm8IXRU.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 { u as createLucideIcon } from "./dist-
|
|
5
|
+
import { u as createLucideIcon } from "./dist-DIlxLFXG.js";
|
|
6
6
|
require_compiler_runtime(), require_react();
|
|
7
7
|
var TOAST_LIMIT = 1, TOAST_REMOVE_DELAY = 1e4, count = 0;
|
|
8
8
|
function genId() {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { s as __toESM } from "./chunk-BNovOVIE.js";
|
|
2
|
-
import { p as useComposedRefs } from "./button-
|
|
2
|
+
import { p as useComposedRefs } from "./button-BSm8IXRU.js";
|
|
3
3
|
import { t as require_react } from "./react-DA-nE2FX.js";
|
|
4
4
|
import { t as require_react_dom } from "./react-dom-BTJzcVJ9.js";
|
|
5
5
|
import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
|
|
6
|
-
import { _t as createContextScope, mt as useLayoutEffect2, ut as useCallbackRef, vt as Primitive } from "./zod-
|
|
6
|
+
import { _t as createContextScope, mt as useLayoutEffect2, ut as useCallbackRef, vt as Primitive } from "./zod-BUcyXSdR.js";
|
|
7
7
|
/**
|
|
8
8
|
* @license lucide-react v0.563.0 - ISC
|
|
9
9
|
*
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { s as __toESM } from "./chunk-BNovOVIE.js";
|
|
2
|
-
import { d as createSlottable, g as Logger, h as cn, n as buttonVariants, p as useComposedRefs, r as cva, u as createSlot } from "./button-
|
|
2
|
+
import { d as createSlottable, g as Logger, h as cn, n as buttonVariants, p as useComposedRefs, r as cva, u as createSlot } from "./button-BSm8IXRU.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 { P as object, R as string, Z as withFullScreenAsRoot, _t as createContextScope, at as Portal, ct as DismissableLayer, dt as useId, et as StyleNamespace, ft as Presence, gt as createContext2, ht as composeEventHandlers, it as useFocusGuards, nt as Combination_default, ot as FocusScope, pt as useControllableState, tt as hideOthers, vt as Primitive } from "./zod-
|
|
6
|
+
import { P as object, R as string, Z as withFullScreenAsRoot, _t as createContextScope, at as Portal, ct as DismissableLayer, dt as useId, et as StyleNamespace, ft as Presence, gt as createContext2, ht as composeEventHandlers, it as useFocusGuards, nt as Combination_default, ot as FocusScope, pt as useControllableState, tt as hideOthers, vt as Primitive } from "./zod-BUcyXSdR.js";
|
|
7
7
|
var import_react = /* @__PURE__ */ __toESM(require_react(), 1), import_jsx_runtime = /* @__PURE__ */ __toESM(require_jsx_runtime(), 1), DIALOG_NAME = "Dialog", [createDialogContext, createDialogScope] = createContextScope(DIALOG_NAME), [DialogProvider, useDialogContext] = createDialogContext(DIALOG_NAME), Dialog = (t) => {
|
|
8
8
|
let { __scopeDialog: F, children: I, open: L, defaultOpen: R, onOpenChange: z, modal: B = true } = t, V = import_react.useRef(null), H = import_react.useRef(null), [U, W] = useControllableState({
|
|
9
9
|
prop: L,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { s as __toESM } from "./chunk-BNovOVIE.js";
|
|
2
2
|
import { t as require_react } from "./react-DA-nE2FX.js";
|
|
3
3
|
import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
|
|
4
|
-
import { l as historyKeymap, o as defaultKeymap, r as lintKeymap, s as history, t as _extends, u as indentWithTab } from "./extends-
|
|
4
|
+
import { l as historyKeymap, o as defaultKeymap, r as lintKeymap, s as history, t as _extends, u as indentWithTab } from "./extends-w2_S44bV.js";
|
|
5
5
|
import { $ as EditorView, At as EditorState, C as foldKeymap, Ct as crelt, Dt as CharCategory, F as syntaxHighlighting, Ft as RangeSetBuilder, Gt as findClusterBreak, H as tags, Ht as codePointSize, Kt as fromCodePoint, Lt as StateEffect, Nt as Prec, Rt as StateField, Ut as combineConfig, Vt as codePointAt, Z as Decoration, _t as placeholder, a as HighlightStyle, at as drawSelection, bt as showDialog, dt as highlightActiveLineGutter, ft as highlightSpecialChars, g as defaultHighlightStyle, ht as lineNumbers, it as crosshairCursor, j as indentUnit, jt as Facet, k as indentOnInput, kt as EditorSelection, mt as keymap, ot as dropCursor, p as bracketMatching, st as getPanel, tt as ViewPlugin, ut as highlightActiveLine, vt as rectangularSelection, wt as Annotation, x as foldGutter, xt as showPanel, yt as runScopeHandlers } from "./dist-De-GlSAs.js";
|
|
6
6
|
import { a as closeBracketsKeymap, c as completionKeymap, i as closeBrackets, r as autocompletion } from "./dist-CSlJrrAw.js";
|
|
7
7
|
var basicNormalize = typeof String.prototype.normalize == "function" ? (e2) => e2.normalize("NFKD") : (e2) => e2, SearchCursor = class {
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { s as __toESM } from "./chunk-BNovOVIE.js";
|
|
2
|
-
import { h as cn, m as Events } from "./button-
|
|
2
|
+
import { h as cn, m as Events } from "./button-BSm8IXRU.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 { n as Copy, r as toast, t as copyToClipboard } from "./copy-
|
|
6
|
-
import { t as Check } from "./check-
|
|
5
|
+
import { n as Copy, r as toast, t as copyToClipboard } from "./copy-DNq8q3zw.js";
|
|
6
|
+
import { t as Check } from "./check-DP7U0H0G.js";
|
|
7
7
|
import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
|
|
8
|
-
import { t as Tooltip } from "./tooltip-
|
|
8
|
+
import { t as Tooltip } from "./tooltip-f-qR0iUx.js";
|
|
9
9
|
import { $ as EditorView, A as indentString, Bt as Transaction, Ct as crelt, D as getIndentation, E as getIndentUnit, Et as ChangeSet, Ft as RangeSetBuilder, Gt as findClusterBreak, I as syntaxTree, Lt as StateEffect, N as matchBrackets, Pt as RangeSet, Q as Direction, Rt as StateField, Tt as ChangeDesc, Ut as combineConfig, W as NodeProp, Wt as countColumn, Z as Decoration, gt as logException, j as indentUnit, jt as Facet, kt as EditorSelection, nt as WidgetType, o as IndentContext, pt as hoverTooltip, rt as activateHover, st as getPanel, tt as ViewPlugin, wt as Annotation, xt as showPanel, zt as Text } from "./dist-De-GlSAs.js";
|
|
10
10
|
var import_compiler_runtime = require_compiler_runtime(), import_react = /* @__PURE__ */ __toESM(require_react(), 1), import_jsx_runtime = /* @__PURE__ */ __toESM(require_jsx_runtime(), 1);
|
|
11
11
|
const CopyClipboardIcon = (e5) => {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { s as __toESM } from "./chunk-BNovOVIE.js";
|
|
2
|
-
import { h as cn, r as cva } from "./button-
|
|
2
|
+
import { h as cn, r as cva } from "./button-BSm8IXRU.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 { t as toDate } from "./toDate-
|
|
5
|
+
import { t as toDate } from "./toDate-CmR_xR3P.js";
|
|
6
6
|
import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
|
|
7
|
-
import { i as tableFromIPC } from "./loader-
|
|
7
|
+
import { i as tableFromIPC } from "./loader-DX-IDS7n.js";
|
|
8
8
|
function isDate(e) {
|
|
9
9
|
return e instanceof Date || typeof e == "object" && Object.prototype.toString.call(e) === "[object Date]";
|
|
10
10
|
}
|
|
@@ -2,19 +2,19 @@ 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
|
import { s as __toESM, t as __commonJSMin } from "./chunk-BNovOVIE.js";
|
|
5
|
-
import { g as Logger, m as Events, t as Button } from "./button-
|
|
5
|
+
import { g as Logger, m as Events, t as Button } from "./button-BSm8IXRU.js";
|
|
6
6
|
import { t as require_react } from "./react-DA-nE2FX.js";
|
|
7
7
|
import { t as require_compiler_runtime } from "./compiler-runtime-CEbnTgxf.js";
|
|
8
|
-
import { n as Copy, r as toast, t as copyToClipboard } from "./copy-
|
|
9
|
-
import { C as logNever, i as SelectContent, l as SelectTrigger, n as capitalize, o as SelectItem, r as Select, u as SelectValue } from "./strings-
|
|
10
|
-
import { J as marked, S as DropdownMenuSubTrigger, _ as DropdownMenuPortal, b as DropdownMenuSub, f as DropdownMenu, h as DropdownMenuItem, p as DropdownMenuContent, q as useNonce, r as Input, v as DropdownMenuSeparator, x as DropdownMenuSubContent } from "./input-
|
|
11
|
-
import { n as Trash, r as Pencil, t as BulkEdit } from "./types-
|
|
12
|
-
import { n as require_prop_types, r as Plus, t as ErrorBoundary } from "./ErrorBoundary-
|
|
8
|
+
import { n as Copy, r as toast, t as copyToClipboard } from "./copy-DNq8q3zw.js";
|
|
9
|
+
import { C as logNever, i as SelectContent, l as SelectTrigger, n as capitalize, o as SelectItem, r as Select, u as SelectValue } from "./strings-DIy9NAmg.js";
|
|
10
|
+
import { J as marked, S as DropdownMenuSubTrigger, _ as DropdownMenuPortal, b as DropdownMenuSub, f as DropdownMenu, h as DropdownMenuItem, p as DropdownMenuContent, q as useNonce, r as Input, v as DropdownMenuSeparator, x as DropdownMenuSubContent } from "./input-C5K4VBvB.js";
|
|
11
|
+
import { n as Trash, r as Pencil, t as BulkEdit } from "./types-DicH9Oi0.js";
|
|
12
|
+
import { n as require_prop_types, r as Plus, t as ErrorBoundary } from "./ErrorBoundary-DhLqwSWA.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 "./zod-
|
|
16
|
-
import { t as Label } from "./label-
|
|
17
|
-
import { A as useEvent_default, n as useTheme } from "./useTheme-
|
|
15
|
+
import "./zod-BUcyXSdR.js";
|
|
16
|
+
import { t as Label } from "./label-DjoYwqmj.js";
|
|
17
|
+
import { A as useEvent_default, n as useTheme } from "./useTheme-DYfby65G.js";
|
|
18
18
|
import { A as require_isLength, B as require_isFunction, C as resolveCellsThunk, D as maybe, E as deepEqual, F as require__Map, G as require__baseGetTag, H as require__isKey, I as require__ListCache, J as require__freeGlobal, K as require__Symbol, L as require_eq, M as require_isArguments, N as require__castPath, O as require__hasPath, P as require__MapCache, R as require__getNative, S as isSizedGridColumn, T as assertNever, U as require_isSymbol, V as require_isObject, W as require_isObjectLike, Y as require_isArray, _ as booleanCellIsEditable, a as mergeAndRealizeTheme, b as isObjectEditorCallbackResult, c as withAlpha, d as CompactSelection, f as DEFAULT_FILL_HANDLE, g as InnerGridCellKind, h as GridColumnMenuIcon, i as makeCSSStyle, j as require__isIndex, k as require__toKey, l as BooleanEmpty, m as GridColumnIcon, n as ThemeContext, o as blend, p as GridCellKind, q as require__root, r as getDataEditorTheme, s as blendCache, t as ClickOutsideContainer, u as BooleanIndeterminate, v as isEditableGridCell, w as assert, x as isReadWriteCell, y as isInnerOnlyCell, z as require__toSource } from "./click-outside-container-BSIeYt4y.js";
|
|
19
19
|
import { t as styled_default } from "./dist-SXNmlE8A.js";
|
|
20
20
|
let GlideDataEditor, glide_data_editor_default;
|
|
@@ -2,30 +2,30 @@ 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
|
import { a as __toCommonJS, n as __esmMin, o as __toDynamicImportESM, r as __export, s as __toESM, t as __commonJSMin } from "./chunk-BNovOVIE.js";
|
|
5
|
-
import { g as Logger, h as cn, o as isPlatformMac, p as useComposedRefs, r as cva, t as Button, u as createSlot } from "./button-
|
|
5
|
+
import { g as Logger, h as cn, o as isPlatformMac, p as useComposedRefs, r as cva, t as Button, u as createSlot } from "./button-BSm8IXRU.js";
|
|
6
6
|
import { t as require_react } from "./react-DA-nE2FX.js";
|
|
7
7
|
import { t as require_compiler_runtime } from "./compiler-runtime-CEbnTgxf.js";
|
|
8
|
-
import { r as toast, t as copyToClipboard } from "./copy-
|
|
8
|
+
import { r as toast, t as copyToClipboard } from "./copy-DNq8q3zw.js";
|
|
9
9
|
import { a as gn, c as rehypeSanitize, l as defaultSchema, s as xn, u as require_cjs, __tla as __tla_0 } from "./chunk-5FQGJX7Z-B9WoXK1R.js";
|
|
10
|
-
import { a as createPopperScope, i as Root2$3, l as VisuallyHidden, n as Arrow, o as useSize, r as Content$1, t as Anchor, u as createLucideIcon } from "./dist-
|
|
11
|
-
import { a as Type, c as Calendar, i as createReducerAndAtoms, o as ToggleLeft, r as Badge, s as Hash, t as useOnMount } from "./useLifecycle-
|
|
12
|
-
import { t as Check } from "./check-
|
|
13
|
-
import { C as logNever, F as createCollection, I as X, N as usePrevious, P as useDirection, R as ChevronDown, S as assertNever, 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 } from "./strings-
|
|
14
|
-
import { J as marked, X as useDebouncedCallback, _t as $f6c31cce2adf654f$export$45712eceda6fad21, q as useNonce } from "./input-
|
|
15
|
-
import { _ as isWasm, g as Deferred, h as waitForConnectionOpen, l as getRuntimeManager, t as toDate, v as CircleQuestionMark } from "./toDate-
|
|
10
|
+
import { a as createPopperScope, i as Root2$3, l as VisuallyHidden, n as Arrow, o as useSize, r as Content$1, t as Anchor, u as createLucideIcon } from "./dist-DIlxLFXG.js";
|
|
11
|
+
import { a as Type, c as Calendar, i as createReducerAndAtoms, o as ToggleLeft, r as Badge, s as Hash, t as useOnMount } from "./useLifecycle-CMJGqBaY.js";
|
|
12
|
+
import { t as Check } from "./check-DP7U0H0G.js";
|
|
13
|
+
import { C as logNever, F as createCollection, I as X, N as usePrevious, P as useDirection, R as ChevronDown, S as assertNever, 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 } from "./strings-DIy9NAmg.js";
|
|
14
|
+
import { J as marked, X as useDebouncedCallback, _t as $f6c31cce2adf654f$export$45712eceda6fad21, q as useNonce } from "./input-C5K4VBvB.js";
|
|
15
|
+
import { _ as isWasm, g as Deferred, h as waitForConnectionOpen, l as getRuntimeManager, t as toDate, v as CircleQuestionMark } from "./toDate-CmR_xR3P.js";
|
|
16
16
|
import { t as require_react_dom } from "./react-dom-BTJzcVJ9.js";
|
|
17
17
|
import { t as require_jsx_runtime } from "./jsx-runtime-DebpN0FN.js";
|
|
18
|
-
import { B as union, N as number, P as object, Q as withSmartCollisionBoundary, R as string, T as boolean, 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, k as literal, lt as Root$1, mt as useLayoutEffect2, nt as Combination_default, ot as FocusScope, pt as useControllableState, st as Branch, tt as hideOthers, ut as useCallbackRef, vt as Primitive, w as array, yt as dispatchDiscreteCustomEvent } from "./zod-
|
|
19
|
-
import { i as TooltipProvider, t as Tooltip } from "./tooltip-
|
|
20
|
-
import { a as setDiagnostics, c as historyField, d as insertTab, f as CopyClipboardIcon, i as linter, n as forEachDiagnostic, s as history } from "./extends-
|
|
18
|
+
import { B as union, N as number, P as object, Q as withSmartCollisionBoundary, R as string, T as boolean, 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, k as literal, lt as Root$1, mt as useLayoutEffect2, nt as Combination_default, ot as FocusScope, pt as useControllableState, st as Branch, tt as hideOthers, ut as useCallbackRef, vt as Primitive, w as array, yt as dispatchDiscreteCustomEvent } from "./zod-BUcyXSdR.js";
|
|
19
|
+
import { i as TooltipProvider, t as Tooltip } from "./tooltip-f-qR0iUx.js";
|
|
20
|
+
import { a as setDiagnostics, c as historyField, d as insertTab, f as CopyClipboardIcon, i as linter, n as forEachDiagnostic, s as history } from "./extends-w2_S44bV.js";
|
|
21
21
|
import { t as debounce_default } from "./debounce-BOD3DbfP.js";
|
|
22
|
-
import { S as useAtomValue, T as atom, b as Provider, c as autoInstantiateAtom, g as store, h as createDeepEqualAtom, k as dequal, l as getResolvedMarimoConfig, n as useTheme, t as resolvedThemeAtom, x as useAtom, y as isIslands } from "./useTheme-
|
|
22
|
+
import { S as useAtomValue, T as atom, b as Provider, c as autoInstantiateAtom, g as store, h as createDeepEqualAtom, k as dequal, l as getResolvedMarimoConfig, n as useTheme, t as resolvedThemeAtom, x as useAtom, y as isIslands } from "./useTheme-DYfby65G.js";
|
|
23
23
|
import { $ as EditorView, At as EditorState, B as highlightCode, Bt as Transaction, E as getIndentUnit, H as tags, I as syntaxTree, L as unfoldAll, Lt as StateEffect, Nt as Prec, Ot as Compartment, Pt as RangeSet, Rt as StateField, S as foldInside, St as showTooltip, X as parseMixed, Z as Decoration, _t as placeholder, b as foldAll, et as GutterMarker, f as StreamLanguage, jt as Facet, kt as EditorSelection, l as LanguageDescription, lt as gutter, mt as keymap, pt as hoverTooltip, tt as ViewPlugin, u as LanguageSupport, w as foldNodeProp, wt as Annotation, xt as showPanel, z as classHighlighter, zt as Text } from "./dist-De-GlSAs.js";
|
|
24
24
|
import { t as invariant } from "./invariant-wRzNXIsJ.js";
|
|
25
25
|
import { a as arrayMove, i as arrayInsertMany, l as clamp, n as arrayDelete, r as arrayInsert } from "./arrays-sEtDRoG4.js";
|
|
26
26
|
import { t as Objects } from "./objects-De59twF-.js";
|
|
27
27
|
import { n as once } from "./once-B60G2fuJ.js";
|
|
28
|
-
import { t as getIframeCapabilities } from "./capabilities-
|
|
28
|
+
import { t as getIframeCapabilities } from "./capabilities-C6OQ5YBO.js";
|
|
29
29
|
import { d as snippet, n as acceptCompletion, r as autocompletion, u as insertCompletionText } from "./dist-CSlJrrAw.js";
|
|
30
30
|
import { t as require_main } from "./main-B1Jo_8pC.js";
|
|
31
31
|
import { a as PLSQL, c as SQLite, d as schemaCompletionSource, f as sql, i as MySQL, l as StandardSQL, n as MSSQL, o as PostgreSQL, r as MariaSQL, s as SQLDialect, t as Cassandra, u as keywordCompletionSource } from "./dist-BpeiYpG2.js";
|
|
@@ -33,7 +33,7 @@ import { a as markdown, s as markdownLanguage } from "./dist-BOMbzyb3.js";
|
|
|
33
33
|
import { a as parser, i as pythonLanguage, n as localCompletionSource, r as python, t as globalCompletion } from "./dist-CRmSjkLP.js";
|
|
34
34
|
import { n as stexMath } from "./stex-DtMAhV4-.js";
|
|
35
35
|
import { t as purify } from "./purify.es-EnR5yhgI.js";
|
|
36
|
-
import { t as useAsyncData } from "./useAsyncData-
|
|
36
|
+
import { t as useAsyncData } from "./useAsyncData-CYOQb1EW.js";
|
|
37
37
|
let notebookOutline, import_lib$1, requestClientAtom, ChevronDownIcon, Close$1, toggleBreakpoint, isDataURLString, Minus, repl, Accordion, RANDOM_ID_ATTR, normalizeName, BorderAllIcon, atomWithStorage, createVariableInfoElement, AccordionTrigger, atomWithReducer, MarkdownLanguageAdapter, base64ToDataURL, Wrench, useChromeActions, hasRunAnyCellAtom, Eye, DATA_TYPE_ICON, renderHTML, Layers, MarkdownParser, base64ToDataView, Trash2, adaptForLocalStorage, getCellEditorView, Columns2, allTablesAtom, cellIdsAtom, ExternalLink, getDataTypeColor, base64ToUint8Array, Table2, jotaiJsonStorage, DotFilledIcon, Item, goToCellLine, PinLeftIcon, Root2$2, DeferredRequestRegistry, ChatBubbleIcon, selectAtom, PathBuilder, PinRightIcon, Trigger2, generateUUID, notebookAtom, esm_default, getRequestClient, dataViewToBase64, PaintRoller, variablesAtom, AIContextRegistry, OBJECT_ID_ATTR, isInternalCellName, AccordionItem, jsonToMarkdown, customPythonLanguageSupport, getMarimoExportContext, Info, PluralWord, safeExtractSetUIElementMessageBuffers, LoaderCircle, SQLParser, hasTrustedExportContext, FileText, PluralWords, hasOnlyOneCellAtom, CircleAlert, getTableType, getCellNames, CircleX, dataSourceConnectionsAtom, initialNotebookState, Braces, convertStatsName, getDatasourceContext, CellOutputId, sanitizeHtml, useCellFocusActions, isMarimoErrorsMime, createCell, contextToXml, UIElementId, displayCellName, Popover, elementContainsMarimoCellFile, AnsiUp, PopoverTrigger, NotebookScopedLocalStorage, kioskModeAtom, useRequestClient, numColumnsAtom, isOutputEmpty, ZodLocalStorage, useInstallAllowed, formatDatasourceContextForCell, parseInitialValue, headingToIdentifier, DatasourceContextProvider, parseDataset, outputIsStale, LazyAnyLanguageCodeMirror, isErrorMime, useCellNames, ChevronRightIcon, Content2$1, moveToEndOfEditor, CheckIcon, Anchor2, Paths, PopoverClose, extractAllTracebackInfo, getInitialAppMode, useExpandedOutput, parseAttrValue, outputIsLoading, Spinner, publishedCellClasses, useCellActions, useLastFocusedCellId, isTracebackMime, ansiToPlainText, useExpandedConsoleOutput, filenameAtom, viewStateAtom, createActions$1, Database, require_client, MarkdownRenderer, shouldHidePublishedCell, useCellIds, maybeAddAltairImport, singleFacet, parseHtmlContent, toPng$1, isUninstantiated, reducer$1, PopoverContent, getTracebackInfo, initialModeAtom, Boosts, HTMLCellId, DATA_CELL_ID, AccordionContent, jsonParseWithSpecialChar, Checkbox, AIContextProvider, findCellId, getValidName, Sections, SCRATCH_CELL_ID, getCellDomProps, extractBase64FromDataURL, NotebookPen, getFeatureFlag;
|
|
38
38
|
let __tla = Promise.all([
|
|
39
39
|
(() => {
|
|
@@ -28265,7 +28265,7 @@ ${n.sqlString}
|
|
|
28265
28265
|
hasConsoleOutput: (o == null ? void 0 : o.consoleOutputs) != null
|
|
28266
28266
|
};
|
|
28267
28267
|
}
|
|
28268
|
-
LazyAnyLanguageCodeMirror = (0, import_react.lazy)(() => import("./any-language-editor-
|
|
28268
|
+
LazyAnyLanguageCodeMirror = (0, import_react.lazy)(() => import("./any-language-editor-DifE-fl7.js"));
|
|
28269
28269
|
var import_compiler_runtime$1 = require_compiler_runtime(), extensions = [
|
|
28270
28270
|
EditorView.lineWrapping
|
|
28271
28271
|
];
|
|
@@ -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-
|
|
6
|
+
import { f as composeRefs, g as Logger, h as cn, m as Events, p as useComposedRefs, u as createSlot } from "./button-BSm8IXRU.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-
|
|
10
|
-
import { t as Check } from "./check-
|
|
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-
|
|
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";
|
|
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-
|
|
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";
|
|
16
16
|
import { t as debounce_default } from "./debounce-BOD3DbfP.js";
|
|
17
|
-
import { A as useEvent_default } from "./useTheme-
|
|
17
|
+
import { A as useEvent_default } from "./useTheme-DYfby65G.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",
|
|
@@ -5611,7 +5611,7 @@ const OnBlurredInput = import_react.forwardRef((e4, t) => {
|
|
|
5611
5611
|
n[11] === /* @__PURE__ */ Symbol.for("react.memo_cache_sentinel") ? (p = (e5) => s(e5.target.value), n[11] = p) : p = n[11];
|
|
5612
5612
|
let m, h;
|
|
5613
5613
|
n[12] !== o || n[13] !== u ? (m = () => u(o || ""), h = (e5) => {
|
|
5614
|
-
e5.key
|
|
5614
|
+
e5.key !== "Enter" || e5.shiftKey || u(o || "");
|
|
5615
5615
|
}, n[12] = o, n[13] = u, n[14] = m, n[15] = h) : (m = n[14], h = n[15]);
|
|
5616
5616
|
let g;
|
|
5617
5617
|
return n[16] !== r || n[17] !== o || n[18] !== a || n[19] !== t || n[20] !== m || n[21] !== h ? (g = /* @__PURE__ */ (0, import_jsx_runtime.jsx)(Input, {
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { s as __toESM } from "./chunk-BNovOVIE.js";
|
|
2
|
-
import { h as cn, r as cva } from "./button-
|
|
2
|
+
import { h as cn, r as cva } from "./button-BSm8IXRU.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-
|
|
6
|
+
import { vt as Primitive } from "./zod-BUcyXSdR.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-
|
|
5
|
+
import { g as Logger } from "./button-BSm8IXRU.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" };
|