ywana-core8 0.0.348 → 0.0.349
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
@@ -2066,6 +2066,8 @@ var LoginBox = function LoginBox(_ref) {
|
|
2066
2066
|
userLabel = _ref$userLabel === void 0 ? "User" : _ref$userLabel,
|
2067
2067
|
_ref$passwordLabel = _ref.passwordLabel,
|
2068
2068
|
passwordLabel = _ref$passwordLabel === void 0 ? "Password" : _ref$passwordLabel,
|
2069
|
+
_ref$passwordValue = _ref.passwordValue,
|
2070
|
+
passwordValue = _ref$passwordValue === void 0 ? '' : _ref$passwordValue,
|
2069
2071
|
_ref$loginLabel = _ref.loginLabel,
|
2070
2072
|
loginLabel = _ref$loginLabel === void 0 ? "Log In" : _ref$loginLabel,
|
2071
2073
|
onOK = _ref.onOK,
|
@@ -2079,7 +2081,7 @@ var LoginBox = function LoginBox(_ref) {
|
|
2079
2081
|
user = _useState[0],
|
2080
2082
|
setUser = _useState[1];
|
2081
2083
|
|
2082
|
-
var _useState2 = useState(
|
2084
|
+
var _useState2 = useState(passwordValue),
|
2083
2085
|
password = _useState2[0],
|
2084
2086
|
setPassword = _useState2[1];
|
2085
2087
|
|