ywana-core8 0.0.146 → 0.0.147

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.cjs CHANGED
@@ -907,9 +907,7 @@ var TextField = function TextField(props) {
907
907
  onChange: change,
908
908
  onKeyDown: onKeyPress,
909
909
  onFocus: focus,
910
- readOnly: readOnly,
911
- onfocus: "(this.type='date')",
912
- onfocusout: "(this.type='text')"
910
+ readOnly: readOnly
913
911
  }), /*#__PURE__*/React__default["default"].createElement("span", {
914
912
  className: "bar"
915
913
  }), label ? /*#__PURE__*/React__default["default"].createElement("label", null, labelTxt) : null);
@@ -985,7 +983,6 @@ var DropDown = function DropDown(props) {
985
983
  var items = filterActive ? options.filter(function (option) {
986
984
  return option.label.toUpperCase().indexOf(label.toUpperCase()) >= 0;
987
985
  }) : options;
988
- console.log('filterActive: ', filterActive, label, items.length);
989
986
  var lis = items.map(function (option) {
990
987
  return /*#__PURE__*/React__default["default"].createElement("li", {
991
988
  key: option.value,