rb-document-form-constructor 0.8.34 → 0.8.36

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.
@@ -11194,7 +11194,7 @@ var script$3 = {
11194
11194
  isValueEmpty(fieldName) {
11195
11195
  var _this$doc$fieldName;
11196
11196
 
11197
- if (!this.doc[fieldName] && !((_this$doc$fieldName = this.doc[fieldName]) !== null && _this$doc$fieldName !== void 0 && _this$doc$fieldName.length)) {
11197
+ if (!(this.doc[fieldName] || (_this$doc$fieldName = this.doc[fieldName]) !== null && _this$doc$fieldName !== void 0 && _this$doc$fieldName.length)) {
11198
11198
  return true;
11199
11199
  }
11200
11200
 
@@ -11209,7 +11209,7 @@ var script$3 = {
11209
11209
  isValueEmpty: function isValueEmpty(fieldName) {
11210
11210
  var _this$doc$fieldName;
11211
11211
 
11212
- if (!this.doc[fieldName] && !((_this$doc$fieldName = this.doc[fieldName]) !== null && _this$doc$fieldName !== void 0 && _this$doc$fieldName.length)) {
11212
+ if (!(this.doc[fieldName] || (_this$doc$fieldName = this.doc[fieldName]) !== null && _this$doc$fieldName !== void 0 && _this$doc$fieldName.length)) {
11213
11213
  return true;
11214
11214
  }
11215
11215
 
@@ -11428,7 +11428,7 @@ var __vue_inject_styles__$3 = undefined;
11428
11428
  var __vue_scope_id__$3 = undefined;
11429
11429
  /* module identifier */
11430
11430
 
11431
- var __vue_module_identifier__$3 = "data-v-2b4f0a03";
11431
+ var __vue_module_identifier__$3 = "data-v-7f059635";
11432
11432
  /* functional template */
11433
11433
 
11434
11434
  var __vue_is_functional_template__$3 = false;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rb-document-form-constructor",
3
- "version": "0.8.34",
3
+ "version": "0.8.36",
4
4
  "description": "",
5
5
  "main": "dist/rb-document-form-constructor.ssr.js",
6
6
  "browser": "dist/rb-document-form-constructor.esm.js",
@@ -118,7 +118,7 @@ export default {
118
118
  }
119
119
  },
120
120
  isValueEmpty(fieldName) {
121
- if (!this.doc[fieldName] && !this.doc[fieldName]?.length) {
121
+ if (!(this.doc[fieldName] || this.doc[fieldName]?.length)) {
122
122
  return true;
123
123
  }
124
124