ywana-core8 0.1.20 → 0.1.21
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 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +1 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +1 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/textfield.js +1 -1
- package/src/widgets/explorer/Explorer.js +1 -1
package/dist/index.cjs
CHANGED
@@ -1368,7 +1368,7 @@ var TextField = function TextField(props) {
|
|
1368
1368
|
onFocus = props.onFocus,
|
1369
1369
|
onBlur = props.onBlur,
|
1370
1370
|
_props$autoComplete = props.autoComplete,
|
1371
|
-
autoComplete = _props$autoComplete === void 0 ? "
|
1371
|
+
autoComplete = _props$autoComplete === void 0 ? "new-password" : _props$autoComplete;
|
1372
1372
|
function onKeyPress(event) {
|
1373
1373
|
var key = event.charCode ? event.charCode : event.keyCode ? event.keyCode : 0;
|
1374
1374
|
if (key == 13) {
|
@@ -4007,7 +4007,6 @@ var FilesSearchBox = function FilesSearchBox(props) {
|
|
4007
4007
|
className: "file-searchbox"
|
4008
4008
|
}, /*#__PURE__*/React__default["default"].createElement(TextField, {
|
4009
4009
|
id: "files-search-box",
|
4010
|
-
type: "search",
|
4011
4010
|
placeholder: "Search...",
|
4012
4011
|
onChange: searchChanged,
|
4013
4012
|
outlined: true
|