form-custom-test 3.0.93 → 3.0.95
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 +9 -5
- package/dist/designer.umd.js +4 -4
- 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
|
@@ -1590,8 +1590,8 @@ const basicFields = [
|
|
|
1590
1590
|
hidden: false,
|
|
1591
1591
|
clearable: true,
|
|
1592
1592
|
editable: false,
|
|
1593
|
-
format: "YYYY
|
|
1594
|
-
valueFormat: "YYYY
|
|
1593
|
+
format: "YYYY/MM/DD",
|
|
1594
|
+
valueFormat: "YYYY/MM/DD",
|
|
1595
1595
|
required: false,
|
|
1596
1596
|
requiredHint: "",
|
|
1597
1597
|
validation: "",
|
|
@@ -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
|
});
|
|
@@ -59334,6 +59334,10 @@ function _sfc_render$11(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
59334
59334
|
label: "YYYY-MM-DD",
|
|
59335
59335
|
value: "YYYY-MM-DD"
|
|
59336
59336
|
}),
|
|
59337
|
+
createVNode(_component_el_option, {
|
|
59338
|
+
label: "YYYY/MM/DD",
|
|
59339
|
+
value: "YYYY/MM/DD"
|
|
59340
|
+
}),
|
|
59337
59341
|
createVNode(_component_el_option, {
|
|
59338
59342
|
label: "YYYY-MM-DD HH:mm",
|
|
59339
59343
|
value: "YYYY-MM-DD HH:mm"
|
|
@@ -68246,13 +68250,13 @@ function registerIcon(app) {
|
|
|
68246
68250
|
if (typeof window !== "undefined") {
|
|
68247
68251
|
let loadSvg = function() {
|
|
68248
68252
|
var body = document.body;
|
|
68249
|
-
var svgDom = document.getElementById("
|
|
68253
|
+
var svgDom = document.getElementById("__svg__icons__dom__1776905188143__");
|
|
68250
68254
|
if (!svgDom) {
|
|
68251
68255
|
svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
68252
68256
|
svgDom.style.position = "absolute";
|
|
68253
68257
|
svgDom.style.width = "0";
|
|
68254
68258
|
svgDom.style.height = "0";
|
|
68255
|
-
svgDom.id = "
|
|
68259
|
+
svgDom.id = "__svg__icons__dom__1776905188143__";
|
|
68256
68260
|
svgDom.setAttribute("xmlns", "http://www.w3.org/2000/svg");
|
|
68257
68261
|
svgDom.setAttribute("xmlns:link", "http://www.w3.org/1999/xlink");
|
|
68258
68262
|
}
|