mftsccs-browser 2.0.8-beta → 2.0.10-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 +5 -51
- package/dist/main.bundle.js.map +1 -1
- package/dist/serviceWorker.bundle.js +5 -51
- package/dist/serviceWorker.bundle.js.map +1 -1
- package/dist/types/DataStructures/Count/CountInfo.d.ts +6 -0
- package/dist/types/Services/Common/DecodeCountInfo.d.ts +3 -0
- package/dist/types/Widgets/StatefulWidget.d.ts +2 -0
- package/dist/types/Widgets/WidgetTree.d.ts +2 -0
- package/package.json +1 -1
|
@@ -15362,7 +15362,7 @@ function GetConnectionDataPrefetch(connectionIds) {
|
|
|
15362
15362
|
connectionsAll.push(connection);
|
|
15363
15363
|
}
|
|
15364
15364
|
}
|
|
15365
|
-
for (let i = 0; i <
|
|
15365
|
+
for (let i = 0; i < remainingConnections.length; i++) {
|
|
15366
15366
|
remainingIds[connectionIds[i]] = false;
|
|
15367
15367
|
}
|
|
15368
15368
|
//await ConnectionData.GetConnectionBulkData(connectionIds, connectionsAll, remainingIds);
|
|
@@ -21536,56 +21536,6 @@ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__
|
|
|
21536
21536
|
this.widgetType = "the_element_name";
|
|
21537
21537
|
this.parentConceptList = [];
|
|
21538
21538
|
}
|
|
21539
|
-
// async getWidgetCodeFromId(widgetId: number, token: string) {
|
|
21540
|
-
// //console.log("getWidgetCodeFromId", widgetId, token);
|
|
21541
|
-
// return new Promise(async (resolve: any, reject: any) => {
|
|
21542
|
-
// try {
|
|
21543
|
-
// let searchFirst = new SearchQuery();
|
|
21544
|
-
// searchFirst.composition = widgetId;
|
|
21545
|
-
// searchFirst.fullLinkers = [
|
|
21546
|
-
// "the_widgetcode",
|
|
21547
|
-
// "the_widgetcode_widget",
|
|
21548
|
-
// "the_widgetcode_name",
|
|
21549
|
-
// "the_widgetcode_html",
|
|
21550
|
-
// "the_widgetcode_css",
|
|
21551
|
-
// "the_widgetcode_js",
|
|
21552
|
-
// "the_widgetcode_timestamp",
|
|
21553
|
-
// "the_widgetcode_typevalue",
|
|
21554
|
-
// "the_widgetcode_addevent",
|
|
21555
|
-
// "the_widgetcode_onmount",
|
|
21556
|
-
// "the_widgetcode_onupdate",
|
|
21557
|
-
// "the_widgetcode_mountChildWidgets",
|
|
21558
|
-
// "the_widgetcode_cleanhtml",
|
|
21559
|
-
// "the_widgetcode_s_child",
|
|
21560
|
-
// ];
|
|
21561
|
-
// searchFirst.inpage = 100;
|
|
21562
|
-
// let searchSecond = new SearchQuery();
|
|
21563
|
-
// searchSecond.fullLinkers = [
|
|
21564
|
-
// "the_childwidget",
|
|
21565
|
-
// "the_childwidget_typevalue",
|
|
21566
|
-
// "the_childwidget_widget",
|
|
21567
|
-
// "the_childwidget_wrapperId",
|
|
21568
|
-
// ];
|
|
21569
|
-
// searchSecond.inpage = 100;
|
|
21570
|
-
// const queryParams = [searchFirst, searchSecond];
|
|
21571
|
-
// const output = await SearchLinkMultipleAll(queryParams, token);
|
|
21572
|
-
// //console.log("getWidgetCodeFromId output ->", output);
|
|
21573
|
-
// resolve(output);
|
|
21574
|
-
// return output;
|
|
21575
|
-
// } catch (error: any) {
|
|
21576
|
-
// console.error("error", error);
|
|
21577
|
-
// if (error?.status === 401) {
|
|
21578
|
-
// HandleHttpError(error?.response)
|
|
21579
|
-
// }
|
|
21580
|
-
// reject(error);
|
|
21581
|
-
// }
|
|
21582
|
-
// });
|
|
21583
|
-
// }
|
|
21584
|
-
// async CreateConceptConnections(){
|
|
21585
|
-
// let mainConcept = await
|
|
21586
|
-
// for(let i=0; i<this.childrenData.length; i++){
|
|
21587
|
-
// }
|
|
21588
|
-
// }
|
|
21589
21539
|
getUserId() {
|
|
21590
21540
|
return __awaiter(this, void 0, void 0, function* () {
|
|
21591
21541
|
const profileData = yield new Promise((resolve) => {
|
|
@@ -21862,6 +21812,8 @@ class StatefulWidget extends _BaseWidget__WEBPACK_IMPORTED_MODULE_0__.BaseWidget
|
|
|
21862
21812
|
constructor() {
|
|
21863
21813
|
super(...arguments);
|
|
21864
21814
|
this.html = "";
|
|
21815
|
+
this.css = "";
|
|
21816
|
+
this.js = "";
|
|
21865
21817
|
/**
|
|
21866
21818
|
* These are the child widgets that need to be added to this widget
|
|
21867
21819
|
*/
|
|
@@ -22037,6 +21989,8 @@ class WidgetTree {
|
|
|
22037
21989
|
this.after_render = "";
|
|
22038
21990
|
this.before_render = "";
|
|
22039
21991
|
this.update = "";
|
|
21992
|
+
this.origin = 0;
|
|
21993
|
+
this.version = 0;
|
|
22040
21994
|
this.mount_child = "";
|
|
22041
21995
|
this.children = [];
|
|
22042
21996
|
this.wrapper = 0;
|