@elyx-code/project-logic-tree 0.0.6718 → 0.0.6720
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/index.cjs +34 -34
- package/dist/index.js +10 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -170922,6 +170922,8 @@ ${$D}`
|
|
|
170922
170922
|
return this.activeVersion = !0, this.project.subscribeInstance(this), this;
|
|
170923
170923
|
}
|
|
170924
170924
|
unsubscribe() {
|
|
170925
|
+
if (this.id === "3bdd91d6-fa96-403f-af98-532a1110b28a")
|
|
170926
|
+
throw console.log("[PropertyState.unsubscribe] debug"), new Error("[PropertyState.unsubscribe] debug");
|
|
170925
170927
|
return this.project.unsubscribeInstance(this), this;
|
|
170926
170928
|
}
|
|
170927
170929
|
metaSync(i, n = this.project.addChangeSet(
|
|
@@ -175039,7 +175041,10 @@ Alternatively you can update the parent data-type entity with 'update' action to
|
|
|
175039
175041
|
_.RemoveAllPropertiesImplement
|
|
175040
175042
|
)
|
|
175041
175043
|
)) {
|
|
175042
|
-
return this.checkCanEdit(this, i) ? (this.allPropertiesImplement && (this.
|
|
175044
|
+
return this.checkCanEdit(this, i) ? (this.allPropertiesImplement && (this.properties.find((n) => {
|
|
175045
|
+
var s;
|
|
175046
|
+
return n.id === ((s = this.allPropertiesImplement) == null ? void 0 : s.id);
|
|
175047
|
+
}) || this.allPropertiesImplement.remove({ ignoreUpstream: !0 }, i), i == null || i.add(this, H.Affected), this.allPropertiesImplement = null), i == null || i.attemptAutoclose(
|
|
175043
175048
|
_.RemoveAllPropertiesImplement,
|
|
175044
175049
|
this.id
|
|
175045
175050
|
), this) : (ie.warn(
|
|
@@ -176303,6 +176308,8 @@ const b3 = {
|
|
|
176303
176308
|
return (!this.instances[i.id] || this.instances[i.id] !== i) && (this.instances[i.id] = i), this;
|
|
176304
176309
|
}
|
|
176305
176310
|
subscribeDeletedInstance(i) {
|
|
176311
|
+
if (i.id === "3bdd91d6-fa96-403f-af98-532a1110b28a")
|
|
176312
|
+
throw console.log("[ProjectState.subscribeDeletedInstance] Debug"), new Error("[ProjectState.subscribeDeletedInstance] Debug");
|
|
176306
176313
|
return (!this.deletedInstances[i.id] || this.deletedInstances[i.id] !== i) && (this.deletedInstances[i.id] = i), this;
|
|
176307
176314
|
}
|
|
176308
176315
|
subscribeBuiltInInstance(i) {
|
|
@@ -176315,6 +176322,8 @@ const b3 = {
|
|
|
176315
176322
|
return this;
|
|
176316
176323
|
}
|
|
176317
176324
|
unsubscribeInstance(i) {
|
|
176325
|
+
if (i.id === "3bdd91d6-fa96-403f-af98-532a1110b28a")
|
|
176326
|
+
throw console.log("[ProjectState.unsubscribeInstance] debug"), new Error("[ProjectState.unsubscribeInstance] debug");
|
|
176318
176327
|
return delete this.instances[i.id], this;
|
|
176319
176328
|
}
|
|
176320
176329
|
unsubscribeDeletedInstance(i) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6720",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|