@marimo-team/islands 0.23.15-dev2 → 0.23.15-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 (42) hide show
  1. package/dist/{chat-ui-DinOvbWu.js → chat-ui-FiwuOgQU.js} +3094 -3094
  2. package/dist/{code-visibility-B-sydhvS.js → code-visibility-Bqg6aos7.js} +925 -842
  3. package/dist/{html-to-image-_wGfk8V-.js → html-to-image-JXL8cvmt.js} +2218 -2205
  4. package/dist/main.js +1066 -1073
  5. package/dist/{process-output-Mh4UrjwM.js → process-output-CnDIXtM-.js} +1 -1
  6. package/dist/{reveal-component-MK2nUbwt.js → reveal-component-BzkgqXit.js} +614 -602
  7. package/dist/style.css +1 -1
  8. package/package.json +1 -1
  9. package/src/components/chat/__tests__/chat-utils.test.ts +244 -1
  10. package/src/components/chat/__tests__/message-queue.test.tsx +121 -0
  11. package/src/components/chat/chat-panel.tsx +196 -67
  12. package/src/components/chat/chat-utils.ts +111 -2
  13. package/src/components/editor/SortableCell.tsx +6 -2
  14. package/src/components/editor/__tests__/output-persistence.test.tsx +241 -0
  15. package/src/components/editor/actions/__tests__/pair-with-agent-commands.test.ts +153 -0
  16. package/src/components/editor/actions/pair-with-agent-commands.ts +109 -0
  17. package/src/components/editor/actions/pair-with-agent-modal.tsx +20 -64
  18. package/src/components/editor/cell/cell-context-menu.tsx +7 -0
  19. package/src/components/editor/chrome/panels/packages-panel.tsx +11 -1
  20. package/src/components/editor/columns/__tests__/cell-column.test.tsx +105 -0
  21. package/src/components/editor/columns/cell-column.tsx +34 -4
  22. package/src/components/editor/columns/sortable-column.tsx +24 -4
  23. package/src/components/editor/notebook-cell.tsx +203 -106
  24. package/src/components/editor/renderers/__tests__/cells-renderer.test.tsx +66 -0
  25. package/src/components/editor/renderers/cell-array.tsx +26 -13
  26. package/src/components/editor/renderers/cells-renderer.tsx +8 -2
  27. package/src/components/editor/renderers/slides-layout/__tests__/plugin.test.ts +29 -0
  28. package/src/components/editor/renderers/slides-layout/types.ts +4 -0
  29. package/src/components/editor/renderers/vertical-layout/vertical-layout.tsx +19 -19
  30. package/src/components/slides/reveal-component.tsx +33 -4
  31. package/src/components/slides/slide-form.tsx +72 -0
  32. package/src/core/cells/__tests__/utils.test.ts +59 -0
  33. package/src/core/cells/utils.ts +51 -0
  34. package/src/css/app/Cell.css +10 -0
  35. package/src/hooks/__tests__/useHotkey.test.tsx +88 -0
  36. package/src/hooks/useHotkey.ts +29 -4
  37. package/src/plugins/impl/anywidget/__tests__/host.test.ts +6 -9
  38. package/src/plugins/impl/anywidget/__tests__/widget-binding.test.ts +22 -61
  39. package/src/plugins/impl/anywidget/model-proxy.ts +0 -13
  40. package/src/plugins/impl/anywidget/widget-binding.ts +4 -34
  41. package/src/plugins/impl/matplotlib/__tests__/matplotlib-renderer.test.ts +71 -3
  42. package/src/plugins/impl/matplotlib/matplotlib-renderer.ts +1 -0
@@ -0,0 +1,105 @@
1
+ /* Copyright 2026 Marimo. All rights reserved. */
2
+ import { render } from "@testing-library/react";
3
+ import { createStore, Provider } from "jotai";
4
+ import { describe, expect, it } from "vitest";
5
+ import { TooltipProvider } from "@/components/ui/tooltip";
6
+ import type { CellColumnId } from "@/utils/id-tree";
7
+ import { Column } from "../cell-column";
8
+
9
+ const columnId = "col-1" as CellColumnId;
10
+
11
+ function renderColumn({
12
+ width,
13
+ presenting,
14
+ }: {
15
+ width: "compact" | "columns";
16
+ presenting: boolean;
17
+ }) {
18
+ const store = createStore();
19
+ return render(
20
+ <Provider store={store}>
21
+ <TooltipProvider>
22
+ <Column
23
+ columnId={columnId}
24
+ index={0}
25
+ width={width}
26
+ canDelete={false}
27
+ canMoveLeft={false}
28
+ canMoveRight={false}
29
+ presenting={presenting}
30
+ >
31
+ <div data-testid="column-children" />
32
+ </Column>
33
+ </TooltipProvider>
34
+ </Provider>,
35
+ );
36
+ }
37
+
38
+ describe("Column (single-column notebook)", () => {
39
+ it("spaces cells with the --notebook-cell-gap variable", () => {
40
+ const { getByTestId } = renderColumn({
41
+ width: "compact",
42
+ presenting: false,
43
+ });
44
+ const column = getByTestId("cell-column");
45
+ expect(column.classList.contains("gap-(--notebook-cell-gap)")).toBe(true);
46
+ expect(column.classList.contains("[--notebook-cell-gap:0px]")).toBe(false);
47
+ });
48
+
49
+ it("zeroes the cell gap while presenting", () => {
50
+ const { getByTestId } = renderColumn({
51
+ width: "compact",
52
+ presenting: true,
53
+ });
54
+ const column = getByTestId("cell-column");
55
+ expect(column.classList.contains("gap-(--notebook-cell-gap)")).toBe(true);
56
+ expect(column.classList.contains("[--notebook-cell-gap:0px]")).toBe(true);
57
+ });
58
+ });
59
+
60
+ describe("Column (multi-column notebook)", () => {
61
+ it("shows column chrome when not presenting", () => {
62
+ const { getByTestId, getAllByTestId } = renderColumn({
63
+ width: "columns",
64
+ presenting: false,
65
+ });
66
+
67
+ expect(getByTestId("column-header").hidden).toBe(false);
68
+ expect(getByTestId("column-frame").classList.contains("border")).toBe(true);
69
+ for (const handle of getAllByTestId("column-resize-handle")) {
70
+ expect(handle.hidden).toBe(false);
71
+ }
72
+ });
73
+
74
+ it("hides column chrome while presenting, without unmounting it", () => {
75
+ const { getByTestId, getAllByTestId } = renderColumn({
76
+ width: "columns",
77
+ presenting: true,
78
+ });
79
+
80
+ // Header (drag handle, move/delete/add buttons) is hidden but mounted
81
+ expect(getByTestId("column-header").hidden).toBe(true);
82
+ // No border around the column
83
+ expect(getByTestId("column-frame").classList.contains("border")).toBe(
84
+ false,
85
+ );
86
+ // Resize handles are hidden
87
+ const handles = getAllByTestId("column-resize-handle");
88
+ expect(handles.length).toBeGreaterThan(0);
89
+ for (const handle of handles) {
90
+ expect(handle.hidden).toBe(true);
91
+ }
92
+ // Cell gap is zeroed on the column root (cascades to descendants)
93
+ const columnRoot = getByTestId("column-frame").parentElement;
94
+ expect(columnRoot?.classList.contains("[--notebook-cell-gap:0px]")).toBe(
95
+ true,
96
+ );
97
+ // Editor geometry (saved widths, min-width, gutters) is replaced by the
98
+ // published content width
99
+ const inner = getByTestId("column-children").parentElement;
100
+ expect(inner?.classList.contains("min-w-[500px]")).toBe(false);
101
+ expect(inner?.classList.contains("w-(--content-width)")).toBe(true);
102
+ // Children stay mounted
103
+ expect(getByTestId("column-children")).toBeTruthy();
104
+ });
105
+ });
@@ -3,6 +3,7 @@
3
3
  import React, { memo, useRef } from "react";
4
4
  import type { AppConfig } from "@/core/config/config-schema";
5
5
  import { useResizeHandle } from "@/hooks/useResizeHandle";
6
+ import { cn } from "@/utils/cn";
6
7
  import type { CellColumnId } from "@/utils/id-tree";
7
8
  import { SortableColumn } from "./sortable-column";
8
9
  import { storageFn } from "./storage";
@@ -17,6 +18,11 @@ interface Props {
17
18
  canDelete: boolean;
18
19
  canMoveLeft: boolean;
19
20
  canMoveRight: boolean;
21
+ /**
22
+ * If true, column chrome (drag handles, resize handles, borders) is hidden
23
+ * while keeping the same component tree mounted.
24
+ */
25
+ presenting?: boolean;
20
26
  }
21
27
 
22
28
  const { getColumnWidth, saveColumnWidth } = storageFn;
@@ -24,6 +30,10 @@ const { getColumnWidth, saveColumnWidth } = storageFn;
24
30
  export const Column = memo((props: Props) => {
25
31
  const columnRef = useRef<HTMLDivElement>(null);
26
32
 
33
+ // Published cells are not spaced apart. Set once on the column root; the
34
+ // CSS variable cascades to the gap-using descendants.
35
+ const zeroGapWhenPresenting = props.presenting && "[--notebook-cell-gap:0px]";
36
+
27
37
  if (props.width === "columns") {
28
38
  return (
29
39
  <SortableColumn
@@ -33,14 +43,16 @@ export const Column = memo((props: Props) => {
33
43
  columnId={props.columnId}
34
44
  canMoveLeft={props.canMoveLeft}
35
45
  canMoveRight={props.canMoveRight}
36
- className="group/column"
46
+ className={cn("group/column", zeroGapWhenPresenting)}
37
47
  footer={props.footer}
48
+ presenting={props.presenting}
38
49
  >
39
50
  <ResizableComponent
40
51
  startingWidth={getColumnWidth(props.index)}
41
52
  onResize={(width: number) => {
42
53
  saveColumnWidth(props.index, width);
43
54
  }}
55
+ presenting={props.presenting}
44
56
  >
45
57
  {props.children}
46
58
  </ResizableComponent>
@@ -50,7 +62,13 @@ export const Column = memo((props: Props) => {
50
62
 
51
63
  return (
52
64
  <>
53
- <div data-testid="cell-column" className="flex flex-col gap-5">
65
+ <div
66
+ data-testid="cell-column"
67
+ className={cn(
68
+ "flex flex-col gap-(--notebook-cell-gap)",
69
+ zeroGapWhenPresenting,
70
+ )}
71
+ >
54
72
  {props.children}
55
73
  </div>
56
74
  {props.footer}
@@ -64,12 +82,14 @@ interface ResizableComponentProps {
64
82
  startingWidth: number | "contentWidth";
65
83
  onResize?: (width: number) => void;
66
84
  children: React.ReactNode;
85
+ presenting?: boolean;
67
86
  }
68
87
 
69
88
  const ResizableComponent = ({
70
89
  startingWidth,
71
90
  onResize,
72
91
  children,
92
+ presenting,
73
93
  }: ResizableComponentProps) => {
74
94
  const { resizableDivRef, handleRefs, style } = useResizeHandle({
75
95
  startingWidth,
@@ -80,11 +100,13 @@ const ResizableComponent = ({
80
100
  return (
81
101
  <div
82
102
  ref={ref}
103
+ data-testid="column-resize-handle"
83
104
  className={`w-[3px] cursor-col-resize transition-colors duration-200 z-100
84
105
  relative before:content-[''] before:absolute before:inset-y-0 before:left-[-3px]
85
106
  before:right-[-3px] before:w-[9px] before:z-[-1]
86
107
  hover/column:bg-[var(--slate-3)] dark:hover/column:bg-[var(--slate-5)]
87
108
  hover/column:hover:bg-primary/60 dark:hover/column:hover:bg-primary/60`}
109
+ hidden={presenting}
88
110
  />
89
111
  );
90
112
  };
@@ -94,8 +116,16 @@ const ResizableComponent = ({
94
116
  {renderResizeHandler(handleRefs.left)}
95
117
  <div
96
118
  ref={resizableDivRef}
97
- className="flex flex-col gap-5 box-content min-h-[100px] px-11 pt-3 pb-6 min-w-[500px] z-1"
98
- style={style}
119
+ className={cn(
120
+ "flex flex-col gap-(--notebook-cell-gap) box-content z-1",
121
+ // While presenting, use the published content width instead of the
122
+ // editor geometry (saved pixel width, 500px minimum, gutters),
123
+ // which overflows narrow screens.
124
+ presenting
125
+ ? "w-(--content-width)"
126
+ : "min-h-[100px] px-11 pt-3 pb-6 min-w-[500px]",
127
+ )}
128
+ style={presenting ? undefined : style}
99
129
  >
100
130
  {children}
101
131
  </div>
@@ -30,11 +30,24 @@ interface Props extends React.HTMLAttributes<HTMLDivElement> {
30
30
  canMoveLeft: boolean;
31
31
  canMoveRight: boolean;
32
32
  footer?: React.ReactNode;
33
+ /**
34
+ * If true, dragging is disabled and the column chrome is hidden
35
+ * (e.g. while presenting).
36
+ */
37
+ presenting?: boolean;
33
38
  }
34
39
 
35
40
  const SortableColumnInternal = React.forwardRef(
36
41
  (
37
- { columnId, canDelete, canMoveLeft, canMoveRight, footer, ...props }: Props,
42
+ {
43
+ columnId,
44
+ canDelete,
45
+ canMoveLeft,
46
+ canMoveRight,
47
+ footer,
48
+ presenting,
49
+ ...props
50
+ }: Props,
38
51
  ref: React.Ref<HTMLDivElement>,
39
52
  ) => {
40
53
  const {
@@ -45,7 +58,7 @@ const SortableColumnInternal = React.forwardRef(
45
58
  transition,
46
59
  isDragging,
47
60
  isOver,
48
- } = useSortable({ id: columnId });
61
+ } = useSortable({ id: columnId, disabled: presenting });
49
62
 
50
63
  const style: React.CSSProperties = {
51
64
  transform: transform
@@ -78,7 +91,11 @@ const SortableColumnInternal = React.forwardRef(
78
91
  };
79
92
 
80
93
  const dragHandle = (
81
- <div className="px-2 pb-0 group flex items-center overflow-hidden border-b border-(--slate-7)">
94
+ <div
95
+ data-testid="column-header"
96
+ className="px-2 pb-0 group flex items-center overflow-hidden border-b border-(--slate-7)"
97
+ hidden={presenting}
98
+ >
82
99
  <Tooltip content="Move column left" side="top" delayDuration={300}>
83
100
  <Button
84
101
  variant="text"
@@ -161,7 +178,10 @@ const SortableColumnInternal = React.forwardRef(
161
178
  isOver && "bg-accent/20", // Add a background color when dragging over
162
179
  )}
163
180
  >
164
- <div className="border border-(--slate-7)">
181
+ <div
182
+ data-testid="column-frame"
183
+ className={cn(!presenting && "border border-(--slate-7)")}
184
+ >
165
185
  {dragHandle}
166
186
  {props.children}
167
187
  </div>