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.umd.js
CHANGED
@@ -26721,8 +26721,8 @@
|
|
26721
26721
|
function canOK() {
|
26722
26722
|
return user && user.length > 0 && password && password.length > 0;
|
26723
26723
|
}
|
26724
|
-
function ok(
|
26725
|
-
if (onOK && canOK()) onOK(user,
|
26724
|
+
function ok() {
|
26725
|
+
if (onOK && canOK()) onOK(user, password);
|
26726
26726
|
}
|
26727
26727
|
|
26728
26728
|
// Helper function for backward compatibility
|