ywana-core8 0.1.93 → 0.1.94
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 +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/doc/index.html +0 -0
- package/package.json +1 -1
- package/src/widgets/login/LoginBox.js +2 -2
package/dist/index.modern.js
CHANGED
@@ -26719,8 +26719,8 @@ var LoginBox = function LoginBox(_ref) {
|
|
26719
26719
|
function canOK() {
|
26720
26720
|
return user && user.length > 0 && password && password.length > 0;
|
26721
26721
|
}
|
26722
|
-
function ok(
|
26723
|
-
if (onOK && canOK()) onOK(user,
|
26722
|
+
function ok() {
|
26723
|
+
if (onOK && canOK()) onOK(user, password);
|
26724
26724
|
}
|
26725
26725
|
|
26726
26726
|
// Helper function for backward compatibility
|