form-custom-test 3.0.93 → 3.0.94
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 +3 -3
- package/dist/designer.umd.js +2 -2
- package/dist/render.es.js +3 -3
- package/dist/render.umd.js +2 -2
- package/package.json +1 -1
package/dist/designer.es.js
CHANGED
|
@@ -10540,7 +10540,7 @@ var fieldMixin = {
|
|
|
10540
10540
|
colName.forEach((cName) => {
|
|
10541
10541
|
const col2 = this.findColByName(cName);
|
|
10542
10542
|
if (col2 && col2.options) {
|
|
10543
|
-
col2.options.hidden =
|
|
10543
|
+
col2.options.hidden = hiddenVal;
|
|
10544
10544
|
anySet = true;
|
|
10545
10545
|
}
|
|
10546
10546
|
});
|
|
@@ -68246,13 +68246,13 @@ function registerIcon(app) {
|
|
|
68246
68246
|
if (typeof window !== "undefined") {
|
|
68247
68247
|
let loadSvg = function() {
|
|
68248
68248
|
var body = document.body;
|
|
68249
|
-
var svgDom = document.getElementById("
|
|
68249
|
+
var svgDom = document.getElementById("__svg__icons__dom__1776842905036__");
|
|
68250
68250
|
if (!svgDom) {
|
|
68251
68251
|
svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
68252
68252
|
svgDom.style.position = "absolute";
|
|
68253
68253
|
svgDom.style.width = "0";
|
|
68254
68254
|
svgDom.style.height = "0";
|
|
68255
|
-
svgDom.id = "
|
|
68255
|
+
svgDom.id = "__svg__icons__dom__1776842905036__";
|
|
68256
68256
|
svgDom.setAttribute("xmlns", "http://www.w3.org/2000/svg");
|
|
68257
68257
|
svgDom.setAttribute("xmlns:link", "http://www.w3.org/1999/xlink");
|
|
68258
68258
|
}
|