@marimo-team/islands 0.23.14-dev25 → 0.23.14-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.
- package/dist/{code-visibility-DpEAMcRS.js → code-visibility-CAkgOEA5.js} +8 -8
- package/dist/main.js +1055 -1023
- package/dist/{reveal-component-dRz_KlPn.js → reveal-component-x6IwgqPf.js} +594 -590
- package/package.json +1 -1
- package/src/components/data-table/charts/__tests__/merge-index-fields.test.ts +33 -0
- package/src/components/data-table/charts/charts.tsx +24 -1
- package/src/components/editor/renderers/grid-layout/grid-layout.tsx +7 -2
- package/src/components/slides/__tests__/slide.test.tsx +33 -0
- package/src/components/slides/minimap.tsx +7 -1
- package/src/components/slides/reveal-component.tsx +3 -0
- package/src/components/slides/slide-cell-view.tsx +3 -0
- package/src/components/slides/slide.tsx +16 -13
- package/src/plugins/impl/DataTablePlugin.tsx +1 -0
- package/src/plugins/impl/anywidget/AnyWidgetPlugin.tsx +53 -2
- package/src/plugins/impl/anywidget/__tests__/AnyWidgetPlugin.test.tsx +52 -2
|
@@ -35750,17 +35750,17 @@ ${d}`,
|
|
|
35750
35750
|
Switch.displayName = Root$1.displayName;
|
|
35751
35751
|
var import_compiler_runtime$2 = require_compiler_runtime();
|
|
35752
35752
|
Slide = (0, import_react.memo)((e) => {
|
|
35753
|
-
let t = (0, import_compiler_runtime$2.c)(
|
|
35754
|
-
t[0] === a ?
|
|
35755
|
-
let
|
|
35756
|
-
return t[2] !== i || t[3] !==
|
|
35753
|
+
let t = (0, import_compiler_runtime$2.c)(7), { output: n, cellId: i, status: a, stale: o } = e, s;
|
|
35754
|
+
t[0] === a ? s = t[1] : (s = outputIsLoading(a), t[0] = a, t[1] = s);
|
|
35755
|
+
let c = s, d;
|
|
35756
|
+
return t[2] !== i || t[3] !== c || t[4] !== n || t[5] !== o ? (d = (0, import_jsx_runtime.jsx)(OutputArea, {
|
|
35757
35757
|
className: "contents",
|
|
35758
35758
|
allowExpand: false,
|
|
35759
35759
|
output: n,
|
|
35760
35760
|
cellId: i,
|
|
35761
|
-
stale:
|
|
35762
|
-
loading:
|
|
35763
|
-
}), t[2] = i, t[3] =
|
|
35761
|
+
stale: o,
|
|
35762
|
+
loading: c
|
|
35763
|
+
}), t[2] = i, t[3] = c, t[4] = n, t[5] = o, t[6] = d) : d = t[6], d;
|
|
35764
35764
|
});
|
|
35765
35765
|
Slide.displayName = "Slide";
|
|
35766
35766
|
var import_compiler_runtime$1 = require_compiler_runtime();
|
|
@@ -36198,7 +36198,7 @@ ${d}`,
|
|
|
36198
36198
|
return Logger.warn("Failed to get version from mount config"), null;
|
|
36199
36199
|
}
|
|
36200
36200
|
}
|
|
36201
|
-
marimoVersionAtom = atom(getVersionFromMountConfig() || "0.23.14-
|
|
36201
|
+
marimoVersionAtom = atom(getVersionFromMountConfig() || "0.23.14-dev30");
|
|
36202
36202
|
showCodeInRunModeAtom = atom(true);
|
|
36203
36203
|
atom(null);
|
|
36204
36204
|
var import_compiler_runtime = require_compiler_runtime();
|