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.modern.js
CHANGED
@@ -1753,7 +1753,8 @@ var LoginBox = function LoginBox(_ref) {
|
|
1753
1753
|
value: user,
|
1754
1754
|
onChange: changeUser,
|
1755
1755
|
onEnter: ok,
|
1756
|
-
outlined: true
|
1756
|
+
outlined: true,
|
1757
|
+
autoComplete: "on"
|
1757
1758
|
}), /*#__PURE__*/React.createElement(TextField, {
|
1758
1759
|
id: "loginbox-password",
|
1759
1760
|
label: tx(passwordLabel),
|
@@ -1761,7 +1762,8 @@ var LoginBox = function LoginBox(_ref) {
|
|
1761
1762
|
onChange: changePassword,
|
1762
1763
|
onEnter: ok,
|
1763
1764
|
type: "password",
|
1764
|
-
outlined: true
|
1765
|
+
outlined: true,
|
1766
|
+
autoComplete: "on"
|
1765
1767
|
})), /*#__PURE__*/React.createElement("footer", null, loading ? /*#__PURE__*/React.createElement("div", {
|
1766
1768
|
className: "load-box"
|
1767
1769
|
}, /*#__PURE__*/React.createElement(Icon, {
|