@dhccmobile/vue3-lo-form 1.1.17 → 1.1.18
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/vue3-lo-form.common.js +2 -2
- package/dist/vue3-lo-form.common.js.map +1 -1
- package/dist/vue3-lo-form.css +1 -1
- package/dist/vue3-lo-form.umd.js +2 -2
- package/dist/vue3-lo-form.umd.js.map +1 -1
- package/dist/vue3-lo-form.umd.min.js +1 -1
- package/dist/vue3-lo-form.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/core/FormApi.ts +2 -2
- package/src/styles/theme2.scss +35 -7
|
@@ -93131,7 +93131,7 @@ var FormApi_FormApi = /*#__PURE__*/function () {
|
|
|
93131
93131
|
object[key] = newValue;
|
|
93132
93132
|
fieldInfoArr.push(fieldInfo);
|
|
93133
93133
|
|
|
93134
|
-
if (oldValue === "null") {
|
|
93134
|
+
if (oldValue === "null" || oldValue === "undefined") {
|
|
93135
93135
|
oldValue = "";
|
|
93136
93136
|
}
|
|
93137
93137
|
|
|
@@ -93167,7 +93167,7 @@ var FormApi_FormApi = /*#__PURE__*/function () {
|
|
|
93167
93167
|
oldValue = oldValue + "";
|
|
93168
93168
|
newValue = newValue + "";
|
|
93169
93169
|
|
|
93170
|
-
if (oldValue === "null") {
|
|
93170
|
+
if (oldValue === "null" || oldValue === "undefined") {
|
|
93171
93171
|
return true;
|
|
93172
93172
|
}
|
|
93173
93173
|
|