@marimo-team/islands 0.23.7-dev64 → 0.23.7-dev65
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/{code-visibility-CVTtZuy-.js → code-visibility-ByDFdFl4.js} +73 -70
- package/dist/main.js +985 -979
- package/dist/reveal-component-b_lmX_5i.js +7444 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/components/editor/renderers/slides-layout/__tests__/compute-slide-cells.test.ts +5 -4
- package/src/components/editor/renderers/slides-layout/__tests__/plugin.test.ts +55 -15
- package/src/components/editor/renderers/slides-layout/plugin.tsx +8 -25
- package/src/components/editor/renderers/slides-layout/slides-layout.tsx +18 -5
- package/src/components/editor/renderers/slides-layout/types.ts +40 -31
- package/src/components/slides/__tests__/slide-notes.test.ts +131 -0
- package/src/components/slides/reveal-component.tsx +242 -147
- package/src/components/slides/slide-notes-editor.tsx +127 -0
- package/src/components/slides/slide-notes.ts +64 -0
- package/src/components/slides/slides.css +14 -0
- package/src/core/edit-app.tsx +1 -1
- package/dist/reveal-component-pMF7xAP-.js +0 -4863
|
@@ -31,6 +31,20 @@
|
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
+
/* Resize handle for the notes panel below the deck. Self-contained so the
|
|
35
|
+
slides layout doesn't have to inherit styles from app-chrome.css. */
|
|
36
|
+
.mo-slides-notes-resize {
|
|
37
|
+
height: 4px;
|
|
38
|
+
background-color: transparent;
|
|
39
|
+
transition: background-color 200ms linear;
|
|
40
|
+
outline: none;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.mo-slides-notes-resize:hover,
|
|
44
|
+
.mo-slides-notes-resize[data-resize-handle-active] {
|
|
45
|
+
background-color: var(--slate-11);
|
|
46
|
+
}
|
|
47
|
+
|
|
34
48
|
/* helpful for debugging */
|
|
35
49
|
/* .mo-slide-content {
|
|
36
50
|
background-color: red;
|
package/src/core/edit-app.tsx
CHANGED
|
@@ -157,7 +157,7 @@ export const EditApp: React.FC<AppProps> = ({
|
|
|
157
157
|
"sticky left-0",
|
|
158
158
|
)}
|
|
159
159
|
>
|
|
160
|
-
{isEditing && (
|
|
160
|
+
{!hideControls && isEditing && (
|
|
161
161
|
<div className="flex items-center justify-center container">
|
|
162
162
|
<FilenameForm filename={filename} />
|
|
163
163
|
</div>
|