mftsccs-browser 1.1.68-beta → 1.1.69-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.
@@ -14758,7 +14758,7 @@ function GetConnectionDataPrefetch(connectionIds) {
14758
14758
  connectionsAll.push(connection);
14759
14759
  }
14760
14760
  }
14761
- for (let i = 0; i < connectionIds.length; 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);
@@ -20666,56 +20666,6 @@ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__
20666
20666
  this.widgetType = "the_element_name";
20667
20667
  this.parentConceptList = [];
20668
20668
  }
20669
- // async getWidgetCodeFromId(widgetId: number, token: string) {
20670
- // //console.log("getWidgetCodeFromId", widgetId, token);
20671
- // return new Promise(async (resolve: any, reject: any) => {
20672
- // try {
20673
- // let searchFirst = new SearchQuery();
20674
- // searchFirst.composition = widgetId;
20675
- // searchFirst.fullLinkers = [
20676
- // "the_widgetcode",
20677
- // "the_widgetcode_widget",
20678
- // "the_widgetcode_name",
20679
- // "the_widgetcode_html",
20680
- // "the_widgetcode_css",
20681
- // "the_widgetcode_js",
20682
- // "the_widgetcode_timestamp",
20683
- // "the_widgetcode_typevalue",
20684
- // "the_widgetcode_addevent",
20685
- // "the_widgetcode_onmount",
20686
- // "the_widgetcode_onupdate",
20687
- // "the_widgetcode_mountChildWidgets",
20688
- // "the_widgetcode_cleanhtml",
20689
- // "the_widgetcode_s_child",
20690
- // ];
20691
- // searchFirst.inpage = 100;
20692
- // let searchSecond = new SearchQuery();
20693
- // searchSecond.fullLinkers = [
20694
- // "the_childwidget",
20695
- // "the_childwidget_typevalue",
20696
- // "the_childwidget_widget",
20697
- // "the_childwidget_wrapperId",
20698
- // ];
20699
- // searchSecond.inpage = 100;
20700
- // const queryParams = [searchFirst, searchSecond];
20701
- // const output = await SearchLinkMultipleAll(queryParams, token);
20702
- // //console.log("getWidgetCodeFromId output ->", output);
20703
- // resolve(output);
20704
- // return output;
20705
- // } catch (error: any) {
20706
- // console.error("error", error);
20707
- // if (error?.status === 401) {
20708
- // HandleHttpError(error?.response)
20709
- // }
20710
- // reject(error);
20711
- // }
20712
- // });
20713
- // }
20714
- // async CreateConceptConnections(){
20715
- // let mainConcept = await
20716
- // for(let i=0; i<this.childrenData.length; i++){
20717
- // }
20718
- // }
20719
20669
  getUserId() {
20720
20670
  return __awaiter(this, void 0, void 0, function* () {
20721
20671
  const profileData = yield new Promise((resolve) => {
@@ -20992,6 +20942,8 @@ class StatefulWidget extends _BaseWidget__WEBPACK_IMPORTED_MODULE_0__.BaseWidget
20992
20942
  constructor() {
20993
20943
  super(...arguments);
20994
20944
  this.html = "";
20945
+ this.css = "";
20946
+ this.js = "";
20995
20947
  /**
20996
20948
  * These are the child widgets that need to be added to this widget
20997
20949
  */