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.umd.js
CHANGED
@@ -2108,6 +2108,8 @@
|
|
2108
2108
|
title = _ref.title,
|
2109
2109
|
_ref$userLabel = _ref.userLabel,
|
2110
2110
|
userLabel = _ref$userLabel === void 0 ? "User" : _ref$userLabel,
|
2111
|
+
_ref$userValue = _ref.userValue,
|
2112
|
+
userValue = _ref$userValue === void 0 ? "" : _ref$userValue,
|
2111
2113
|
_ref$passwordLabel = _ref.passwordLabel,
|
2112
2114
|
passwordLabel = _ref$passwordLabel === void 0 ? "Password" : _ref$passwordLabel,
|
2113
2115
|
_ref$passwordValue = _ref.passwordValue,
|
@@ -2121,7 +2123,7 @@
|
|
2121
2123
|
message = _ref.message,
|
2122
2124
|
loading = _ref.loading;
|
2123
2125
|
|
2124
|
-
var _useState = React.useState(
|
2126
|
+
var _useState = React.useState(userValue),
|
2125
2127
|
user = _useState[0],
|
2126
2128
|
setUser = _useState[1];
|
2127
2129
|
|