@marimo-team/islands 0.19.8-dev39 → 0.19.8-dev40
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/main.js +2 -3
- package/package.json +1 -1
- package/src/core/dom/uiregistry.ts +4 -1
package/dist/main.js
CHANGED
|
@@ -41341,8 +41341,7 @@ ${c.sqlString}
|
|
|
41341
41341
|
return this.entries.has(e2);
|
|
41342
41342
|
}
|
|
41343
41343
|
set(e2, r) {
|
|
41344
|
-
|
|
41345
|
-
this.entries.set(e2, {
|
|
41344
|
+
this.entries.has(e2) && Logger.debug("UIElementRegistry overwriting entry for objectId.", e2), this.entries.set(e2, {
|
|
41346
41345
|
objectId: e2,
|
|
41347
41346
|
value: r,
|
|
41348
41347
|
elements: /* @__PURE__ */ new Set()
|
|
@@ -73192,7 +73191,7 @@ Image URL: ${r.imageUrl}`)), contextToXml({
|
|
|
73192
73191
|
return Logger.warn("Failed to get version from mount config"), null;
|
|
73193
73192
|
}
|
|
73194
73193
|
}
|
|
73195
|
-
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.19.8-
|
|
73194
|
+
const marimoVersionAtom = atom(getVersionFromMountConfig() || "0.19.8-dev40"), showCodeInRunModeAtom = atom(true);
|
|
73196
73195
|
atom(null);
|
|
73197
73196
|
var import_compiler_runtime$88 = require_compiler_runtime();
|
|
73198
73197
|
function useKeydownOnElement(e, r) {
|
package/package.json
CHANGED
|
@@ -51,7 +51,10 @@ export class UIElementRegistry {
|
|
|
51
51
|
|
|
52
52
|
set(objectId: UIElementId, value: ValueType): void {
|
|
53
53
|
if (this.entries.has(objectId)) {
|
|
54
|
-
|
|
54
|
+
Logger.debug(
|
|
55
|
+
"UIElementRegistry overwriting entry for objectId.",
|
|
56
|
+
objectId,
|
|
57
|
+
);
|
|
55
58
|
}
|
|
56
59
|
this.entries.set(objectId, {
|
|
57
60
|
objectId: objectId,
|