reactronic 0.96.26017 → 0.96.26019

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.
@@ -1,8 +1,8 @@
1
1
  export declare enum Mode {
2
2
  default = 0,
3
3
  primitive = 1,
4
- external = 2,
5
- artificial = 4
4
+ intermediate = 2,
5
+ external = 4
6
6
  }
7
7
  export declare enum Priority {
8
8
  realtime = 0,
@@ -2,8 +2,8 @@ export var Mode;
2
2
  (function (Mode) {
3
3
  Mode[Mode["default"] = 0] = "default";
4
4
  Mode[Mode["primitive"] = 1] = "primitive";
5
- Mode[Mode["external"] = 2] = "external";
6
- Mode[Mode["artificial"] = 4] = "artificial";
5
+ Mode[Mode["intermediate"] = 2] = "intermediate";
6
+ Mode[Mode["external"] = 4] = "external";
7
7
  })(Mode || (Mode = {}));
8
8
  export var Priority;
9
9
  (function (Priority) {
@@ -387,8 +387,6 @@ class OperationFootprintImpl extends ContentFootprint {
387
387
  static proceed(footprint, proxy) {
388
388
  footprint.enter();
389
389
  try {
390
- if (footprint.options.getter === undefined)
391
- console.log("(!)");
392
390
  footprint.result = footprint.options.getter.call(proxy, ...footprint.args);
393
391
  }
394
392
  finally {
@@ -434,7 +434,7 @@ function launchNestedNodesThenDoImpl(node, error, action) {
434
434
  function markToMountIfNecessary(mounting, host, node, children, sequential) {
435
435
  if (node.declaration.unmounted)
436
436
  host = node;
437
- if (!node.hasAny(Mode.external | Mode.artificial)) {
437
+ if (!node.hasAny(Mode.intermediate | Mode.external)) {
438
438
  if (mounting || node.host !== host) {
439
439
  LinkedItem.setStatus$(node, Mark.moved, node.rank);
440
440
  mounting = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reactronic",
3
- "version": "0.96.26017",
3
+ "version": "0.96.26019",
4
4
  "description": "Reactronic - Transactional Reactive State Management",
5
5
  "publisher": "Nezaboodka Software",
6
6
  "license": "Apache-2.0",