@tailor-cms/ce-modal-display 2.0.0 → 2.0.2

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 CHANGED
@@ -3,20 +3,20 @@ Object.defineProperties(exports, {
3
3
  [Symbol.toStringTag]: { value: "Module" }
4
4
  });
5
5
  require('./index.css');let vue = require("vue");
6
- //#region ../../node_modules/.pnpm/uuid@14.0.0/node_modules/uuid/dist/stringify.js
6
+ //#region ../../node_modules/.pnpm/uuid@14.0.1/node_modules/uuid/dist/stringify.js
7
7
  var byteToHex = [];
8
8
  for (let i = 0; i < 256; ++i) byteToHex.push((i + 256).toString(16).slice(1));
9
9
  function unsafeStringify(arr, offset = 0) {
10
10
  return (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + "-" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + "-" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + "-" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + "-" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();
11
11
  }
12
12
  //#endregion
13
- //#region ../../node_modules/.pnpm/uuid@14.0.0/node_modules/uuid/dist/rng.js
14
- var rnds8 = new Uint8Array(16);
13
+ //#region ../../node_modules/.pnpm/uuid@14.0.1/node_modules/uuid/dist/rng.js
14
+ var rnds8 = /* @__PURE__ */ new Uint8Array(16);
15
15
  function rng() {
16
16
  return crypto.getRandomValues(rnds8);
17
17
  }
18
18
  //#endregion
19
- //#region ../../node_modules/.pnpm/uuid@14.0.0/node_modules/uuid/dist/v4.js
19
+ //#region ../../node_modules/.pnpm/uuid@14.0.1/node_modules/uuid/dist/v4.js
20
20
  function v4(options, buf, offset) {
21
21
  if (!buf && !options && crypto.randomUUID) return crypto.randomUUID();
22
22
  return _v4(options, buf, offset);
@@ -163,7 +163,8 @@ function objectToString(value) {
163
163
  //#endregion
164
164
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseGetTag.js
165
165
  /** `Object#toString` result references. */
166
- var nullTag = "[object Null]", undefinedTag = "[object Undefined]";
166
+ var nullTag = "[object Null]";
167
+ var undefinedTag = "[object Undefined]";
167
168
  /** Built-in value references. */
168
169
  var symToStringTag = Symbol ? Symbol.toStringTag : void 0;
169
170
  /**
@@ -277,7 +278,8 @@ var isArray = Array.isArray;
277
278
  /** Used as references for various `Number` constants. */
278
279
  var INFINITY$1 = Infinity;
279
280
  /** Used to convert symbols to primitives and strings. */
280
- var symbolProto$1 = Symbol ? Symbol.prototype : void 0, symbolToString = symbolProto$1 ? symbolProto$1.toString : void 0;
281
+ var symbolProto$1 = Symbol ? Symbol.prototype : void 0;
282
+ var symbolToString = symbolProto$1 ? symbolProto$1.toString : void 0;
281
283
  /**
282
284
  * The base implementation of `_.toString` which doesn't convert nullish
283
285
  * values to empty strings.
@@ -348,7 +350,10 @@ function identity(value) {
348
350
  //#endregion
349
351
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isFunction.js
350
352
  /** `Object#toString` result references. */
351
- var asyncTag = "[object AsyncFunction]", funcTag$1 = "[object Function]", genTag = "[object GeneratorFunction]", proxyTag = "[object Proxy]";
353
+ var asyncTag = "[object AsyncFunction]";
354
+ var funcTag$1 = "[object Function]";
355
+ var genTag = "[object GeneratorFunction]";
356
+ var proxyTag = "[object Proxy]";
352
357
  /**
353
358
  * Checks if `value` is classified as a `Function` object.
354
359
  *
@@ -424,7 +429,8 @@ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
424
429
  /** Used to detect host constructors (Safari). */
425
430
  var reIsHostCtor = /^\[object .+?Constructor\]$/;
426
431
  /** Used for built-in method references. */
427
- var funcProto = Function.prototype, objectProto$2 = Object.prototype;
432
+ var funcProto = Function.prototype;
433
+ var objectProto$2 = Object.prototype;
428
434
  /** Used to resolve the decompiled source of functions. */
429
435
  var funcToString = funcProto.toString;
430
436
  /** Used to check objects for own properties. */
@@ -497,7 +503,8 @@ function apply(func, thisArg, args) {
497
503
  //#endregion
498
504
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_shortOut.js
499
505
  /** Used to detect hot functions by number of calls within a span of milliseconds. */
500
- var HOT_COUNT = 800, HOT_SPAN = 16;
506
+ var HOT_COUNT = 800;
507
+ var HOT_SPAN = 16;
501
508
  var nativeNow = Date.now;
502
509
  /**
503
510
  * Creates a function that'll short out and invoke `identity` instead
@@ -869,8 +876,30 @@ var isBuffer = (Buffer ? Buffer.isBuffer : void 0) || stubFalse;
869
876
  //#endregion
870
877
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsTypedArray.js
871
878
  /** `Object#toString` result references. */
872
- var argsTag$1 = "[object Arguments]", arrayTag$1 = "[object Array]", boolTag$1 = "[object Boolean]", dateTag$1 = "[object Date]", errorTag$1 = "[object Error]", funcTag = "[object Function]", mapTag$2 = "[object Map]", numberTag$1 = "[object Number]", objectTag$2 = "[object Object]", regexpTag$1 = "[object RegExp]", setTag$2 = "[object Set]", stringTag$1 = "[object String]", weakMapTag$1 = "[object WeakMap]";
873
- var arrayBufferTag$1 = "[object ArrayBuffer]", dataViewTag$2 = "[object DataView]", float32Tag = "[object Float32Array]", float64Tag = "[object Float64Array]", int8Tag = "[object Int8Array]", int16Tag = "[object Int16Array]", int32Tag = "[object Int32Array]", uint8Tag = "[object Uint8Array]", uint8ClampedTag = "[object Uint8ClampedArray]", uint16Tag = "[object Uint16Array]", uint32Tag = "[object Uint32Array]";
879
+ var argsTag$1 = "[object Arguments]";
880
+ var arrayTag$1 = "[object Array]";
881
+ var boolTag$1 = "[object Boolean]";
882
+ var dateTag$1 = "[object Date]";
883
+ var errorTag$1 = "[object Error]";
884
+ var funcTag = "[object Function]";
885
+ var mapTag$2 = "[object Map]";
886
+ var numberTag$1 = "[object Number]";
887
+ var objectTag$2 = "[object Object]";
888
+ var regexpTag$1 = "[object RegExp]";
889
+ var setTag$2 = "[object Set]";
890
+ var stringTag$1 = "[object String]";
891
+ var weakMapTag$1 = "[object WeakMap]";
892
+ var arrayBufferTag$1 = "[object ArrayBuffer]";
893
+ var dataViewTag$2 = "[object DataView]";
894
+ var float32Tag = "[object Float32Array]";
895
+ var float64Tag = "[object Float64Array]";
896
+ var int8Tag = "[object Int8Array]";
897
+ var int16Tag = "[object Int16Array]";
898
+ var int32Tag = "[object Int32Array]";
899
+ var uint8Tag = "[object Uint8Array]";
900
+ var uint8ClampedTag = "[object Uint8ClampedArray]";
901
+ var uint16Tag = "[object Uint16Array]";
902
+ var uint32Tag = "[object Uint32Array]";
874
903
  /** Used to identify `toStringTag` values of typed arrays. */
875
904
  var typedArrayTags = {};
876
905
  typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true;
@@ -1024,7 +1053,8 @@ function keys(object) {
1024
1053
  //#endregion
1025
1054
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isKey.js
1026
1055
  /** Used to match property names within property paths. */
1027
- var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/;
1056
+ var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/;
1057
+ var reIsPlainProp = /^\w*$/;
1028
1058
  /**
1029
1059
  * Checks if `value` is a property name and not a property path.
1030
1060
  *
@@ -1870,10 +1900,18 @@ var Set = getNative(root, "Set");
1870
1900
  //#endregion
1871
1901
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getTag.js
1872
1902
  /** `Object#toString` result references. */
1873
- var mapTag$1 = "[object Map]", objectTag$1 = "[object Object]", promiseTag = "[object Promise]", setTag$1 = "[object Set]", weakMapTag = "[object WeakMap]";
1903
+ var mapTag$1 = "[object Map]";
1904
+ var objectTag$1 = "[object Object]";
1905
+ var promiseTag = "[object Promise]";
1906
+ var setTag$1 = "[object Set]";
1907
+ var weakMapTag = "[object WeakMap]";
1874
1908
  var dataViewTag$1 = "[object DataView]";
1875
1909
  /** Used to detect maps, sets, and weakmaps. */
1876
- var dataViewCtorString = toSource(DataView), mapCtorString = toSource(Map), promiseCtorString = toSource(Promise$1), setCtorString = toSource(Set), weakMapCtorString = toSource(WeakMap);
1910
+ var dataViewCtorString = toSource(DataView);
1911
+ var mapCtorString = toSource(Map);
1912
+ var promiseCtorString = toSource(Promise$1);
1913
+ var setCtorString = toSource(Set);
1914
+ var weakMapCtorString = toSource(WeakMap);
1877
1915
  /**
1878
1916
  * Gets the `toStringTag` of `value`.
1879
1917
  *
@@ -1980,7 +2018,8 @@ function cacheHas(cache, key) {
1980
2018
  //#endregion
1981
2019
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_equalArrays.js
1982
2020
  /** Used to compose bitmasks for value comparisons. */
1983
- var COMPARE_PARTIAL_FLAG$5 = 1, COMPARE_UNORDERED_FLAG$3 = 2;
2021
+ var COMPARE_PARTIAL_FLAG$5 = 1;
2022
+ var COMPARE_UNORDERED_FLAG$3 = 2;
1984
2023
  /**
1985
2024
  * A specialized version of `baseIsEqualDeep` for arrays with support for
1986
2025
  * partial deep comparisons.
@@ -2062,12 +2101,23 @@ function setToArray(set) {
2062
2101
  //#endregion
2063
2102
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_equalByTag.js
2064
2103
  /** Used to compose bitmasks for value comparisons. */
2065
- var COMPARE_PARTIAL_FLAG$4 = 1, COMPARE_UNORDERED_FLAG$2 = 2;
2104
+ var COMPARE_PARTIAL_FLAG$4 = 1;
2105
+ var COMPARE_UNORDERED_FLAG$2 = 2;
2066
2106
  /** `Object#toString` result references. */
2067
- var boolTag = "[object Boolean]", dateTag = "[object Date]", errorTag = "[object Error]", mapTag = "[object Map]", numberTag = "[object Number]", regexpTag = "[object RegExp]", setTag = "[object Set]", stringTag = "[object String]", symbolTag = "[object Symbol]";
2068
- var arrayBufferTag = "[object ArrayBuffer]", dataViewTag = "[object DataView]";
2107
+ var boolTag = "[object Boolean]";
2108
+ var dateTag = "[object Date]";
2109
+ var errorTag = "[object Error]";
2110
+ var mapTag = "[object Map]";
2111
+ var numberTag = "[object Number]";
2112
+ var regexpTag = "[object RegExp]";
2113
+ var setTag = "[object Set]";
2114
+ var stringTag = "[object String]";
2115
+ var symbolTag = "[object Symbol]";
2116
+ var arrayBufferTag = "[object ArrayBuffer]";
2117
+ var dataViewTag = "[object DataView]";
2069
2118
  /** Used to convert symbols to primitives and strings. */
2070
- var symbolProto = Symbol ? Symbol.prototype : void 0, symbolValueOf = symbolProto ? symbolProto.valueOf : void 0;
2119
+ var symbolProto = Symbol ? Symbol.prototype : void 0;
2120
+ var symbolValueOf = symbolProto ? symbolProto.valueOf : void 0;
2071
2121
  /**
2072
2122
  * A specialized version of `baseIsEqualDeep` for comparing objects of
2073
2123
  * the same `toStringTag`.
@@ -2173,7 +2223,9 @@ function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
2173
2223
  /** Used to compose bitmasks for value comparisons. */
2174
2224
  var COMPARE_PARTIAL_FLAG$2 = 1;
2175
2225
  /** `Object#toString` result references. */
2176
- var argsTag = "[object Arguments]", arrayTag = "[object Array]", objectTag = "[object Object]";
2226
+ var argsTag = "[object Arguments]";
2227
+ var arrayTag = "[object Array]";
2228
+ var objectTag = "[object Object]";
2177
2229
  /** Used to check objects for own properties. */
2178
2230
  var hasOwnProperty = Object.prototype.hasOwnProperty;
2179
2231
  /**
@@ -2240,7 +2292,8 @@ function baseIsEqual(value, other, bitmask, customizer, stack) {
2240
2292
  //#endregion
2241
2293
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsMatch.js
2242
2294
  /** Used to compose bitmasks for value comparisons. */
2243
- var COMPARE_PARTIAL_FLAG$1 = 1, COMPARE_UNORDERED_FLAG$1 = 2;
2295
+ var COMPARE_PARTIAL_FLAG$1 = 1;
2296
+ var COMPARE_UNORDERED_FLAG$1 = 2;
2244
2297
  /**
2245
2298
  * The base implementation of `_.isMatch` without support for iteratee shorthands.
2246
2299
  *
@@ -2409,7 +2462,8 @@ function hasIn(object, path) {
2409
2462
  //#endregion
2410
2463
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseMatchesProperty.js
2411
2464
  /** Used to compose bitmasks for value comparisons. */
2412
- var COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2;
2465
+ var COMPARE_PARTIAL_FLAG = 1;
2466
+ var COMPARE_UNORDERED_FLAG = 2;
2413
2467
  /**
2414
2468
  * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`.
2415
2469
  *
@@ -2726,7 +2780,7 @@ var sortBy = baseRest(function(collection, iteratees) {
2726
2780
  //#endregion
2727
2781
  //#region src/components/Display.vue?vue&type=script&setup=true&lang.ts
2728
2782
  var _hoisted_1 = { class: "tce-modal-root text-center ma-4" };
2729
- var Display_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ (0, vue.defineComponent)({
2783
+ var Display_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ (0, vue.defineComponent)({
2730
2784
  __name: "Display",
2731
2785
  props: {
2732
2786
  element: {},
@@ -2810,7 +2864,7 @@ var _plugin_vue_export_helper_default = (sfc, props) => {
2810
2864
  };
2811
2865
  //#endregion
2812
2866
  //#region src/components/Display.vue
2813
- var Display_default = /* @__PURE__ */ _plugin_vue_export_helper_default(Display_vue_vue_type_script_setup_true_lang_default, [["__scopeId", "data-v-22984316"]]);
2867
+ var Display_default = /*#__PURE__*/ _plugin_vue_export_helper_default(Display_vue_vue_type_script_setup_true_lang_default, [["__scopeId", "data-v-22984316"]]);
2814
2868
  //#endregion
2815
2869
  //#region src/index.ts
2816
2870
  var manifest = {
package/dist/index.js CHANGED
@@ -1,18 +1,18 @@
1
1
  import { computed, createBlock, createElementBlock, createTextVNode, createVNode, defineComponent, mergeProps, openBlock, ref, resolveComponent, toDisplayString, watch, withCtx } from "vue";
2
- import './index.css';//#region ../../node_modules/.pnpm/uuid@14.0.0/node_modules/uuid/dist/stringify.js
2
+ import './index.css';//#region ../../node_modules/.pnpm/uuid@14.0.1/node_modules/uuid/dist/stringify.js
3
3
  var byteToHex = [];
4
4
  for (let i = 0; i < 256; ++i) byteToHex.push((i + 256).toString(16).slice(1));
5
5
  function unsafeStringify(arr, offset = 0) {
6
6
  return (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + "-" + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + "-" + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + "-" + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + "-" + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase();
7
7
  }
8
8
  //#endregion
9
- //#region ../../node_modules/.pnpm/uuid@14.0.0/node_modules/uuid/dist/rng.js
10
- var rnds8 = new Uint8Array(16);
9
+ //#region ../../node_modules/.pnpm/uuid@14.0.1/node_modules/uuid/dist/rng.js
10
+ var rnds8 = /* @__PURE__ */ new Uint8Array(16);
11
11
  function rng() {
12
12
  return crypto.getRandomValues(rnds8);
13
13
  }
14
14
  //#endregion
15
- //#region ../../node_modules/.pnpm/uuid@14.0.0/node_modules/uuid/dist/v4.js
15
+ //#region ../../node_modules/.pnpm/uuid@14.0.1/node_modules/uuid/dist/v4.js
16
16
  function v4(options, buf, offset) {
17
17
  if (!buf && !options && crypto.randomUUID) return crypto.randomUUID();
18
18
  return _v4(options, buf, offset);
@@ -159,7 +159,8 @@ function objectToString(value) {
159
159
  //#endregion
160
160
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseGetTag.js
161
161
  /** `Object#toString` result references. */
162
- var nullTag = "[object Null]", undefinedTag = "[object Undefined]";
162
+ var nullTag = "[object Null]";
163
+ var undefinedTag = "[object Undefined]";
163
164
  /** Built-in value references. */
164
165
  var symToStringTag = Symbol ? Symbol.toStringTag : void 0;
165
166
  /**
@@ -273,7 +274,8 @@ var isArray = Array.isArray;
273
274
  /** Used as references for various `Number` constants. */
274
275
  var INFINITY$1 = Infinity;
275
276
  /** Used to convert symbols to primitives and strings. */
276
- var symbolProto$1 = Symbol ? Symbol.prototype : void 0, symbolToString = symbolProto$1 ? symbolProto$1.toString : void 0;
277
+ var symbolProto$1 = Symbol ? Symbol.prototype : void 0;
278
+ var symbolToString = symbolProto$1 ? symbolProto$1.toString : void 0;
277
279
  /**
278
280
  * The base implementation of `_.toString` which doesn't convert nullish
279
281
  * values to empty strings.
@@ -344,7 +346,10 @@ function identity(value) {
344
346
  //#endregion
345
347
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/isFunction.js
346
348
  /** `Object#toString` result references. */
347
- var asyncTag = "[object AsyncFunction]", funcTag$1 = "[object Function]", genTag = "[object GeneratorFunction]", proxyTag = "[object Proxy]";
349
+ var asyncTag = "[object AsyncFunction]";
350
+ var funcTag$1 = "[object Function]";
351
+ var genTag = "[object GeneratorFunction]";
352
+ var proxyTag = "[object Proxy]";
348
353
  /**
349
354
  * Checks if `value` is classified as a `Function` object.
350
355
  *
@@ -420,7 +425,8 @@ var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
420
425
  /** Used to detect host constructors (Safari). */
421
426
  var reIsHostCtor = /^\[object .+?Constructor\]$/;
422
427
  /** Used for built-in method references. */
423
- var funcProto = Function.prototype, objectProto$2 = Object.prototype;
428
+ var funcProto = Function.prototype;
429
+ var objectProto$2 = Object.prototype;
424
430
  /** Used to resolve the decompiled source of functions. */
425
431
  var funcToString = funcProto.toString;
426
432
  /** Used to check objects for own properties. */
@@ -493,7 +499,8 @@ function apply(func, thisArg, args) {
493
499
  //#endregion
494
500
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_shortOut.js
495
501
  /** Used to detect hot functions by number of calls within a span of milliseconds. */
496
- var HOT_COUNT = 800, HOT_SPAN = 16;
502
+ var HOT_COUNT = 800;
503
+ var HOT_SPAN = 16;
497
504
  var nativeNow = Date.now;
498
505
  /**
499
506
  * Creates a function that'll short out and invoke `identity` instead
@@ -865,8 +872,30 @@ var isBuffer = (Buffer ? Buffer.isBuffer : void 0) || stubFalse;
865
872
  //#endregion
866
873
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsTypedArray.js
867
874
  /** `Object#toString` result references. */
868
- var argsTag$1 = "[object Arguments]", arrayTag$1 = "[object Array]", boolTag$1 = "[object Boolean]", dateTag$1 = "[object Date]", errorTag$1 = "[object Error]", funcTag = "[object Function]", mapTag$2 = "[object Map]", numberTag$1 = "[object Number]", objectTag$2 = "[object Object]", regexpTag$1 = "[object RegExp]", setTag$2 = "[object Set]", stringTag$1 = "[object String]", weakMapTag$1 = "[object WeakMap]";
869
- var arrayBufferTag$1 = "[object ArrayBuffer]", dataViewTag$2 = "[object DataView]", float32Tag = "[object Float32Array]", float64Tag = "[object Float64Array]", int8Tag = "[object Int8Array]", int16Tag = "[object Int16Array]", int32Tag = "[object Int32Array]", uint8Tag = "[object Uint8Array]", uint8ClampedTag = "[object Uint8ClampedArray]", uint16Tag = "[object Uint16Array]", uint32Tag = "[object Uint32Array]";
875
+ var argsTag$1 = "[object Arguments]";
876
+ var arrayTag$1 = "[object Array]";
877
+ var boolTag$1 = "[object Boolean]";
878
+ var dateTag$1 = "[object Date]";
879
+ var errorTag$1 = "[object Error]";
880
+ var funcTag = "[object Function]";
881
+ var mapTag$2 = "[object Map]";
882
+ var numberTag$1 = "[object Number]";
883
+ var objectTag$2 = "[object Object]";
884
+ var regexpTag$1 = "[object RegExp]";
885
+ var setTag$2 = "[object Set]";
886
+ var stringTag$1 = "[object String]";
887
+ var weakMapTag$1 = "[object WeakMap]";
888
+ var arrayBufferTag$1 = "[object ArrayBuffer]";
889
+ var dataViewTag$2 = "[object DataView]";
890
+ var float32Tag = "[object Float32Array]";
891
+ var float64Tag = "[object Float64Array]";
892
+ var int8Tag = "[object Int8Array]";
893
+ var int16Tag = "[object Int16Array]";
894
+ var int32Tag = "[object Int32Array]";
895
+ var uint8Tag = "[object Uint8Array]";
896
+ var uint8ClampedTag = "[object Uint8ClampedArray]";
897
+ var uint16Tag = "[object Uint16Array]";
898
+ var uint32Tag = "[object Uint32Array]";
870
899
  /** Used to identify `toStringTag` values of typed arrays. */
871
900
  var typedArrayTags = {};
872
901
  typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true;
@@ -1020,7 +1049,8 @@ function keys(object) {
1020
1049
  //#endregion
1021
1050
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_isKey.js
1022
1051
  /** Used to match property names within property paths. */
1023
- var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/, reIsPlainProp = /^\w*$/;
1052
+ var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/;
1053
+ var reIsPlainProp = /^\w*$/;
1024
1054
  /**
1025
1055
  * Checks if `value` is a property name and not a property path.
1026
1056
  *
@@ -1866,10 +1896,18 @@ var Set = getNative(root, "Set");
1866
1896
  //#endregion
1867
1897
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_getTag.js
1868
1898
  /** `Object#toString` result references. */
1869
- var mapTag$1 = "[object Map]", objectTag$1 = "[object Object]", promiseTag = "[object Promise]", setTag$1 = "[object Set]", weakMapTag = "[object WeakMap]";
1899
+ var mapTag$1 = "[object Map]";
1900
+ var objectTag$1 = "[object Object]";
1901
+ var promiseTag = "[object Promise]";
1902
+ var setTag$1 = "[object Set]";
1903
+ var weakMapTag = "[object WeakMap]";
1870
1904
  var dataViewTag$1 = "[object DataView]";
1871
1905
  /** Used to detect maps, sets, and weakmaps. */
1872
- var dataViewCtorString = toSource(DataView), mapCtorString = toSource(Map), promiseCtorString = toSource(Promise$1), setCtorString = toSource(Set), weakMapCtorString = toSource(WeakMap);
1906
+ var dataViewCtorString = toSource(DataView);
1907
+ var mapCtorString = toSource(Map);
1908
+ var promiseCtorString = toSource(Promise$1);
1909
+ var setCtorString = toSource(Set);
1910
+ var weakMapCtorString = toSource(WeakMap);
1873
1911
  /**
1874
1912
  * Gets the `toStringTag` of `value`.
1875
1913
  *
@@ -1976,7 +2014,8 @@ function cacheHas(cache, key) {
1976
2014
  //#endregion
1977
2015
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_equalArrays.js
1978
2016
  /** Used to compose bitmasks for value comparisons. */
1979
- var COMPARE_PARTIAL_FLAG$5 = 1, COMPARE_UNORDERED_FLAG$3 = 2;
2017
+ var COMPARE_PARTIAL_FLAG$5 = 1;
2018
+ var COMPARE_UNORDERED_FLAG$3 = 2;
1980
2019
  /**
1981
2020
  * A specialized version of `baseIsEqualDeep` for arrays with support for
1982
2021
  * partial deep comparisons.
@@ -2058,12 +2097,23 @@ function setToArray(set) {
2058
2097
  //#endregion
2059
2098
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_equalByTag.js
2060
2099
  /** Used to compose bitmasks for value comparisons. */
2061
- var COMPARE_PARTIAL_FLAG$4 = 1, COMPARE_UNORDERED_FLAG$2 = 2;
2100
+ var COMPARE_PARTIAL_FLAG$4 = 1;
2101
+ var COMPARE_UNORDERED_FLAG$2 = 2;
2062
2102
  /** `Object#toString` result references. */
2063
- var boolTag = "[object Boolean]", dateTag = "[object Date]", errorTag = "[object Error]", mapTag = "[object Map]", numberTag = "[object Number]", regexpTag = "[object RegExp]", setTag = "[object Set]", stringTag = "[object String]", symbolTag = "[object Symbol]";
2064
- var arrayBufferTag = "[object ArrayBuffer]", dataViewTag = "[object DataView]";
2103
+ var boolTag = "[object Boolean]";
2104
+ var dateTag = "[object Date]";
2105
+ var errorTag = "[object Error]";
2106
+ var mapTag = "[object Map]";
2107
+ var numberTag = "[object Number]";
2108
+ var regexpTag = "[object RegExp]";
2109
+ var setTag = "[object Set]";
2110
+ var stringTag = "[object String]";
2111
+ var symbolTag = "[object Symbol]";
2112
+ var arrayBufferTag = "[object ArrayBuffer]";
2113
+ var dataViewTag = "[object DataView]";
2065
2114
  /** Used to convert symbols to primitives and strings. */
2066
- var symbolProto = Symbol ? Symbol.prototype : void 0, symbolValueOf = symbolProto ? symbolProto.valueOf : void 0;
2115
+ var symbolProto = Symbol ? Symbol.prototype : void 0;
2116
+ var symbolValueOf = symbolProto ? symbolProto.valueOf : void 0;
2067
2117
  /**
2068
2118
  * A specialized version of `baseIsEqualDeep` for comparing objects of
2069
2119
  * the same `toStringTag`.
@@ -2169,7 +2219,9 @@ function equalObjects(object, other, bitmask, customizer, equalFunc, stack) {
2169
2219
  /** Used to compose bitmasks for value comparisons. */
2170
2220
  var COMPARE_PARTIAL_FLAG$2 = 1;
2171
2221
  /** `Object#toString` result references. */
2172
- var argsTag = "[object Arguments]", arrayTag = "[object Array]", objectTag = "[object Object]";
2222
+ var argsTag = "[object Arguments]";
2223
+ var arrayTag = "[object Array]";
2224
+ var objectTag = "[object Object]";
2173
2225
  /** Used to check objects for own properties. */
2174
2226
  var hasOwnProperty = Object.prototype.hasOwnProperty;
2175
2227
  /**
@@ -2236,7 +2288,8 @@ function baseIsEqual(value, other, bitmask, customizer, stack) {
2236
2288
  //#endregion
2237
2289
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseIsMatch.js
2238
2290
  /** Used to compose bitmasks for value comparisons. */
2239
- var COMPARE_PARTIAL_FLAG$1 = 1, COMPARE_UNORDERED_FLAG$1 = 2;
2291
+ var COMPARE_PARTIAL_FLAG$1 = 1;
2292
+ var COMPARE_UNORDERED_FLAG$1 = 2;
2240
2293
  /**
2241
2294
  * The base implementation of `_.isMatch` without support for iteratee shorthands.
2242
2295
  *
@@ -2405,7 +2458,8 @@ function hasIn(object, path) {
2405
2458
  //#endregion
2406
2459
  //#region ../../node_modules/.pnpm/lodash-es@4.18.1/node_modules/lodash-es/_baseMatchesProperty.js
2407
2460
  /** Used to compose bitmasks for value comparisons. */
2408
- var COMPARE_PARTIAL_FLAG = 1, COMPARE_UNORDERED_FLAG = 2;
2461
+ var COMPARE_PARTIAL_FLAG = 1;
2462
+ var COMPARE_UNORDERED_FLAG = 2;
2409
2463
  /**
2410
2464
  * The base implementation of `_.matchesProperty` which doesn't clone `srcValue`.
2411
2465
  *
@@ -2722,7 +2776,7 @@ var sortBy = baseRest(function(collection, iteratees) {
2722
2776
  //#endregion
2723
2777
  //#region src/components/Display.vue?vue&type=script&setup=true&lang.ts
2724
2778
  var _hoisted_1 = { class: "tce-modal-root text-center ma-4" };
2725
- var Display_vue_vue_type_script_setup_true_lang_default = /* @__PURE__ */ defineComponent({
2779
+ var Display_vue_vue_type_script_setup_true_lang_default = /*@__PURE__*/ defineComponent({
2726
2780
  __name: "Display",
2727
2781
  props: {
2728
2782
  element: {},
@@ -2806,7 +2860,7 @@ var _plugin_vue_export_helper_default = (sfc, props) => {
2806
2860
  };
2807
2861
  //#endregion
2808
2862
  //#region src/components/Display.vue
2809
- var Display_default = /* @__PURE__ */ _plugin_vue_export_helper_default(Display_vue_vue_type_script_setup_true_lang_default, [["__scopeId", "data-v-22984316"]]);
2863
+ var Display_default = /*#__PURE__*/ _plugin_vue_export_helper_default(Display_vue_vue_type_script_setup_true_lang_default, [["__scopeId", "data-v-22984316"]]);
2810
2864
  //#endregion
2811
2865
  //#region src/index.ts
2812
2866
  var manifest = {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Tailor CMS modal end-user component",
4
4
  "author": "Studion <info@gostudion.com> (https://github.com/tailor-cms)",
5
5
  "type": "module",
6
- "version": "2.0.0",
6
+ "version": "2.0.2",
7
7
  "exports": {
8
8
  ".": {
9
9
  "import": "./dist/index.js",
@@ -19,15 +19,15 @@
19
19
  "vue": "^3.5.29"
20
20
  },
21
21
  "devDependencies": {
22
- "@tailor-cms/eslint-config": "2.0.1",
22
+ "@tailor-cms/eslint-config": "2.0.3",
23
23
  "@types/lodash-es": "^4.17.12",
24
- "@vitejs/plugin-vue": "^6.0.6",
24
+ "@vitejs/plugin-vue": "^6.0.8",
25
25
  "typescript": "^6.0.3",
26
- "vite": "^8.0.10",
26
+ "vite": "^8.1.5",
27
27
  "vite-plugin-lib-inject-css": "^2.2.2",
28
- "vue-tsc": "^3.2.7",
29
- "vuetify": "^4.0.6",
30
- "@tailor-cms/ce-modal-manifest": "2.0.0"
28
+ "vue-tsc": "^3.3.8",
29
+ "vuetify": "^4.1.6",
30
+ "@tailor-cms/ce-modal-manifest": "2.0.2"
31
31
  },
32
32
  "dependencies": {
33
33
  "lodash-es": "^4.18.1"
@@ -36,7 +36,7 @@
36
36
  "access": "public"
37
37
  },
38
38
  "engines": {
39
- "node": ">=24"
39
+ "node": ">=26"
40
40
  },
41
41
  "scripts": {
42
42
  "dev": "vite build --watch",