ywana-core8 0.1.92 → 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/doc/package-lock.json +4 -4
- package/doc/package.json +1 -1
- package/doc/public/index.html +2 -0
- package/doc/src/App.js +84 -4
- package/doc/src/components/WelcomePage.js +21 -21
- package/doc/src/index.css +9 -0
- package/doc/src/index.js +5 -1
- package/doc/src/theme.css +256 -0
- package/package.json +2 -2
- package/src/widgets/login/LoginBox.js +2 -2
package/dist/index.cjs
CHANGED
@@ -26728,8 +26728,8 @@ var LoginBox = function LoginBox(_ref) {
|
|
26728
26728
|
function canOK() {
|
26729
26729
|
return user && user.length > 0 && password && password.length > 0;
|
26730
26730
|
}
|
26731
|
-
function ok(
|
26732
|
-
if (onOK && canOK()) onOK(user,
|
26731
|
+
function ok() {
|
26732
|
+
if (onOK && canOK()) onOK(user, password);
|
26733
26733
|
}
|
26734
26734
|
|
26735
26735
|
// Helper function for backward compatibility
|