ywana-core8 0.1.18 → 0.1.19
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 +4 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +4 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +4 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/textfield.js +2 -2
- package/src/widgets/explorer/Explorer.js +1 -1
package/dist/index.umd.js
CHANGED
@@ -1361,7 +1361,7 @@
|
|
1361
1361
|
onFocus = props.onFocus,
|
1362
1362
|
onBlur = props.onBlur,
|
1363
1363
|
_props$autoComplete = props.autoComplete,
|
1364
|
-
autoComplete = _props$autoComplete === void 0 ?
|
1364
|
+
autoComplete = _props$autoComplete === void 0 ? "off" : _props$autoComplete;
|
1365
1365
|
function onKeyPress(event) {
|
1366
1366
|
var key = event.charCode ? event.charCode : event.keyCode ? event.keyCode : 0;
|
1367
1367
|
if (key == 13) {
|
@@ -1418,7 +1418,7 @@
|
|
1418
1418
|
onBlur: blur,
|
1419
1419
|
readOnly: readOnly,
|
1420
1420
|
step: "any",
|
1421
|
-
|
1421
|
+
autocomplete: autoComplete
|
1422
1422
|
}), readOnly === false && canClear && value && value.length > 0 ? /*#__PURE__*/React__default["default"].createElement(Icon, {
|
1423
1423
|
icon: "close",
|
1424
1424
|
clickable: true,
|
@@ -3999,6 +3999,8 @@
|
|
3999
3999
|
return /*#__PURE__*/React__default["default"].createElement("div", {
|
4000
4000
|
className: "file-searchbox"
|
4001
4001
|
}, /*#__PURE__*/React__default["default"].createElement(TextField, {
|
4002
|
+
id: "files-search-box",
|
4003
|
+
type: "search",
|
4002
4004
|
placeholder: "Search...",
|
4003
4005
|
onChange: searchChanged,
|
4004
4006
|
outlined: true
|