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 +1 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +1 -4
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +1 -4
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/textfield.js +1 -2
package/dist/index.modern.js
CHANGED
@@ -900,9 +900,7 @@ var TextField = function TextField(props) {
|
|
900
900
|
onChange: change,
|
901
901
|
onKeyDown: onKeyPress,
|
902
902
|
onFocus: focus,
|
903
|
-
readOnly: readOnly
|
904
|
-
onfocus: "(this.type='date')",
|
905
|
-
onfocusout: "(this.type='text')"
|
903
|
+
readOnly: readOnly
|
906
904
|
}), /*#__PURE__*/React.createElement("span", {
|
907
905
|
className: "bar"
|
908
906
|
}), label ? /*#__PURE__*/React.createElement("label", null, labelTxt) : null);
|
@@ -978,7 +976,6 @@ var DropDown = function DropDown(props) {
|
|
978
976
|
var items = filterActive ? options.filter(function (option) {
|
979
977
|
return option.label.toUpperCase().indexOf(label.toUpperCase()) >= 0;
|
980
978
|
}) : options;
|
981
|
-
console.log('filterActive: ', filterActive, label, items.length);
|
982
979
|
var lis = items.map(function (option) {
|
983
980
|
return /*#__PURE__*/React.createElement("li", {
|
984
981
|
key: option.value,
|