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/render.es.js
CHANGED
|
@@ -8901,7 +8901,7 @@ var fieldMixin = {
|
|
|
8901
8901
|
colName.forEach((cName) => {
|
|
8902
8902
|
const col2 = this.findColByName(cName);
|
|
8903
8903
|
if (col2 && col2.options) {
|
|
8904
|
-
col2.options.hidden =
|
|
8904
|
+
col2.options.hidden = hiddenVal;
|
|
8905
8905
|
anySet = true;
|
|
8906
8906
|
}
|
|
8907
8907
|
});
|
|
@@ -26066,13 +26066,13 @@ function registerIcon(app) {
|
|
|
26066
26066
|
if (typeof window !== "undefined") {
|
|
26067
26067
|
let loadSvg = function() {
|
|
26068
26068
|
var body = document.body;
|
|
26069
|
-
var svgDom = document.getElementById("
|
|
26069
|
+
var svgDom = document.getElementById("__svg__icons__dom__1776842915188__");
|
|
26070
26070
|
if (!svgDom) {
|
|
26071
26071
|
svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
26072
26072
|
svgDom.style.position = "absolute";
|
|
26073
26073
|
svgDom.style.width = "0";
|
|
26074
26074
|
svgDom.style.height = "0";
|
|
26075
|
-
svgDom.id = "
|
|
26075
|
+
svgDom.id = "__svg__icons__dom__1776842915188__";
|
|
26076
26076
|
svgDom.setAttribute("xmlns", "http://www.w3.org/2000/svg");
|
|
26077
26077
|
svgDom.setAttribute("xmlns:link", "http://www.w3.org/1999/xlink");
|
|
26078
26078
|
}
|