mftsccs-browser 1.1.34-beta → 1.1.35-beta
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/main.bundle.js +7 -3
- package/dist/main.bundle.js.map +1 -1
- package/dist/serviceWorker.bundle.js +7 -3
- package/dist/serviceWorker.bundle.js.map +1 -1
- package/dist/types/DataStructures/Search/FreeschemaQuery.d.ts +1 -0
- package/dist/types/Widgets/StatefulWidget.d.ts +1 -1
- package/package.json +1 -1
package/dist/main.bundle.js
CHANGED
|
@@ -8906,6 +8906,7 @@ class FreeschemaQuery {
|
|
|
8906
8906
|
this.outputFormat = _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_0__.NORMAL;
|
|
8907
8907
|
this.name = "";
|
|
8908
8908
|
this.reverse = false;
|
|
8909
|
+
this.includeInFilter = false;
|
|
8909
8910
|
}
|
|
8910
8911
|
}
|
|
8911
8912
|
|
|
@@ -18248,7 +18249,7 @@ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__
|
|
|
18248
18249
|
// subscribers: any = [];
|
|
18249
18250
|
this.element = null;
|
|
18250
18251
|
this.phonebooks = [];
|
|
18251
|
-
this.childrenData =
|
|
18252
|
+
this.childrenData = {};
|
|
18252
18253
|
this.html = "";
|
|
18253
18254
|
this.childWidgets = [];
|
|
18254
18255
|
this.typeValueList = [];
|
|
@@ -18303,6 +18304,11 @@ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__
|
|
|
18303
18304
|
}));
|
|
18304
18305
|
});
|
|
18305
18306
|
}
|
|
18307
|
+
// async CreateConceptConnections(){
|
|
18308
|
+
// let mainConcept = await
|
|
18309
|
+
// for(let i=0; i<this.childrenData.length; i++){
|
|
18310
|
+
// }
|
|
18311
|
+
// }
|
|
18306
18312
|
getUserId() {
|
|
18307
18313
|
return __awaiter(this, void 0, void 0, function* () {
|
|
18308
18314
|
const profileData = yield new Promise((resolve) => {
|
|
@@ -18670,8 +18676,6 @@ class StatefulWidget extends _BaseWidget__WEBPACK_IMPORTED_MODULE_0__.BaseWidget
|
|
|
18670
18676
|
* This is the function that needs to be called.
|
|
18671
18677
|
*/
|
|
18672
18678
|
mountChildWidgets() {
|
|
18673
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
18674
|
-
});
|
|
18675
18679
|
}
|
|
18676
18680
|
/**
|
|
18677
18681
|
*
|