verstak 0.24.104 → 0.24.107

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.
@@ -16,7 +16,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
16
16
  step((generator = generator.apply(thisArg, _arguments || [])).next());
17
17
  });
18
18
  };
19
- import { reactive, unobs, Transaction, Rx, options, Reentrance } from "reactronic";
19
+ import { reactive, unobs, Transaction, RxSystem, options, Reentrance } from "reactronic";
20
20
  import { RxNode } from "./RxDomV1.Types.js";
21
21
  export class BasicNodeType {
22
22
  constructor(name, sequential) {
@@ -25,7 +25,7 @@ export class BasicNodeType {
25
25
  }
26
26
  initialize(node) {
27
27
  if (!node.inline)
28
- Rx.setLoggingHint(node, node.id);
28
+ RxSystem.setLoggingHint(node, node.id);
29
29
  }
30
30
  render(node, args) {
31
31
  const inst = node.instance;
@@ -56,7 +56,7 @@ export class BasicNodeType {
56
56
  if (inst) {
57
57
  inst.native = undefined;
58
58
  if (!node.inline && node.instance)
59
- Transaction.separate(() => Rx.dispose(node.instance));
59
+ Transaction.separate(() => RxSystem.dispose(node.instance));
60
60
  for (const x of inst.children)
61
61
  tryToFinalize(x, initiator);
62
62
  for (const x of inst.guests)
@@ -78,7 +78,7 @@ export class RxNodeInstanceImpl {
78
78
  }
79
79
  rerender(node) {
80
80
  invokeRender(node, node.args);
81
- Rx.configureCurrentOperation({ order: this.level });
81
+ RxSystem.configureCurrentOperation({ order: this.level });
82
82
  }
83
83
  }
84
84
  RxNodeInstanceImpl.gUuid = 0;
@@ -432,7 +432,7 @@ function tryToInitialize(node) {
432
432
  (_a = type.initialize) === null || _a === void 0 ? void 0 : _a.call(type, node);
433
433
  (_b = type.mount) === null || _b === void 0 ? void 0 : _b.call(type, node);
434
434
  if (!node.inline)
435
- Rx.setLoggingHint(inst, node.id);
435
+ RxSystem.setLoggingHint(inst, node.id);
436
436
  return inst;
437
437
  }
438
438
  function tryToFinalize(node, initiator) {
@@ -1,8 +1,8 @@
1
- import { Rx, RxTree } from "reactronic";
1
+ import { RxSystem, RxTree } from "reactronic";
2
2
  import { Constants, ElDriver, ElImpl, ElKind } from "./El.js";
3
3
  export class VerstakDriver extends ElDriver {
4
4
  initialize(element) {
5
- if (Rx.isLogging && !element.node.driver.isPartitionSeparator)
5
+ if (RxSystem.isLogging && !element.node.driver.isPartitionSeparator)
6
6
  element.native.setAttribute(Constants.keyAttrName, element.node.key);
7
7
  super.initialize(element);
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verstak",
3
- "version": "0.24.104",
3
+ "version": "0.24.107",
4
4
  "description": "Verstak - Front-End Library",
5
5
  "publisher": "Nezaboodka Software",
6
6
  "license": "Apache-2.0",
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "homepage": "https://github.com/nezaboodka/verstak/blob/master/README.md#readme",
33
33
  "dependencies": {
34
- "reactronic": "^0.24.104"
34
+ "reactronic": "^0.24.106"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "20.10.4",