@prefecthq/graphs 2.2.12 → 2.2.13
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/graphs.mjs +3 -2
- package/dist/graphs.mjs.map +1 -1
- package/dist/graphs.umd.js +2 -2
- package/dist/graphs.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/graphs.mjs
CHANGED
|
@@ -23756,7 +23756,7 @@ function oE(r) {
|
|
|
23756
23756
|
backgroundAlpha: 0,
|
|
23757
23757
|
resizeTo: r,
|
|
23758
23758
|
antialias: !0,
|
|
23759
|
-
resolution: window.devicePixelRatio
|
|
23759
|
+
resolution: Math.ceil(window.devicePixelRatio)
|
|
23760
23760
|
}), We.stage.sortableChildren = !0, r.appendChild(We.view), $.emit("applicationCreated", We), process.env.NODE_ENV === "development" && (globalThis.__PIXI_APP__ = We);
|
|
23761
23761
|
}
|
|
23762
23762
|
async function Qt() {
|
|
@@ -31335,7 +31335,8 @@ async function ux({ isRoot: r, parentStartDate: t } = {}) {
|
|
|
31335
31335
|
async function c(p) {
|
|
31336
31336
|
if (i.has(p.id))
|
|
31337
31337
|
return i.get(p.id).render();
|
|
31338
|
-
s.has(p.id)
|
|
31338
|
+
if (s.has(p.id))
|
|
31339
|
+
return await s.get(p.id);
|
|
31339
31340
|
const m = (async () => {
|
|
31340
31341
|
const g = r ? await gg({ type: "event", event: p }) : await yg({ type: "event", event: p, parentStartDate: t });
|
|
31341
31342
|
i.set(p.id, g), a.addChild(g.element);
|