mftsccs-browser 1.1.32-beta → 1.1.34-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.
@@ -18145,6 +18145,68 @@ class BaseWidget extends _BaseObserver__WEBPACK_IMPORTED_MODULE_0__.BaseObserver
18145
18145
  }
18146
18146
 
18147
18147
 
18148
+ /***/ }),
18149
+
18150
+ /***/ "./src/Widgets/BuilderSpeceficFunctions.ts":
18151
+ /*!*************************************************!*\
18152
+ !*** ./src/Widgets/BuilderSpeceficFunctions.ts ***!
18153
+ \*************************************************/
18154
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
18155
+
18156
+ __webpack_require__.r(__webpack_exports__);
18157
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
18158
+ /* harmony export */ TypeEditor: () => (/* binding */ TypeEditor)
18159
+ /* harmony export */ });
18160
+ function TypeEditor(event, that) {
18161
+ if (event) {
18162
+ const inputVal = document.querySelector("#widget-properties .flex-column");
18163
+ console.log("This is the input val container", inputVal, that, event);
18164
+ const existedInputEl = inputVal === null || inputVal === void 0 ? void 0 : inputVal.querySelectorAll("input");
18165
+ existedInputEl === null || existedInputEl === void 0 ? void 0 : existedInputEl.forEach((inputItem) => {
18166
+ inputItem === null || inputItem === void 0 ? void 0 : inputItem.remove();
18167
+ });
18168
+ // this is used to add the type value to the dom so that we can then fix the type in the child widget.
18169
+ console.log("event.target", event.target);
18170
+ const elementParent = event.target.closest(".added-widget-container");
18171
+ const elementDivParent = event.target.closest("div");
18172
+ let typeValue = "";
18173
+ if (elementParent) {
18174
+ typeValue = elementParent === null || elementParent === void 0 ? void 0 : elementParent.getAttribute("data-type-value");
18175
+ }
18176
+ else if (elementDivParent) {
18177
+ typeValue = elementDivParent === null || elementDivParent === void 0 ? void 0 : elementDivParent.getAttribute("data-type-value");
18178
+ }
18179
+ const inputEl = document.createElement("input");
18180
+ inputEl.setAttribute("type", "text");
18181
+ inputEl.setAttribute("name", "input-widgetTypeValue");
18182
+ inputEl.setAttribute("of", that.elementIdentifier.toString());
18183
+ inputEl.setAttribute("class", "form-control");
18184
+ inputEl.setAttribute("id", "widgetType");
18185
+ if (that.widgetType) {
18186
+ inputEl.value = that.widgetType;
18187
+ }
18188
+ else {
18189
+ inputEl.setAttribute("placeholder", "e.g. the_entity");
18190
+ }
18191
+ let newThat = that;
18192
+ inputEl.onchange = function (event) {
18193
+ var _a, _b, _c;
18194
+ event.preventDefault();
18195
+ event.stopPropagation();
18196
+ //console.log("THAT ->", that);
18197
+ const inputValue = (_a = event === null || event === void 0 ? void 0 : event.target) === null || _a === void 0 ? void 0 : _a.value;
18198
+ newThat.widgetType = inputValue;
18199
+ //console.log("inputValue", inputValue);
18200
+ //that.setProperty(inputValue);
18201
+ newThat.componentDidMount();
18202
+ newThat.mountChildWidgets();
18203
+ (_c = (_b = newThat.element) === null || _b === void 0 ? void 0 : _b.parentElement) === null || _c === void 0 ? void 0 : _c.setAttribute("data-type-value", newThat.widgetType);
18204
+ };
18205
+ inputVal === null || inputVal === void 0 ? void 0 : inputVal.appendChild(inputEl);
18206
+ }
18207
+ }
18208
+
18209
+
18148
18210
  /***/ }),
18149
18211
 
18150
18212
  /***/ "./src/Widgets/BuilderStatefulWidget.ts":
@@ -18160,6 +18222,7 @@ __webpack_require__.r(__webpack_exports__);
18160
18222
  /* harmony import */ var _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./StatefulWidget */ "./src/Widgets/StatefulWidget.ts");
18161
18223
  /* harmony import */ var _app__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../app */ "./src/app.ts");
18162
18224
  /* harmony import */ var _Services_Common_ErrorPosting__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Services/Common/ErrorPosting */ "./src/Services/Common/ErrorPosting.ts");
18225
+ /* harmony import */ var _BuilderSpeceficFunctions__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./BuilderSpeceficFunctions */ "./src/Widgets/BuilderSpeceficFunctions.ts");
18163
18226
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
18164
18227
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
18165
18228
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -18173,6 +18236,7 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
18173
18236
 
18174
18237
 
18175
18238
 
18239
+
18176
18240
  class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__.StatefulWidget {
18177
18241
  constructor() {
18178
18242
  super(...arguments);
@@ -18184,6 +18248,7 @@ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__
18184
18248
  // subscribers: any = [];
18185
18249
  this.element = null;
18186
18250
  this.phonebooks = [];
18251
+ this.childrenData = [];
18187
18252
  this.html = "";
18188
18253
  this.childWidgets = [];
18189
18254
  this.typeValueList = [];
@@ -18264,51 +18329,6 @@ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__
18264
18329
  // Output: "the_element"
18265
18330
  const nextMatch = typeName === null || typeName === void 0 ? void 0 : typeName.match(/^([a-z0-9]+).*_([a-z0-9]+)$/i);
18266
18331
  const typevalueKey = nextMatch ? `${nextMatch[1]}_${nextMatch[2]}` : "";
18267
- // Output: "the_name"
18268
- // const profileData: any = await getLocalStorageProfileData();
18269
- // const token = profileData?.token;
18270
- // const userId = profileData?.userId;
18271
- // const compositionSerach: tsccs.SearchStructure = {
18272
- // type: "",
18273
- // search: "",
18274
- // // composition: "the_element",
18275
- // composition: mainComposition,
18276
- // internalComposition: "",
18277
- // userId: userId,
18278
- // inpage: 100,
18279
- // page: 1,
18280
- // auth: true,
18281
- // };
18282
- // let searchFirst = new tsccs.SearchQuery();
18283
- // // searchFirst.type = "the_element_name";
18284
- // // searchFirst.fullLinkers = ["the_element_name"];
18285
- // searchFirst.type = typeName;
18286
- // searchFirst.fullLinkers = [typeName];
18287
- // searchFirst.inpage = 100;
18288
- // const queryParams = [searchFirst];
18289
- // tsccs
18290
- // .GetLinkListListener(
18291
- // compositionSerach,
18292
- // queryParams,
18293
- // token,
18294
- // tsccs.NORMAL
18295
- // )
18296
- // .subscribe((output: any) => {
18297
- // if (output?.length) {
18298
- // const result = output?.map((item: any, index: number) => {
18299
- // const itemName =
18300
- // item[mainComposition][typeName]?.[0]?.[typevalueKey];
18301
- // return {
18302
- // id: index,
18303
- // name: itemName,
18304
- // text: itemName,
18305
- // };
18306
- // });
18307
- // this.typeValueList = result;
18308
- // resolve(this.typeValueList);
18309
- // return result;
18310
- // }
18311
- // });
18312
18332
  // NEW SEARCH WITH FILTER
18313
18333
  // filters
18314
18334
  let filters = [];
@@ -18374,14 +18394,6 @@ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__
18374
18394
  }).call(this);
18375
18395
  `).bind(this);
18376
18396
  dynamicAsyncFunction(_app__WEBPACK_IMPORTED_MODULE_1__);
18377
- // const AsyncFunction = Object.getPrototypeOf(
18378
- // async function () {}
18379
- // ).constructor;
18380
- // const renderOnmount = AsyncFunction(
18381
- // "tsccs",
18382
- // this.mountChildWidgetsFunction
18383
- // );
18384
- // renderOnmount.call(this, tsccs);
18385
18397
  });
18386
18398
  }
18387
18399
  setProperty(widgetTypeName) {
@@ -18397,48 +18409,7 @@ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__
18397
18409
  });
18398
18410
  }
18399
18411
  createTypeEditor(event) {
18400
- if (event) {
18401
- const inputVal = document.querySelector("#widget-properties .flex-column");
18402
- console.log("This is the input val container", inputVal);
18403
- const existedInputEl = inputVal === null || inputVal === void 0 ? void 0 : inputVal.querySelectorAll("input");
18404
- existedInputEl === null || existedInputEl === void 0 ? void 0 : existedInputEl.forEach((inputItem) => {
18405
- inputItem === null || inputItem === void 0 ? void 0 : inputItem.remove();
18406
- });
18407
- // const elementParent = event.target?.closest(".added-widget-container");
18408
- // const elementDivParent = event.target?.closest("div");
18409
- let typeValue = this.widgetType;
18410
- // if (elementParent) {
18411
- // typeValue = elementParent?.getAttribute("data-type-value");
18412
- // } else if (elementDivParent) {
18413
- // typeValue = elementDivParent?.getAttribute("data-type-value");
18414
- // }
18415
- const inputEl = document.createElement("input");
18416
- inputEl.setAttribute("type", "text");
18417
- inputEl.setAttribute("name", "input-widgetTypeValue");
18418
- inputEl.setAttribute("of", this.elementIdentifier.toString());
18419
- inputEl.setAttribute("class", "form-control");
18420
- inputEl.setAttribute("id", "widgetTypeValue");
18421
- if (typeValue) {
18422
- inputEl.value = this.widgetType;
18423
- }
18424
- else {
18425
- inputEl.setAttribute("placeholder", "e.g. the_entity_type");
18426
- }
18427
- let that = this;
18428
- inputEl.onchange = function (event) {
18429
- var _a;
18430
- event.preventDefault();
18431
- event.stopPropagation();
18432
- //console.log("THAT ->", that);
18433
- const inputValue = (_a = event === null || event === void 0 ? void 0 : event.target) === null || _a === void 0 ? void 0 : _a.value;
18434
- that.widgetType = inputValue;
18435
- //console.log("inputValue", inputValue);
18436
- //that.setProperty(inputValue);
18437
- that.componentDidMount();
18438
- that.mountChildWidgets();
18439
- };
18440
- inputVal === null || inputVal === void 0 ? void 0 : inputVal.appendChild(inputEl);
18441
- }
18412
+ (0,_BuilderSpeceficFunctions__WEBPACK_IMPORTED_MODULE_3__.TypeEditor)(event, this);
18442
18413
  }
18443
18414
  /**
18444
18415
  *
@@ -18456,8 +18427,9 @@ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__
18456
18427
  that.createTypeEditor(event);
18457
18428
  };
18458
18429
  this.element.id = this.createWidgetWrapperIdentifier();
18459
- this.element.className = "p-2";
18430
+ this.element.className = "p-2 mftsccs-marking-element";
18460
18431
  this.element.innerHTML = this.getHtml();
18432
+ parent === null || parent === void 0 ? void 0 : parent.setAttribute("data-type-value", that.widgetType);
18461
18433
  parent.appendChild(this.element);
18462
18434
  this.childWidgetElement = this.getElementByClassName("added-widget-container");
18463
18435
  this.parentElement = parent.id;
@@ -18752,6 +18724,42 @@ class StatefulWidget extends _BaseWidget__WEBPACK_IMPORTED_MODULE_0__.BaseWidget
18752
18724
  }
18753
18725
 
18754
18726
 
18727
+ /***/ }),
18728
+
18729
+ /***/ "./src/Widgets/WidgetTree.ts":
18730
+ /*!***********************************!*\
18731
+ !*** ./src/Widgets/WidgetTree.ts ***!
18732
+ \***********************************/
18733
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
18734
+
18735
+ __webpack_require__.r(__webpack_exports__);
18736
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
18737
+ /* harmony export */ WidgetTree: () => (/* binding */ WidgetTree)
18738
+ /* harmony export */ });
18739
+ /* harmony import */ var _BuilderStatefulWidget__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./BuilderStatefulWidget */ "./src/Widgets/BuilderStatefulWidget.ts");
18740
+ //import { BuilderStatefulWidget } from "../default/StatefulWidget"
18741
+
18742
+ class WidgetTree {
18743
+ constructor() {
18744
+ this.id = 0;
18745
+ this.name = "";
18746
+ this.html = "";
18747
+ this.css = "";
18748
+ this.js = "";
18749
+ this.timestamp = "";
18750
+ this.widgetId = 0;
18751
+ this.typeValue = "";
18752
+ this.addEvent = "";
18753
+ this.onmount = "";
18754
+ this.onupdate = "";
18755
+ this.mountChildWidgets = "";
18756
+ this.children = [];
18757
+ this.wrapperId = 0;
18758
+ this.widget = new _BuilderStatefulWidget__WEBPACK_IMPORTED_MODULE_0__.BuilderStatefulWidget();
18759
+ }
18760
+ }
18761
+
18762
+
18755
18763
  /***/ }),
18756
18764
 
18757
18765
  /***/ "./src/WrapperFunctions/DepenedencyObserver.ts":
@@ -19897,6 +19905,7 @@ __webpack_require__.r(__webpack_exports__);
19897
19905
  /* harmony export */ Validator: () => (/* reexport safe */ _Validator_validator__WEBPACK_IMPORTED_MODULE_104__.Validator),
19898
19906
  /* harmony export */ ViewInternalData: () => (/* reexport safe */ _Services_View_ViewInternalData__WEBPACK_IMPORTED_MODULE_56__.ViewInternalData),
19899
19907
  /* harmony export */ ViewInternalDataApi: () => (/* reexport safe */ _Api_View_ViewInternalDataApi__WEBPACK_IMPORTED_MODULE_57__.ViewInternalDataApi),
19908
+ /* harmony export */ WidgetTree: () => (/* reexport safe */ _Widgets_WidgetTree__WEBPACK_IMPORTED_MODULE_111__.WidgetTree),
19900
19909
  /* harmony export */ convertFromConceptToLConcept: () => (/* reexport safe */ _Services_Conversion_ConvertConcepts__WEBPACK_IMPORTED_MODULE_58__.convertFromConceptToLConcept),
19901
19910
  /* harmony export */ convertFromLConceptToConcept: () => (/* reexport safe */ _Services_Conversion_ConvertConcepts__WEBPACK_IMPORTED_MODULE_58__.convertFromLConceptToConcept),
19902
19911
  /* harmony export */ createFormFieldData: () => (/* reexport safe */ _Validator_utils__WEBPACK_IMPORTED_MODULE_105__.createFormFieldData),
@@ -20024,6 +20033,7 @@ __webpack_require__.r(__webpack_exports__);
20024
20033
  /* harmony import */ var _DataStructures_Search_FreeschemaQuery__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./DataStructures/Search/FreeschemaQuery */ "./src/DataStructures/Search/FreeschemaQuery.ts");
20025
20034
  /* harmony import */ var _Api_Search_FreeschemaQueryApi__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./Api/Search/FreeschemaQueryApi */ "./src/Api/Search/FreeschemaQueryApi.ts");
20026
20035
  /* harmony import */ var _WrapperFunctions_SchemaQueryObservable__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./WrapperFunctions/SchemaQueryObservable */ "./src/WrapperFunctions/SchemaQueryObservable.ts");
20036
+ /* harmony import */ var _Widgets_WidgetTree__WEBPACK_IMPORTED_MODULE_111__ = __webpack_require__(/*! ./Widgets/WidgetTree */ "./src/Widgets/WidgetTree.ts");
20027
20037
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
20028
20038
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
20029
20039
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -20150,6 +20160,7 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
20150
20160
 
20151
20161
 
20152
20162
 
20163
+
20153
20164
 
20154
20165
 
20155
20166
  var serviceWorker;
@@ -20787,6 +20798,7 @@ function initConceptConnection() {
20787
20798
  /******/ var __webpack_exports__Validator = __webpack_exports__.Validator;
20788
20799
  /******/ var __webpack_exports__ViewInternalData = __webpack_exports__.ViewInternalData;
20789
20800
  /******/ var __webpack_exports__ViewInternalDataApi = __webpack_exports__.ViewInternalDataApi;
20801
+ /******/ var __webpack_exports__WidgetTree = __webpack_exports__.WidgetTree;
20790
20802
  /******/ var __webpack_exports__convertFromConceptToLConcept = __webpack_exports__.convertFromConceptToLConcept;
20791
20803
  /******/ var __webpack_exports__convertFromLConceptToConcept = __webpack_exports__.convertFromLConceptToConcept;
20792
20804
  /******/ var __webpack_exports__createFormFieldData = __webpack_exports__.createFormFieldData;
@@ -20802,7 +20814,7 @@ function initConceptConnection() {
20802
20814
  /******/ var __webpack_exports__storeToDatabase = __webpack_exports__.storeToDatabase;
20803
20815
  /******/ var __webpack_exports__subscribedListeners = __webpack_exports__.subscribedListeners;
20804
20816
  /******/ var __webpack_exports__updateAccessToken = __webpack_exports__.updateAccessToken;
20805
- /******/ export { __webpack_exports__ADMIN as ADMIN, __webpack_exports__ALLID as ALLID, __webpack_exports__AddGhostConcept as AddGhostConcept, __webpack_exports__Anomaly as Anomaly, __webpack_exports__BaseUrl as BaseUrl, __webpack_exports__BinaryTree as BinaryTree, __webpack_exports__BuilderStatefulWidget as BuilderStatefulWidget, __webpack_exports__Composition as Composition, __webpack_exports__CompositionBinaryTree as CompositionBinaryTree, __webpack_exports__CompositionNode as CompositionNode, __webpack_exports__Concept as Concept, __webpack_exports__ConceptsData as ConceptsData, __webpack_exports__Connection as Connection, __webpack_exports__ConnectionData as ConnectionData, __webpack_exports__CreateComposition as CreateComposition, __webpack_exports__CreateConnectionBetweenTwoConcepts as CreateConnectionBetweenTwoConcepts, __webpack_exports__CreateConnectionBetweenTwoConceptsGeneral as CreateConnectionBetweenTwoConceptsGeneral, __webpack_exports__CreateConnectionBetweenTwoConceptsLocal as CreateConnectionBetweenTwoConceptsLocal, __webpack_exports__CreateDefaultConcept as CreateDefaultConcept, __webpack_exports__CreateDefaultLConcept as CreateDefaultLConcept, __webpack_exports__CreateSession as CreateSession, __webpack_exports__CreateSessionVisit as CreateSessionVisit, __webpack_exports__CreateTheCompositionLocal as CreateTheCompositionLocal, __webpack_exports__CreateTheCompositionWithCache as CreateTheCompositionWithCache, __webpack_exports__CreateTheConnection as CreateTheConnection, __webpack_exports__CreateTheConnectionGeneral as CreateTheConnectionGeneral, __webpack_exports__CreateTheConnectionLocal as CreateTheConnectionLocal, __webpack_exports__DATAID as DATAID, __webpack_exports__DATAIDDATE as DATAIDDATE, __webpack_exports__DelayFunctionExecution as DelayFunctionExecution, __webpack_exports__DeleteConceptById as DeleteConceptById, __webpack_exports__DeleteConceptLocal as DeleteConceptLocal, __webpack_exports__DeleteConnectionById as DeleteConnectionById, __webpack_exports__DeleteConnectionByType as DeleteConnectionByType, __webpack_exports__DependencyObserver as DependencyObserver, __webpack_exports__FilterSearch as FilterSearch, __webpack_exports__FormatFromConnections as FormatFromConnections, __webpack_exports__FormatFromConnectionsAltered as FormatFromConnectionsAltered, __webpack_exports__FreeschemaQuery as FreeschemaQuery, __webpack_exports__FreeschemaQueryApi as FreeschemaQueryApi, __webpack_exports__GetAllConnectionsOfComposition as GetAllConnectionsOfComposition, __webpack_exports__GetAllConnectionsOfCompositionBulk as GetAllConnectionsOfCompositionBulk, __webpack_exports__GetComposition as GetComposition, __webpack_exports__GetCompositionBulk as GetCompositionBulk, __webpack_exports__GetCompositionBulkWithDataId as GetCompositionBulkWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataId as GetCompositionFromConnectionsWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataIdInObject as GetCompositionFromConnectionsWithDataIdInObject, __webpack_exports__GetCompositionFromConnectionsWithDataIdIndex as GetCompositionFromConnectionsWithDataIdIndex, __webpack_exports__GetCompositionFromConnectionsWithIndex as GetCompositionFromConnectionsWithIndex, __webpack_exports__GetCompositionList as GetCompositionList, __webpack_exports__GetCompositionListAll as GetCompositionListAll, __webpack_exports__GetCompositionListAllWithId as GetCompositionListAllWithId, __webpack_exports__GetCompositionListListener as GetCompositionListListener, __webpack_exports__GetCompositionListLocal as GetCompositionListLocal, __webpack_exports__GetCompositionListLocalWithId as GetCompositionListLocalWithId, __webpack_exports__GetCompositionListWithId as GetCompositionListWithId, __webpack_exports__GetCompositionListWithIdUpdated as GetCompositionListWithIdUpdated, __webpack_exports__GetCompositionListener as GetCompositionListener, __webpack_exports__GetCompositionLocal as GetCompositionLocal, __webpack_exports__GetCompositionLocalWithId as GetCompositionLocalWithId, __webpack_exports__GetCompositionWithAllIds as GetCompositionWithAllIds, __webpack_exports__GetCompositionWithCache as GetCompositionWithCache, __webpack_exports__GetCompositionWithDataIdBulk as GetCompositionWithDataIdBulk, __webpack_exports__GetCompositionWithDataIdWithCache as GetCompositionWithDataIdWithCache, __webpack_exports__GetCompositionWithId as GetCompositionWithId, __webpack_exports__GetCompositionWithIdAndDateFromMemory as GetCompositionWithIdAndDateFromMemory, __webpack_exports__GetConceptBulk as GetConceptBulk, __webpack_exports__GetConceptByCharacter as GetConceptByCharacter, __webpack_exports__GetConceptByCharacterAndCategoryLocal as GetConceptByCharacterAndCategoryLocal, __webpack_exports__GetConceptByCharacterAndType as GetConceptByCharacterAndType, __webpack_exports__GetConnectionBetweenTwoConceptsLinker as GetConnectionBetweenTwoConceptsLinker, __webpack_exports__GetConnectionBulk as GetConnectionBulk, __webpack_exports__GetConnectionById as GetConnectionById, __webpack_exports__GetConnectionDataPrefetch as GetConnectionDataPrefetch, __webpack_exports__GetConnectionOfTheConcept as GetConnectionOfTheConcept, __webpack_exports__GetLink as GetLink, __webpack_exports__GetLinkListListener as GetLinkListListener, __webpack_exports__GetLinkListener as GetLinkListener, __webpack_exports__GetLinkRaw as GetLinkRaw, __webpack_exports__GetLinkerConnectionFromConcepts as GetLinkerConnectionFromConcepts, __webpack_exports__GetLinkerConnectionToConcepts as GetLinkerConnectionToConcepts, __webpack_exports__GetRelation as GetRelation, __webpack_exports__GetRelationLocal as GetRelationLocal, __webpack_exports__GetRelationRaw as GetRelationRaw, __webpack_exports__GetTheConcept as GetTheConcept, __webpack_exports__GetTheConceptLocal as GetTheConceptLocal, __webpack_exports__GetUserGhostId as GetUserGhostId, __webpack_exports__JUSTDATA as JUSTDATA, __webpack_exports__LConcept as LConcept, __webpack_exports__LConnection as LConnection, __webpack_exports__LISTNORMAL as LISTNORMAL, __webpack_exports__LocalConceptsData as LocalConceptsData, __webpack_exports__LocalSyncData as LocalSyncData, __webpack_exports__LocalTransaction as LocalTransaction, __webpack_exports__LoginToBackend as LoginToBackend, __webpack_exports__MakeTheInstanceConcept as MakeTheInstanceConcept, __webpack_exports__MakeTheInstanceConceptLocal as MakeTheInstanceConceptLocal, __webpack_exports__MakeTheTimestamp as MakeTheTimestamp, __webpack_exports__MakeTheTypeConcept as MakeTheTypeConcept, __webpack_exports__MakeTheTypeConceptApi as MakeTheTypeConceptApi, __webpack_exports__MakeTheTypeConceptLocal as MakeTheTypeConceptLocal, __webpack_exports__NORMAL as NORMAL, __webpack_exports__PRIVATE as PRIVATE, __webpack_exports__PUBLIC as PUBLIC, __webpack_exports__PatcherStructure as PatcherStructure, __webpack_exports__RAW as RAW, __webpack_exports__RecursiveSearchApi as RecursiveSearchApi, __webpack_exports__RecursiveSearchApiNewRawFullLinker as RecursiveSearchApiNewRawFullLinker, __webpack_exports__RecursiveSearchApiRaw as RecursiveSearchApiRaw, __webpack_exports__RecursiveSearchApiRawFullLinker as RecursiveSearchApiRawFullLinker, __webpack_exports__RecursiveSearchListener as RecursiveSearchListener, __webpack_exports__SchemaQueryListener as SchemaQueryListener, __webpack_exports__SearchAllConcepts as SearchAllConcepts, __webpack_exports__SearchLinkInternal as SearchLinkInternal, __webpack_exports__SearchLinkInternalAll as SearchLinkInternalAll, __webpack_exports__SearchLinkMultipleAll as SearchLinkMultipleAll, __webpack_exports__SearchLinkMultipleAllObservable as SearchLinkMultipleAllObservable, __webpack_exports__SearchLinkMultipleApi as SearchLinkMultipleApi, __webpack_exports__SearchQuery as SearchQuery, __webpack_exports__SearchStructure as SearchStructure, __webpack_exports__SearchWithLinker as SearchWithLinker, __webpack_exports__SearchWithTypeAndLinker as SearchWithTypeAndLinker, __webpack_exports__SearchWithTypeAndLinkerApi as SearchWithTypeAndLinkerApi, __webpack_exports__SessionData as SessionData, __webpack_exports__Signin as Signin, __webpack_exports__Signup as Signup, __webpack_exports__SignupEntity as SignupEntity, __webpack_exports__SplitStrings as SplitStrings, __webpack_exports__StatefulWidget as StatefulWidget, __webpack_exports__SyncData as SyncData, __webpack_exports__TrashTheConcept as TrashTheConcept, __webpack_exports__UpdateComposition as UpdateComposition, __webpack_exports__UpdateCompositionLocal as UpdateCompositionLocal, __webpack_exports__UserBinaryTree as UserBinaryTree, __webpack_exports__Validator as Validator, __webpack_exports__ViewInternalData as ViewInternalData, __webpack_exports__ViewInternalDataApi as ViewInternalDataApi, __webpack_exports__convertFromConceptToLConcept as convertFromConceptToLConcept, __webpack_exports__convertFromLConceptToConcept as convertFromLConceptToConcept, __webpack_exports__createFormFieldData as createFormFieldData, __webpack_exports__dispatchIdEvent as dispatchIdEvent, __webpack_exports__getFromDatabaseWithType as getFromDatabaseWithType, __webpack_exports__getObjectsFromIndexDb as getObjectsFromIndexDb, __webpack_exports__init as init, __webpack_exports__recursiveFetch as recursiveFetch, __webpack_exports__recursiveFetchNew as recursiveFetchNew, __webpack_exports__searchLinkMultipleListener as searchLinkMultipleListener, __webpack_exports__sendMessage as sendMessage, __webpack_exports__serviceWorker as serviceWorker, __webpack_exports__storeToDatabase as storeToDatabase, __webpack_exports__subscribedListeners as subscribedListeners, __webpack_exports__updateAccessToken as updateAccessToken };
20817
+ /******/ export { __webpack_exports__ADMIN as ADMIN, __webpack_exports__ALLID as ALLID, __webpack_exports__AddGhostConcept as AddGhostConcept, __webpack_exports__Anomaly as Anomaly, __webpack_exports__BaseUrl as BaseUrl, __webpack_exports__BinaryTree as BinaryTree, __webpack_exports__BuilderStatefulWidget as BuilderStatefulWidget, __webpack_exports__Composition as Composition, __webpack_exports__CompositionBinaryTree as CompositionBinaryTree, __webpack_exports__CompositionNode as CompositionNode, __webpack_exports__Concept as Concept, __webpack_exports__ConceptsData as ConceptsData, __webpack_exports__Connection as Connection, __webpack_exports__ConnectionData as ConnectionData, __webpack_exports__CreateComposition as CreateComposition, __webpack_exports__CreateConnectionBetweenTwoConcepts as CreateConnectionBetweenTwoConcepts, __webpack_exports__CreateConnectionBetweenTwoConceptsGeneral as CreateConnectionBetweenTwoConceptsGeneral, __webpack_exports__CreateConnectionBetweenTwoConceptsLocal as CreateConnectionBetweenTwoConceptsLocal, __webpack_exports__CreateDefaultConcept as CreateDefaultConcept, __webpack_exports__CreateDefaultLConcept as CreateDefaultLConcept, __webpack_exports__CreateSession as CreateSession, __webpack_exports__CreateSessionVisit as CreateSessionVisit, __webpack_exports__CreateTheCompositionLocal as CreateTheCompositionLocal, __webpack_exports__CreateTheCompositionWithCache as CreateTheCompositionWithCache, __webpack_exports__CreateTheConnection as CreateTheConnection, __webpack_exports__CreateTheConnectionGeneral as CreateTheConnectionGeneral, __webpack_exports__CreateTheConnectionLocal as CreateTheConnectionLocal, __webpack_exports__DATAID as DATAID, __webpack_exports__DATAIDDATE as DATAIDDATE, __webpack_exports__DelayFunctionExecution as DelayFunctionExecution, __webpack_exports__DeleteConceptById as DeleteConceptById, __webpack_exports__DeleteConceptLocal as DeleteConceptLocal, __webpack_exports__DeleteConnectionById as DeleteConnectionById, __webpack_exports__DeleteConnectionByType as DeleteConnectionByType, __webpack_exports__DependencyObserver as DependencyObserver, __webpack_exports__FilterSearch as FilterSearch, __webpack_exports__FormatFromConnections as FormatFromConnections, __webpack_exports__FormatFromConnectionsAltered as FormatFromConnectionsAltered, __webpack_exports__FreeschemaQuery as FreeschemaQuery, __webpack_exports__FreeschemaQueryApi as FreeschemaQueryApi, __webpack_exports__GetAllConnectionsOfComposition as GetAllConnectionsOfComposition, __webpack_exports__GetAllConnectionsOfCompositionBulk as GetAllConnectionsOfCompositionBulk, __webpack_exports__GetComposition as GetComposition, __webpack_exports__GetCompositionBulk as GetCompositionBulk, __webpack_exports__GetCompositionBulkWithDataId as GetCompositionBulkWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataId as GetCompositionFromConnectionsWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataIdInObject as GetCompositionFromConnectionsWithDataIdInObject, __webpack_exports__GetCompositionFromConnectionsWithDataIdIndex as GetCompositionFromConnectionsWithDataIdIndex, __webpack_exports__GetCompositionFromConnectionsWithIndex as GetCompositionFromConnectionsWithIndex, __webpack_exports__GetCompositionList as GetCompositionList, __webpack_exports__GetCompositionListAll as GetCompositionListAll, __webpack_exports__GetCompositionListAllWithId as GetCompositionListAllWithId, __webpack_exports__GetCompositionListListener as GetCompositionListListener, __webpack_exports__GetCompositionListLocal as GetCompositionListLocal, __webpack_exports__GetCompositionListLocalWithId as GetCompositionListLocalWithId, __webpack_exports__GetCompositionListWithId as GetCompositionListWithId, __webpack_exports__GetCompositionListWithIdUpdated as GetCompositionListWithIdUpdated, __webpack_exports__GetCompositionListener as GetCompositionListener, __webpack_exports__GetCompositionLocal as GetCompositionLocal, __webpack_exports__GetCompositionLocalWithId as GetCompositionLocalWithId, __webpack_exports__GetCompositionWithAllIds as GetCompositionWithAllIds, __webpack_exports__GetCompositionWithCache as GetCompositionWithCache, __webpack_exports__GetCompositionWithDataIdBulk as GetCompositionWithDataIdBulk, __webpack_exports__GetCompositionWithDataIdWithCache as GetCompositionWithDataIdWithCache, __webpack_exports__GetCompositionWithId as GetCompositionWithId, __webpack_exports__GetCompositionWithIdAndDateFromMemory as GetCompositionWithIdAndDateFromMemory, __webpack_exports__GetConceptBulk as GetConceptBulk, __webpack_exports__GetConceptByCharacter as GetConceptByCharacter, __webpack_exports__GetConceptByCharacterAndCategoryLocal as GetConceptByCharacterAndCategoryLocal, __webpack_exports__GetConceptByCharacterAndType as GetConceptByCharacterAndType, __webpack_exports__GetConnectionBetweenTwoConceptsLinker as GetConnectionBetweenTwoConceptsLinker, __webpack_exports__GetConnectionBulk as GetConnectionBulk, __webpack_exports__GetConnectionById as GetConnectionById, __webpack_exports__GetConnectionDataPrefetch as GetConnectionDataPrefetch, __webpack_exports__GetConnectionOfTheConcept as GetConnectionOfTheConcept, __webpack_exports__GetLink as GetLink, __webpack_exports__GetLinkListListener as GetLinkListListener, __webpack_exports__GetLinkListener as GetLinkListener, __webpack_exports__GetLinkRaw as GetLinkRaw, __webpack_exports__GetLinkerConnectionFromConcepts as GetLinkerConnectionFromConcepts, __webpack_exports__GetLinkerConnectionToConcepts as GetLinkerConnectionToConcepts, __webpack_exports__GetRelation as GetRelation, __webpack_exports__GetRelationLocal as GetRelationLocal, __webpack_exports__GetRelationRaw as GetRelationRaw, __webpack_exports__GetTheConcept as GetTheConcept, __webpack_exports__GetTheConceptLocal as GetTheConceptLocal, __webpack_exports__GetUserGhostId as GetUserGhostId, __webpack_exports__JUSTDATA as JUSTDATA, __webpack_exports__LConcept as LConcept, __webpack_exports__LConnection as LConnection, __webpack_exports__LISTNORMAL as LISTNORMAL, __webpack_exports__LocalConceptsData as LocalConceptsData, __webpack_exports__LocalSyncData as LocalSyncData, __webpack_exports__LocalTransaction as LocalTransaction, __webpack_exports__LoginToBackend as LoginToBackend, __webpack_exports__MakeTheInstanceConcept as MakeTheInstanceConcept, __webpack_exports__MakeTheInstanceConceptLocal as MakeTheInstanceConceptLocal, __webpack_exports__MakeTheTimestamp as MakeTheTimestamp, __webpack_exports__MakeTheTypeConcept as MakeTheTypeConcept, __webpack_exports__MakeTheTypeConceptApi as MakeTheTypeConceptApi, __webpack_exports__MakeTheTypeConceptLocal as MakeTheTypeConceptLocal, __webpack_exports__NORMAL as NORMAL, __webpack_exports__PRIVATE as PRIVATE, __webpack_exports__PUBLIC as PUBLIC, __webpack_exports__PatcherStructure as PatcherStructure, __webpack_exports__RAW as RAW, __webpack_exports__RecursiveSearchApi as RecursiveSearchApi, __webpack_exports__RecursiveSearchApiNewRawFullLinker as RecursiveSearchApiNewRawFullLinker, __webpack_exports__RecursiveSearchApiRaw as RecursiveSearchApiRaw, __webpack_exports__RecursiveSearchApiRawFullLinker as RecursiveSearchApiRawFullLinker, __webpack_exports__RecursiveSearchListener as RecursiveSearchListener, __webpack_exports__SchemaQueryListener as SchemaQueryListener, __webpack_exports__SearchAllConcepts as SearchAllConcepts, __webpack_exports__SearchLinkInternal as SearchLinkInternal, __webpack_exports__SearchLinkInternalAll as SearchLinkInternalAll, __webpack_exports__SearchLinkMultipleAll as SearchLinkMultipleAll, __webpack_exports__SearchLinkMultipleAllObservable as SearchLinkMultipleAllObservable, __webpack_exports__SearchLinkMultipleApi as SearchLinkMultipleApi, __webpack_exports__SearchQuery as SearchQuery, __webpack_exports__SearchStructure as SearchStructure, __webpack_exports__SearchWithLinker as SearchWithLinker, __webpack_exports__SearchWithTypeAndLinker as SearchWithTypeAndLinker, __webpack_exports__SearchWithTypeAndLinkerApi as SearchWithTypeAndLinkerApi, __webpack_exports__SessionData as SessionData, __webpack_exports__Signin as Signin, __webpack_exports__Signup as Signup, __webpack_exports__SignupEntity as SignupEntity, __webpack_exports__SplitStrings as SplitStrings, __webpack_exports__StatefulWidget as StatefulWidget, __webpack_exports__SyncData as SyncData, __webpack_exports__TrashTheConcept as TrashTheConcept, __webpack_exports__UpdateComposition as UpdateComposition, __webpack_exports__UpdateCompositionLocal as UpdateCompositionLocal, __webpack_exports__UserBinaryTree as UserBinaryTree, __webpack_exports__Validator as Validator, __webpack_exports__ViewInternalData as ViewInternalData, __webpack_exports__ViewInternalDataApi as ViewInternalDataApi, __webpack_exports__WidgetTree as WidgetTree, __webpack_exports__convertFromConceptToLConcept as convertFromConceptToLConcept, __webpack_exports__convertFromLConceptToConcept as convertFromLConceptToConcept, __webpack_exports__createFormFieldData as createFormFieldData, __webpack_exports__dispatchIdEvent as dispatchIdEvent, __webpack_exports__getFromDatabaseWithType as getFromDatabaseWithType, __webpack_exports__getObjectsFromIndexDb as getObjectsFromIndexDb, __webpack_exports__init as init, __webpack_exports__recursiveFetch as recursiveFetch, __webpack_exports__recursiveFetchNew as recursiveFetchNew, __webpack_exports__searchLinkMultipleListener as searchLinkMultipleListener, __webpack_exports__sendMessage as sendMessage, __webpack_exports__serviceWorker as serviceWorker, __webpack_exports__storeToDatabase as storeToDatabase, __webpack_exports__subscribedListeners as subscribedListeners, __webpack_exports__updateAccessToken as updateAccessToken };
20806
20818
  /******/
20807
20819
 
20808
20820
  //# sourceMappingURL=main.bundle.js.map