geonodes-web-render 0.3.21 → 0.3.22
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/embed.js +10 -4
- package/package.json +1 -1
package/dist/embed.js
CHANGED
|
@@ -7831,7 +7831,13 @@ var of = {
|
|
|
7831
7831
|
GeometryNodeEvaluateAtIndex: "CONVERTER",
|
|
7832
7832
|
GeometryNodeEvaluateOnDomain: "CONVERTER",
|
|
7833
7833
|
GeometryNodeFieldVariance: "CONVERTER",
|
|
7834
|
-
GeometryNodeViewer: "OUTPUT"
|
|
7834
|
+
GeometryNodeViewer: "OUTPUT",
|
|
7835
|
+
GeometryNodeSimulationInput: "DEFAULT",
|
|
7836
|
+
GeometryNodeSimulationOutput: "DEFAULT",
|
|
7837
|
+
GeometryNodeRepeatInput: "DEFAULT",
|
|
7838
|
+
GeometryNodeRepeatOutput: "DEFAULT",
|
|
7839
|
+
GeometryNodeForeachGeometryElementInput: "DEFAULT",
|
|
7840
|
+
GeometryNodeForeachGeometryElementOutput: "DEFAULT"
|
|
7835
7841
|
};
|
|
7836
7842
|
function sf(e, t) {
|
|
7837
7843
|
if (e === "ShaderNodeMix") return t === "VECTOR" ? "VECTOR" : t === "RGBA" ? "COLOR" : "CONVERTER";
|
|
@@ -8848,8 +8854,8 @@ function mp() {
|
|
|
8848
8854
|
width: "100%",
|
|
8849
8855
|
height: "100%",
|
|
8850
8856
|
borderRadius: 10,
|
|
8851
|
-
border: "1.5px solid rgba(
|
|
8852
|
-
background: "rgba(
|
|
8857
|
+
border: "1.5px solid rgba(102, 65, 98, 0.85)",
|
|
8858
|
+
background: "rgba(102, 65, 98, 0.2)",
|
|
8853
8859
|
pointerEvents: "none"
|
|
8854
8860
|
}
|
|
8855
8861
|
});
|
|
@@ -9028,7 +9034,7 @@ function vp(e) {
|
|
|
9028
9034
|
className: "gn-top-left",
|
|
9029
9035
|
children: [/* @__PURE__ */ _("span", {
|
|
9030
9036
|
className: "gn-version-badge",
|
|
9031
|
-
children: ["node-web-render v", "0.3.
|
|
9037
|
+
children: ["node-web-render v", "0.3.22"]
|
|
9032
9038
|
}), i.length > 1 ? /* @__PURE__ */ g("nav", {
|
|
9033
9039
|
className: "gn-breadcrumbs",
|
|
9034
9040
|
"aria-label": "Node group path",
|
package/package.json
CHANGED