mftsccs-browser 1.1.25-beta → 1.1.26-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.
@@ -18070,6 +18070,414 @@ class BaseWidget extends _BaseObserver__WEBPACK_IMPORTED_MODULE_0__.BaseObserver
18070
18070
  }
18071
18071
 
18072
18072
 
18073
+ /***/ }),
18074
+
18075
+ /***/ "./src/Widgets/BuilderStatefulWidget.ts":
18076
+ /*!**********************************************!*\
18077
+ !*** ./src/Widgets/BuilderStatefulWidget.ts ***!
18078
+ \**********************************************/
18079
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
18080
+
18081
+ __webpack_require__.r(__webpack_exports__);
18082
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
18083
+ /* harmony export */ BuilderStatefulWidget: () => (/* binding */ BuilderStatefulWidget)
18084
+ /* harmony export */ });
18085
+ /* harmony import */ var _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./StatefulWidget */ "./src/Widgets/StatefulWidget.ts");
18086
+ /* harmony import */ var _app__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../app */ "./src/app.ts");
18087
+ /* harmony import */ var _Services_Common_ErrorPosting__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../Services/Common/ErrorPosting */ "./src/Services/Common/ErrorPosting.ts");
18088
+ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
18089
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
18090
+ return new (P || (P = Promise))(function (resolve, reject) {
18091
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
18092
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
18093
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
18094
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
18095
+ });
18096
+ };
18097
+
18098
+
18099
+
18100
+
18101
+ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__.StatefulWidget {
18102
+ constructor() {
18103
+ super(...arguments);
18104
+ this.childComponents = [];
18105
+ this.elementIdentifier = 0;
18106
+ this.componentMounted = false;
18107
+ this.parentElement = "";
18108
+ this.oldHtml = null;
18109
+ // subscribers: any = [];
18110
+ this.element = null;
18111
+ this.phonebooks = [];
18112
+ this.html = "";
18113
+ this.childWidgets = [];
18114
+ this.typeValueList = [];
18115
+ this.widgetType = "the_element_name";
18116
+ this.parentConceptList = [];
18117
+ }
18118
+ getWidgetCodeFromId(widgetId, token) {
18119
+ return __awaiter(this, void 0, void 0, function* () {
18120
+ console.log("getWidgetCodeFromId", widgetId, token);
18121
+ return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () {
18122
+ try {
18123
+ let searchFirst = new _app__WEBPACK_IMPORTED_MODULE_1__.SearchQuery();
18124
+ searchFirst.composition = widgetId;
18125
+ searchFirst.fullLinkers = [
18126
+ "the_widgetcode",
18127
+ "the_widgetcode_widget",
18128
+ "the_widgetcode_name",
18129
+ "the_widgetcode_html",
18130
+ "the_widgetcode_css",
18131
+ "the_widgetcode_js",
18132
+ "the_widgetcode_timestamp",
18133
+ "the_widgetcode_typevalue",
18134
+ "the_widgetcode_addevent",
18135
+ "the_widgetcode_onmount",
18136
+ "the_widgetcode_onupdate",
18137
+ "the_widgetcode_mountChildWidgets",
18138
+ "the_widgetcode_cleanhtml",
18139
+ "the_widgetcode_s_child",
18140
+ ];
18141
+ searchFirst.inpage = 100;
18142
+ let searchSecond = new _app__WEBPACK_IMPORTED_MODULE_1__.SearchQuery();
18143
+ searchSecond.fullLinkers = [
18144
+ "the_childwidget",
18145
+ "the_childwidget_typevalue",
18146
+ "the_childwidget_widget",
18147
+ "the_childwidget_wrapperId",
18148
+ ];
18149
+ searchSecond.inpage = 100;
18150
+ const queryParams = [searchFirst, searchSecond];
18151
+ const output = yield (0,_app__WEBPACK_IMPORTED_MODULE_1__.SearchLinkMultipleAll)(queryParams, token);
18152
+ console.log("getWidgetCodeFromId output ->", output);
18153
+ resolve(output);
18154
+ return output;
18155
+ }
18156
+ catch (error) {
18157
+ console.error("error", error);
18158
+ if ((error === null || error === void 0 ? void 0 : error.status) === 401) {
18159
+ (0,_Services_Common_ErrorPosting__WEBPACK_IMPORTED_MODULE_2__.HandleHttpError)(error === null || error === void 0 ? void 0 : error.response);
18160
+ }
18161
+ reject(error);
18162
+ }
18163
+ }));
18164
+ });
18165
+ }
18166
+ getUserId() {
18167
+ return __awaiter(this, void 0, void 0, function* () {
18168
+ const profileData = yield new Promise((resolve) => {
18169
+ let dataFromLocalStorage = (localStorage === null || localStorage === void 0 ? void 0 : localStorage.getItem("profile")) || "";
18170
+ if (dataFromLocalStorage) {
18171
+ const profileData = JSON.parse(dataFromLocalStorage);
18172
+ return profileData;
18173
+ }
18174
+ else {
18175
+ return;
18176
+ }
18177
+ });
18178
+ const userId = profileData === null || profileData === void 0 ? void 0 : profileData.userId;
18179
+ return userId;
18180
+ });
18181
+ }
18182
+ getTypeValueList() {
18183
+ return __awaiter(this, arguments, void 0, function* (typeName = "") {
18184
+ return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () {
18185
+ typeName = this.widgetType;
18186
+ // typeName e.g. "the_element_name"
18187
+ const match = typeName === null || typeName === void 0 ? void 0 : typeName.match(/^[a-z0-9]+_[a-z0-9]+/i);
18188
+ const mainComposition = match ? match[0] : "";
18189
+ // Output: "the_element"
18190
+ const nextMatch = typeName === null || typeName === void 0 ? void 0 : typeName.match(/^([a-z0-9]+).*_([a-z0-9]+)$/i);
18191
+ const typevalueKey = nextMatch ? `${nextMatch[1]}_${nextMatch[2]}` : "";
18192
+ // Output: "the_name"
18193
+ // const profileData: any = await getLocalStorageProfileData();
18194
+ // const token = profileData?.token;
18195
+ // const userId = profileData?.userId;
18196
+ // const compositionSerach: tsccs.SearchStructure = {
18197
+ // type: "",
18198
+ // search: "",
18199
+ // // composition: "the_element",
18200
+ // composition: mainComposition,
18201
+ // internalComposition: "",
18202
+ // userId: userId,
18203
+ // inpage: 100,
18204
+ // page: 1,
18205
+ // auth: true,
18206
+ // };
18207
+ // let searchFirst = new tsccs.SearchQuery();
18208
+ // // searchFirst.type = "the_element_name";
18209
+ // // searchFirst.fullLinkers = ["the_element_name"];
18210
+ // searchFirst.type = typeName;
18211
+ // searchFirst.fullLinkers = [typeName];
18212
+ // searchFirst.inpage = 100;
18213
+ // const queryParams = [searchFirst];
18214
+ // tsccs
18215
+ // .GetLinkListListener(
18216
+ // compositionSerach,
18217
+ // queryParams,
18218
+ // token,
18219
+ // tsccs.NORMAL
18220
+ // )
18221
+ // .subscribe((output: any) => {
18222
+ // if (output?.length) {
18223
+ // const result = output?.map((item: any, index: number) => {
18224
+ // const itemName =
18225
+ // item[mainComposition][typeName]?.[0]?.[typevalueKey];
18226
+ // return {
18227
+ // id: index,
18228
+ // name: itemName,
18229
+ // text: itemName,
18230
+ // };
18231
+ // });
18232
+ // this.typeValueList = result;
18233
+ // resolve(this.typeValueList);
18234
+ // return result;
18235
+ // }
18236
+ // });
18237
+ // NEW SEARCH WITH FILTER
18238
+ // filters
18239
+ let filters = [];
18240
+ let filter = new _app__WEBPACK_IMPORTED_MODULE_1__.FilterSearch();
18241
+ // filter.type = "the_email";
18242
+ filter.type = typevalueKey;
18243
+ filter.search = "1";
18244
+ filter.logicoperator = ">";
18245
+ filter.name = "emailfilter";
18246
+ filter.operateon = "entityEmail";
18247
+ filter.composition = false;
18248
+ filters.push(filter);
18249
+ let emailQuery = new _app__WEBPACK_IMPORTED_MODULE_1__.FreeschemaQuery();
18250
+ // emailQuery.typeConnection = "the_entity_email";
18251
+ emailQuery.typeConnection = typeName;
18252
+ emailQuery.name = "entityEmail";
18253
+ let freeschemaQuery = new _app__WEBPACK_IMPORTED_MODULE_1__.FreeschemaQuery();
18254
+ // freeschemaQuery.type = "the_entity",
18255
+ (freeschemaQuery.type = mainComposition),
18256
+ (freeschemaQuery.filterLogic = "( emailfilter )");
18257
+ freeschemaQuery.filters = filters;
18258
+ freeschemaQuery.name = "top";
18259
+ freeschemaQuery.inpage = 100;
18260
+ freeschemaQuery.freeschemaQueries = [emailQuery];
18261
+ freeschemaQuery.outputFormat = _app__WEBPACK_IMPORTED_MODULE_1__.DATAID;
18262
+ (0,_app__WEBPACK_IMPORTED_MODULE_1__.SchemaQueryListener)(freeschemaQuery, "")
18263
+ .subscribe((output) => {
18264
+ console.log("This is the data received", output);
18265
+ if (output === null || output === void 0 ? void 0 : output.length) {
18266
+ const result = output === null || output === void 0 ? void 0 : output.map((item) => {
18267
+ var _a, _b, _c, _d, _e;
18268
+ const itemName = (_c = (_b = (_a = item[mainComposition]) === null || _a === void 0 ? void 0 : _a[typeName]) === null || _b === void 0 ? void 0 : _b.data) === null || _c === void 0 ? void 0 : _c[typevalueKey];
18269
+ const itemId = (_e = (_d = item[mainComposition]) === null || _d === void 0 ? void 0 : _d[typeName]) === null || _e === void 0 ? void 0 : _e.id;
18270
+ return {
18271
+ id: itemId,
18272
+ name: itemName,
18273
+ text: itemName,
18274
+ };
18275
+ });
18276
+ console.log("result =>", result);
18277
+ this.typeValueList = result;
18278
+ resolve(this.typeValueList);
18279
+ return result;
18280
+ }
18281
+ });
18282
+ }));
18283
+ });
18284
+ }
18285
+ setTitle(title) {
18286
+ document.title = title;
18287
+ }
18288
+ getHtml() {
18289
+ return this.html;
18290
+ }
18291
+ createRandomNumber() {
18292
+ this.elementIdentifier = Math.random() * 10000;
18293
+ return this.elementIdentifier;
18294
+ }
18295
+ mountChildWidgets() {
18296
+ return __awaiter(this, void 0, void 0, function* () {
18297
+ const AsyncFunction = Object.getPrototypeOf(function () {
18298
+ return __awaiter(this, void 0, void 0, function* () { });
18299
+ }).constructor;
18300
+ const renderOnmount = AsyncFunction("tsccs", this.mountChildWidgetsFunction);
18301
+ renderOnmount.call(this, _app__WEBPACK_IMPORTED_MODULE_1__);
18302
+ });
18303
+ }
18304
+ setProperty(widgetTypeName) {
18305
+ return __awaiter(this, void 0, void 0, function* () {
18306
+ this.widgetType = widgetTypeName;
18307
+ this.getTypeValueList(this.widgetType).then(() => {
18308
+ var _a, _b, _c;
18309
+ console.log("this =->", this);
18310
+ console.log("this.element", this.element);
18311
+ (_a = this.element) === null || _a === void 0 ? void 0 : _a.setAttribute("data-type-value", this.widgetType);
18312
+ (_c = (_b = this.element) === null || _b === void 0 ? void 0 : _b.parentElement) === null || _c === void 0 ? void 0 : _c.setAttribute("data-type-value", this.widgetType);
18313
+ this.render();
18314
+ });
18315
+ return this;
18316
+ });
18317
+ }
18318
+ /**
18319
+ *
18320
+ * @param parent This is the function that creates a new div and then mounts the html element to the parent.
18321
+ */
18322
+ mount(parent) {
18323
+ return __awaiter(this, void 0, void 0, function* () {
18324
+ if (parent) {
18325
+ this.element = document.createElement("div");
18326
+ const inputVal = document.querySelector("#widget-properties .flex-column");
18327
+ let that = this;
18328
+ this.element.onclick = function (event) {
18329
+ event.preventDefault();
18330
+ event.stopPropagation();
18331
+ const existedInputEl = inputVal === null || inputVal === void 0 ? void 0 : inputVal.querySelectorAll("input");
18332
+ existedInputEl === null || existedInputEl === void 0 ? void 0 : existedInputEl.forEach((inputItem) => {
18333
+ inputItem === null || inputItem === void 0 ? void 0 : inputItem.remove();
18334
+ });
18335
+ console.log("event.target", event.target);
18336
+ const elementParent = event.target.closest(".added-widget-container");
18337
+ const elementDivParent = event.target.closest("div");
18338
+ let typeValue = "";
18339
+ if (elementParent) {
18340
+ typeValue = elementParent === null || elementParent === void 0 ? void 0 : elementParent.getAttribute("data-type-value");
18341
+ }
18342
+ else if (elementDivParent) {
18343
+ typeValue = elementDivParent === null || elementDivParent === void 0 ? void 0 : elementDivParent.getAttribute("data-type-value");
18344
+ }
18345
+ console.log("typeValue", typeValue);
18346
+ that.widgetType = typeValue;
18347
+ const inputEl = document.createElement("input");
18348
+ inputEl.setAttribute("type", "text");
18349
+ inputEl.setAttribute("name", "input-widgetTypeValue");
18350
+ inputEl.setAttribute("class", "form-control");
18351
+ inputEl.setAttribute("id", "widgetTypeValue");
18352
+ if (typeValue) {
18353
+ inputEl.value = typeValue;
18354
+ }
18355
+ else {
18356
+ inputEl.setAttribute("placeholder", "e.g. the_entity_type");
18357
+ }
18358
+ inputEl.onchange = function (event) {
18359
+ var _a;
18360
+ event.preventDefault();
18361
+ event.stopPropagation();
18362
+ console.log("THAT ->", that);
18363
+ const inputValue = (_a = event === null || event === void 0 ? void 0 : event.target) === null || _a === void 0 ? void 0 : _a.value;
18364
+ console.log("inputValue", inputValue);
18365
+ that.setProperty(inputValue);
18366
+ };
18367
+ inputVal === null || inputVal === void 0 ? void 0 : inputVal.appendChild(inputEl);
18368
+ };
18369
+ this.element.id = this.createRandomNumber().toString();
18370
+ this.element.className = "p-2";
18371
+ this.element.innerHTML = yield this.getHtml();
18372
+ console.log("this.element ==>", this.element);
18373
+ parent.appendChild(this.element);
18374
+ const elementParent = this.element.closest(".added-widget-container");
18375
+ const elementDivParent = this.element.closest("div");
18376
+ let typeValueOne = "";
18377
+ if (elementParent) {
18378
+ typeValueOne = elementParent === null || elementParent === void 0 ? void 0 : elementParent.getAttribute("data-type-value");
18379
+ }
18380
+ else if (elementDivParent) {
18381
+ typeValueOne = elementDivParent === null || elementDivParent === void 0 ? void 0 : elementDivParent.getAttribute("data-type-value");
18382
+ }
18383
+ if (typeValueOne)
18384
+ this.widgetType = typeValueOne;
18385
+ this.parentElement = parent.id;
18386
+ if (this.componentMounted == false) {
18387
+ // Simulate componentDidMount by calling it after the component is inserted into the DOM
18388
+ this.componentDidMount();
18389
+ this.mountChildWidgets();
18390
+ this.componentMounted = true;
18391
+ }
18392
+ else {
18393
+ this.render();
18394
+ }
18395
+ }
18396
+ });
18397
+ }
18398
+ /**
18399
+ * This function will be called after the component mounts.
18400
+ */
18401
+ componentDidMount(onmountVal = "") {
18402
+ console.log("onmountVal", onmountVal);
18403
+ const AsyncFunction = Object.getPrototypeOf(function () {
18404
+ return __awaiter(this, void 0, void 0, function* () { });
18405
+ }).constructor;
18406
+ const renderOnmount = AsyncFunction("tsccs", this.componentDidMountFunction);
18407
+ renderOnmount.call(this, _app__WEBPACK_IMPORTED_MODULE_1__);
18408
+ }
18409
+ addEvents() {
18410
+ const AsyncFunction = Object.getPrototypeOf(function () {
18411
+ return __awaiter(this, void 0, void 0, function* () { });
18412
+ }).constructor;
18413
+ const renderOnmount = AsyncFunction("tsccs", this.addEventFunction);
18414
+ renderOnmount.call(this, _app__WEBPACK_IMPORTED_MODULE_1__);
18415
+ }
18416
+ getWidgetClassFunction(widgetId) {
18417
+ return __awaiter(this, void 0, void 0, function* () {
18418
+ return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () {
18419
+ var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4;
18420
+ const profileData = yield new Promise((resolve) => {
18421
+ let dataFromLocalStorage = (localStorage === null || localStorage === void 0 ? void 0 : localStorage.getItem("profile")) || "";
18422
+ if (dataFromLocalStorage) {
18423
+ const profileData = JSON.parse(dataFromLocalStorage);
18424
+ return profileData;
18425
+ }
18426
+ else {
18427
+ return;
18428
+ }
18429
+ });
18430
+ const token = profileData === null || profileData === void 0 ? void 0 : profileData.token;
18431
+ let output = yield this.getWidgetCodeFromId(widgetId, token);
18432
+ const widgetInfo = (_a = output === null || output === void 0 ? void 0 : output.data) === null || _a === void 0 ? void 0 : _a.the_widgetcode;
18433
+ const widgetName = (_d = (_c = (_b = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_name) === null || _b === void 0 ? void 0 : _b[0]) === null || _c === void 0 ? void 0 : _c.data) === null || _d === void 0 ? void 0 : _d.the_name;
18434
+ const widgetHTML = (_g = (_f = (_e = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_html) === null || _e === void 0 ? void 0 : _e[0]) === null || _f === void 0 ? void 0 : _f.data) === null || _g === void 0 ? void 0 : _g.the_html;
18435
+ const widgetCSS = (_k = (_j = (_h = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_css) === null || _h === void 0 ? void 0 : _h[0]) === null || _j === void 0 ? void 0 : _j.data) === null || _k === void 0 ? void 0 : _k.the_css;
18436
+ const widgetJS = (_o = (_m = (_l = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_js) === null || _l === void 0 ? void 0 : _l[0]) === null || _m === void 0 ? void 0 : _m.data) === null || _o === void 0 ? void 0 : _o.the_js;
18437
+ const widgetTimestamp = (_r = (_q = (_p = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_timestamp) === null || _p === void 0 ? void 0 : _p[0]) === null || _q === void 0 ? void 0 : _q.data) === null || _r === void 0 ? void 0 : _r.the_timestamp;
18438
+ const widgetPackageId = (_s = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_widget) === null || _s === void 0 ? void 0 : _s[0].id;
18439
+ const widgetAddEvent = (_v = (_u = (_t = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_addevent) === null || _t === void 0 ? void 0 : _t[0]) === null || _u === void 0 ? void 0 : _u.data) === null || _v === void 0 ? void 0 : _v.the_addevent;
18440
+ const widgetOnmount = (_y = (_x = (_w = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_onmount) === null || _w === void 0 ? void 0 : _w[0]) === null || _x === void 0 ? void 0 : _x.data) === null || _y === void 0 ? void 0 : _y.the_onmount;
18441
+ const widgetOnupdate = (_1 = (_0 = (_z = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_onupdate) === null || _z === void 0 ? void 0 : _z[0]) === null || _0 === void 0 ? void 0 : _0.data) === null || _1 === void 0 ? void 0 : _1.the_onupdate;
18442
+ const widgetMountChildWidgets = (_4 = (_3 = (_2 = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widgetcode_mountChildWidgets) === null || _2 === void 0 ? void 0 : _2[0]) === null || _3 === void 0 ? void 0 : _3.data) === null || _4 === void 0 ? void 0 : _4.the_mountChildWidgets;
18443
+ const widgetData = {
18444
+ id: output === null || output === void 0 ? void 0 : output.id,
18445
+ name: widgetName,
18446
+ html: widgetHTML,
18447
+ css: widgetCSS,
18448
+ js: widgetJS,
18449
+ timestamp: widgetTimestamp,
18450
+ widgetId: widgetPackageId,
18451
+ addevent: widgetAddEvent,
18452
+ onmount: widgetOnmount,
18453
+ onupdate: widgetOnupdate,
18454
+ mountChildWidgets: widgetMountChildWidgets,
18455
+ };
18456
+ const widgetInstance = new BuilderStatefulWidget();
18457
+ widgetInstance.componentDidMountFunction = widgetData === null || widgetData === void 0 ? void 0 : widgetData.onmount;
18458
+ widgetInstance.addEventFunction = widgetData === null || widgetData === void 0 ? void 0 : widgetData.addevent;
18459
+ widgetInstance.mountChildWidgetsFunction = widgetData === null || widgetData === void 0 ? void 0 : widgetData.mountChildWidgets;
18460
+ resolve(widgetInstance);
18461
+ }));
18462
+ });
18463
+ }
18464
+ CreateConnectionBetweenEntityLocal(concept1Data, concept2Data, linker) {
18465
+ return __awaiter(this, void 0, void 0, function* () {
18466
+ var _a;
18467
+ const userId = concept1Data.userId;
18468
+ const sessionInformationId = 999;
18469
+ const sessionInformationUserId = 999;
18470
+ const prefix = (_a = concept1Data.type) === null || _a === void 0 ? void 0 : _a.characterValue;
18471
+ const linkerAdd = linker;
18472
+ const forwardLinker = prefix + "_" + linkerAdd;
18473
+ const connectionConcept = yield (0,_app__WEBPACK_IMPORTED_MODULE_1__.MakeTheTypeConceptLocal)(forwardLinker, sessionInformationId, sessionInformationUserId, userId);
18474
+ yield (0,_app__WEBPACK_IMPORTED_MODULE_1__.CreateTheConnectionLocal)(concept1Data.id, concept2Data.id, connectionConcept.id, 1000);
18475
+ return "connection created";
18476
+ });
18477
+ }
18478
+ }
18479
+
18480
+
18073
18481
  /***/ }),
18074
18482
 
18075
18483
  /***/ "./src/Widgets/StatefulWidget.ts":
@@ -19243,9 +19651,10 @@ __webpack_require__.r(__webpack_exports__);
19243
19651
  /* harmony export */ ADMIN: () => (/* reexport safe */ _Constants_AccessConstants__WEBPACK_IMPORTED_MODULE_66__.ADMIN),
19244
19652
  /* harmony export */ ALLID: () => (/* reexport safe */ _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_65__.ALLID),
19245
19653
  /* harmony export */ AddGhostConcept: () => (/* reexport safe */ _Services_User_UserTranslation__WEBPACK_IMPORTED_MODULE_50__.AddGhostConcept),
19246
- /* harmony export */ Anomaly: () => (/* reexport safe */ _Anomaly_anomaly__WEBPACK_IMPORTED_MODULE_102__.Anomaly),
19654
+ /* harmony export */ Anomaly: () => (/* reexport safe */ _Anomaly_anomaly__WEBPACK_IMPORTED_MODULE_103__.Anomaly),
19247
19655
  /* harmony export */ BaseUrl: () => (/* reexport safe */ _DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_98__.BaseUrl),
19248
19656
  /* harmony export */ BinaryTree: () => (/* reexport safe */ _DataStructures_BinaryTree__WEBPACK_IMPORTED_MODULE_83__.BinaryTree),
19657
+ /* harmony export */ BuilderStatefulWidget: () => (/* reexport safe */ _Widgets_BuilderStatefulWidget__WEBPACK_IMPORTED_MODULE_101__.BuilderStatefulWidget),
19249
19658
  /* harmony export */ Composition: () => (/* reexport safe */ _DataStructures_Composition_Composition__WEBPACK_IMPORTED_MODULE_87__.Composition),
19250
19659
  /* harmony export */ CompositionBinaryTree: () => (/* reexport safe */ _DataStructures_Composition_CompositionBinaryTree__WEBPACK_IMPORTED_MODULE_88__.CompositionBinaryTree),
19251
19660
  /* harmony export */ CompositionNode: () => (/* reexport safe */ _DataStructures_Composition_CompositionNode__WEBPACK_IMPORTED_MODULE_89__.CompositionNode),
@@ -19272,13 +19681,13 @@ __webpack_require__.r(__webpack_exports__);
19272
19681
  /* harmony export */ DeleteConceptById: () => (/* reexport safe */ _Services_DeleteConcept__WEBPACK_IMPORTED_MODULE_24__.DeleteConceptById),
19273
19682
  /* harmony export */ DeleteConceptLocal: () => (/* reexport safe */ _Services_Local_DeleteConceptLocal__WEBPACK_IMPORTED_MODULE_61__.DeleteConceptLocal),
19274
19683
  /* harmony export */ DeleteConnectionById: () => (/* reexport safe */ _Services_DeleteConnection__WEBPACK_IMPORTED_MODULE_25__.DeleteConnectionById),
19275
- /* harmony export */ DeleteConnectionByType: () => (/* reexport safe */ _Services_DeleteConnectionByType__WEBPACK_IMPORTED_MODULE_106__.DeleteConnectionByType),
19684
+ /* harmony export */ DeleteConnectionByType: () => (/* reexport safe */ _Services_DeleteConnectionByType__WEBPACK_IMPORTED_MODULE_107__.DeleteConnectionByType),
19276
19685
  /* harmony export */ DependencyObserver: () => (/* reexport safe */ _WrapperFunctions_DepenedencyObserver__WEBPACK_IMPORTED_MODULE_68__.DependencyObserver),
19277
19686
  /* harmony export */ FilterSearch: () => (/* reexport safe */ _DataStructures_FilterSearch__WEBPACK_IMPORTED_MODULE_92__.FilterSearch),
19278
19687
  /* harmony export */ FormatFromConnections: () => (/* reexport safe */ _Services_Search_SearchLinkMultiple__WEBPACK_IMPORTED_MODULE_51__.FormatFromConnections),
19279
19688
  /* harmony export */ FormatFromConnectionsAltered: () => (/* reexport safe */ _Services_Search_SearchLinkMultiple__WEBPACK_IMPORTED_MODULE_51__.FormatFromConnectionsAltered),
19280
- /* harmony export */ FreeschemaQuery: () => (/* reexport safe */ _DataStructures_Search_FreeschemaQuery__WEBPACK_IMPORTED_MODULE_107__.FreeschemaQuery),
19281
- /* harmony export */ FreeschemaQueryApi: () => (/* reexport safe */ _Api_Search_FreeschemaQueryApi__WEBPACK_IMPORTED_MODULE_108__.FreeschemaQueryApi),
19689
+ /* harmony export */ FreeschemaQuery: () => (/* reexport safe */ _DataStructures_Search_FreeschemaQuery__WEBPACK_IMPORTED_MODULE_108__.FreeschemaQuery),
19690
+ /* harmony export */ FreeschemaQueryApi: () => (/* reexport safe */ _Api_Search_FreeschemaQueryApi__WEBPACK_IMPORTED_MODULE_109__.FreeschemaQueryApi),
19282
19691
  /* harmony export */ GetAllConnectionsOfComposition: () => (/* reexport safe */ _Api_GetAllConnectionsOfComposition__WEBPACK_IMPORTED_MODULE_6__.GetAllConnectionsOfComposition),
19283
19692
  /* harmony export */ GetAllConnectionsOfCompositionBulk: () => (/* reexport safe */ _Api_GetAllConnectionsOfCompositionBulk__WEBPACK_IMPORTED_MODULE_33__.GetAllConnectionsOfCompositionBulk),
19284
19693
  /* harmony export */ GetComposition: () => (/* reexport safe */ _Services_GetComposition__WEBPACK_IMPORTED_MODULE_7__.GetComposition),
@@ -19332,7 +19741,7 @@ __webpack_require__.r(__webpack_exports__);
19332
19741
  /* harmony export */ LISTNORMAL: () => (/* reexport safe */ _Constants_FormatConstants__WEBPACK_IMPORTED_MODULE_65__.LISTNORMAL),
19333
19742
  /* harmony export */ LocalConceptsData: () => (/* reexport safe */ _DataStructures_Local_LocalConceptData__WEBPACK_IMPORTED_MODULE_94__.LocalConceptsData),
19334
19743
  /* harmony export */ LocalSyncData: () => (/* reexport safe */ _DataStructures_Local_LocalSyncData__WEBPACK_IMPORTED_MODULE_90__.LocalSyncData),
19335
- /* harmony export */ LocalTransaction: () => (/* reexport safe */ _Services_Transaction_LocalTransaction__WEBPACK_IMPORTED_MODULE_101__.LocalTransaction),
19744
+ /* harmony export */ LocalTransaction: () => (/* reexport safe */ _Services_Transaction_LocalTransaction__WEBPACK_IMPORTED_MODULE_102__.LocalTransaction),
19336
19745
  /* harmony export */ LoginToBackend: () => (/* reexport safe */ _Api_Login__WEBPACK_IMPORTED_MODULE_34__.LoginToBackend),
19337
19746
  /* harmony export */ MakeTheInstanceConcept: () => (/* reexport safe */ _Services_MakeTheInstanceConcept__WEBPACK_IMPORTED_MODULE_13__["default"]),
19338
19747
  /* harmony export */ MakeTheInstanceConceptLocal: () => (/* reexport safe */ _Services_Local_MakeTheInstanceConceptLocal__WEBPACK_IMPORTED_MODULE_14__.MakeTheInstanceConceptLocal),
@@ -19350,7 +19759,7 @@ __webpack_require__.r(__webpack_exports__);
19350
19759
  /* harmony export */ RecursiveSearchApiRaw: () => (/* reexport safe */ _Api_RecursiveSearch__WEBPACK_IMPORTED_MODULE_29__.RecursiveSearchApiRaw),
19351
19760
  /* harmony export */ RecursiveSearchApiRawFullLinker: () => (/* reexport safe */ _Api_RecursiveSearch__WEBPACK_IMPORTED_MODULE_29__.RecursiveSearchApiRawFullLinker),
19352
19761
  /* harmony export */ RecursiveSearchListener: () => (/* reexport safe */ _WrapperFunctions_RecursiveSearchObservable__WEBPACK_IMPORTED_MODULE_74__.RecursiveSearchListener),
19353
- /* harmony export */ SchemaQueryListener: () => (/* reexport safe */ _WrapperFunctions_SchemaQueryObservable__WEBPACK_IMPORTED_MODULE_109__.SchemaQueryListener),
19762
+ /* harmony export */ SchemaQueryListener: () => (/* reexport safe */ _WrapperFunctions_SchemaQueryObservable__WEBPACK_IMPORTED_MODULE_110__.SchemaQueryListener),
19354
19763
  /* harmony export */ SearchAllConcepts: () => (/* reexport safe */ _Api_Search_Search__WEBPACK_IMPORTED_MODULE_39__.SearchAllConcepts),
19355
19764
  /* harmony export */ SearchLinkInternal: () => (/* reexport safe */ _Services_Search_SearchLinkInternal__WEBPACK_IMPORTED_MODULE_59__.SearchLinkInternal),
19356
19765
  /* harmony export */ SearchLinkInternalAll: () => (/* reexport safe */ _Services_Search_SearchLinkInternal__WEBPACK_IMPORTED_MODULE_59__.SearchLinkInternalAll),
@@ -19367,18 +19776,18 @@ __webpack_require__.r(__webpack_exports__);
19367
19776
  /* harmony export */ Signup: () => (/* reexport safe */ _Api_Signup__WEBPACK_IMPORTED_MODULE_36__["default"]),
19368
19777
  /* harmony export */ SignupEntity: () => (/* reexport safe */ _Api_Signup__WEBPACK_IMPORTED_MODULE_36__.SignupEntity),
19369
19778
  /* harmony export */ SplitStrings: () => (/* reexport safe */ _Services_SplitStrings__WEBPACK_IMPORTED_MODULE_3__.SplitStrings),
19370
- /* harmony export */ StatefulWidget: () => (/* reexport safe */ _Widgets_StatefulWidget__WEBPACK_IMPORTED_MODULE_105__.StatefulWidget),
19779
+ /* harmony export */ StatefulWidget: () => (/* reexport safe */ _Widgets_StatefulWidget__WEBPACK_IMPORTED_MODULE_106__.StatefulWidget),
19371
19780
  /* harmony export */ SyncData: () => (/* reexport safe */ _DataStructures_SyncData__WEBPACK_IMPORTED_MODULE_76__.SyncData),
19372
19781
  /* harmony export */ TrashTheConcept: () => (/* reexport safe */ _Api_Delete_DeleteConceptInBackend__WEBPACK_IMPORTED_MODULE_26__.TrashTheConcept),
19373
19782
  /* harmony export */ UpdateComposition: () => (/* reexport safe */ _Services_UpdateComposition__WEBPACK_IMPORTED_MODULE_38__["default"]),
19374
19783
  /* harmony export */ UpdateCompositionLocal: () => (/* reexport safe */ _Services_Local_UpdateCompositionLocal__WEBPACK_IMPORTED_MODULE_53__.UpdateCompositionLocal),
19375
19784
  /* harmony export */ UserBinaryTree: () => (/* reexport safe */ _DataStructures_User_UserBinaryTree__WEBPACK_IMPORTED_MODULE_91__.UserBinaryTree),
19376
- /* harmony export */ Validator: () => (/* reexport safe */ _Validator_validator__WEBPACK_IMPORTED_MODULE_103__.Validator),
19785
+ /* harmony export */ Validator: () => (/* reexport safe */ _Validator_validator__WEBPACK_IMPORTED_MODULE_104__.Validator),
19377
19786
  /* harmony export */ ViewInternalData: () => (/* reexport safe */ _Services_View_ViewInternalData__WEBPACK_IMPORTED_MODULE_56__.ViewInternalData),
19378
19787
  /* harmony export */ ViewInternalDataApi: () => (/* reexport safe */ _Api_View_ViewInternalDataApi__WEBPACK_IMPORTED_MODULE_57__.ViewInternalDataApi),
19379
19788
  /* harmony export */ convertFromConceptToLConcept: () => (/* reexport safe */ _Services_Conversion_ConvertConcepts__WEBPACK_IMPORTED_MODULE_58__.convertFromConceptToLConcept),
19380
19789
  /* harmony export */ convertFromLConceptToConcept: () => (/* reexport safe */ _Services_Conversion_ConvertConcepts__WEBPACK_IMPORTED_MODULE_58__.convertFromLConceptToConcept),
19381
- /* harmony export */ createFormFieldData: () => (/* reexport safe */ _Validator_utils__WEBPACK_IMPORTED_MODULE_104__.createFormFieldData),
19790
+ /* harmony export */ createFormFieldData: () => (/* reexport safe */ _Validator_utils__WEBPACK_IMPORTED_MODULE_105__.createFormFieldData),
19382
19791
  /* harmony export */ dispatchIdEvent: () => (/* binding */ dispatchIdEvent),
19383
19792
  /* harmony export */ getFromDatabaseWithType: () => (/* reexport safe */ _Database_NoIndexDb__WEBPACK_IMPORTED_MODULE_15__.getFromDatabaseWithType),
19384
19793
  /* harmony export */ getObjectsFromIndexDb: () => (/* reexport safe */ _Database_NoIndexDb__WEBPACK_IMPORTED_MODULE_15__.getObjectsFromIndexDb),
@@ -19493,15 +19902,16 @@ __webpack_require__.r(__webpack_exports__);
19493
19902
  /* harmony import */ var _DataStructures_BaseUrl__WEBPACK_IMPORTED_MODULE_98__ = __webpack_require__(/*! ./DataStructures/BaseUrl */ "./src/DataStructures/BaseUrl.ts");
19494
19903
  /* harmony import */ var _DataStructures_Security_TokenStorage__WEBPACK_IMPORTED_MODULE_99__ = __webpack_require__(/*! ./DataStructures/Security/TokenStorage */ "./src/DataStructures/Security/TokenStorage.ts");
19495
19904
  /* harmony import */ var _Constants_general_const__WEBPACK_IMPORTED_MODULE_100__ = __webpack_require__(/*! ./Constants/general.const */ "./src/Constants/general.const.ts");
19496
- /* harmony import */ var _Services_Transaction_LocalTransaction__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./Services/Transaction/LocalTransaction */ "./src/Services/Transaction/LocalTransaction.ts");
19497
- /* harmony import */ var _Anomaly_anomaly__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./Anomaly/anomaly */ "./src/Anomaly/anomaly.ts");
19498
- /* harmony import */ var _Validator_validator__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./Validator/validator */ "./src/Validator/validator.ts");
19499
- /* harmony import */ var _Validator_utils__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./Validator/utils */ "./src/Validator/utils.ts");
19500
- /* harmony import */ var _Widgets_StatefulWidget__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./Widgets/StatefulWidget */ "./src/Widgets/StatefulWidget.ts");
19501
- /* harmony import */ var _Services_DeleteConnectionByType__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./Services/DeleteConnectionByType */ "./src/Services/DeleteConnectionByType.ts");
19502
- /* harmony import */ var _DataStructures_Search_FreeschemaQuery__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./DataStructures/Search/FreeschemaQuery */ "./src/DataStructures/Search/FreeschemaQuery.ts");
19503
- /* harmony import */ var _Api_Search_FreeschemaQueryApi__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./Api/Search/FreeschemaQueryApi */ "./src/Api/Search/FreeschemaQueryApi.ts");
19504
- /* harmony import */ var _WrapperFunctions_SchemaQueryObservable__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./WrapperFunctions/SchemaQueryObservable */ "./src/WrapperFunctions/SchemaQueryObservable.ts");
19905
+ /* harmony import */ var _Widgets_BuilderStatefulWidget__WEBPACK_IMPORTED_MODULE_101__ = __webpack_require__(/*! ./Widgets/BuilderStatefulWidget */ "./src/Widgets/BuilderStatefulWidget.ts");
19906
+ /* harmony import */ var _Services_Transaction_LocalTransaction__WEBPACK_IMPORTED_MODULE_102__ = __webpack_require__(/*! ./Services/Transaction/LocalTransaction */ "./src/Services/Transaction/LocalTransaction.ts");
19907
+ /* harmony import */ var _Anomaly_anomaly__WEBPACK_IMPORTED_MODULE_103__ = __webpack_require__(/*! ./Anomaly/anomaly */ "./src/Anomaly/anomaly.ts");
19908
+ /* harmony import */ var _Validator_validator__WEBPACK_IMPORTED_MODULE_104__ = __webpack_require__(/*! ./Validator/validator */ "./src/Validator/validator.ts");
19909
+ /* harmony import */ var _Validator_utils__WEBPACK_IMPORTED_MODULE_105__ = __webpack_require__(/*! ./Validator/utils */ "./src/Validator/utils.ts");
19910
+ /* harmony import */ var _Widgets_StatefulWidget__WEBPACK_IMPORTED_MODULE_106__ = __webpack_require__(/*! ./Widgets/StatefulWidget */ "./src/Widgets/StatefulWidget.ts");
19911
+ /* harmony import */ var _Services_DeleteConnectionByType__WEBPACK_IMPORTED_MODULE_107__ = __webpack_require__(/*! ./Services/DeleteConnectionByType */ "./src/Services/DeleteConnectionByType.ts");
19912
+ /* harmony import */ var _DataStructures_Search_FreeschemaQuery__WEBPACK_IMPORTED_MODULE_108__ = __webpack_require__(/*! ./DataStructures/Search/FreeschemaQuery */ "./src/DataStructures/Search/FreeschemaQuery.ts");
19913
+ /* harmony import */ var _Api_Search_FreeschemaQueryApi__WEBPACK_IMPORTED_MODULE_109__ = __webpack_require__(/*! ./Api/Search/FreeschemaQueryApi */ "./src/Api/Search/FreeschemaQueryApi.ts");
19914
+ /* harmony import */ var _WrapperFunctions_SchemaQueryObservable__WEBPACK_IMPORTED_MODULE_110__ = __webpack_require__(/*! ./WrapperFunctions/SchemaQueryObservable */ "./src/WrapperFunctions/SchemaQueryObservable.ts");
19505
19915
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
19506
19916
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
19507
19917
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -19627,6 +20037,7 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
19627
20037
 
19628
20038
 
19629
20039
 
20040
+
19630
20041
 
19631
20042
 
19632
20043
  var serviceWorker;
@@ -20116,6 +20527,7 @@ function initConceptConnection() {
20116
20527
  /******/ var __webpack_exports__Anomaly = __webpack_exports__.Anomaly;
20117
20528
  /******/ var __webpack_exports__BaseUrl = __webpack_exports__.BaseUrl;
20118
20529
  /******/ var __webpack_exports__BinaryTree = __webpack_exports__.BinaryTree;
20530
+ /******/ var __webpack_exports__BuilderStatefulWidget = __webpack_exports__.BuilderStatefulWidget;
20119
20531
  /******/ var __webpack_exports__Composition = __webpack_exports__.Composition;
20120
20532
  /******/ var __webpack_exports__CompositionBinaryTree = __webpack_exports__.CompositionBinaryTree;
20121
20533
  /******/ var __webpack_exports__CompositionNode = __webpack_exports__.CompositionNode;
@@ -20261,7 +20673,7 @@ function initConceptConnection() {
20261
20673
  /******/ var __webpack_exports__storeToDatabase = __webpack_exports__.storeToDatabase;
20262
20674
  /******/ var __webpack_exports__subscribedListeners = __webpack_exports__.subscribedListeners;
20263
20675
  /******/ var __webpack_exports__updateAccessToken = __webpack_exports__.updateAccessToken;
20264
- /******/ 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__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 };
20676
+ /******/ 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 };
20265
20677
  /******/
20266
20678
 
20267
20679
  //# sourceMappingURL=main.bundle.js.map