ywana-core8 0.1.18 → 0.1.20

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.
@@ -1359,7 +1359,7 @@ var TextField = function TextField(props) {
1359
1359
  onFocus = props.onFocus,
1360
1360
  onBlur = props.onBlur,
1361
1361
  _props$autoComplete = props.autoComplete,
1362
- autoComplete = _props$autoComplete === void 0 ? false : _props$autoComplete;
1362
+ autoComplete = _props$autoComplete === void 0 ? "off" : _props$autoComplete;
1363
1363
  function onKeyPress(event) {
1364
1364
  var key = event.charCode ? event.charCode : event.keyCode ? event.keyCode : 0;
1365
1365
  if (key == 13) {
@@ -3997,6 +3997,8 @@ var FilesSearchBox = function FilesSearchBox(props) {
3997
3997
  return /*#__PURE__*/React.createElement("div", {
3998
3998
  className: "file-searchbox"
3999
3999
  }, /*#__PURE__*/React.createElement(TextField, {
4000
+ id: "files-search-box",
4001
+ type: "search",
4000
4002
  placeholder: "Search...",
4001
4003
  onChange: searchChanged,
4002
4004
  outlined: true