@startinblox/core 0.19.0-beta.23 → 0.19.0-beta.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/MarkerCluster-96Sa2BSd.js +4 -0
- package/dist/MarkerCluster.Default-CpBAgxXL.js +4 -0
- package/dist/default-theme-oAPinkzv.js +4 -0
- package/dist/{assets/en-e53105c5.js → en-7f7JgW9b.js} +0 -1
- package/dist/{assets/fr-a7fcdb64.js → fr-r9OPSsZY.js} +0 -1
- package/dist/{assets/helpers-411e08e4.js → helpers-4tVqSOBU.js} +36 -10
- package/dist/helpers.js +7 -7
- package/dist/index.js +105 -152
- package/dist/leaflet-2MZa2u07.js +644 -0
- package/dist/{assets/quill.snow-8f222e44.css → quill.snow-gf_AguUg.js} +8 -4
- package/dist/slimselect-AzdIsdl3.js +4 -0
- package/package.json +3 -3
- package/dist/assets/MarkerCluster-614dea0a.css +0 -14
- package/dist/assets/MarkerCluster.Default-61258232.css +0 -60
- package/dist/assets/default-theme-d0f20a8a.css +0 -24
- package/dist/assets/en-e53105c5.js.map +0 -1
- package/dist/assets/fr-a7fcdb64.js.map +0 -1
- package/dist/assets/helpers-411e08e4.js.map +0 -1
- package/dist/assets/leaflet-3c081932.css +0 -640
- package/dist/assets/slimselect-43e3ebc8.css +0 -2
- package/dist/helpers.js.map +0 -1
- package/dist/index.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { d as defineComponent, u as uniqID, f as fuzzyCompare, p as parseFieldsString, a as findClosingBracketMatchIndex, c as compare, e as evalTemplateString, s as setDeepProperty, t as transformArrayToContainer } from "./
|
|
2
|
-
import { h } from "./
|
|
1
|
+
import { d as defineComponent, u as uniqID, i as importInlineCSS, f as fuzzyCompare, p as parseFieldsString, a as findClosingBracketMatchIndex, c as compare, e as evalTemplateString, s as setDeepProperty, t as transformArrayToContainer } from "./helpers-4tVqSOBU.js";
|
|
2
|
+
import { h } from "./helpers-4tVqSOBU.js";
|
|
3
3
|
import PubSub$1 from "https://cdn.skypack.dev/pubsub-js";
|
|
4
4
|
import L from "https://cdn.skypack.dev/leaflet";
|
|
5
5
|
import "https://cdn.skypack.dev/leaflet.markercluster";
|
|
@@ -11445,7 +11445,7 @@ class Store {
|
|
|
11445
11445
|
if (serverSearch)
|
|
11446
11446
|
key = appendServerSearchToIri(key, serverSearch);
|
|
11447
11447
|
}
|
|
11448
|
-
const resourceProxy = new CustomGetter(key, resource2, clientContext, parentContext,
|
|
11448
|
+
const resourceProxy = new CustomGetter(key, resource2, clientContext, parentContext, parentId, serverPagination, serverSearch).getProxy();
|
|
11449
11449
|
if (resourceProxy.isContainer())
|
|
11450
11450
|
this.subscribeChildren(resourceProxy, id2);
|
|
11451
11451
|
if (this.get(key)) {
|
|
@@ -12103,7 +12103,7 @@ const StoreMixin = {
|
|
|
12103
12103
|
return;
|
|
12104
12104
|
this.resourceId = value;
|
|
12105
12105
|
if (this.nestedField) {
|
|
12106
|
-
const resource = await store.getData(value, this.context
|
|
12106
|
+
const resource = await store.getData(value, this.context);
|
|
12107
12107
|
const nestedResource = resource ? await resource[this.nestedField] : null;
|
|
12108
12108
|
this.resourceId = nestedResource ? await nestedResource["@id"] : null;
|
|
12109
12109
|
if (resource && !this.resourceId && !nestedResource) {
|
|
@@ -12623,7 +12623,6 @@ const MultipleFormMixin = {
|
|
|
12623
12623
|
}
|
|
12624
12624
|
} catch (ex) {
|
|
12625
12625
|
this.dataSrc = value;
|
|
12626
|
-
console.log("Not an array", ex);
|
|
12627
12626
|
}
|
|
12628
12627
|
}
|
|
12629
12628
|
const nextProcessor = listValueTransformations.shift();
|
|
@@ -13473,18 +13472,18 @@ var arrayMap = _arrayMap, baseIndexOf = _baseIndexOf, baseIndexOfWith = _baseInd
|
|
|
13473
13472
|
var arrayProto = Array.prototype;
|
|
13474
13473
|
var splice = arrayProto.splice;
|
|
13475
13474
|
function basePullAll$1(array, values, iteratee, comparator) {
|
|
13476
|
-
var indexOf2 = comparator ? baseIndexOfWith : baseIndexOf, index2 = -1, length = values.length,
|
|
13475
|
+
var indexOf2 = comparator ? baseIndexOfWith : baseIndexOf, index2 = -1, length = values.length, seen = array;
|
|
13477
13476
|
if (array === values) {
|
|
13478
13477
|
values = copyArray(values);
|
|
13479
13478
|
}
|
|
13480
13479
|
if (iteratee) {
|
|
13481
|
-
|
|
13480
|
+
seen = arrayMap(array, baseUnary$1(iteratee));
|
|
13482
13481
|
}
|
|
13483
13482
|
while (++index2 < length) {
|
|
13484
13483
|
var fromIndex = 0, value = values[index2], computed = iteratee ? iteratee(value) : value;
|
|
13485
|
-
while ((fromIndex = indexOf2(
|
|
13486
|
-
if (
|
|
13487
|
-
splice.call(
|
|
13484
|
+
while ((fromIndex = indexOf2(seen, computed, fromIndex, comparator)) > -1) {
|
|
13485
|
+
if (seen !== array) {
|
|
13486
|
+
splice.call(seen, fromIndex, 1);
|
|
13488
13487
|
}
|
|
13489
13488
|
splice.call(array, fromIndex, 1);
|
|
13490
13489
|
}
|
|
@@ -13681,11 +13680,11 @@ var fromDelta_converters$1 = {
|
|
|
13681
13680
|
function applyInlineAttributes(attrs2, next2) {
|
|
13682
13681
|
var first = [], then = [];
|
|
13683
13682
|
attrs2 = attrs2 || {};
|
|
13684
|
-
var tag2 = el2,
|
|
13683
|
+
var tag2 = el2, seen = {};
|
|
13685
13684
|
while (tag2._format) {
|
|
13686
|
-
|
|
13685
|
+
seen[tag2._format] = true;
|
|
13687
13686
|
if (!attrs2[tag2._format]) {
|
|
13688
|
-
for (var k2 in
|
|
13687
|
+
for (var k2 in seen) {
|
|
13689
13688
|
delete activeInline[k2];
|
|
13690
13689
|
}
|
|
13691
13690
|
el2 = tag2.parent();
|
|
@@ -24029,7 +24028,7 @@ var UrlMatch = (
|
|
|
24029
24028
|
);
|
|
24030
24029
|
var Matcher = (
|
|
24031
24030
|
/** @class */
|
|
24032
|
-
function() {
|
|
24031
|
+
/* @__PURE__ */ function() {
|
|
24033
24032
|
function Matcher2(cfg) {
|
|
24034
24033
|
this.__jsduckDummyDocProp = null;
|
|
24035
24034
|
this.tagBuilder = cfg.tagBuilder;
|
|
@@ -24249,7 +24248,7 @@ var EmailMatcher = (
|
|
|
24249
24248
|
);
|
|
24250
24249
|
var CurrentEmailMatch = (
|
|
24251
24250
|
/** @class */
|
|
24252
|
-
function() {
|
|
24251
|
+
/* @__PURE__ */ function() {
|
|
24253
24252
|
function CurrentEmailMatch2(cfg) {
|
|
24254
24253
|
if (cfg === void 0) {
|
|
24255
24254
|
cfg = {};
|
|
@@ -24976,7 +24975,7 @@ function parseHtml(html2, _a) {
|
|
|
24976
24975
|
}
|
|
24977
24976
|
var CurrentTag = (
|
|
24978
24977
|
/** @class */
|
|
24979
|
-
function() {
|
|
24978
|
+
/* @__PURE__ */ function() {
|
|
24980
24979
|
function CurrentTag2(cfg) {
|
|
24981
24980
|
if (cfg === void 0) {
|
|
24982
24981
|
cfg = {};
|
|
@@ -25480,57 +25479,6 @@ const index$2 = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.definePrope
|
|
|
25480
25479
|
TelMixin,
|
|
25481
25480
|
attributeDirectory
|
|
25482
25481
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
25483
|
-
const scriptRel = "modulepreload";
|
|
25484
|
-
const assetsURL = function(dep, importerUrl) {
|
|
25485
|
-
return new URL(dep, importerUrl).href;
|
|
25486
|
-
};
|
|
25487
|
-
const seen = {};
|
|
25488
|
-
const __vitePreload = function preload(baseModule, deps, importerUrl) {
|
|
25489
|
-
if (!deps || deps.length === 0) {
|
|
25490
|
-
return baseModule();
|
|
25491
|
-
}
|
|
25492
|
-
const links = document.getElementsByTagName("link");
|
|
25493
|
-
return Promise.all(deps.map((dep) => {
|
|
25494
|
-
dep = assetsURL(dep, importerUrl);
|
|
25495
|
-
if (dep in seen)
|
|
25496
|
-
return;
|
|
25497
|
-
seen[dep] = true;
|
|
25498
|
-
const isCss = dep.endsWith(".css");
|
|
25499
|
-
const cssSelector = isCss ? '[rel="stylesheet"]' : "";
|
|
25500
|
-
const isBaseRelative = !!importerUrl;
|
|
25501
|
-
if (isBaseRelative) {
|
|
25502
|
-
for (let i = links.length - 1; i >= 0; i--) {
|
|
25503
|
-
const link4 = links[i];
|
|
25504
|
-
if (link4.href === dep && (!isCss || link4.rel === "stylesheet")) {
|
|
25505
|
-
return;
|
|
25506
|
-
}
|
|
25507
|
-
}
|
|
25508
|
-
} else if (document.querySelector(`link[href="${dep}"]${cssSelector}`)) {
|
|
25509
|
-
return;
|
|
25510
|
-
}
|
|
25511
|
-
const link3 = document.createElement("link");
|
|
25512
|
-
link3.rel = isCss ? "stylesheet" : scriptRel;
|
|
25513
|
-
if (!isCss) {
|
|
25514
|
-
link3.as = "script";
|
|
25515
|
-
link3.crossOrigin = "";
|
|
25516
|
-
}
|
|
25517
|
-
link3.href = dep;
|
|
25518
|
-
document.head.appendChild(link3);
|
|
25519
|
-
if (isCss) {
|
|
25520
|
-
return new Promise((res, rej) => {
|
|
25521
|
-
link3.addEventListener("load", res);
|
|
25522
|
-
link3.addEventListener("error", () => rej(new Error(`Unable to preload CSS for ${dep}`)));
|
|
25523
|
-
});
|
|
25524
|
-
}
|
|
25525
|
-
})).then(() => baseModule()).catch((err) => {
|
|
25526
|
-
const e = new Event("vite:preloadError", { cancelable: true });
|
|
25527
|
-
e.payload = err;
|
|
25528
|
-
window.dispatchEvent(e);
|
|
25529
|
-
if (!e.defaultPrevented) {
|
|
25530
|
-
throw err;
|
|
25531
|
-
}
|
|
25532
|
-
});
|
|
25533
|
-
};
|
|
25534
25482
|
var exports = {};
|
|
25535
25483
|
!function(e, t) {
|
|
25536
25484
|
"object" == typeof exports && "object" == typeof module ? module.exports = t() : "function" == typeof define && define.amd ? define([], t) : "object" == typeof exports ? exports.SlimSelect = t() : e.SlimSelect = t();
|
|
@@ -26155,8 +26103,8 @@ const TranslationMixin = {
|
|
|
26155
26103
|
async getTranslationModule(langCode) {
|
|
26156
26104
|
const translationsModules = {
|
|
26157
26105
|
// define modules in a static way, snowpack does not support dynamic strings here
|
|
26158
|
-
en: () =>
|
|
26159
|
-
fr: () =>
|
|
26106
|
+
en: () => import("./en-7f7JgW9b.js"),
|
|
26107
|
+
fr: () => import("./fr-r9OPSsZY.js")
|
|
26160
26108
|
};
|
|
26161
26109
|
if (!translationsModules[langCode]) {
|
|
26162
26110
|
console.warn(`${langCode}.json translation file may not exist, English is setted by default`);
|
|
@@ -26215,7 +26163,7 @@ const AutocompletionMixin = {
|
|
|
26215
26163
|
mutationObserver: null
|
|
26216
26164
|
},
|
|
26217
26165
|
created() {
|
|
26218
|
-
|
|
26166
|
+
importInlineCSS("slimselect", () => import("./slimselect-AzdIsdl3.js"));
|
|
26219
26167
|
this.slimSelect = null;
|
|
26220
26168
|
this.addToAttributes(true, "autocomplete");
|
|
26221
26169
|
this.listCallbacks.push(this.addCallback.bind(this));
|
|
@@ -26954,7 +26902,7 @@ var quill = { exports: {} };
|
|
|
26954
26902
|
value: true
|
|
26955
26903
|
});
|
|
26956
26904
|
exports3.default = exports3.BlockEmbed = exports3.bubbleFormats = void 0;
|
|
26957
|
-
var _createClass = function() {
|
|
26905
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
26958
26906
|
function defineProperties(target2, props) {
|
|
26959
26907
|
for (var i = 0; i < props.length; i++) {
|
|
26960
26908
|
var descriptor = props[i];
|
|
@@ -27235,7 +27183,7 @@ var quill = { exports: {} };
|
|
|
27235
27183
|
} : function(obj) {
|
|
27236
27184
|
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
27237
27185
|
};
|
|
27238
|
-
var _slicedToArray = function() {
|
|
27186
|
+
var _slicedToArray = /* @__PURE__ */ function() {
|
|
27239
27187
|
function sliceIterator(arr, i) {
|
|
27240
27188
|
var _arr = [];
|
|
27241
27189
|
var _n = true;
|
|
@@ -27271,7 +27219,7 @@ var quill = { exports: {} };
|
|
|
27271
27219
|
}
|
|
27272
27220
|
};
|
|
27273
27221
|
}();
|
|
27274
|
-
var _createClass = function() {
|
|
27222
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
27275
27223
|
function defineProperties(target2, props) {
|
|
27276
27224
|
for (var i = 0; i < props.length; i++) {
|
|
27277
27225
|
var descriptor = props[i];
|
|
@@ -27927,7 +27875,7 @@ var quill = { exports: {} };
|
|
|
27927
27875
|
Object.defineProperty(exports3, "__esModule", {
|
|
27928
27876
|
value: true
|
|
27929
27877
|
});
|
|
27930
|
-
var _createClass = function() {
|
|
27878
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
27931
27879
|
function defineProperties(target2, props) {
|
|
27932
27880
|
for (var i = 0; i < props.length; i++) {
|
|
27933
27881
|
var descriptor = props[i];
|
|
@@ -28101,7 +28049,7 @@ var quill = { exports: {} };
|
|
|
28101
28049
|
Object.defineProperty(exports3, "__esModule", {
|
|
28102
28050
|
value: true
|
|
28103
28051
|
});
|
|
28104
|
-
var _createClass = function() {
|
|
28052
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
28105
28053
|
function defineProperties(target2, props) {
|
|
28106
28054
|
for (var i = 0; i < props.length; i++) {
|
|
28107
28055
|
var descriptor = props[i];
|
|
@@ -28431,7 +28379,7 @@ var quill = { exports: {} };
|
|
|
28431
28379
|
value: true
|
|
28432
28380
|
});
|
|
28433
28381
|
exports3.default = exports3.Code = void 0;
|
|
28434
|
-
var _slicedToArray = function() {
|
|
28382
|
+
var _slicedToArray = /* @__PURE__ */ function() {
|
|
28435
28383
|
function sliceIterator(arr, i) {
|
|
28436
28384
|
var _arr = [];
|
|
28437
28385
|
var _n = true;
|
|
@@ -28467,7 +28415,7 @@ var quill = { exports: {} };
|
|
|
28467
28415
|
}
|
|
28468
28416
|
};
|
|
28469
28417
|
}();
|
|
28470
|
-
var _createClass = function() {
|
|
28418
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
28471
28419
|
function defineProperties(target2, props) {
|
|
28472
28420
|
for (var i = 0; i < props.length; i++) {
|
|
28473
28421
|
var descriptor = props[i];
|
|
@@ -28687,7 +28635,7 @@ var quill = { exports: {} };
|
|
|
28687
28635
|
} : function(obj) {
|
|
28688
28636
|
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
28689
28637
|
};
|
|
28690
|
-
var _slicedToArray = function() {
|
|
28638
|
+
var _slicedToArray = /* @__PURE__ */ function() {
|
|
28691
28639
|
function sliceIterator(arr, i) {
|
|
28692
28640
|
var _arr = [];
|
|
28693
28641
|
var _n = true;
|
|
@@ -28723,7 +28671,7 @@ var quill = { exports: {} };
|
|
|
28723
28671
|
}
|
|
28724
28672
|
};
|
|
28725
28673
|
}();
|
|
28726
|
-
var _createClass = function() {
|
|
28674
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
28727
28675
|
function defineProperties(target2, props) {
|
|
28728
28676
|
for (var i = 0; i < props.length; i++) {
|
|
28729
28677
|
var descriptor = props[i];
|
|
@@ -29065,7 +29013,7 @@ var quill = { exports: {} };
|
|
|
29065
29013
|
value: true
|
|
29066
29014
|
});
|
|
29067
29015
|
exports3.default = exports3.Range = void 0;
|
|
29068
|
-
var _slicedToArray = function() {
|
|
29016
|
+
var _slicedToArray = /* @__PURE__ */ function() {
|
|
29069
29017
|
function sliceIterator(arr, i) {
|
|
29070
29018
|
var _arr = [];
|
|
29071
29019
|
var _n = true;
|
|
@@ -29101,7 +29049,7 @@ var quill = { exports: {} };
|
|
|
29101
29049
|
}
|
|
29102
29050
|
};
|
|
29103
29051
|
}();
|
|
29104
|
-
var _createClass = function() {
|
|
29052
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
29105
29053
|
function defineProperties(target2, props) {
|
|
29106
29054
|
for (var i = 0; i < props.length; i++) {
|
|
29107
29055
|
var descriptor = props[i];
|
|
@@ -29551,7 +29499,7 @@ var quill = { exports: {} };
|
|
|
29551
29499
|
Object.defineProperty(exports3, "__esModule", {
|
|
29552
29500
|
value: true
|
|
29553
29501
|
});
|
|
29554
|
-
var _createClass = function() {
|
|
29502
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
29555
29503
|
function defineProperties(target2, props) {
|
|
29556
29504
|
for (var i = 0; i < props.length; i++) {
|
|
29557
29505
|
var descriptor = props[i];
|
|
@@ -30400,7 +30348,7 @@ var quill = { exports: {} };
|
|
|
30400
30348
|
Object.defineProperty(exports3, "__esModule", {
|
|
30401
30349
|
value: true
|
|
30402
30350
|
});
|
|
30403
|
-
var _slicedToArray = function() {
|
|
30351
|
+
var _slicedToArray = /* @__PURE__ */ function() {
|
|
30404
30352
|
function sliceIterator(arr, i) {
|
|
30405
30353
|
var _arr = [];
|
|
30406
30354
|
var _n = true;
|
|
@@ -30436,7 +30384,7 @@ var quill = { exports: {} };
|
|
|
30436
30384
|
}
|
|
30437
30385
|
};
|
|
30438
30386
|
}();
|
|
30439
|
-
var _createClass = function() {
|
|
30387
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
30440
30388
|
function defineProperties(target2, props) {
|
|
30441
30389
|
for (var i = 0; i < props.length; i++) {
|
|
30442
30390
|
var descriptor = props[i];
|
|
@@ -30711,7 +30659,7 @@ var quill = { exports: {} };
|
|
|
30711
30659
|
} : function(obj) {
|
|
30712
30660
|
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
30713
30661
|
};
|
|
30714
|
-
var _slicedToArray = function() {
|
|
30662
|
+
var _slicedToArray = /* @__PURE__ */ function() {
|
|
30715
30663
|
function sliceIterator(arr, i) {
|
|
30716
30664
|
var _arr = [];
|
|
30717
30665
|
var _n = true;
|
|
@@ -30747,7 +30695,7 @@ var quill = { exports: {} };
|
|
|
30747
30695
|
}
|
|
30748
30696
|
};
|
|
30749
30697
|
}();
|
|
30750
|
-
var _createClass = function() {
|
|
30698
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
30751
30699
|
function defineProperties(target2, props) {
|
|
30752
30700
|
for (var i = 0; i < props.length; i++) {
|
|
30753
30701
|
var descriptor = props[i];
|
|
@@ -31300,7 +31248,7 @@ var quill = { exports: {} };
|
|
|
31300
31248
|
Object.defineProperty(exports3, "__esModule", {
|
|
31301
31249
|
value: true
|
|
31302
31250
|
});
|
|
31303
|
-
var _slicedToArray = function() {
|
|
31251
|
+
var _slicedToArray = /* @__PURE__ */ function() {
|
|
31304
31252
|
function sliceIterator(arr, i) {
|
|
31305
31253
|
var _arr = [];
|
|
31306
31254
|
var _n = true;
|
|
@@ -31357,7 +31305,7 @@ var quill = { exports: {} };
|
|
|
31357
31305
|
return getter.call(receiver);
|
|
31358
31306
|
}
|
|
31359
31307
|
};
|
|
31360
|
-
var _createClass = function() {
|
|
31308
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
31361
31309
|
function defineProperties(target2, props) {
|
|
31362
31310
|
for (var i = 0; i < props.length; i++) {
|
|
31363
31311
|
var descriptor = props[i];
|
|
@@ -31588,7 +31536,7 @@ var quill = { exports: {} };
|
|
|
31588
31536
|
value: true
|
|
31589
31537
|
});
|
|
31590
31538
|
exports3.ColorStyle = exports3.ColorClass = exports3.ColorAttributor = void 0;
|
|
31591
|
-
var _createClass = function() {
|
|
31539
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
31592
31540
|
function defineProperties(target2, props) {
|
|
31593
31541
|
for (var i = 0; i < props.length; i++) {
|
|
31594
31542
|
var descriptor = props[i];
|
|
@@ -31689,7 +31637,7 @@ var quill = { exports: {} };
|
|
|
31689
31637
|
value: true
|
|
31690
31638
|
});
|
|
31691
31639
|
exports3.sanitize = exports3.default = void 0;
|
|
31692
|
-
var _createClass = function() {
|
|
31640
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
31693
31641
|
function defineProperties(target2, props) {
|
|
31694
31642
|
for (var i = 0; i < props.length; i++) {
|
|
31695
31643
|
var descriptor = props[i];
|
|
@@ -31814,7 +31762,7 @@ var quill = { exports: {} };
|
|
|
31814
31762
|
} : function(obj) {
|
|
31815
31763
|
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
31816
31764
|
};
|
|
31817
|
-
var _createClass = function() {
|
|
31765
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
31818
31766
|
function defineProperties(target2, props) {
|
|
31819
31767
|
for (var i = 0; i < props.length; i++) {
|
|
31820
31768
|
var descriptor = props[i];
|
|
@@ -32436,7 +32384,7 @@ var quill = { exports: {} };
|
|
|
32436
32384
|
Object.defineProperty(exports3, "__esModule", {
|
|
32437
32385
|
value: true
|
|
32438
32386
|
});
|
|
32439
|
-
var _createClass = function() {
|
|
32387
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
32440
32388
|
function defineProperties(target2, props) {
|
|
32441
32389
|
for (var i = 0; i < props.length; i++) {
|
|
32442
32390
|
var descriptor = props[i];
|
|
@@ -32501,7 +32449,7 @@ var quill = { exports: {} };
|
|
|
32501
32449
|
Object.defineProperty(exports3, "__esModule", {
|
|
32502
32450
|
value: true
|
|
32503
32451
|
});
|
|
32504
|
-
var _createClass = function() {
|
|
32452
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
32505
32453
|
function defineProperties(target2, props) {
|
|
32506
32454
|
for (var i = 0; i < props.length; i++) {
|
|
32507
32455
|
var descriptor = props[i];
|
|
@@ -32726,7 +32674,7 @@ var quill = { exports: {} };
|
|
|
32726
32674
|
value: true
|
|
32727
32675
|
});
|
|
32728
32676
|
exports3.FontClass = exports3.FontStyle = void 0;
|
|
32729
|
-
var _createClass = function() {
|
|
32677
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
32730
32678
|
function defineProperties(target2, props) {
|
|
32731
32679
|
for (var i = 0; i < props.length; i++) {
|
|
32732
32680
|
var descriptor = props[i];
|
|
@@ -32896,7 +32844,7 @@ var quill = { exports: {} };
|
|
|
32896
32844
|
value: true
|
|
32897
32845
|
});
|
|
32898
32846
|
exports3.getLastChangeIndex = exports3.default = void 0;
|
|
32899
|
-
var _createClass = function() {
|
|
32847
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
32900
32848
|
function defineProperties(target2, props) {
|
|
32901
32849
|
for (var i = 0; i < props.length; i++) {
|
|
32902
32850
|
var descriptor = props[i];
|
|
@@ -33079,7 +33027,7 @@ var quill = { exports: {} };
|
|
|
33079
33027
|
value: true
|
|
33080
33028
|
});
|
|
33081
33029
|
exports3.default = exports3.BaseTooltip = void 0;
|
|
33082
|
-
var _createClass = function() {
|
|
33030
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
33083
33031
|
function defineProperties(target2, props) {
|
|
33084
33032
|
for (var i = 0; i < props.length; i++) {
|
|
33085
33033
|
var descriptor = props[i];
|
|
@@ -34805,7 +34753,7 @@ var quill = { exports: {} };
|
|
|
34805
34753
|
} : function(obj) {
|
|
34806
34754
|
return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj;
|
|
34807
34755
|
};
|
|
34808
|
-
var _slicedToArray = function() {
|
|
34756
|
+
var _slicedToArray = /* @__PURE__ */ function() {
|
|
34809
34757
|
function sliceIterator(arr, i) {
|
|
34810
34758
|
var _arr = [];
|
|
34811
34759
|
var _n = true;
|
|
@@ -34841,7 +34789,7 @@ var quill = { exports: {} };
|
|
|
34841
34789
|
}
|
|
34842
34790
|
};
|
|
34843
34791
|
}();
|
|
34844
|
-
var _createClass = function() {
|
|
34792
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
34845
34793
|
function defineProperties(target2, props) {
|
|
34846
34794
|
for (var i = 0; i < props.length; i++) {
|
|
34847
34795
|
var descriptor = props[i];
|
|
@@ -35230,7 +35178,7 @@ var quill = { exports: {} };
|
|
|
35230
35178
|
Object.defineProperty(exports3, "__esModule", {
|
|
35231
35179
|
value: true
|
|
35232
35180
|
});
|
|
35233
|
-
var _createClass = function() {
|
|
35181
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
35234
35182
|
function defineProperties(target2, props) {
|
|
35235
35183
|
for (var i = 0; i < props.length; i++) {
|
|
35236
35184
|
var descriptor = props[i];
|
|
@@ -35332,7 +35280,7 @@ var quill = { exports: {} };
|
|
|
35332
35280
|
value: true
|
|
35333
35281
|
});
|
|
35334
35282
|
exports3.addControls = exports3.default = void 0;
|
|
35335
|
-
var _slicedToArray = function() {
|
|
35283
|
+
var _slicedToArray = /* @__PURE__ */ function() {
|
|
35336
35284
|
function sliceIterator(arr, i) {
|
|
35337
35285
|
var _arr = [];
|
|
35338
35286
|
var _n = true;
|
|
@@ -35368,7 +35316,7 @@ var quill = { exports: {} };
|
|
|
35368
35316
|
}
|
|
35369
35317
|
};
|
|
35370
35318
|
}();
|
|
35371
|
-
var _createClass = function() {
|
|
35319
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
35372
35320
|
function defineProperties(target2, props) {
|
|
35373
35321
|
for (var i = 0; i < props.length; i++) {
|
|
35374
35322
|
var descriptor = props[i];
|
|
@@ -35692,7 +35640,7 @@ var quill = { exports: {} };
|
|
|
35692
35640
|
Object.defineProperty(exports3, "__esModule", {
|
|
35693
35641
|
value: true
|
|
35694
35642
|
});
|
|
35695
|
-
var _createClass = function() {
|
|
35643
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
35696
35644
|
function defineProperties(target2, props) {
|
|
35697
35645
|
for (var i = 0; i < props.length; i++) {
|
|
35698
35646
|
var descriptor = props[i];
|
|
@@ -35800,7 +35748,7 @@ var quill = { exports: {} };
|
|
|
35800
35748
|
Object.defineProperty(exports3, "__esModule", {
|
|
35801
35749
|
value: true
|
|
35802
35750
|
});
|
|
35803
|
-
var _createClass = function() {
|
|
35751
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
35804
35752
|
function defineProperties(target2, props) {
|
|
35805
35753
|
for (var i = 0; i < props.length; i++) {
|
|
35806
35754
|
var descriptor = props[i];
|
|
@@ -35895,7 +35843,7 @@ var quill = { exports: {} };
|
|
|
35895
35843
|
Object.defineProperty(exports3, "__esModule", {
|
|
35896
35844
|
value: true
|
|
35897
35845
|
});
|
|
35898
|
-
var _createClass = function() {
|
|
35846
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
35899
35847
|
function defineProperties(target2, props) {
|
|
35900
35848
|
for (var i = 0; i < props.length; i++) {
|
|
35901
35849
|
var descriptor = props[i];
|
|
@@ -35983,7 +35931,7 @@ var quill = { exports: {} };
|
|
|
35983
35931
|
Object.defineProperty(exports3, "__esModule", {
|
|
35984
35932
|
value: true
|
|
35985
35933
|
});
|
|
35986
|
-
var _slicedToArray = function() {
|
|
35934
|
+
var _slicedToArray = /* @__PURE__ */ function() {
|
|
35987
35935
|
function sliceIterator(arr, i) {
|
|
35988
35936
|
var _arr = [];
|
|
35989
35937
|
var _n = true;
|
|
@@ -36040,7 +35988,7 @@ var quill = { exports: {} };
|
|
|
36040
35988
|
return getter.call(receiver);
|
|
36041
35989
|
}
|
|
36042
35990
|
};
|
|
36043
|
-
var _createClass = function() {
|
|
35991
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
36044
35992
|
function defineProperties(target2, props) {
|
|
36045
35993
|
for (var i = 0; i < props.length; i++) {
|
|
36046
35994
|
var descriptor = props[i];
|
|
@@ -36325,7 +36273,7 @@ var quill = { exports: {} };
|
|
|
36325
36273
|
value: true
|
|
36326
36274
|
});
|
|
36327
36275
|
exports3.IndentClass = void 0;
|
|
36328
|
-
var _createClass = function() {
|
|
36276
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
36329
36277
|
function defineProperties(target2, props) {
|
|
36330
36278
|
for (var i = 0; i < props.length; i++) {
|
|
36331
36279
|
var descriptor = props[i];
|
|
@@ -36476,7 +36424,7 @@ var quill = { exports: {} };
|
|
|
36476
36424
|
Object.defineProperty(exports3, "__esModule", {
|
|
36477
36425
|
value: true
|
|
36478
36426
|
});
|
|
36479
|
-
var _createClass = function() {
|
|
36427
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
36480
36428
|
function defineProperties(target2, props) {
|
|
36481
36429
|
for (var i = 0; i < props.length; i++) {
|
|
36482
36430
|
var descriptor = props[i];
|
|
@@ -36544,7 +36492,7 @@ var quill = { exports: {} };
|
|
|
36544
36492
|
value: true
|
|
36545
36493
|
});
|
|
36546
36494
|
exports3.default = exports3.ListItem = void 0;
|
|
36547
|
-
var _createClass = function() {
|
|
36495
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
36548
36496
|
function defineProperties(target2, props) {
|
|
36549
36497
|
for (var i = 0; i < props.length; i++) {
|
|
36550
36498
|
var descriptor = props[i];
|
|
@@ -36813,7 +36761,7 @@ var quill = { exports: {} };
|
|
|
36813
36761
|
Object.defineProperty(exports3, "__esModule", {
|
|
36814
36762
|
value: true
|
|
36815
36763
|
});
|
|
36816
|
-
var _createClass = function() {
|
|
36764
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
36817
36765
|
function defineProperties(target2, props) {
|
|
36818
36766
|
for (var i = 0; i < props.length; i++) {
|
|
36819
36767
|
var descriptor = props[i];
|
|
@@ -37000,7 +36948,7 @@ var quill = { exports: {} };
|
|
|
37000
36948
|
Object.defineProperty(exports3, "__esModule", {
|
|
37001
36949
|
value: true
|
|
37002
36950
|
});
|
|
37003
|
-
var _createClass = function() {
|
|
36951
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
37004
36952
|
function defineProperties(target2, props) {
|
|
37005
36953
|
for (var i = 0; i < props.length; i++) {
|
|
37006
36954
|
var descriptor = props[i];
|
|
@@ -37132,7 +37080,7 @@ var quill = { exports: {} };
|
|
|
37132
37080
|
Object.defineProperty(exports3, "__esModule", {
|
|
37133
37081
|
value: true
|
|
37134
37082
|
});
|
|
37135
|
-
var _createClass = function() {
|
|
37083
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
37136
37084
|
function defineProperties(target2, props) {
|
|
37137
37085
|
for (var i = 0; i < props.length; i++) {
|
|
37138
37086
|
var descriptor = props[i];
|
|
@@ -37261,7 +37209,7 @@ var quill = { exports: {} };
|
|
|
37261
37209
|
value: true
|
|
37262
37210
|
});
|
|
37263
37211
|
exports3.default = exports3.FormulaBlot = void 0;
|
|
37264
|
-
var _createClass = function() {
|
|
37212
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
37265
37213
|
function defineProperties(target2, props) {
|
|
37266
37214
|
for (var i = 0; i < props.length; i++) {
|
|
37267
37215
|
var descriptor = props[i];
|
|
@@ -37387,7 +37335,7 @@ var quill = { exports: {} };
|
|
|
37387
37335
|
value: true
|
|
37388
37336
|
});
|
|
37389
37337
|
exports3.default = exports3.CodeToken = exports3.CodeBlock = void 0;
|
|
37390
|
-
var _createClass = function() {
|
|
37338
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
37391
37339
|
function defineProperties(target2, props) {
|
|
37392
37340
|
for (var i = 0; i < props.length; i++) {
|
|
37393
37341
|
var descriptor = props[i];
|
|
@@ -37738,7 +37686,7 @@ var quill = { exports: {} };
|
|
|
37738
37686
|
return getter.call(receiver);
|
|
37739
37687
|
}
|
|
37740
37688
|
};
|
|
37741
|
-
var _createClass = function() {
|
|
37689
|
+
var _createClass = /* @__PURE__ */ function() {
|
|
37742
37690
|
function defineProperties(target2, props) {
|
|
37743
37691
|
for (var i = 0; i < props.length; i++) {
|
|
37744
37692
|
var descriptor = props[i];
|
|
@@ -38651,7 +38599,7 @@ lodash.exports;
|
|
|
38651
38599
|
}
|
|
38652
38600
|
return new LodashWrapper(value);
|
|
38653
38601
|
}
|
|
38654
|
-
var baseCreate = function() {
|
|
38602
|
+
var baseCreate = /* @__PURE__ */ function() {
|
|
38655
38603
|
function object() {
|
|
38656
38604
|
}
|
|
38657
38605
|
return function(proto2) {
|
|
@@ -39288,12 +39236,12 @@ lodash.exports;
|
|
|
39288
39236
|
caches[othIndex] = !comparator && (iteratee2 || length >= 120 && array.length >= 120) ? new SetCache(othIndex && array) : undefined$1;
|
|
39289
39237
|
}
|
|
39290
39238
|
array = arrays[0];
|
|
39291
|
-
var index2 = -1,
|
|
39239
|
+
var index2 = -1, seen = caches[0];
|
|
39292
39240
|
outer:
|
|
39293
39241
|
while (++index2 < length && result2.length < maxLength) {
|
|
39294
39242
|
var value = array[index2], computed = iteratee2 ? iteratee2(value) : value;
|
|
39295
39243
|
value = comparator || value !== 0 ? value : 0;
|
|
39296
|
-
if (!(
|
|
39244
|
+
if (!(seen ? cacheHas(seen, computed) : includes2(result2, computed, comparator))) {
|
|
39297
39245
|
othIndex = othLength;
|
|
39298
39246
|
while (--othIndex) {
|
|
39299
39247
|
var cache = caches[othIndex];
|
|
@@ -39301,8 +39249,8 @@ lodash.exports;
|
|
|
39301
39249
|
continue outer;
|
|
39302
39250
|
}
|
|
39303
39251
|
}
|
|
39304
|
-
if (
|
|
39305
|
-
|
|
39252
|
+
if (seen) {
|
|
39253
|
+
seen.push(computed);
|
|
39306
39254
|
}
|
|
39307
39255
|
result2.push(value);
|
|
39308
39256
|
}
|
|
@@ -39597,18 +39545,18 @@ lodash.exports;
|
|
|
39597
39545
|
};
|
|
39598
39546
|
}
|
|
39599
39547
|
function basePullAll2(array, values2, iteratee2, comparator) {
|
|
39600
|
-
var indexOf3 = comparator ? baseIndexOfWith2 : baseIndexOf2, index2 = -1, length = values2.length,
|
|
39548
|
+
var indexOf3 = comparator ? baseIndexOfWith2 : baseIndexOf2, index2 = -1, length = values2.length, seen = array;
|
|
39601
39549
|
if (array === values2) {
|
|
39602
39550
|
values2 = copyArray2(values2);
|
|
39603
39551
|
}
|
|
39604
39552
|
if (iteratee2) {
|
|
39605
|
-
|
|
39553
|
+
seen = arrayMap2(array, baseUnary2(iteratee2));
|
|
39606
39554
|
}
|
|
39607
39555
|
while (++index2 < length) {
|
|
39608
39556
|
var fromIndex = 0, value = values2[index2], computed = iteratee2 ? iteratee2(value) : value;
|
|
39609
|
-
while ((fromIndex = indexOf3(
|
|
39610
|
-
if (
|
|
39611
|
-
splice2.call(
|
|
39557
|
+
while ((fromIndex = indexOf3(seen, computed, fromIndex, comparator)) > -1) {
|
|
39558
|
+
if (seen !== array) {
|
|
39559
|
+
splice2.call(seen, fromIndex, 1);
|
|
39612
39560
|
}
|
|
39613
39561
|
splice2.call(array, fromIndex, 1);
|
|
39614
39562
|
}
|
|
@@ -39779,8 +39727,8 @@ lodash.exports;
|
|
|
39779
39727
|
var index2 = -1, length = array.length, resIndex = 0, result2 = [];
|
|
39780
39728
|
while (++index2 < length) {
|
|
39781
39729
|
var value = array[index2], computed = iteratee2 ? iteratee2(value) : value;
|
|
39782
|
-
if (!index2 || !eq(computed,
|
|
39783
|
-
var
|
|
39730
|
+
if (!index2 || !eq(computed, seen)) {
|
|
39731
|
+
var seen = computed;
|
|
39784
39732
|
result2[resIndex++] = value === 0 ? 0 : value;
|
|
39785
39733
|
}
|
|
39786
39734
|
}
|
|
@@ -39809,7 +39757,7 @@ lodash.exports;
|
|
|
39809
39757
|
return result2 == "0" && 1 / value == -INFINITY2 ? "-0" : result2;
|
|
39810
39758
|
}
|
|
39811
39759
|
function baseUniq(array, iteratee2, comparator) {
|
|
39812
|
-
var index2 = -1, includes2 = arrayIncludes, length = array.length, isCommon = true, result2 = [],
|
|
39760
|
+
var index2 = -1, includes2 = arrayIncludes, length = array.length, isCommon = true, result2 = [], seen = result2;
|
|
39813
39761
|
if (comparator) {
|
|
39814
39762
|
isCommon = false;
|
|
39815
39763
|
includes2 = arrayIncludesWith;
|
|
@@ -39820,28 +39768,28 @@ lodash.exports;
|
|
|
39820
39768
|
}
|
|
39821
39769
|
isCommon = false;
|
|
39822
39770
|
includes2 = cacheHas;
|
|
39823
|
-
|
|
39771
|
+
seen = new SetCache();
|
|
39824
39772
|
} else {
|
|
39825
|
-
|
|
39773
|
+
seen = iteratee2 ? [] : result2;
|
|
39826
39774
|
}
|
|
39827
39775
|
outer:
|
|
39828
39776
|
while (++index2 < length) {
|
|
39829
39777
|
var value = array[index2], computed = iteratee2 ? iteratee2(value) : value;
|
|
39830
39778
|
value = comparator || value !== 0 ? value : 0;
|
|
39831
39779
|
if (isCommon && computed === computed) {
|
|
39832
|
-
var seenIndex =
|
|
39780
|
+
var seenIndex = seen.length;
|
|
39833
39781
|
while (seenIndex--) {
|
|
39834
|
-
if (
|
|
39782
|
+
if (seen[seenIndex] === computed) {
|
|
39835
39783
|
continue outer;
|
|
39836
39784
|
}
|
|
39837
39785
|
}
|
|
39838
39786
|
if (iteratee2) {
|
|
39839
|
-
|
|
39787
|
+
seen.push(computed);
|
|
39840
39788
|
}
|
|
39841
39789
|
result2.push(value);
|
|
39842
|
-
} else if (!includes2(
|
|
39843
|
-
if (
|
|
39844
|
-
|
|
39790
|
+
} else if (!includes2(seen, computed, comparator)) {
|
|
39791
|
+
if (seen !== result2) {
|
|
39792
|
+
seen.push(computed);
|
|
39845
39793
|
}
|
|
39846
39794
|
result2.push(value);
|
|
39847
39795
|
}
|
|
@@ -40488,7 +40436,7 @@ lodash.exports;
|
|
|
40488
40436
|
if (arrStacked && othStacked) {
|
|
40489
40437
|
return arrStacked == other && othStacked == array;
|
|
40490
40438
|
}
|
|
40491
|
-
var index2 = -1, result2 = true,
|
|
40439
|
+
var index2 = -1, result2 = true, seen = bitmask & COMPARE_UNORDERED_FLAG ? new SetCache() : undefined$1;
|
|
40492
40440
|
stack.set(array, other);
|
|
40493
40441
|
stack.set(other, array);
|
|
40494
40442
|
while (++index2 < arrLength) {
|
|
@@ -40503,10 +40451,10 @@ lodash.exports;
|
|
|
40503
40451
|
result2 = false;
|
|
40504
40452
|
break;
|
|
40505
40453
|
}
|
|
40506
|
-
if (
|
|
40454
|
+
if (seen) {
|
|
40507
40455
|
if (!arraySome(other, function(othValue2, othIndex) {
|
|
40508
|
-
if (!cacheHas(
|
|
40509
|
-
return
|
|
40456
|
+
if (!cacheHas(seen, othIndex) && (arrValue === othValue2 || equalFunc(arrValue, othValue2, bitmask, customizer, stack))) {
|
|
40457
|
+
return seen.push(othIndex);
|
|
40510
40458
|
}
|
|
40511
40459
|
})) {
|
|
40512
40460
|
result2 = false;
|
|
@@ -41958,7 +41906,7 @@ lodash.exports;
|
|
|
41958
41906
|
var gte = createRelationalOperation(function(value, other) {
|
|
41959
41907
|
return value >= other;
|
|
41960
41908
|
});
|
|
41961
|
-
var isArguments2 = baseIsArguments2(function() {
|
|
41909
|
+
var isArguments2 = baseIsArguments2(/* @__PURE__ */ function() {
|
|
41962
41910
|
return arguments;
|
|
41963
41911
|
}()) ? baseIsArguments2 : function(value) {
|
|
41964
41912
|
return isObjectLike2(value) && hasOwnProperty2.call(value, "callee") && !propertyIsEnumerable2.call(value, "callee");
|
|
@@ -43594,11 +43542,11 @@ var fromDelta_converters = {
|
|
|
43594
43542
|
function applyStyles(attrs2, next2) {
|
|
43595
43543
|
var first = [], then = [];
|
|
43596
43544
|
attrs2 = attrs2 || {};
|
|
43597
|
-
var tag2 = el2,
|
|
43545
|
+
var tag2 = el2, seen = {};
|
|
43598
43546
|
while (tag2._format) {
|
|
43599
|
-
|
|
43547
|
+
seen[tag2._format] = true;
|
|
43600
43548
|
if (!attrs2[tag2._format]) {
|
|
43601
|
-
for (var k2 in
|
|
43549
|
+
for (var k2 in seen) {
|
|
43602
43550
|
delete activeInline[k2];
|
|
43603
43551
|
}
|
|
43604
43552
|
el2 = tag2.parent();
|
|
@@ -50680,7 +50628,7 @@ var baseIsArguments = _baseIsArguments, isObjectLike$1 = isObjectLike_1;
|
|
|
50680
50628
|
var objectProto$1 = Object.prototype;
|
|
50681
50629
|
var hasOwnProperty$1 = objectProto$1.hasOwnProperty;
|
|
50682
50630
|
var propertyIsEnumerable = objectProto$1.propertyIsEnumerable;
|
|
50683
|
-
var isArguments$1 = baseIsArguments(function() {
|
|
50631
|
+
var isArguments$1 = baseIsArguments(/* @__PURE__ */ function() {
|
|
50684
50632
|
return arguments;
|
|
50685
50633
|
}()) ? baseIsArguments : function(value) {
|
|
50686
50634
|
return isObjectLike$1(value) && hasOwnProperty$1.call(value, "callee") && !propertyIsEnumerable.call(value, "callee");
|
|
@@ -50951,7 +50899,7 @@ const RichtextMixin = {
|
|
|
50951
50899
|
quill: null
|
|
50952
50900
|
},
|
|
50953
50901
|
created() {
|
|
50954
|
-
|
|
50902
|
+
importInlineCSS("quill", () => import("./quill.snow-gf_AguUg.js"));
|
|
50955
50903
|
this.quill = null;
|
|
50956
50904
|
this.listCallbacks.push(this.addCallback.bind(this));
|
|
50957
50905
|
},
|
|
@@ -53148,9 +53096,15 @@ const SolidForm = {
|
|
|
53148
53096
|
let value = this.value;
|
|
53149
53097
|
if (this.resource && !((_b = (_a = this.resource).isContainer) == null ? void 0 : _b.call(_a))) {
|
|
53150
53098
|
for (let predicate of Object.keys(this.value)) {
|
|
53151
|
-
|
|
53099
|
+
let object = await this.resource[predicate];
|
|
53100
|
+
if (!object) {
|
|
53101
|
+
object = await this.resource[store.getExpandedPredicate(predicate, this.context)];
|
|
53102
|
+
}
|
|
53152
53103
|
if (object && object["@id"] && !value[predicate]["@id"])
|
|
53153
53104
|
value[predicate]["@id"] = object["@id"];
|
|
53105
|
+
if (object && !object["@id"] && Array.isArray(object) && value[predicate].length == 0 && object.length > 0) {
|
|
53106
|
+
value[predicate] = object;
|
|
53107
|
+
}
|
|
53154
53108
|
}
|
|
53155
53109
|
}
|
|
53156
53110
|
return transformArrayToContainer(value);
|
|
@@ -53978,10 +53932,10 @@ const SolidMap = {
|
|
|
53978
53932
|
hasBeenResetOnce: false
|
|
53979
53933
|
},
|
|
53980
53934
|
created() {
|
|
53981
|
-
|
|
53982
|
-
|
|
53983
|
-
|
|
53984
|
-
|
|
53935
|
+
importInlineCSS("leaflet", () => import("./leaflet-2MZa2u07.js"));
|
|
53936
|
+
importInlineCSS("default-theme", () => import("./default-theme-oAPinkzv.js"));
|
|
53937
|
+
importInlineCSS("marker-cluster", () => import("./MarkerCluster-96Sa2BSd.js"));
|
|
53938
|
+
importInlineCSS("marker-cluster-default", () => import("./MarkerCluster.Default-CpBAgxXL.js"));
|
|
53985
53939
|
document.body.addEventListener(
|
|
53986
53940
|
"navigate",
|
|
53987
53941
|
() => setTimeout(() => this.isVisible && !this.hasBeenResetOnce && this.reset())
|
|
@@ -54878,4 +54832,3 @@ export {
|
|
|
54878
54832
|
until,
|
|
54879
54833
|
widgetFactory
|
|
54880
54834
|
};
|
|
54881
|
-
//# sourceMappingURL=index.js.map
|