ywana-core8 0.1.23 → 0.1.24
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/widgets/login/LoginBox.js +2 -2
package/dist/index.cjs
CHANGED
@@ -1762,7 +1762,8 @@ var LoginBox = function LoginBox(_ref) {
|
|
1762
1762
|
value: user,
|
1763
1763
|
onChange: changeUser,
|
1764
1764
|
onEnter: ok,
|
1765
|
-
outlined: true
|
1765
|
+
outlined: true,
|
1766
|
+
autoComplete: "on"
|
1766
1767
|
}), /*#__PURE__*/React__default["default"].createElement(TextField, {
|
1767
1768
|
id: "loginbox-password",
|
1768
1769
|
label: tx(passwordLabel),
|
@@ -1770,7 +1771,8 @@ var LoginBox = function LoginBox(_ref) {
|
|
1770
1771
|
onChange: changePassword,
|
1771
1772
|
onEnter: ok,
|
1772
1773
|
type: "password",
|
1773
|
-
outlined: true
|
1774
|
+
outlined: true,
|
1775
|
+
autoComplete: "on"
|
1774
1776
|
})), /*#__PURE__*/React__default["default"].createElement("footer", null, loading ? /*#__PURE__*/React__default["default"].createElement("div", {
|
1775
1777
|
className: "load-box"
|
1776
1778
|
}, /*#__PURE__*/React__default["default"].createElement(Icon, {
|