@tailor-cms/ce-accordion-edit 0.0.9 → 0.0.11
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/index.cjs +170 -171
- package/dist/index.js +170 -171
- package/dist/style.css +177 -140
- package/package.json +3 -3
package/dist/index.cjs
CHANGED
|
@@ -368,12 +368,12 @@ MapCache$3.prototype.has = mapCacheHas;
|
|
|
368
368
|
MapCache$3.prototype.set = mapCacheSet;
|
|
369
369
|
var _MapCache = MapCache$3;
|
|
370
370
|
var ListCache$1 = _ListCache, Map$2 = _Map, MapCache$2 = _MapCache;
|
|
371
|
-
var LARGE_ARRAY_SIZE = 200;
|
|
371
|
+
var LARGE_ARRAY_SIZE$1 = 200;
|
|
372
372
|
function stackSet$1(key, value) {
|
|
373
373
|
var data = this.__data__;
|
|
374
374
|
if (data instanceof ListCache$1) {
|
|
375
375
|
var pairs = data.__data__;
|
|
376
|
-
if (!Map$2 || pairs.length < LARGE_ARRAY_SIZE - 1) {
|
|
376
|
+
if (!Map$2 || pairs.length < LARGE_ARRAY_SIZE$1 - 1) {
|
|
377
377
|
pairs.push([key, value]);
|
|
378
378
|
this.size = ++data.size;
|
|
379
379
|
return this;
|
|
@@ -1657,15 +1657,15 @@ var stringToPath$1 = memoizeCapped(function(string2) {
|
|
|
1657
1657
|
return result;
|
|
1658
1658
|
});
|
|
1659
1659
|
var _stringToPath = stringToPath$1;
|
|
1660
|
-
function arrayMap$
|
|
1660
|
+
function arrayMap$6(array2, iteratee) {
|
|
1661
1661
|
var index2 = -1, length = array2 == null ? 0 : array2.length, result = Array(length);
|
|
1662
1662
|
while (++index2 < length) {
|
|
1663
1663
|
result[index2] = iteratee(array2[index2], index2, array2);
|
|
1664
1664
|
}
|
|
1665
1665
|
return result;
|
|
1666
1666
|
}
|
|
1667
|
-
var _arrayMap = arrayMap$
|
|
1668
|
-
var Symbol$3 = _Symbol, arrayMap$
|
|
1667
|
+
var _arrayMap = arrayMap$6;
|
|
1668
|
+
var Symbol$3 = _Symbol, arrayMap$5 = _arrayMap, isArray$9 = isArray_1, isSymbol$3 = isSymbol_1;
|
|
1669
1669
|
var INFINITY$3 = 1 / 0;
|
|
1670
1670
|
var symbolProto$1 = Symbol$3 ? Symbol$3.prototype : void 0, symbolToString$1 = symbolProto$1 ? symbolProto$1.toString : void 0;
|
|
1671
1671
|
function baseToString$1(value) {
|
|
@@ -1673,7 +1673,7 @@ function baseToString$1(value) {
|
|
|
1673
1673
|
return value;
|
|
1674
1674
|
}
|
|
1675
1675
|
if (isArray$9(value)) {
|
|
1676
|
-
return arrayMap$
|
|
1676
|
+
return arrayMap$5(value, baseToString$1) + "";
|
|
1677
1677
|
}
|
|
1678
1678
|
if (isSymbol$3(value)) {
|
|
1679
1679
|
return symbolToString$1 ? symbolToString$1.call(value) : "";
|
|
@@ -2349,10 +2349,10 @@ function compareMultiple$1(object2, other, orders) {
|
|
|
2349
2349
|
return object2.index - other.index;
|
|
2350
2350
|
}
|
|
2351
2351
|
var _compareMultiple = compareMultiple$1;
|
|
2352
|
-
var arrayMap$
|
|
2352
|
+
var arrayMap$4 = _arrayMap, baseGet$2 = _baseGet, baseIteratee$1 = _baseIteratee, baseMap$1 = _baseMap, baseSortBy = _baseSortBy, baseUnary$2 = _baseUnary, compareMultiple = _compareMultiple, identity$2 = identity_1, isArray$2 = isArray_1;
|
|
2353
2353
|
function baseOrderBy$1(collection, iteratees, orders) {
|
|
2354
2354
|
if (iteratees.length) {
|
|
2355
|
-
iteratees = arrayMap$
|
|
2355
|
+
iteratees = arrayMap$4(iteratees, function(iteratee) {
|
|
2356
2356
|
if (isArray$2(iteratee)) {
|
|
2357
2357
|
return function(value) {
|
|
2358
2358
|
return baseGet$2(value, iteratee.length === 1 ? iteratee[0] : iteratee);
|
|
@@ -2364,9 +2364,9 @@ function baseOrderBy$1(collection, iteratees, orders) {
|
|
|
2364
2364
|
iteratees = [identity$2];
|
|
2365
2365
|
}
|
|
2366
2366
|
var index2 = -1;
|
|
2367
|
-
iteratees = arrayMap$
|
|
2367
|
+
iteratees = arrayMap$4(iteratees, baseUnary$2(baseIteratee$1));
|
|
2368
2368
|
var result = baseMap$1(collection, function(value, key, collection2) {
|
|
2369
|
-
var criteria = arrayMap$
|
|
2369
|
+
var criteria = arrayMap$4(iteratees, function(iteratee) {
|
|
2370
2370
|
return iteratee(value);
|
|
2371
2371
|
});
|
|
2372
2372
|
return { "criteria": criteria, "index": ++index2, "value": value };
|
|
@@ -2554,7 +2554,7 @@ var DiscussionEvents = /* @__PURE__ */ ((DiscussionEvents2) => {
|
|
|
2554
2554
|
return DiscussionEvents2;
|
|
2555
2555
|
})(DiscussionEvents || {});
|
|
2556
2556
|
var discussion_default = DiscussionEvents;
|
|
2557
|
-
const
|
|
2557
|
+
const UserAvatar_vue_vue_type_style_index_0_scoped_45935d71_lang = "";
|
|
2558
2558
|
function Cache(maxSize) {
|
|
2559
2559
|
this._maxSize = maxSize;
|
|
2560
2560
|
this.clear();
|
|
@@ -3886,6 +3886,12 @@ class DateSchema extends Schema$1 {
|
|
|
3886
3886
|
}
|
|
3887
3887
|
}
|
|
3888
3888
|
DateSchema.INVALID_DATE = invalidDate;
|
|
3889
|
+
const useConfirmationDialog = () => {
|
|
3890
|
+
const eventBus = vue.inject("$eventBus");
|
|
3891
|
+
return (opts) => {
|
|
3892
|
+
eventBus.channel("app").emit("showConfirmationModal", opts);
|
|
3893
|
+
};
|
|
3894
|
+
};
|
|
3889
3895
|
function baseSlice$1(array2, start, end) {
|
|
3890
3896
|
var index2 = -1, length = array2.length;
|
|
3891
3897
|
if (start < 0) {
|
|
@@ -3904,10 +3910,10 @@ function baseSlice$1(array2, start, end) {
|
|
|
3904
3910
|
return result;
|
|
3905
3911
|
}
|
|
3906
3912
|
var _baseSlice = baseSlice$1;
|
|
3907
|
-
const
|
|
3908
|
-
const
|
|
3909
|
-
const
|
|
3910
|
-
const
|
|
3913
|
+
const CommentHeader_vue_vue_type_style_index_0_scoped_be7786f0_lang = "";
|
|
3914
|
+
const CommentPreview_vue_vue_type_style_index_0_scoped_40deed1f_lang = "";
|
|
3915
|
+
const index_vue_vue_type_style_index_0_scoped_a3fef950_lang = "";
|
|
3916
|
+
const ThreadList_vue_vue_type_style_index_0_scoped_4ecec4f3_lang = "";
|
|
3911
3917
|
function commonjsRequire(path) {
|
|
3912
3918
|
throw new Error('Could not dynamically require "' + path + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
|
|
3913
3919
|
}
|
|
@@ -4261,18 +4267,12 @@ var pluralize = { exports: {} };
|
|
|
4261
4267
|
return pluralize2;
|
|
4262
4268
|
});
|
|
4263
4269
|
})(pluralize);
|
|
4264
|
-
const
|
|
4265
|
-
const
|
|
4266
|
-
const
|
|
4267
|
-
|
|
4268
|
-
|
|
4269
|
-
|
|
4270
|
-
};
|
|
4271
|
-
};
|
|
4272
|
-
const index_vue_vue_type_style_index_0_scoped_bdbd0b31_lang = "";
|
|
4273
|
-
const ElementDiscussion_vue_vue_type_style_index_0_scoped_fb32ecf9_lang = "";
|
|
4274
|
-
const ContentElement_vue_vue_type_style_index_0_scoped_f2b91b16_lang = "";
|
|
4275
|
-
const ContainedContent_vue_vue_type_style_index_0_scoped_caf26e8d_lang = "";
|
|
4270
|
+
const UnseenDivider_vue_vue_type_style_index_0_scoped_4263ea62_lang = "";
|
|
4271
|
+
const index_vue_vue_type_style_index_0_scoped_07bad38e_lang = "";
|
|
4272
|
+
const index_vue_vue_type_style_index_0_scoped_99396f68_lang = "";
|
|
4273
|
+
const ElementDiscussion_vue_vue_type_style_index_0_scoped_338458c5_lang = "";
|
|
4274
|
+
const ContentElement_vue_vue_type_style_index_0_scoped_383f7426_lang = "";
|
|
4275
|
+
const ContainedContent_vue_vue_type_style_index_0_scoped_c1b775ac_lang = "";
|
|
4276
4276
|
/**!
|
|
4277
4277
|
* Sortable 1.14.0
|
|
4278
4278
|
* @author RubaXa <trash@rubaxa.org>
|
|
@@ -6994,98 +6994,13 @@ vue.defineComponent({
|
|
|
6994
6994
|
}
|
|
6995
6995
|
}
|
|
6996
6996
|
});
|
|
6997
|
-
var arrayMap$
|
|
6997
|
+
var arrayMap$3 = _arrayMap, baseIteratee = _baseIteratee, baseMap = _baseMap, isArray$1 = isArray_1;
|
|
6998
6998
|
function map(collection, iteratee) {
|
|
6999
|
-
var func = isArray$1(collection) ? arrayMap$
|
|
6999
|
+
var func = isArray$1(collection) ? arrayMap$3 : baseMap;
|
|
7000
7000
|
return func(collection, baseIteratee(iteratee));
|
|
7001
7001
|
}
|
|
7002
7002
|
var map_1 = map;
|
|
7003
7003
|
const map$1 = /* @__PURE__ */ getDefaultExportFromCjs(map_1);
|
|
7004
|
-
function baseIsNaN$1(value) {
|
|
7005
|
-
return value !== value;
|
|
7006
|
-
}
|
|
7007
|
-
var _baseIsNaN = baseIsNaN$1;
|
|
7008
|
-
function strictIndexOf$1(array2, value, fromIndex) {
|
|
7009
|
-
var index2 = fromIndex - 1, length = array2.length;
|
|
7010
|
-
while (++index2 < length) {
|
|
7011
|
-
if (array2[index2] === value) {
|
|
7012
|
-
return index2;
|
|
7013
|
-
}
|
|
7014
|
-
}
|
|
7015
|
-
return -1;
|
|
7016
|
-
}
|
|
7017
|
-
var _strictIndexOf = strictIndexOf$1;
|
|
7018
|
-
var baseFindIndex = _baseFindIndex, baseIsNaN = _baseIsNaN, strictIndexOf = _strictIndexOf;
|
|
7019
|
-
function baseIndexOf$2(array2, value, fromIndex) {
|
|
7020
|
-
return value === value ? strictIndexOf(array2, value, fromIndex) : baseFindIndex(array2, baseIsNaN, fromIndex);
|
|
7021
|
-
}
|
|
7022
|
-
var _baseIndexOf = baseIndexOf$2;
|
|
7023
|
-
var baseIndexOf$1 = _baseIndexOf;
|
|
7024
|
-
function arrayIncludes$1(array2, value) {
|
|
7025
|
-
var length = array2 == null ? 0 : array2.length;
|
|
7026
|
-
return !!length && baseIndexOf$1(array2, value, 0) > -1;
|
|
7027
|
-
}
|
|
7028
|
-
var _arrayIncludes = arrayIncludes$1;
|
|
7029
|
-
function arrayIncludesWith$1(array2, value, comparator) {
|
|
7030
|
-
var index2 = -1, length = array2 == null ? 0 : array2.length;
|
|
7031
|
-
while (++index2 < length) {
|
|
7032
|
-
if (comparator(value, array2[index2])) {
|
|
7033
|
-
return true;
|
|
7034
|
-
}
|
|
7035
|
-
}
|
|
7036
|
-
return false;
|
|
7037
|
-
}
|
|
7038
|
-
var _arrayIncludesWith = arrayIncludesWith$1;
|
|
7039
|
-
var SetCache = _SetCache, arrayIncludes = _arrayIncludes, arrayIncludesWith = _arrayIncludesWith, arrayMap$3 = _arrayMap, baseUnary$1 = _baseUnary, cacheHas = _cacheHas;
|
|
7040
|
-
var nativeMin = Math.min;
|
|
7041
|
-
function baseIntersection$1(arrays, iteratee, comparator) {
|
|
7042
|
-
var includes = comparator ? arrayIncludesWith : arrayIncludes, length = arrays[0].length, othLength = arrays.length, othIndex = othLength, caches = Array(othLength), maxLength = Infinity, result = [];
|
|
7043
|
-
while (othIndex--) {
|
|
7044
|
-
var array2 = arrays[othIndex];
|
|
7045
|
-
if (othIndex && iteratee) {
|
|
7046
|
-
array2 = arrayMap$3(array2, baseUnary$1(iteratee));
|
|
7047
|
-
}
|
|
7048
|
-
maxLength = nativeMin(array2.length, maxLength);
|
|
7049
|
-
caches[othIndex] = !comparator && (iteratee || length >= 120 && array2.length >= 120) ? new SetCache(othIndex && array2) : void 0;
|
|
7050
|
-
}
|
|
7051
|
-
array2 = arrays[0];
|
|
7052
|
-
var index2 = -1, seen = caches[0];
|
|
7053
|
-
outer:
|
|
7054
|
-
while (++index2 < length && result.length < maxLength) {
|
|
7055
|
-
var value = array2[index2], computed = iteratee ? iteratee(value) : value;
|
|
7056
|
-
value = comparator || value !== 0 ? value : 0;
|
|
7057
|
-
if (!(seen ? cacheHas(seen, computed) : includes(result, computed, comparator))) {
|
|
7058
|
-
othIndex = othLength;
|
|
7059
|
-
while (--othIndex) {
|
|
7060
|
-
var cache = caches[othIndex];
|
|
7061
|
-
if (!(cache ? cacheHas(cache, computed) : includes(arrays[othIndex], computed, comparator))) {
|
|
7062
|
-
continue outer;
|
|
7063
|
-
}
|
|
7064
|
-
}
|
|
7065
|
-
if (seen) {
|
|
7066
|
-
seen.push(computed);
|
|
7067
|
-
}
|
|
7068
|
-
result.push(value);
|
|
7069
|
-
}
|
|
7070
|
-
}
|
|
7071
|
-
return result;
|
|
7072
|
-
}
|
|
7073
|
-
var _baseIntersection = baseIntersection$1;
|
|
7074
|
-
var isArrayLike$1 = isArrayLike_1, isObjectLike$2 = isObjectLike_1;
|
|
7075
|
-
function isArrayLikeObject$1(value) {
|
|
7076
|
-
return isObjectLike$2(value) && isArrayLike$1(value);
|
|
7077
|
-
}
|
|
7078
|
-
var isArrayLikeObject_1 = isArrayLikeObject$1;
|
|
7079
|
-
var isArrayLikeObject = isArrayLikeObject_1;
|
|
7080
|
-
function castArrayLikeObject$1(value) {
|
|
7081
|
-
return isArrayLikeObject(value) ? value : [];
|
|
7082
|
-
}
|
|
7083
|
-
var _castArrayLikeObject = castArrayLikeObject$1;
|
|
7084
|
-
var arrayMap$2 = _arrayMap, baseIntersection = _baseIntersection, baseRest$1 = _baseRest, castArrayLikeObject = _castArrayLikeObject;
|
|
7085
|
-
baseRest$1(function(arrays) {
|
|
7086
|
-
var mapped = arrayMap$2(arrays, castArrayLikeObject);
|
|
7087
|
-
return mapped.length && mapped[0] === arrays[0] ? baseIntersection(mapped) : [];
|
|
7088
|
-
});
|
|
7089
7004
|
var assignValue = _assignValue, castPath$3 = _castPath, isIndex = _isIndex, isObject = isObject_1, toKey$1 = _toKey;
|
|
7090
7005
|
function baseSet$1(object2, path, value, customizer) {
|
|
7091
7006
|
if (!isObject(object2)) {
|
|
@@ -7147,9 +7062,8 @@ var pick = flatRest$1(function(object2, paths) {
|
|
|
7147
7062
|
});
|
|
7148
7063
|
var pick_1 = pick;
|
|
7149
7064
|
const pick$1 = /* @__PURE__ */ getDefaultExportFromCjs(pick_1);
|
|
7150
|
-
const
|
|
7151
|
-
const
|
|
7152
|
-
const SelectActivity_vue_vue_type_style_index_0_scoped_69a3da5b_lang = "";
|
|
7065
|
+
const ContentElement_vue_vue_type_style_index_0_scoped_30027808_lang = "";
|
|
7066
|
+
const TailorDialog_vue_vue_type_style_index_0_scoped_7f696b46_lang = "";
|
|
7153
7067
|
var yoctodelay = (d) => new Promise((r) => setTimeout(r, d));
|
|
7154
7068
|
const delay = /* @__PURE__ */ getDefaultExportFromCjs(yoctodelay);
|
|
7155
7069
|
async function pMinDelay(promise, minimumDelay, { delayRejection = true } = {}) {
|
|
@@ -7169,9 +7083,45 @@ const useLoader = () => {
|
|
|
7169
7083
|
};
|
|
7170
7084
|
return { loader, loading };
|
|
7171
7085
|
};
|
|
7172
|
-
const
|
|
7173
|
-
const
|
|
7174
|
-
const
|
|
7086
|
+
const SelectActivity_vue_vue_type_style_index_0_scoped_eedd142d_lang = "";
|
|
7087
|
+
const AddNewElement_vue_vue_type_style_index_0_scoped_52ffe34b_lang = "";
|
|
7088
|
+
const ElementList_vue_vue_type_style_index_0_scoped_72a17b8e_lang = "";
|
|
7089
|
+
const InlineActivator_vue_vue_type_style_index_0_scoped_8bab654d_lang = "";
|
|
7090
|
+
function baseIsNaN$1(value) {
|
|
7091
|
+
return value !== value;
|
|
7092
|
+
}
|
|
7093
|
+
var _baseIsNaN = baseIsNaN$1;
|
|
7094
|
+
function strictIndexOf$1(array2, value, fromIndex) {
|
|
7095
|
+
var index2 = fromIndex - 1, length = array2.length;
|
|
7096
|
+
while (++index2 < length) {
|
|
7097
|
+
if (array2[index2] === value) {
|
|
7098
|
+
return index2;
|
|
7099
|
+
}
|
|
7100
|
+
}
|
|
7101
|
+
return -1;
|
|
7102
|
+
}
|
|
7103
|
+
var _strictIndexOf = strictIndexOf$1;
|
|
7104
|
+
var baseFindIndex = _baseFindIndex, baseIsNaN = _baseIsNaN, strictIndexOf = _strictIndexOf;
|
|
7105
|
+
function baseIndexOf$2(array2, value, fromIndex) {
|
|
7106
|
+
return value === value ? strictIndexOf(array2, value, fromIndex) : baseFindIndex(array2, baseIsNaN, fromIndex);
|
|
7107
|
+
}
|
|
7108
|
+
var _baseIndexOf = baseIndexOf$2;
|
|
7109
|
+
var baseIndexOf$1 = _baseIndexOf;
|
|
7110
|
+
function arrayIncludes$1(array2, value) {
|
|
7111
|
+
var length = array2 == null ? 0 : array2.length;
|
|
7112
|
+
return !!length && baseIndexOf$1(array2, value, 0) > -1;
|
|
7113
|
+
}
|
|
7114
|
+
var _arrayIncludes = arrayIncludes$1;
|
|
7115
|
+
function arrayIncludesWith$1(array2, value, comparator) {
|
|
7116
|
+
var index2 = -1, length = array2 == null ? 0 : array2.length;
|
|
7117
|
+
while (++index2 < length) {
|
|
7118
|
+
if (comparator(value, array2[index2])) {
|
|
7119
|
+
return true;
|
|
7120
|
+
}
|
|
7121
|
+
}
|
|
7122
|
+
return false;
|
|
7123
|
+
}
|
|
7124
|
+
var _arrayIncludesWith = arrayIncludesWith$1;
|
|
7175
7125
|
function noop$1() {
|
|
7176
7126
|
}
|
|
7177
7127
|
var noop_1 = noop$1;
|
|
@@ -7197,14 +7147,14 @@ function baseUnset$1(object2, path) {
|
|
|
7197
7147
|
return object2 == null || delete object2[toKey(last(path))];
|
|
7198
7148
|
}
|
|
7199
7149
|
var _baseUnset = baseUnset$1;
|
|
7200
|
-
var baseGetTag$1 = _baseGetTag, getPrototype = _getPrototype, isObjectLike$
|
|
7150
|
+
var baseGetTag$1 = _baseGetTag, getPrototype = _getPrototype, isObjectLike$2 = isObjectLike_1;
|
|
7201
7151
|
var objectTag = "[object Object]";
|
|
7202
7152
|
var funcProto = Function.prototype, objectProto$1 = Object.prototype;
|
|
7203
7153
|
var funcToString = funcProto.toString;
|
|
7204
7154
|
var hasOwnProperty$1 = objectProto$1.hasOwnProperty;
|
|
7205
7155
|
var objectCtorString = funcToString.call(Object);
|
|
7206
7156
|
function isPlainObject$2(value) {
|
|
7207
|
-
if (!isObjectLike$
|
|
7157
|
+
if (!isObjectLike$2(value) || baseGetTag$1(value) != objectTag) {
|
|
7208
7158
|
return false;
|
|
7209
7159
|
}
|
|
7210
7160
|
var proto = getPrototype(value);
|
|
@@ -7220,7 +7170,7 @@ function customOmitClone$1(value) {
|
|
|
7220
7170
|
return isPlainObject$1(value) ? void 0 : value;
|
|
7221
7171
|
}
|
|
7222
7172
|
var _customOmitClone = customOmitClone$1;
|
|
7223
|
-
var arrayMap$
|
|
7173
|
+
var arrayMap$2 = _arrayMap, baseClone = _baseClone, baseUnset = _baseUnset, castPath = _castPath, copyObject = _copyObject, customOmitClone = _customOmitClone, flatRest = _flatRest, getAllKeysIn = _getAllKeysIn;
|
|
7224
7174
|
var CLONE_DEEP_FLAG = 1, CLONE_FLAT_FLAG = 2, CLONE_SYMBOLS_FLAG = 4;
|
|
7225
7175
|
flatRest(function(object2, paths) {
|
|
7226
7176
|
var result = {};
|
|
@@ -7228,7 +7178,7 @@ flatRest(function(object2, paths) {
|
|
|
7228
7178
|
return result;
|
|
7229
7179
|
}
|
|
7230
7180
|
var isDeep = false;
|
|
7231
|
-
paths = arrayMap$
|
|
7181
|
+
paths = arrayMap$2(paths, function(path) {
|
|
7232
7182
|
path = castPath(path, object2);
|
|
7233
7183
|
isDeep || (isDeep = path.length > 1);
|
|
7234
7184
|
return path;
|
|
@@ -7243,8 +7193,8 @@ flatRest(function(object2, paths) {
|
|
|
7243
7193
|
}
|
|
7244
7194
|
return result;
|
|
7245
7195
|
});
|
|
7246
|
-
const
|
|
7247
|
-
const
|
|
7196
|
+
const ListItem_vue_vue_type_style_index_0_scoped_bb7ebfba_lang = "";
|
|
7197
|
+
const ItemGroup_vue_vue_type_style_index_0_scoped_aa0a487f_lang = "";
|
|
7248
7198
|
const download = (url, fileName) => {
|
|
7249
7199
|
const anchor = document.createElement("a");
|
|
7250
7200
|
Object.assign(anchor, { href: url, download: fileName, target: "_blank" });
|
|
@@ -7284,7 +7234,7 @@ const useUpload = (emit2) => {
|
|
|
7284
7234
|
error
|
|
7285
7235
|
};
|
|
7286
7236
|
};
|
|
7287
|
-
const
|
|
7237
|
+
const FileInput_vue_vue_type_style_index_0_scoped_d2256d71_lang = "";
|
|
7288
7238
|
function OrderedMap(content) {
|
|
7289
7239
|
this.content = content;
|
|
7290
7240
|
}
|
|
@@ -19591,8 +19541,8 @@ Mark2.create({
|
|
|
19591
19541
|
};
|
|
19592
19542
|
}
|
|
19593
19543
|
});
|
|
19594
|
-
const
|
|
19595
|
-
const
|
|
19544
|
+
const EditorToolbar_vue_vue_type_style_index_0_scoped_9f40ea62_lang = "";
|
|
19545
|
+
const index_vue_vue_type_style_index_0_scoped_46860bbe_lang = "";
|
|
19596
19546
|
var toString = toString_1;
|
|
19597
19547
|
var idCounter = 0;
|
|
19598
19548
|
function uniqueId(prefix) {
|
|
@@ -20471,7 +20421,7 @@ lodash.exports;
|
|
|
20471
20421
|
}
|
|
20472
20422
|
}();
|
|
20473
20423
|
var ctxClearTimeout = context.clearTimeout !== root2.clearTimeout && context.clearTimeout, ctxNow = Date2 && Date2.now !== root2.Date.now && Date2.now, ctxSetTimeout = context.setTimeout !== root2.setTimeout && context.setTimeout;
|
|
20474
|
-
var nativeCeil = Math2.ceil, nativeFloor = Math2.floor, nativeGetSymbols2 = Object2.getOwnPropertySymbols, nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined$1, nativeIsFinite = context.isFinite, nativeJoin = arrayProto2.join, nativeKeys2 = overArg2(Object2.keys, Object2), nativeMax2 = Math2.max,
|
|
20424
|
+
var nativeCeil = Math2.ceil, nativeFloor = Math2.floor, nativeGetSymbols2 = Object2.getOwnPropertySymbols, nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined$1, nativeIsFinite = context.isFinite, nativeJoin = arrayProto2.join, nativeKeys2 = overArg2(Object2.keys, Object2), nativeMax2 = Math2.max, nativeMin = Math2.min, nativeNow2 = Date2.now, nativeParseInt = context.parseInt, nativeRandom = Math2.random, nativeReverse = arrayProto2.reverse;
|
|
20475
20425
|
var DataView2 = getNative2(context, "DataView"), Map2 = getNative2(context, "Map"), Promise2 = getNative2(context, "Promise"), Set2 = getNative2(context, "Set"), WeakMap2 = getNative2(context, "WeakMap"), nativeCreate2 = getNative2(Object2, "create");
|
|
20476
20426
|
var metaMap = WeakMap2 && new WeakMap2();
|
|
20477
20427
|
var realNames = {};
|
|
@@ -20593,7 +20543,7 @@ lodash.exports;
|
|
|
20593
20543
|
return result2;
|
|
20594
20544
|
}
|
|
20595
20545
|
function lazyValue() {
|
|
20596
|
-
var array2 = this.__wrapped__.value(), dir = this.__dir__, isArr = isArray2(array2), isRight = dir < 0, arrLength = isArr ? array2.length : 0, view = getView(0, arrLength, this.__views__), start = view.start, end = view.end, length = end - start, index2 = isRight ? end : start - 1, iteratees = this.__iteratees__, iterLength = iteratees.length, resIndex = 0, takeCount =
|
|
20546
|
+
var array2 = this.__wrapped__.value(), dir = this.__dir__, isArr = isArray2(array2), isRight = dir < 0, arrLength = isArr ? array2.length : 0, view = getView(0, arrLength, this.__views__), start = view.start, end = view.end, length = end - start, index2 = isRight ? end : start - 1, iteratees = this.__iteratees__, iterLength = iteratees.length, resIndex = 0, takeCount = nativeMin(length, this.__takeCount__);
|
|
20597
20547
|
if (!isArr || !isRight && arrLength == length && takeCount == length) {
|
|
20598
20548
|
return baseWrapperValue(array2, this.__actions__);
|
|
20599
20549
|
}
|
|
@@ -20974,7 +20924,7 @@ lodash.exports;
|
|
|
20974
20924
|
func.apply(undefined$1, args);
|
|
20975
20925
|
}, wait);
|
|
20976
20926
|
}
|
|
20977
|
-
function
|
|
20927
|
+
function baseDifference2(array2, values2, iteratee2, comparator) {
|
|
20978
20928
|
var index2 = -1, includes2 = arrayIncludes2, isCommon = true, length = array2.length, result2 = [], valuesLength = values2.length;
|
|
20979
20929
|
if (!length) {
|
|
20980
20930
|
return result2;
|
|
@@ -21112,16 +21062,16 @@ lodash.exports;
|
|
|
21112
21062
|
return object2 != null && key in Object2(object2);
|
|
21113
21063
|
}
|
|
21114
21064
|
function baseInRange(number2, start, end) {
|
|
21115
|
-
return number2 >=
|
|
21065
|
+
return number2 >= nativeMin(start, end) && number2 < nativeMax2(start, end);
|
|
21116
21066
|
}
|
|
21117
|
-
function
|
|
21067
|
+
function baseIntersection(arrays, iteratee2, comparator) {
|
|
21118
21068
|
var includes2 = comparator ? arrayIncludesWith2 : arrayIncludes2, length = arrays[0].length, othLength = arrays.length, othIndex = othLength, caches = Array2(othLength), maxLength = Infinity, result2 = [];
|
|
21119
21069
|
while (othIndex--) {
|
|
21120
21070
|
var array2 = arrays[othIndex];
|
|
21121
21071
|
if (othIndex && iteratee2) {
|
|
21122
21072
|
array2 = arrayMap2(array2, baseUnary2(iteratee2));
|
|
21123
21073
|
}
|
|
21124
|
-
maxLength =
|
|
21074
|
+
maxLength = nativeMin(array2.length, maxLength);
|
|
21125
21075
|
caches[othIndex] = !comparator && (iteratee2 || length >= 120 && array2.length >= 120) ? new SetCache2(othIndex && array2) : undefined$1;
|
|
21126
21076
|
}
|
|
21127
21077
|
array2 = arrays[0];
|
|
@@ -21610,7 +21560,7 @@ lodash.exports;
|
|
|
21610
21560
|
high = mid;
|
|
21611
21561
|
}
|
|
21612
21562
|
}
|
|
21613
|
-
return
|
|
21563
|
+
return nativeMin(high, MAX_ARRAY_INDEX);
|
|
21614
21564
|
}
|
|
21615
21565
|
function baseSortedUniq(array2, iteratee2) {
|
|
21616
21566
|
var index2 = -1, length = array2.length, resIndex = 0, result2 = [];
|
|
@@ -21718,7 +21668,7 @@ lodash.exports;
|
|
|
21718
21668
|
var array2 = arrays[index2], othIndex = -1;
|
|
21719
21669
|
while (++othIndex < length) {
|
|
21720
21670
|
if (othIndex != index2) {
|
|
21721
|
-
result2[index2] =
|
|
21671
|
+
result2[index2] = baseDifference2(result2[index2] || array2, arrays[othIndex], iteratee2, comparator);
|
|
21722
21672
|
}
|
|
21723
21673
|
}
|
|
21724
21674
|
}
|
|
@@ -21732,7 +21682,7 @@ lodash.exports;
|
|
|
21732
21682
|
}
|
|
21733
21683
|
return result2;
|
|
21734
21684
|
}
|
|
21735
|
-
function
|
|
21685
|
+
function castArrayLikeObject(value) {
|
|
21736
21686
|
return isArrayLikeObject2(value) ? value : [];
|
|
21737
21687
|
}
|
|
21738
21688
|
function castFunction(value) {
|
|
@@ -22220,7 +22170,7 @@ lodash.exports;
|
|
|
22220
22170
|
var func = Math2[methodName];
|
|
22221
22171
|
return function(number2, precision) {
|
|
22222
22172
|
number2 = toNumber2(number2);
|
|
22223
|
-
precision = precision == null ? 0 :
|
|
22173
|
+
precision = precision == null ? 0 : nativeMin(toInteger2(precision), 292);
|
|
22224
22174
|
if (precision && nativeIsFinite(number2)) {
|
|
22225
22175
|
var pair = (toString2(number2) + "e").split("e"), value = func(pair[0] + "e" + (+pair[1] + precision));
|
|
22226
22176
|
pair = (toString2(value) + "e").split("e");
|
|
@@ -22561,7 +22511,7 @@ lodash.exports;
|
|
|
22561
22511
|
end -= size2;
|
|
22562
22512
|
break;
|
|
22563
22513
|
case "take":
|
|
22564
|
-
end =
|
|
22514
|
+
end = nativeMin(end, start + size2);
|
|
22565
22515
|
break;
|
|
22566
22516
|
case "takeRight":
|
|
22567
22517
|
start = nativeMax2(start, end - size2);
|
|
@@ -22743,7 +22693,7 @@ lodash.exports;
|
|
|
22743
22693
|
data[7] = value;
|
|
22744
22694
|
}
|
|
22745
22695
|
if (srcBitmask & WRAP_ARY_FLAG) {
|
|
22746
|
-
data[8] = data[8] == null ? source[8] :
|
|
22696
|
+
data[8] = data[8] == null ? source[8] : nativeMin(data[8], source[8]);
|
|
22747
22697
|
}
|
|
22748
22698
|
if (data[9] == null) {
|
|
22749
22699
|
data[9] = source[9];
|
|
@@ -22784,7 +22734,7 @@ lodash.exports;
|
|
|
22784
22734
|
return path.length < 2 ? object2 : baseGet2(object2, baseSlice2(path, 0, -1));
|
|
22785
22735
|
}
|
|
22786
22736
|
function reorder(array2, indexes) {
|
|
22787
|
-
var arrLength = array2.length, length =
|
|
22737
|
+
var arrLength = array2.length, length = nativeMin(indexes.length, arrLength), oldArray = copyArray2(array2);
|
|
22788
22738
|
while (length--) {
|
|
22789
22739
|
var index2 = indexes[length];
|
|
22790
22740
|
array2[length] = isIndex2(index2, arrLength) ? oldArray[index2] : undefined$1;
|
|
@@ -22922,21 +22872,21 @@ lodash.exports;
|
|
|
22922
22872
|
return arrayPush2(isArray2(array2) ? copyArray2(array2) : [array2], baseFlatten2(args, 1));
|
|
22923
22873
|
}
|
|
22924
22874
|
var difference = baseRest2(function(array2, values2) {
|
|
22925
|
-
return isArrayLikeObject2(array2) ?
|
|
22875
|
+
return isArrayLikeObject2(array2) ? baseDifference2(array2, baseFlatten2(values2, 1, isArrayLikeObject2, true)) : [];
|
|
22926
22876
|
});
|
|
22927
22877
|
var differenceBy = baseRest2(function(array2, values2) {
|
|
22928
22878
|
var iteratee2 = last2(values2);
|
|
22929
22879
|
if (isArrayLikeObject2(iteratee2)) {
|
|
22930
22880
|
iteratee2 = undefined$1;
|
|
22931
22881
|
}
|
|
22932
|
-
return isArrayLikeObject2(array2) ?
|
|
22882
|
+
return isArrayLikeObject2(array2) ? baseDifference2(array2, baseFlatten2(values2, 1, isArrayLikeObject2, true), getIteratee(iteratee2, 2)) : [];
|
|
22933
22883
|
});
|
|
22934
22884
|
var differenceWith = baseRest2(function(array2, values2) {
|
|
22935
22885
|
var comparator = last2(values2);
|
|
22936
22886
|
if (isArrayLikeObject2(comparator)) {
|
|
22937
22887
|
comparator = undefined$1;
|
|
22938
22888
|
}
|
|
22939
|
-
return isArrayLikeObject2(array2) ?
|
|
22889
|
+
return isArrayLikeObject2(array2) ? baseDifference2(array2, baseFlatten2(values2, 1, isArrayLikeObject2, true), undefined$1, comparator) : [];
|
|
22940
22890
|
});
|
|
22941
22891
|
function drop4(array2, n, guard) {
|
|
22942
22892
|
var length = array2 == null ? 0 : array2.length;
|
|
@@ -22991,7 +22941,7 @@ lodash.exports;
|
|
|
22991
22941
|
var index2 = length - 1;
|
|
22992
22942
|
if (fromIndex !== undefined$1) {
|
|
22993
22943
|
index2 = toInteger2(fromIndex);
|
|
22994
|
-
index2 = fromIndex < 0 ? nativeMax2(length + index2, 0) :
|
|
22944
|
+
index2 = fromIndex < 0 ? nativeMax2(length + index2, 0) : nativeMin(index2, length - 1);
|
|
22995
22945
|
}
|
|
22996
22946
|
return baseFindIndex2(array2, getIteratee(predicate, 3), index2, true);
|
|
22997
22947
|
}
|
|
@@ -23038,25 +22988,25 @@ lodash.exports;
|
|
|
23038
22988
|
return length ? baseSlice2(array2, 0, -1) : [];
|
|
23039
22989
|
}
|
|
23040
22990
|
var intersection = baseRest2(function(arrays) {
|
|
23041
|
-
var mapped = arrayMap2(arrays,
|
|
23042
|
-
return mapped.length && mapped[0] === arrays[0] ?
|
|
22991
|
+
var mapped = arrayMap2(arrays, castArrayLikeObject);
|
|
22992
|
+
return mapped.length && mapped[0] === arrays[0] ? baseIntersection(mapped) : [];
|
|
23043
22993
|
});
|
|
23044
22994
|
var intersectionBy = baseRest2(function(arrays) {
|
|
23045
|
-
var iteratee2 = last2(arrays), mapped = arrayMap2(arrays,
|
|
22995
|
+
var iteratee2 = last2(arrays), mapped = arrayMap2(arrays, castArrayLikeObject);
|
|
23046
22996
|
if (iteratee2 === last2(mapped)) {
|
|
23047
22997
|
iteratee2 = undefined$1;
|
|
23048
22998
|
} else {
|
|
23049
22999
|
mapped.pop();
|
|
23050
23000
|
}
|
|
23051
|
-
return mapped.length && mapped[0] === arrays[0] ?
|
|
23001
|
+
return mapped.length && mapped[0] === arrays[0] ? baseIntersection(mapped, getIteratee(iteratee2, 2)) : [];
|
|
23052
23002
|
});
|
|
23053
23003
|
var intersectionWith = baseRest2(function(arrays) {
|
|
23054
|
-
var comparator = last2(arrays), mapped = arrayMap2(arrays,
|
|
23004
|
+
var comparator = last2(arrays), mapped = arrayMap2(arrays, castArrayLikeObject);
|
|
23055
23005
|
comparator = typeof comparator == "function" ? comparator : undefined$1;
|
|
23056
23006
|
if (comparator) {
|
|
23057
23007
|
mapped.pop();
|
|
23058
23008
|
}
|
|
23059
|
-
return mapped.length && mapped[0] === arrays[0] ?
|
|
23009
|
+
return mapped.length && mapped[0] === arrays[0] ? baseIntersection(mapped, undefined$1, comparator) : [];
|
|
23060
23010
|
});
|
|
23061
23011
|
function join(array2, separator) {
|
|
23062
23012
|
return array2 == null ? "" : nativeJoin.call(array2, separator);
|
|
@@ -23073,7 +23023,7 @@ lodash.exports;
|
|
|
23073
23023
|
var index2 = length;
|
|
23074
23024
|
if (fromIndex !== undefined$1) {
|
|
23075
23025
|
index2 = toInteger2(fromIndex);
|
|
23076
|
-
index2 = index2 < 0 ? nativeMax2(length + index2, 0) :
|
|
23026
|
+
index2 = index2 < 0 ? nativeMax2(length + index2, 0) : nativeMin(index2, length - 1);
|
|
23077
23027
|
}
|
|
23078
23028
|
return value === value ? strictLastIndexOf(array2, value, index2) : baseFindIndex2(array2, baseIsNaN2, index2, true);
|
|
23079
23029
|
}
|
|
@@ -23248,7 +23198,7 @@ lodash.exports;
|
|
|
23248
23198
|
});
|
|
23249
23199
|
}
|
|
23250
23200
|
var without = baseRest2(function(array2, values2) {
|
|
23251
|
-
return isArrayLikeObject2(array2) ?
|
|
23201
|
+
return isArrayLikeObject2(array2) ? baseDifference2(array2, values2) : [];
|
|
23252
23202
|
});
|
|
23253
23203
|
var xor = baseRest2(function(arrays) {
|
|
23254
23204
|
return baseXor(arrayFilter2(arrays, isArrayLikeObject2));
|
|
@@ -23598,7 +23548,7 @@ lodash.exports;
|
|
|
23598
23548
|
}
|
|
23599
23549
|
function remainingWait(time) {
|
|
23600
23550
|
var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall;
|
|
23601
|
-
return maxing ?
|
|
23551
|
+
return maxing ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting;
|
|
23602
23552
|
}
|
|
23603
23553
|
function shouldInvoke(time) {
|
|
23604
23554
|
var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime;
|
|
@@ -23705,7 +23655,7 @@ lodash.exports;
|
|
|
23705
23655
|
transforms = transforms.length == 1 && isArray2(transforms[0]) ? arrayMap2(transforms[0], baseUnary2(getIteratee())) : arrayMap2(baseFlatten2(transforms, 1), baseUnary2(getIteratee()));
|
|
23706
23656
|
var funcsLength = transforms.length;
|
|
23707
23657
|
return baseRest2(function(args) {
|
|
23708
|
-
var index2 = -1, length =
|
|
23658
|
+
var index2 = -1, length = nativeMin(args.length, funcsLength);
|
|
23709
23659
|
while (++index2 < length) {
|
|
23710
23660
|
args[index2] = transforms[index2].call(this, args[index2]);
|
|
23711
23661
|
}
|
|
@@ -24283,7 +24233,7 @@ lodash.exports;
|
|
|
24283
24233
|
}
|
|
24284
24234
|
if (floating || lower % 1 || upper % 1) {
|
|
24285
24235
|
var rand = nativeRandom();
|
|
24286
|
-
return
|
|
24236
|
+
return nativeMin(lower + rand * (upper - lower + freeParseFloat("1e-" + ((rand + "").length - 1))), upper);
|
|
24287
24237
|
}
|
|
24288
24238
|
return baseRandom(lower, upper);
|
|
24289
24239
|
}
|
|
@@ -24685,7 +24635,7 @@ lodash.exports;
|
|
|
24685
24635
|
if (n < 1 || n > MAX_SAFE_INTEGER2) {
|
|
24686
24636
|
return [];
|
|
24687
24637
|
}
|
|
24688
|
-
var index2 = MAX_ARRAY_LENGTH, length =
|
|
24638
|
+
var index2 = MAX_ARRAY_LENGTH, length = nativeMin(n, MAX_ARRAY_LENGTH);
|
|
24689
24639
|
iteratee2 = getIteratee(iteratee2);
|
|
24690
24640
|
n -= MAX_ARRAY_LENGTH;
|
|
24691
24641
|
var result2 = baseTimes2(length, iteratee2);
|
|
@@ -25067,10 +25017,10 @@ lodash.exports;
|
|
|
25067
25017
|
n = n === undefined$1 ? 1 : nativeMax2(toInteger2(n), 0);
|
|
25068
25018
|
var result2 = this.__filtered__ && !index2 ? new LazyWrapper(this) : this.clone();
|
|
25069
25019
|
if (result2.__filtered__) {
|
|
25070
|
-
result2.__takeCount__ =
|
|
25020
|
+
result2.__takeCount__ = nativeMin(n, result2.__takeCount__);
|
|
25071
25021
|
} else {
|
|
25072
25022
|
result2.__views__.push({
|
|
25073
|
-
"size":
|
|
25023
|
+
"size": nativeMin(n, MAX_ARRAY_LENGTH),
|
|
25074
25024
|
"type": methodName + (result2.__dir__ < 0 ? "Right" : "")
|
|
25075
25025
|
});
|
|
25076
25026
|
}
|
|
@@ -25228,6 +25178,54 @@ lodash.exports;
|
|
|
25228
25178
|
}).call(commonjsGlobal);
|
|
25229
25179
|
})(lodash, lodash.exports);
|
|
25230
25180
|
lodash.exports;
|
|
25181
|
+
var SetCache = _SetCache, arrayIncludes = _arrayIncludes, arrayIncludesWith = _arrayIncludesWith, arrayMap$1 = _arrayMap, baseUnary$1 = _baseUnary, cacheHas = _cacheHas;
|
|
25182
|
+
var LARGE_ARRAY_SIZE = 200;
|
|
25183
|
+
function baseDifference$1(array2, values, iteratee, comparator) {
|
|
25184
|
+
var index2 = -1, includes = arrayIncludes, isCommon = true, length = array2.length, result = [], valuesLength = values.length;
|
|
25185
|
+
if (!length) {
|
|
25186
|
+
return result;
|
|
25187
|
+
}
|
|
25188
|
+
if (iteratee) {
|
|
25189
|
+
values = arrayMap$1(values, baseUnary$1(iteratee));
|
|
25190
|
+
}
|
|
25191
|
+
if (comparator) {
|
|
25192
|
+
includes = arrayIncludesWith;
|
|
25193
|
+
isCommon = false;
|
|
25194
|
+
} else if (values.length >= LARGE_ARRAY_SIZE) {
|
|
25195
|
+
includes = cacheHas;
|
|
25196
|
+
isCommon = false;
|
|
25197
|
+
values = new SetCache(values);
|
|
25198
|
+
}
|
|
25199
|
+
outer:
|
|
25200
|
+
while (++index2 < length) {
|
|
25201
|
+
var value = array2[index2], computed = iteratee == null ? value : iteratee(value);
|
|
25202
|
+
value = comparator || value !== 0 ? value : 0;
|
|
25203
|
+
if (isCommon && computed === computed) {
|
|
25204
|
+
var valuesIndex = valuesLength;
|
|
25205
|
+
while (valuesIndex--) {
|
|
25206
|
+
if (values[valuesIndex] === computed) {
|
|
25207
|
+
continue outer;
|
|
25208
|
+
}
|
|
25209
|
+
}
|
|
25210
|
+
result.push(value);
|
|
25211
|
+
} else if (!includes(values, computed, comparator)) {
|
|
25212
|
+
result.push(value);
|
|
25213
|
+
}
|
|
25214
|
+
}
|
|
25215
|
+
return result;
|
|
25216
|
+
}
|
|
25217
|
+
var _baseDifference = baseDifference$1;
|
|
25218
|
+
var isArrayLike$1 = isArrayLike_1, isObjectLike$1 = isObjectLike_1;
|
|
25219
|
+
function isArrayLikeObject$1(value) {
|
|
25220
|
+
return isObjectLike$1(value) && isArrayLike$1(value);
|
|
25221
|
+
}
|
|
25222
|
+
var isArrayLikeObject_1 = isArrayLikeObject$1;
|
|
25223
|
+
var baseDifference = _baseDifference, baseRest$1 = _baseRest, isArrayLikeObject = isArrayLikeObject_1;
|
|
25224
|
+
baseRest$1(function(array2, values) {
|
|
25225
|
+
return isArrayLikeObject(array2) ? baseDifference(array2, values) : [];
|
|
25226
|
+
});
|
|
25227
|
+
const QuestionPrompt_vue_vue_type_style_index_0_scoped_e9b75b4e_lang = "";
|
|
25228
|
+
const index_vue_vue_type_style_index_0_scoped_0c4fbd95_lang = "";
|
|
25231
25229
|
var baseGetTag = _baseGetTag, isObjectLike = isObjectLike_1;
|
|
25232
25230
|
var numberTag = "[object Number]";
|
|
25233
25231
|
function isNumber(value) {
|
|
@@ -27502,7 +27500,7 @@ const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
27502
27500
|
__name: "AccordionItem",
|
|
27503
27501
|
props: {
|
|
27504
27502
|
item: {},
|
|
27505
|
-
|
|
27503
|
+
embedTypes: {},
|
|
27506
27504
|
embeds: { default: () => {
|
|
27507
27505
|
} },
|
|
27508
27506
|
isFocused: { type: Boolean, default: false },
|
|
@@ -27564,7 +27562,8 @@ const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
27564
27562
|
const _component_VExpansionPanel = vue.resolveComponent("VExpansionPanel");
|
|
27565
27563
|
const _directive_tooltip = vue.resolveDirective("tooltip");
|
|
27566
27564
|
return vue.openBlock(), vue.createBlock(_component_VExpansionPanel, {
|
|
27567
|
-
value: _ctx.item.id
|
|
27565
|
+
value: _ctx.item.id,
|
|
27566
|
+
"bg-color": "grey-lighten-5"
|
|
27568
27567
|
}, {
|
|
27569
27568
|
default: vue.withCtx(() => [
|
|
27570
27569
|
vue.createVNode(_component_VHover, null, {
|
|
@@ -27699,7 +27698,7 @@ const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
27699
27698
|
vue.createVNode(_component_TailorEmbeddedContainer, {
|
|
27700
27699
|
container: { embeds: _ctx.embeds },
|
|
27701
27700
|
"is-disabled": _ctx.isDisabled,
|
|
27702
|
-
types: _ctx.
|
|
27701
|
+
types: _ctx.embedTypes,
|
|
27703
27702
|
onDelete: deleteEmbed,
|
|
27704
27703
|
onSave: _cache[6] || (_cache[6] = ($event) => saveEmbed($event.embeds))
|
|
27705
27704
|
}, null, 8, ["container", "is-disabled", "types"])
|
|
@@ -27712,14 +27711,14 @@ const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
27712
27711
|
};
|
|
27713
27712
|
}
|
|
27714
27713
|
});
|
|
27715
|
-
const
|
|
27716
|
-
const AccordionItem = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-
|
|
27714
|
+
const AccordionItem_vue_vue_type_style_index_0_scoped_b3279221_lang = "";
|
|
27715
|
+
const AccordionItem = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-b3279221"]]);
|
|
27717
27716
|
const _hoisted_1$1 = { class: "tce-accordion d-flex flex-column align-center text-center" };
|
|
27718
27717
|
const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
27719
27718
|
__name: "Edit",
|
|
27720
27719
|
props: {
|
|
27721
27720
|
element: {},
|
|
27722
|
-
|
|
27721
|
+
embedTypes: {},
|
|
27723
27722
|
isFocused: { type: Boolean },
|
|
27724
27723
|
isDisabled: { type: Boolean }
|
|
27725
27724
|
},
|
|
@@ -27782,8 +27781,8 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
|
27782
27781
|
ref: panels,
|
|
27783
27782
|
modelValue: expanded.value,
|
|
27784
27783
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => expanded.value = $event),
|
|
27785
|
-
elevation: "0",
|
|
27786
27784
|
rounded: "lg",
|
|
27785
|
+
variant: "accordion",
|
|
27787
27786
|
multiple: ""
|
|
27788
27787
|
}, {
|
|
27789
27788
|
default: vue.withCtx(() => [
|
|
@@ -27795,7 +27794,7 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
|
27795
27794
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(elementData.items, (item, index2) => {
|
|
27796
27795
|
return vue.openBlock(), vue.createBlock(AccordionItem, {
|
|
27797
27796
|
key: item.id,
|
|
27798
|
-
"
|
|
27797
|
+
"embed-types": _ctx.embedTypes,
|
|
27799
27798
|
embeds: embedsByItem.value[item.id],
|
|
27800
27799
|
"is-disabled": _ctx.isDisabled,
|
|
27801
27800
|
"is-expanded": expanded.value.includes(item.id),
|
|
@@ -27804,7 +27803,7 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
|
27804
27803
|
onDelete: ($event) => deleteItem(item.id, index2),
|
|
27805
27804
|
onExpand: ($event) => expanded.value.push(item.id),
|
|
27806
27805
|
onSave: ($event) => saveItem($event, index2)
|
|
27807
|
-
}, null, 8, ["
|
|
27806
|
+
}, null, 8, ["embed-types", "embeds", "is-disabled", "is-expanded", "is-focused", "item", "onDelete", "onExpand", "onSave"]);
|
|
27808
27807
|
}), 128))
|
|
27809
27808
|
]),
|
|
27810
27809
|
_: 1
|
|
@@ -27825,8 +27824,8 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
|
27825
27824
|
};
|
|
27826
27825
|
}
|
|
27827
27826
|
});
|
|
27828
|
-
const
|
|
27829
|
-
const Edit = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-
|
|
27827
|
+
const Edit_vue_vue_type_style_index_0_scoped_cd8ca15a_lang = "";
|
|
27828
|
+
const Edit = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-cd8ca15a"]]);
|
|
27830
27829
|
const _hoisted_1 = { class: "d-flex align-center justify-center" };
|
|
27831
27830
|
const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
27832
27831
|
__name: "TopToolbar",
|