mftsccs-browser 2.0.17-beta → 2.0.19-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.
@@ -21423,6 +21423,320 @@ class BuilderStatefulWidget extends _StatefulWidget__WEBPACK_IMPORTED_MODULE_0__
21423
21423
  }
21424
21424
 
21425
21425
 
21426
+ /***/ }),
21427
+
21428
+ /***/ "./src/Widgets/RenderWidgetService.ts":
21429
+ /*!********************************************!*\
21430
+ !*** ./src/Widgets/RenderWidgetService.ts ***!
21431
+ \********************************************/
21432
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
21433
+
21434
+ __webpack_require__.r(__webpack_exports__);
21435
+ /* harmony export */ __webpack_require__.d(__webpack_exports__, {
21436
+ /* harmony export */ renderLatestWidget: () => (/* binding */ renderLatestWidget),
21437
+ /* harmony export */ renderPage: () => (/* binding */ renderPage),
21438
+ /* harmony export */ renderWidget: () => (/* binding */ renderWidget)
21439
+ /* harmony export */ });
21440
+ /* harmony import */ var _app__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../app */ "./src/app.ts");
21441
+ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
21442
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
21443
+ return new (P || (P = Promise))(function (resolve, reject) {
21444
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
21445
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
21446
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
21447
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
21448
+ });
21449
+ };
21450
+
21451
+ function renderPage(pageId, attachNode, props) {
21452
+ return __awaiter(this, void 0, void 0, function* () {
21453
+ var _a;
21454
+ const widgets = yield (0,_app__WEBPACK_IMPORTED_MODULE_0__.GetRelation)(pageId, "the_page_body");
21455
+ if ((_a = widgets === null || widgets === void 0 ? void 0 : widgets[0]) === null || _a === void 0 ? void 0 : _a.id)
21456
+ yield renderWidget(widgets[0].id, attachNode, props);
21457
+ });
21458
+ }
21459
+ function renderLatestWidget(widgetId, attachNode, props) {
21460
+ return __awaiter(this, void 0, void 0, function* () {
21461
+ var _a;
21462
+ const widgets = yield (0,_app__WEBPACK_IMPORTED_MODULE_0__.GetRelation)(widgetId, "the_widget_latest");
21463
+ if ((widgets === null || widgets === void 0 ? void 0 : widgets.length) == 0)
21464
+ yield renderWidget(widgetId, attachNode, props);
21465
+ else {
21466
+ const latestWidgetId = (_a = widgets === null || widgets === void 0 ? void 0 : widgets[0]) === null || _a === void 0 ? void 0 : _a.id;
21467
+ if (latestWidgetId)
21468
+ yield renderWidget(latestWidgetId, attachNode, props);
21469
+ }
21470
+ });
21471
+ }
21472
+ function renderWidget(widgetId, attachNode, props) {
21473
+ return __awaiter(this, void 0, void 0, function* () {
21474
+ try {
21475
+ const widgetTree = yield getWidgetFromId(widgetId);
21476
+ const appElement = attachNode;
21477
+ // const newWidget = await convertWidgetTreeToWidget(
21478
+ yield convertWidgetTreeToWidget(widgetTree, appElement, undefined, props);
21479
+ // add newWidget css to the page
21480
+ const style = document.createElement("style");
21481
+ style.innerHTML = widgetTree.css;
21482
+ appElement.appendChild(style);
21483
+ // add newWidget js to the page
21484
+ const script = document.createElement("script");
21485
+ script.innerHTML = widgetTree.js;
21486
+ appElement.appendChild(script);
21487
+ // remove class wb-initial-empty from all elements that have it from fspagePreview
21488
+ const wbInitialEmpty = appElement.querySelectorAll(".wb-initial-empty");
21489
+ wbInitialEmpty.forEach((el) => {
21490
+ el.classList.remove("wb-initial-empty");
21491
+ }); // add the css for the class fspage-preview
21492
+ document
21493
+ .querySelectorAll('[onclick="widgetSelected(event)"]')
21494
+ .forEach((element) => {
21495
+ element.removeAttribute("onclick");
21496
+ }); // remove the onclick event from the widget container
21497
+ }
21498
+ catch (error) {
21499
+ console.error("Error Caught Rendering Widget");
21500
+ }
21501
+ });
21502
+ }
21503
+ /**
21504
+ * This function builds a widget tree. This tree is built fully along with its children
21505
+ * This tree can then be used to build the whole dom for the widget.
21506
+ * This has recursive property so that the recursion can be used to build this tree.
21507
+ * @param widgetId the id of the widget
21508
+ * @returns WidgetTree.
21509
+ */
21510
+ function getWidgetFromId(widgetId_1) {
21511
+ return __awaiter(this, arguments, void 0, function* (widgetId, visitedWidgets = [], token = "") {
21512
+ 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, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15, _16, _17, _18, _19, _20, _21, _22, _23, _24, _25, _26, _27, _28, _29, _30, _31, _32, _33, _34, _35, _36;
21513
+ try {
21514
+ const widgetNode = new _app__WEBPACK_IMPORTED_MODULE_0__.WidgetTree();
21515
+ const output = yield getWidgetCodeFromId(widgetId, token);
21516
+ visitedWidgets.push(widgetId);
21517
+ const widgetInfo = (_a = output === null || output === void 0 ? void 0 : output.data) === null || _a === void 0 ? void 0 : _a.the_widget;
21518
+ widgetNode.name = (_d = (_c = (_b = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_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;
21519
+ widgetNode.html = (_g = (_f = (_e = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_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;
21520
+ widgetNode.css = (_k = (_j = (_h = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_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;
21521
+ widgetNode.js = (_o = (_m = (_l = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_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;
21522
+ widgetNode.origin = Number((_r = (_q = (_p = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_origin) === null || _p === void 0 ? void 0 : _p[0]) === null || _q === void 0 ? void 0 : _q.data) === null || _r === void 0 ? void 0 : _r.the_originid);
21523
+ widgetNode.version =
21524
+ (_u = (_t = (_s = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_version) === null || _s === void 0 ? void 0 : _s[0]) === null || _t === void 0 ? void 0 : _t.data) === null || _u === void 0 ? void 0 : _u.the_version;
21525
+ widgetNode.clean = (_x = (_w = (_v = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_clean) === null || _v === void 0 ? void 0 : _v[0]) === null || _w === void 0 ? void 0 : _w.data) === null || _x === void 0 ? void 0 : _x.the_clean;
21526
+ widgetNode.timestamp =
21527
+ (_0 = (_z = (_y = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_timestamp) === null || _y === void 0 ? void 0 : _y[0]) === null || _z === void 0 ? void 0 : _z.data) === null || _0 === void 0 ? void 0 : _0.the_timestamp;
21528
+ widgetNode.id = output.id;
21529
+ const widgetTypeValue = (_3 = (_2 = (_1 = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_type) === null || _1 === void 0 ? void 0 : _1[0]) === null || _2 === void 0 ? void 0 : _2.data) === null || _3 === void 0 ? void 0 : _3.the_type;
21530
+ if (widgetTypeValue == "null" || widgetTypeValue == null) {
21531
+ widgetNode.type = "the_element_name";
21532
+ }
21533
+ else {
21534
+ widgetNode.type = widgetTypeValue;
21535
+ }
21536
+ widgetNode.after_render =
21537
+ (_6 = (_5 = (_4 = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_after_render) === null || _4 === void 0 ? void 0 : _4[0]) === null || _5 === void 0 ? void 0 : _5.data) === null || _6 === void 0 ? void 0 : _6.the_after_render;
21538
+ widgetNode.before_render =
21539
+ (_9 = (_8 = (_7 = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_before_render) === null || _7 === void 0 ? void 0 : _7[0]) === null || _8 === void 0 ? void 0 : _8.data) === null || _9 === void 0 ? void 0 : _9.the_before_render;
21540
+ widgetNode.update = (_12 = (_11 = (_10 = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_update) === null || _10 === void 0 ? void 0 : _10[0]) === null || _11 === void 0 ? void 0 : _11.data) === null || _12 === void 0 ? void 0 : _12.the_update;
21541
+ widgetNode.widgetId = widgetId;
21542
+ widgetNode.mount_child =
21543
+ (_15 = (_14 = (_13 = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_mount_child) === null || _13 === void 0 ? void 0 : _13[0]) === null || _14 === void 0 ? void 0 : _14.data) === null || _15 === void 0 ? void 0 : _15.the_mount_child;
21544
+ const childWidgets = widgetInfo === null || widgetInfo === void 0 ? void 0 : widgetInfo.the_widget_s_child;
21545
+ // if there are children present in the widget then convert the children to widget and put it inside of the tree.
21546
+ if (childWidgets === null || childWidgets === void 0 ? void 0 : childWidgets.length) {
21547
+ for (let i = 0; i < childWidgets.length; i++) {
21548
+ const childWidgetId = ((_19 = (_18 = (_17 = (_16 = childWidgets[i]) === null || _16 === void 0 ? void 0 : _16.data.the_child_widget) === null || _17 === void 0 ? void 0 : _17.the_child_widget_info) === null || _18 === void 0 ? void 0 : _18[0]) === null || _19 === void 0 ? void 0 : _19.id) ||
21549
+ ((_24 = (_23 = (_22 = (_21 = (_20 = childWidgets[i]) === null || _20 === void 0 ? void 0 : _20.data.the_child_widget) === null || _21 === void 0 ? void 0 : _21.the_child_widget_parent) === null || _22 === void 0 ? void 0 : _22[0]) === null || _23 === void 0 ? void 0 : _23.data) === null || _24 === void 0 ? void 0 : _24.the_parent);
21550
+ const childWidget = yield getWidgetFromId(childWidgetId, visitedWidgets, token);
21551
+ const childWidgetTypeValue = (_30 = (_29 = (_28 = (_27 = (_26 = (_25 = childWidgets[i]) === null || _25 === void 0 ? void 0 : _25.data) === null || _26 === void 0 ? void 0 : _26.the_child_widget) === null || _27 === void 0 ? void 0 : _27.the_child_widget_type) === null || _28 === void 0 ? void 0 : _28[0]) === null || _29 === void 0 ? void 0 : _29.data) === null || _30 === void 0 ? void 0 : _30.the_type;
21552
+ const childWidgetWrapperId = (_36 = (_35 = (_34 = (_33 = (_32 = (_31 = childWidgets[i]) === null || _31 === void 0 ? void 0 : _31.data) === null || _32 === void 0 ? void 0 : _32.the_child_widget) === null || _33 === void 0 ? void 0 : _33.the_child_widget_wrapper) === null || _34 === void 0 ? void 0 : _34[0]) === null || _35 === void 0 ? void 0 : _35.data) === null || _36 === void 0 ? void 0 : _36.the_wrapper;
21553
+ if (childWidgetTypeValue == "null" || childWidgetTypeValue == null) {
21554
+ childWidget.type = "the_element_name";
21555
+ }
21556
+ else {
21557
+ childWidget.type = childWidgetTypeValue;
21558
+ }
21559
+ childWidget.wrapper = childWidgetWrapperId;
21560
+ widgetNode.children.push(childWidget);
21561
+ }
21562
+ }
21563
+ return widgetNode;
21564
+ }
21565
+ catch (ex) {
21566
+ console.error("error", ex);
21567
+ throw ex;
21568
+ }
21569
+ });
21570
+ }
21571
+ /**
21572
+ *
21573
+ * @param tree Widget tree from getWidgetFromId(widgetId);
21574
+ * @param parentElement this is the dom element on which we want to add our widget
21575
+ * @returns the widgetree with widgets attached inside of it.
21576
+ * Also this will add the tree to the dom.
21577
+ */
21578
+ function convertWidgetTreeToWidget(tree_1, parentElement_1) {
21579
+ return __awaiter(this, arguments, void 0, function* (tree, parentElement, isMain = true, props) {
21580
+ var _a, _b;
21581
+ const newWidget = new _app__WEBPACK_IMPORTED_MODULE_0__.BuilderStatefulWidget();
21582
+ newWidget.html = tree.html;
21583
+ newWidget.widgetType = tree.type;
21584
+ newWidget.componentDidMountFunction = tree.before_render;
21585
+ newWidget.addEventFunction = tree.after_render;
21586
+ newWidget.mountChildWidgetsFunction = tree.mount_child;
21587
+ // newWidget.css = newWidget.css ? newWidget.css : "";
21588
+ if (props)
21589
+ newWidget.data = props;
21590
+ parentElement.innerHTML = "";
21591
+ const newParent = parentElement;
21592
+ //let newParent = appendWidgetContainerToParent(parentElement, tree.id, isMain);
21593
+ isMain = false;
21594
+ if (newParent) {
21595
+ yield newWidget.mount(newParent);
21596
+ tree.widget = newWidget;
21597
+ if (tree.children.length > 0) {
21598
+ if (((_a = newWidget.childWidgetElement) === null || _a === void 0 ? void 0 : _a.length) > 0) {
21599
+ for (let i = 0; i < ((_b = tree.children) === null || _b === void 0 ? void 0 : _b.length); i++) {
21600
+ const child = tree.children[i];
21601
+ for (let j = 0; j < newWidget.childWidgetElement.length; j++) {
21602
+ const widgetElement = newWidget.childWidgetElement[j];
21603
+ if (child.id ===
21604
+ Number(widgetElement.getAttribute("data-widgetid")) &&
21605
+ child.wrapper === widgetElement.id) {
21606
+ const clearedChildWidget = clearDraggedWidget(child);
21607
+ const childWidget = yield convertWidgetTreeToWidget(clearedChildWidget, widgetElement, isMain);
21608
+ newWidget.childWidgets.push(childWidget);
21609
+ newWidget.css =
21610
+ newWidget.css +
21611
+ `div[data-widgetid="${child.id}"] { ${child.css} }`;
21612
+ childWidget.dataChange((value) => {
21613
+ var _a;
21614
+ console.log("This is the data change in child", value);
21615
+ const type = (_a = value === null || value === void 0 ? void 0 : value.type) === null || _a === void 0 ? void 0 : _a.characterValue;
21616
+ if (type) {
21617
+ newWidget.childrenData[type] = value;
21618
+ }
21619
+ console.log("new child data", newWidget.childrenData);
21620
+ });
21621
+ }
21622
+ }
21623
+ }
21624
+ }
21625
+ }
21626
+ }
21627
+ console.log("newWidget ->", newWidget);
21628
+ // Unwrap specific containers
21629
+ yield unwrapContainers(parentElement, ".mftsccs-marking-element");
21630
+ yield unwrapContainers(parentElement, ".widget_container");
21631
+ return newWidget;
21632
+ });
21633
+ }
21634
+ function getWidgetCodeFromId(widgetId, token) {
21635
+ return __awaiter(this, void 0, void 0, function* () {
21636
+ try {
21637
+ const searchFirst = new _app__WEBPACK_IMPORTED_MODULE_0__.SearchQuery();
21638
+ searchFirst.composition = widgetId;
21639
+ searchFirst.fullLinkers = [
21640
+ "the_widget",
21641
+ "the_widget_widget",
21642
+ "the_widget_name",
21643
+ "the_widget_html",
21644
+ "the_widget_css",
21645
+ "the_widget_js",
21646
+ "the_widget_timestamp",
21647
+ "the_widget_type",
21648
+ "the_widget_after_render",
21649
+ "the_widget_before_render",
21650
+ "the_widget_update",
21651
+ "the_widget_mount_child",
21652
+ "the_widget_clean",
21653
+ "the_widget_s_child",
21654
+ "the_widget_version",
21655
+ "the_widget_origin",
21656
+ ];
21657
+ searchFirst.inpage = 100;
21658
+ const searchSecond = new _app__WEBPACK_IMPORTED_MODULE_0__.SearchQuery();
21659
+ searchSecond.fullLinkers = [
21660
+ "the_child_widget",
21661
+ "the_child_widget_type",
21662
+ "the_child_widget_parent",
21663
+ "the_child_widget_wrapper",
21664
+ "the_child_widget_info",
21665
+ ];
21666
+ searchSecond.inpage = 100;
21667
+ const queryParams = [searchFirst, searchSecond];
21668
+ const output = yield (0,_app__WEBPACK_IMPORTED_MODULE_0__.SearchLinkMultipleAll)(queryParams, token);
21669
+ console.log("getWidgetCodeFromId output ->", output);
21670
+ return output;
21671
+ }
21672
+ catch (error) {
21673
+ console.error("error", error);
21674
+ throw error;
21675
+ }
21676
+ });
21677
+ }
21678
+ function clearDraggedWidget(widgetTree) {
21679
+ widgetTree.html = widgetTree.html.replace(/<[^>]*\bclass=["'][^"']*\bwidget_container\b[^"']*["'][^>]*>/g, (match) => {
21680
+ return match.replace(/\bwidget_container\b/g, "").trim();
21681
+ });
21682
+ widgetTree.html = widgetTree.html.replace(/<[^>]*\bdraggable=["'][^"']*\btrue\b[^"']*["'][^>]*>/g, (match) => {
21683
+ return match.replace(/\btrue\b/g, "false").trim();
21684
+ });
21685
+ widgetTree.html = widgetTree.html.replace(/<[^>]*\bclass=["'][^"']*\bhover-element\b[^"']*["'][^>]*>/g, (match) => {
21686
+ return match.replace(/\bhover-element\b/g, "").trim();
21687
+ });
21688
+ widgetTree.html = widgetTree.html.replace(/<[^>]*\bclass=["'][^"']*\bwb-block\b[^"']*["'][^>]*>/g, (match) => {
21689
+ return match.replace(/\bwb-block\b/g, "").trim();
21690
+ });
21691
+ widgetTree.html = widgetTree.html.replace(/<[^>]*onclick="widgetSelected\(event\)"\s*,?\s*ondragover="_dragService\.dragOverWidgetElement\(event\)"\s*,?\s*ondrop="_dragService\.dropWidgetElement\(event\)"\s*,?\s*ondragstart="_dragService\.dragStartWidgetElement\(event\)"\s*,?\s*ondragend="_dragService\.dragEndWidgetElement\(event\)"[^>]*>/g, (match) => {
21692
+ return match
21693
+ .replace(/onclick="widgetSelected\(event\)"/g, 'onclick=""')
21694
+ .replace(/ondragover="_dragService\.dragOverWidgetElement\(event\)"/g, 'ondragover=""')
21695
+ .replace(/ondrop="_dragService\.dropWidgetElement\(event\)"/g, 'ondrop=""')
21696
+ .replace(/ondragstart="_dragService\.dragStartWidgetElement\(event\)"/g, 'ondragstart=""')
21697
+ .replace(/ondragend="_dragService\.dragEndWidgetElement\(event\)"/g, 'ondragend=""')
21698
+ .trim();
21699
+ });
21700
+ widgetTree.html = widgetTree.html.replace(/<[^>]*\bondragstart=["'][^"']*\b_dragService\.onWidgetDragStart\(event\)\b[^"']*["'][^>]*>/g, (match) => {
21701
+ return match
21702
+ .replace(/\b_dragService\.onWidgetDragStart\(event\)\b/g, "")
21703
+ .trim();
21704
+ });
21705
+ return widgetTree;
21706
+ }
21707
+ function unwrapWidgetContainers(widgetContainerEl, queryParam) {
21708
+ return __awaiter(this, void 0, void 0, function* () {
21709
+ // Select all div elements with the queryParam
21710
+ const widgetContainers = widgetContainerEl.querySelectorAll(queryParam);
21711
+ // Loop through each div and replace it with its inner content
21712
+ widgetContainers.forEach((element) => {
21713
+ // Move all child nodes of the div before the div
21714
+ while (element.firstChild) {
21715
+ element.parentNode.insertBefore(element.firstChild, element);
21716
+ }
21717
+ // Remove the empty div
21718
+ element.remove();
21719
+ });
21720
+ return widgetContainerEl;
21721
+ });
21722
+ }
21723
+ function unwrapContainers(parentElement, selector) {
21724
+ return __awaiter(this, void 0, void 0, function* () {
21725
+ const elements = parentElement.querySelectorAll(selector);
21726
+ for (const el of elements) {
21727
+ const parent = el.parentElement;
21728
+ if (parent) {
21729
+ while (el.firstChild) {
21730
+ const unwrappedChild = yield unwrapWidgetContainers(el.firstChild, selector);
21731
+ parent.insertBefore(unwrappedChild, el);
21732
+ }
21733
+ parent.removeChild(el);
21734
+ }
21735
+ }
21736
+ });
21737
+ }
21738
+
21739
+
21426
21740
  /***/ }),
21427
21741
 
21428
21742
  /***/ "./src/Widgets/StatefulWidget.ts":
@@ -22867,6 +23181,9 @@ __webpack_require__.r(__webpack_exports__);
22867
23181
  /* harmony export */ init: () => (/* binding */ init),
22868
23182
  /* harmony export */ recursiveFetch: () => (/* reexport safe */ _Services_GetComposition__WEBPACK_IMPORTED_MODULE_7__.recursiveFetch),
22869
23183
  /* harmony export */ recursiveFetchNew: () => (/* reexport safe */ _Services_Composition_BuildComposition__WEBPACK_IMPORTED_MODULE_46__.recursiveFetchNew),
23184
+ /* harmony export */ renderLatestWidget: () => (/* reexport safe */ _Widgets_RenderWidgetService__WEBPACK_IMPORTED_MODULE_120__.renderLatestWidget),
23185
+ /* harmony export */ renderPage: () => (/* reexport safe */ _Widgets_RenderWidgetService__WEBPACK_IMPORTED_MODULE_120__.renderPage),
23186
+ /* harmony export */ renderWidget: () => (/* reexport safe */ _Widgets_RenderWidgetService__WEBPACK_IMPORTED_MODULE_120__.renderWidget),
22870
23187
  /* harmony export */ searchLinkMultipleListener: () => (/* reexport safe */ _WrapperFunctions_SearchLinkMultipleAllObservable__WEBPACK_IMPORTED_MODULE_70__.searchLinkMultipleListener),
22871
23188
  /* harmony export */ sendMessage: () => (/* binding */ sendMessage),
22872
23189
  /* harmony export */ serviceWorker: () => (/* binding */ serviceWorker),
@@ -23000,6 +23317,7 @@ __webpack_require__.r(__webpack_exports__);
23000
23317
  /* harmony import */ var _Widgets_WidgetTree__WEBPACK_IMPORTED_MODULE_117__ = __webpack_require__(/*! ./Widgets/WidgetTree */ "./src/Widgets/WidgetTree.ts");
23001
23318
  /* harmony import */ var _AccessTracker_accessTracker__WEBPACK_IMPORTED_MODULE_118__ = __webpack_require__(/*! ./AccessTracker/accessTracker */ "./src/AccessTracker/accessTracker.ts");
23002
23319
  /* harmony import */ var _Services_CreateConnection_CreateConnectionEntity__WEBPACK_IMPORTED_MODULE_119__ = __webpack_require__(/*! ./Services/CreateConnection/CreateConnectionEntity */ "./src/Services/CreateConnection/CreateConnectionEntity.ts");
23320
+ /* harmony import */ var _Widgets_RenderWidgetService__WEBPACK_IMPORTED_MODULE_120__ = __webpack_require__(/*! ./Widgets/RenderWidgetService */ "./src/Widgets/RenderWidgetService.ts");
23003
23321
  var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {
23004
23322
  function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
23005
23323
  return new (P || (P = Promise))(function (resolve, reject) {
@@ -23137,6 +23455,7 @@ var __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _argume
23137
23455
 
23138
23456
 
23139
23457
 
23458
+
23140
23459
 
23141
23460
 
23142
23461
  var serviceWorker;
@@ -23745,7 +24064,7 @@ function initConceptConnection() {
23745
24064
  */
23746
24065
  function dispatchIdEvent(id, data = {}) {
23747
24066
  // console.log('id event dispatched', id)
23748
- if (serviceWorker) {
24067
+ if (serviceWorker || typeof window != undefined) {
23749
24068
  // let event = new Event(`${id}`);
23750
24069
  let event = new CustomEvent(`${id}`, data);
23751
24070
  dispatchEvent(event);
@@ -24031,6 +24350,9 @@ function initializeFlags(flags) {
24031
24350
  /******/ var __webpack_exports__init = __webpack_exports__.init;
24032
24351
  /******/ var __webpack_exports__recursiveFetch = __webpack_exports__.recursiveFetch;
24033
24352
  /******/ var __webpack_exports__recursiveFetchNew = __webpack_exports__.recursiveFetchNew;
24353
+ /******/ var __webpack_exports__renderLatestWidget = __webpack_exports__.renderLatestWidget;
24354
+ /******/ var __webpack_exports__renderPage = __webpack_exports__.renderPage;
24355
+ /******/ var __webpack_exports__renderWidget = __webpack_exports__.renderWidget;
24034
24356
  /******/ var __webpack_exports__searchLinkMultipleListener = __webpack_exports__.searchLinkMultipleListener;
24035
24357
  /******/ var __webpack_exports__sendMessage = __webpack_exports__.sendMessage;
24036
24358
  /******/ var __webpack_exports__serviceWorker = __webpack_exports__.serviceWorker;
@@ -24043,7 +24365,7 @@ function initializeFlags(flags) {
24043
24365
  /******/ var __webpack_exports__uploadImage = __webpack_exports__.uploadImage;
24044
24366
  /******/ var __webpack_exports__validDocumentFormats = __webpack_exports__.validDocumentFormats;
24045
24367
  /******/ var __webpack_exports__validImageFormats = __webpack_exports__.validImageFormats;
24046
- /******/ export { __webpack_exports__ADMIN as ADMIN, __webpack_exports__ALLID as ALLID, __webpack_exports__AccessTracker as AccessTracker, __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__CreateConnectionBetweenEntityLocal as CreateConnectionBetweenEntityLocal, __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__DeleteUser as DeleteUser, __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__GetAllTheConnectionsByTypeAndOfTheConcept as GetAllTheConnectionsByTypeAndOfTheConcept, __webpack_exports__GetComposition as GetComposition, __webpack_exports__GetCompositionBulk as GetCompositionBulk, __webpack_exports__GetCompositionBulkWithDataId as GetCompositionBulkWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataId as GetCompositionFromConnectionsWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataIdFromConnections as GetCompositionFromConnectionsWithDataIdFromConnections, __webpack_exports__GetCompositionFromConnectionsWithDataIdInObject as GetCompositionFromConnectionsWithDataIdInObject, __webpack_exports__GetCompositionFromConnectionsWithDataIdIndex as GetCompositionFromConnectionsWithDataIdIndex, __webpack_exports__GetCompositionFromConnectionsWithIndex as GetCompositionFromConnectionsWithIndex, __webpack_exports__GetCompositionFromConnectionsWithIndexFromConnections as GetCompositionFromConnectionsWithIndexFromConnections, __webpack_exports__GetCompositionFromMemoryWithConnections as GetCompositionFromMemoryWithConnections, __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__Logger as Logger, __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__RecursiveSearchApiWithInternalConnections as RecursiveSearchApiWithInternalConnections, __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__handleServiceWorkerException as handleServiceWorkerException, __webpack_exports__hasActivatedSW as hasActivatedSW, __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__setHasActivatedSW as setHasActivatedSW, __webpack_exports__storeToDatabase as storeToDatabase, __webpack_exports__subscribedListeners as subscribedListeners, __webpack_exports__updateAccessToken as updateAccessToken, __webpack_exports__uploadAttachment as uploadAttachment, __webpack_exports__uploadFile as uploadFile, __webpack_exports__uploadImage as uploadImage, __webpack_exports__validDocumentFormats as validDocumentFormats, __webpack_exports__validImageFormats as validImageFormats };
24368
+ /******/ export { __webpack_exports__ADMIN as ADMIN, __webpack_exports__ALLID as ALLID, __webpack_exports__AccessTracker as AccessTracker, __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__CreateConnectionBetweenEntityLocal as CreateConnectionBetweenEntityLocal, __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__DeleteUser as DeleteUser, __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__GetAllTheConnectionsByTypeAndOfTheConcept as GetAllTheConnectionsByTypeAndOfTheConcept, __webpack_exports__GetComposition as GetComposition, __webpack_exports__GetCompositionBulk as GetCompositionBulk, __webpack_exports__GetCompositionBulkWithDataId as GetCompositionBulkWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataId as GetCompositionFromConnectionsWithDataId, __webpack_exports__GetCompositionFromConnectionsWithDataIdFromConnections as GetCompositionFromConnectionsWithDataIdFromConnections, __webpack_exports__GetCompositionFromConnectionsWithDataIdInObject as GetCompositionFromConnectionsWithDataIdInObject, __webpack_exports__GetCompositionFromConnectionsWithDataIdIndex as GetCompositionFromConnectionsWithDataIdIndex, __webpack_exports__GetCompositionFromConnectionsWithIndex as GetCompositionFromConnectionsWithIndex, __webpack_exports__GetCompositionFromConnectionsWithIndexFromConnections as GetCompositionFromConnectionsWithIndexFromConnections, __webpack_exports__GetCompositionFromMemoryWithConnections as GetCompositionFromMemoryWithConnections, __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__Logger as Logger, __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__RecursiveSearchApiWithInternalConnections as RecursiveSearchApiWithInternalConnections, __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__handleServiceWorkerException as handleServiceWorkerException, __webpack_exports__hasActivatedSW as hasActivatedSW, __webpack_exports__init as init, __webpack_exports__recursiveFetch as recursiveFetch, __webpack_exports__recursiveFetchNew as recursiveFetchNew, __webpack_exports__renderLatestWidget as renderLatestWidget, __webpack_exports__renderPage as renderPage, __webpack_exports__renderWidget as renderWidget, __webpack_exports__searchLinkMultipleListener as searchLinkMultipleListener, __webpack_exports__sendMessage as sendMessage, __webpack_exports__serviceWorker as serviceWorker, __webpack_exports__setHasActivatedSW as setHasActivatedSW, __webpack_exports__storeToDatabase as storeToDatabase, __webpack_exports__subscribedListeners as subscribedListeners, __webpack_exports__updateAccessToken as updateAccessToken, __webpack_exports__uploadAttachment as uploadAttachment, __webpack_exports__uploadFile as uploadFile, __webpack_exports__uploadImage as uploadImage, __webpack_exports__validDocumentFormats as validDocumentFormats, __webpack_exports__validImageFormats as validImageFormats };
24047
24369
  /******/
24048
24370
 
24049
24371
  //# sourceMappingURL=main.bundle.js.map