form-custom-test 3.0.97 → 3.0.98
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 +6 -6
- package/dist/designer.umd.js +2 -2
- package/dist/render.es.js +6 -6
- package/dist/render.umd.js +2 -2
- package/package.json +1 -1
package/dist/designer.es.js
CHANGED
|
@@ -4665,10 +4665,10 @@ const getRegExp = function(validatorName2) {
|
|
|
4665
4665
|
isPositiveIntegerZero: "/^0$|^([1-9]\\d{0,3})$/",
|
|
4666
4666
|
maxLen10Decimals2: "/^\\d{1,10}(\\.\\d{1,2})?$/",
|
|
4667
4667
|
maxLen12Decimals2: "/^\\d{1,12}(\\.\\d{1,2})?$/",
|
|
4668
|
-
latitude: "/^-?(?:90(
|
|
4669
|
-
sixFigures: "
|
|
4670
|
-
percentage: "/^(?:100(
|
|
4671
|
-
longitude: "/^-?(?:180(
|
|
4668
|
+
latitude: "/^-?(?:90(?:\\.0{1,6})?|[1-8]?\\d(?:\\.\\d{1,6})?|0(?:\\.\\d{1,6})?)$/",
|
|
4669
|
+
sixFigures: "/^\\d{1,6}(\\.\\d{1,6})?$/",
|
|
4670
|
+
percentage: "/^(?:100(?:\\.0{0,4})?|[1-9]?\\d(?:\\.\\d{0,4})?|0(?:\\.\\d{0,4})?)$/",
|
|
4671
|
+
longitude: "/^-?(?:180(?:\\.0{1,6})?|1[0-7]\\d(?:\\.\\d{1,6})?|[1-9]?\\d(?:\\.\\d{1,6})?|0(?:\\.\\d{1,6})?)$/"
|
|
4672
4672
|
};
|
|
4673
4673
|
return commonRegExp[validatorName2];
|
|
4674
4674
|
};
|
|
@@ -68278,13 +68278,13 @@ function registerIcon(app) {
|
|
|
68278
68278
|
if (typeof window !== "undefined") {
|
|
68279
68279
|
let loadSvg = function() {
|
|
68280
68280
|
var body = document.body;
|
|
68281
|
-
var svgDom = document.getElementById("
|
|
68281
|
+
var svgDom = document.getElementById("__svg__icons__dom__1777010204777__");
|
|
68282
68282
|
if (!svgDom) {
|
|
68283
68283
|
svgDom = document.createElementNS("http://www.w3.org/2000/svg", "svg");
|
|
68284
68284
|
svgDom.style.position = "absolute";
|
|
68285
68285
|
svgDom.style.width = "0";
|
|
68286
68286
|
svgDom.style.height = "0";
|
|
68287
|
-
svgDom.id = "
|
|
68287
|
+
svgDom.id = "__svg__icons__dom__1777010204777__";
|
|
68288
68288
|
svgDom.setAttribute("xmlns", "http://www.w3.org/2000/svg");
|
|
68289
68289
|
svgDom.setAttribute("xmlns:link", "http://www.w3.org/1999/xlink");
|
|
68290
68290
|
}
|