form-custom-test 3.0.12 → 3.0.13
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/designer.es.js +8 -3
- package/dist/designer.umd.js +144 -144
- package/dist/render.es.js +2 -2
- package/dist/render.umd.js +1 -1
- package/package.json +1 -1
package/dist/designer.es.js
CHANGED
|
@@ -18,11 +18,15 @@ var __spreadValues = (a, b) => {
|
|
|
18
18
|
};
|
|
19
19
|
var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
|
|
20
20
|
var _a;
|
|
21
|
-
import
|
|
21
|
+
import * as vue from "vue";
|
|
22
|
+
import { reactive, openBlock, createElementBlock, normalizeClass, createElementVNode, toDisplayString, createCommentVNode, resolveComponent, createBlock, normalizeStyle, withCtx, createVNode, createTextVNode, Fragment, renderList, renderSlot, withModifiers, createSlots, watch, ref, onBeforeUnmount, onMounted, onUnmounted, withDirectives, mergeProps, resolveDynamicComponent, vShow, resolveDirective, defineComponent, isVNode } from "vue";
|
|
22
23
|
var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {};
|
|
23
24
|
function getDefaultExportFromCjs(x) {
|
|
24
25
|
return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x;
|
|
25
26
|
}
|
|
27
|
+
function getDefaultExportFromNamespaceIfPresent(n) {
|
|
28
|
+
return n && Object.prototype.hasOwnProperty.call(n, "default") ? n["default"] : n;
|
|
29
|
+
}
|
|
26
30
|
var axios$2 = { exports: {} };
|
|
27
31
|
var bind$2 = function bind2(fn, thisArg) {
|
|
28
32
|
return function wrap() {
|
|
@@ -57261,6 +57265,7 @@ function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
57261
57265
|
}
|
|
57262
57266
|
var VFormDesigner = /* @__PURE__ */ _export_sfc$1(_sfc_main$c, [["render", _sfc_render$c], ["__scopeId", "data-v-26b2429d"]]);
|
|
57263
57267
|
var vuedraggable_umd = { exports: {} };
|
|
57268
|
+
var require$$0 = /* @__PURE__ */ getDefaultExportFromNamespaceIfPresent(vue);
|
|
57264
57269
|
/**!
|
|
57265
57270
|
* Sortable 1.14.0
|
|
57266
57271
|
* @author RubaXa <trash@rubaxa.org>
|
|
@@ -63794,13 +63799,13 @@ function registerIcon(app) {
|
|
|
63794
63799
|
if (typeof window !== "undefined") {
|
|
63795
63800
|
let loadSvg = function() {
|
|
63796
63801
|
var body = document.body;
|
|
63797
|
-
var svgDom = document.getElementById("
|
|
63802
|
+
var svgDom = document.getElementById("__svg__icons__dom__1762585211641__");
|
|
63798
63803
|
if (!svgDom) {
|
|
63799
63804
|
svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
63800
63805
|
svgDom.style.position = "absolute";
|
|
63801
63806
|
svgDom.style.width = "0";
|
|
63802
63807
|
svgDom.style.height = "0";
|
|
63803
|
-
svgDom.id = "
|
|
63808
|
+
svgDom.id = "__svg__icons__dom__1762585211641__";
|
|
63804
63809
|
svgDom.setAttribute("xmlns", "http://www.w3.org/2000/svg");
|
|
63805
63810
|
svgDom.setAttribute("xmlns:link", "http://www.w3.org/1999/xlink");
|
|
63806
63811
|
}
|