ywana-core8 0.0.387 → 0.0.388
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 +3 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/widgets/login/LoginBox.js +2 -1
package/dist/index.modern.js
CHANGED
@@ -2105,6 +2105,8 @@ var LoginBox = function LoginBox(_ref) {
|
|
2105
2105
|
title = _ref.title,
|
2106
2106
|
_ref$userLabel = _ref.userLabel,
|
2107
2107
|
userLabel = _ref$userLabel === void 0 ? "User" : _ref$userLabel,
|
2108
|
+
_ref$userValue = _ref.userValue,
|
2109
|
+
userValue = _ref$userValue === void 0 ? "" : _ref$userValue,
|
2108
2110
|
_ref$passwordLabel = _ref.passwordLabel,
|
2109
2111
|
passwordLabel = _ref$passwordLabel === void 0 ? "Password" : _ref$passwordLabel,
|
2110
2112
|
_ref$passwordValue = _ref.passwordValue,
|
@@ -2118,7 +2120,7 @@ var LoginBox = function LoginBox(_ref) {
|
|
2118
2120
|
message = _ref.message,
|
2119
2121
|
loading = _ref.loading;
|
2120
2122
|
|
2121
|
-
var _useState = useState(
|
2123
|
+
var _useState = useState(userValue),
|
2122
2124
|
user = _useState[0],
|
2123
2125
|
setUser = _useState[1];
|
2124
2126
|
|