x-block-lib 0.5.19 → 0.5.21

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.
Files changed (2) hide show
  1. package/dist/index.js +19 -5
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -278,6 +278,10 @@ const wl = I.xml, Vl = [
278
278
  type: "call_node_method_v1",
279
279
  prefixInputs: ["OUTPUT"]
280
280
  },
281
+ {
282
+ type: "comp_method_impl_v1",
283
+ prefixInputs: ["INPUT"]
284
+ },
281
285
  {
282
286
  type: "delete_data_v1",
283
287
  inputs: ["SUCCESS", "MESSAGE"]
@@ -304,7 +308,7 @@ const wl = I.xml, Vl = [
304
308
  },
305
309
  {
306
310
  type: "query_data_v1",
307
- inputs: ["SUCCESS", "MESSAGE", "MAINDATA", "EXTRADATA"]
311
+ inputs: ["SUCCESS", "MESSAGE", "MAIN_DATA", "EXTRA_DATA"]
308
312
  },
309
313
  {
310
314
  type: "update_data_v1",
@@ -356,7 +360,12 @@ const Yl = {
356
360
  P.disable();
357
361
  const o = (n = t.getInput(e.oldInputName)) == null ? void 0 : n.connection;
358
362
  if (o) {
359
- const i = Ui(this.workspace, this.key, this.name, this.locale);
363
+ const i = Ui(
364
+ this.workspace,
365
+ this.key,
366
+ this.name,
367
+ this.locale
368
+ );
360
369
  o.connect(i.outputConnection);
361
370
  }
362
371
  } finally {
@@ -4780,7 +4789,12 @@ const Sd = {
4780
4789
  o.setKeyName(`__param@${t.id}__`, t.name, !1);
4781
4790
  else
4782
4791
  try {
4783
- P.disable(), o = Ui(this.workspace, `__param@${t.id}__`, t.name, !1), o.outputConnection.connect(n);
4792
+ P.disable(), o = Ui(
4793
+ this.workspace,
4794
+ `__param@${t.id}__`,
4795
+ t.name,
4796
+ !1
4797
+ ), o.outputConnection.connect(n);
4784
4798
  } finally {
4785
4799
  P.enable();
4786
4800
  }
@@ -5818,7 +5832,7 @@ const Kd = {
5818
5832
  const e = [];
5819
5833
  for (let t = 0; t < this.method.outputs.length; t++) {
5820
5834
  const { key: n, name: o } = this.method.outputs[t];
5821
- e.push(["OUTPUT" + t, `__param@${n}__`, o, !1]);
5835
+ e.push(["OUTPUT" + t, n, o, !0]);
5822
5836
  }
5823
5837
  e.length > 0 && Pe(this, e);
5824
5838
  },
@@ -6002,7 +6016,7 @@ const Hd = {
6002
6016
  const e = [];
6003
6017
  for (let t = 0; t < this.method.outputs.length; t++) {
6004
6018
  const { key: n, name: o } = this.method.outputs[t];
6005
- e.push(["OUTPUT" + t, `__param@${n}__`, o, !1]);
6019
+ e.push(["OUTPUT" + t, n, o, !0]);
6006
6020
  }
6007
6021
  e.length > 0 && Pe(this, e);
6008
6022
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-block-lib",
3
3
  "private": false,
4
- "version": "0.5.19",
4
+ "version": "0.5.21",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",