@fluxscape/react-runtime 1.0.8 → 1.0.10
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/build/preview/build/fluxscape.index.preview.js +2 -2
- package/build/preview/build/fluxscape.index.preview.js.map +1 -1
- package/build/preview/build/index.html +15 -6
- package/build/production/build/fluxscape.index.production.js +2 -2
- package/build/production/build/fluxscape.index.production.js.map +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.iife.js +2 -2
- package/dist/index.iife.js.map +1 -1
- package/fluxscape.json +1 -2
- package/package.json +4 -3
- package/build/preview/build/index.js.liquid +0 -1
- package/build/preview/public/global.d.ts.keep +0 -721
package/dist/index.es.js
CHANGED
|
@@ -2802,10 +2802,10 @@ function createNodeConstructor(e) {
|
|
|
2802
2802
|
super(n, o);
|
|
2803
2803
|
}
|
|
2804
2804
|
getInspectInfo() {
|
|
2805
|
-
return e.getInspectInfo?.() ?? void 0;
|
|
2805
|
+
return e.getInspectInfo?.call(this) ?? void 0;
|
|
2806
2806
|
}
|
|
2807
2807
|
nodeScopeDidInitialize() {
|
|
2808
|
-
return e.nodeScopeDidInitialize?.() ?? void 0;
|
|
2808
|
+
return e.nodeScopeDidInitialize?.call(this) ?? void 0;
|
|
2809
2809
|
}
|
|
2810
2810
|
};
|
|
2811
2811
|
return e.prototypeExtensions && Object.defineProperties(t.prototype, e.prototypeExtensions), Object.defineProperty(t.prototype, "name", {
|
|
@@ -26900,7 +26900,7 @@ var Javascript = {
|
|
|
26900
26900
|
if (!e.error) {
|
|
26901
26901
|
if (Object.keys(this.model.inputPorts).forEach((n) => {
|
|
26902
26902
|
const o = this.model.inputPorts[n].type;
|
|
26903
|
-
(o === "color" || o.name === "color") && (this._internal.inputValues[n] = void 0, this.hasInput(n) ? this.getInput(n).type = "color" : this.registerInput(n, {
|
|
26903
|
+
o && (o === "color" || o.name === "color") && (this._internal.inputValues[n] = void 0, this.hasInput(n) ? this.getInput(n).type = "color" : this.registerInput(n, {
|
|
26904
26904
|
type: "color",
|
|
26905
26905
|
set: userInputSetter$4.bind(this, n)
|
|
26906
26906
|
}));
|