mftsccs-browser 1.1.6 → 1.1.8
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/bundle.js
CHANGED
|
@@ -4890,7 +4890,6 @@ class ConnectionOfTheTree {
|
|
|
4890
4890
|
// // console.log("dispatched the of the concecpt event", event);
|
|
4891
4891
|
// dispatchEvent(event);
|
|
4892
4892
|
let existingNode = this.node.getFromNode(key, this.node);
|
|
4893
|
-
console.log("oftree first", existingNode);
|
|
4894
4893
|
if (existingNode) {
|
|
4895
4894
|
let connectionList = existingNode === null || existingNode === void 0 ? void 0 : existingNode.value;
|
|
4896
4895
|
if (connectionList.length == 0) {
|
|
@@ -4905,7 +4904,6 @@ class ConnectionOfTheTree {
|
|
|
4905
4904
|
list.push(connection.id);
|
|
4906
4905
|
let connectionNode = new _ConnectionOfNode__WEBPACK_IMPORTED_MODULE_0__.ConnectionOfNode(key, list, null, null);
|
|
4907
4906
|
this.addNodeToTree(connectionNode);
|
|
4908
|
-
console.log("oftree second", connectionNode);
|
|
4909
4907
|
}
|
|
4910
4908
|
}
|
|
4911
4909
|
else {
|
|
@@ -4913,7 +4911,6 @@ class ConnectionOfTheTree {
|
|
|
4913
4911
|
list.push(connection.id);
|
|
4914
4912
|
let connectionNode = new _ConnectionOfNode__WEBPACK_IMPORTED_MODULE_0__.ConnectionOfNode(key, list, null, null);
|
|
4915
4913
|
this.addNodeToTree(connectionNode);
|
|
4916
|
-
console.log("oftree third", connectionNode);
|
|
4917
4914
|
}
|
|
4918
4915
|
}
|
|
4919
4916
|
else {
|
|
@@ -6483,6 +6480,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
6483
6480
|
/* harmony import */ var _Services_Local_CreateDefaultLConcept__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../Services/Local/CreateDefaultLConcept */ "./src/Services/Local/CreateDefaultLConcept.ts");
|
|
6484
6481
|
/* harmony import */ var _ConceptData__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../ConceptData */ "./src/DataStructures/ConceptData.ts");
|
|
6485
6482
|
/* harmony import */ var _LocalGhostIdTree__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./LocalGhostIdTree */ "./src/DataStructures/Local/LocalGhostIdTree.ts");
|
|
6483
|
+
/* harmony import */ var _LocalConnectionData__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./LocalConnectionData */ "./src/DataStructures/Local/LocalConnectionData.ts");
|
|
6486
6484
|
var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
6487
6485
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
6488
6486
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -6499,6 +6497,7 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
|
|
|
6499
6497
|
|
|
6500
6498
|
|
|
6501
6499
|
|
|
6500
|
+
|
|
6502
6501
|
class LocalConceptsData {
|
|
6503
6502
|
constructor() {
|
|
6504
6503
|
this.name = "conceptsArray";
|
|
@@ -6641,6 +6640,12 @@ class LocalConceptsData {
|
|
|
6641
6640
|
return ConceptList;
|
|
6642
6641
|
});
|
|
6643
6642
|
}
|
|
6643
|
+
static ClearData() {
|
|
6644
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
6645
|
+
this.localconceptsArray = [];
|
|
6646
|
+
_LocalConnectionData__WEBPACK_IMPORTED_MODULE_7__.LocalConnectionData.connectionArray = [];
|
|
6647
|
+
});
|
|
6648
|
+
}
|
|
6644
6649
|
getName() {
|
|
6645
6650
|
return this.name;
|
|
6646
6651
|
}
|