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
package/dist/main.bundle.js
CHANGED
|
@@ -14758,7 +14758,7 @@ function GetConnectionDataPrefetch(connectionIds) {
|
|
|
14758
14758
|
connectionsAll.push(connection);
|
|
14759
14759
|
}
|
|
14760
14760
|
}
|
|
14761
|
-
for (let i = 0; i <
|
|
14761
|
+
for (let i = 0; i < remainingConnections.length; i++) {
|
|
14762
14762
|
remainingIds[connectionIds[i]] = false;
|
|
14763
14763
|
}
|
|
14764
14764
|
//await ConnectionData.GetConnectionBulkData(connectionIds, connectionsAll, remainingIds);
|
|
@@ -20932,56 +20932,6 @@ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__
|
|
|
20932
20932
|
this.widgetType = "the_element_name";
|
|
20933
20933
|
this.parentConceptList = [];
|
|
20934
20934
|
}
|
|
20935
|
-
// async getWidgetCodeFromId(widgetId: number, token: string) {
|
|
20936
|
-
// //console.log("getWidgetCodeFromId", widgetId, token);
|
|
20937
|
-
// return new Promise(async (resolve: any, reject: any) => {
|
|
20938
|
-
// try {
|
|
20939
|
-
// let searchFirst = new SearchQuery();
|
|
20940
|
-
// searchFirst.composition = widgetId;
|
|
20941
|
-
// searchFirst.fullLinkers = [
|
|
20942
|
-
// "the_widgetcode",
|
|
20943
|
-
// "the_widgetcode_widget",
|
|
20944
|
-
// "the_widgetcode_name",
|
|
20945
|
-
// "the_widgetcode_html",
|
|
20946
|
-
// "the_widgetcode_css",
|
|
20947
|
-
// "the_widgetcode_js",
|
|
20948
|
-
// "the_widgetcode_timestamp",
|
|
20949
|
-
// "the_widgetcode_typevalue",
|
|
20950
|
-
// "the_widgetcode_addevent",
|
|
20951
|
-
// "the_widgetcode_onmount",
|
|
20952
|
-
// "the_widgetcode_onupdate",
|
|
20953
|
-
// "the_widgetcode_mountChildWidgets",
|
|
20954
|
-
// "the_widgetcode_cleanhtml",
|
|
20955
|
-
// "the_widgetcode_s_child",
|
|
20956
|
-
// ];
|
|
20957
|
-
// searchFirst.inpage = 100;
|
|
20958
|
-
// let searchSecond = new SearchQuery();
|
|
20959
|
-
// searchSecond.fullLinkers = [
|
|
20960
|
-
// "the_childwidget",
|
|
20961
|
-
// "the_childwidget_typevalue",
|
|
20962
|
-
// "the_childwidget_widget",
|
|
20963
|
-
// "the_childwidget_wrapperId",
|
|
20964
|
-
// ];
|
|
20965
|
-
// searchSecond.inpage = 100;
|
|
20966
|
-
// const queryParams = [searchFirst, searchSecond];
|
|
20967
|
-
// const output = await SearchLinkMultipleAll(queryParams, token);
|
|
20968
|
-
// //console.log("getWidgetCodeFromId output ->", output);
|
|
20969
|
-
// resolve(output);
|
|
20970
|
-
// return output;
|
|
20971
|
-
// } catch (error: any) {
|
|
20972
|
-
// console.error("error", error);
|
|
20973
|
-
// if (error?.status === 401) {
|
|
20974
|
-
// HandleHttpError(error?.response)
|
|
20975
|
-
// }
|
|
20976
|
-
// reject(error);
|
|
20977
|
-
// }
|
|
20978
|
-
// });
|
|
20979
|
-
// }
|
|
20980
|
-
// async CreateConceptConnections(){
|
|
20981
|
-
// let mainConcept = await
|
|
20982
|
-
// for(let i=0; i<this.childrenData.length; i++){
|
|
20983
|
-
// }
|
|
20984
|
-
// }
|
|
20985
20935
|
getUserId() {
|
|
20986
20936
|
return __awaiter(this, void 0, void 0, function* () {
|
|
20987
20937
|
const profileData = yield new Promise((resolve) => {
|
|
@@ -21258,6 +21208,8 @@ class StatefulWidget extends _BaseWidget__WEBPACK_IMPORTED_MODULE_0__.BaseWidget
|
|
|
21258
21208
|
constructor() {
|
|
21259
21209
|
super(...arguments);
|
|
21260
21210
|
this.html = "";
|
|
21211
|
+
this.css = "";
|
|
21212
|
+
this.js = "";
|
|
21261
21213
|
/**
|
|
21262
21214
|
* These are the child widgets that need to be added to this widget
|
|
21263
21215
|
*/
|
|
@@ -21433,6 +21385,8 @@ class WidgetTree {
|
|
|
21433
21385
|
this.after_render = "";
|
|
21434
21386
|
this.before_render = "";
|
|
21435
21387
|
this.update = "";
|
|
21388
|
+
this.origin = 0;
|
|
21389
|
+
this.version = 0;
|
|
21436
21390
|
this.mount_child = "";
|
|
21437
21391
|
this.children = [];
|
|
21438
21392
|
this.wrapper = 0;
|