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.umd.js
CHANGED
@@ -2069,6 +2069,8 @@
|
|
2069
2069
|
userLabel = _ref$userLabel === void 0 ? "User" : _ref$userLabel,
|
2070
2070
|
_ref$passwordLabel = _ref.passwordLabel,
|
2071
2071
|
passwordLabel = _ref$passwordLabel === void 0 ? "Password" : _ref$passwordLabel,
|
2072
|
+
_ref$passwordValue = _ref.passwordValue,
|
2073
|
+
passwordValue = _ref$passwordValue === void 0 ? '' : _ref$passwordValue,
|
2072
2074
|
_ref$loginLabel = _ref.loginLabel,
|
2073
2075
|
loginLabel = _ref$loginLabel === void 0 ? "Log In" : _ref$loginLabel,
|
2074
2076
|
onOK = _ref.onOK,
|
@@ -2082,7 +2084,7 @@
|
|
2082
2084
|
user = _useState[0],
|
2083
2085
|
setUser = _useState[1];
|
2084
2086
|
|
2085
|
-
var _useState2 = React.useState(
|
2087
|
+
var _useState2 = React.useState(passwordValue),
|
2086
2088
|
password = _useState2[0],
|
2087
2089
|
setPassword = _useState2[1];
|
2088
2090
|
|