ywana-core8 0.0.640 → 0.0.643

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/index.umd.js CHANGED
@@ -1139,8 +1139,7 @@
1139
1139
  }).every(function (_ref3) {
1140
1140
  var name = _ref3[0],
1141
1141
  attr = _ref3[1];
1142
- console.log("validate", name, data[name], data[name] === null ? "NULL" : data[name] === undefined ? "UNDEFINED" : data[name]);
1143
- return data[name] === null ? false : data[name] === undefined ? false : _this.checkType(attr, data[name]);
1142
+ return data[name] === null ? false : data[name] === undefined ? false : data[name] === "" ? false : _this.checkType(attr, data[name]);
1144
1143
  });
1145
1144
  }
1146
1145
  /**
@@ -1255,7 +1254,7 @@
1255
1254
  var _proto2 = Content.prototype;
1256
1255
 
1257
1256
  _proto2.isValid = function isValid() {
1258
- console.log("Content.isValid", this_value);
1257
+ console.log("Content.isValid", this._value);
1259
1258
  return this._type.validate(this._value);
1260
1259
  };
1261
1260