Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions assay/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assay/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
}
},
"dependencies": {
"@labkey/components": "7.38.0"
"@labkey/components": "7.38.1-moreAccessibility.8"
},
"devDependencies": {
"@labkey/build": "9.1.3",
Expand Down
8 changes: 4 additions & 4 deletions core/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
}
},
"dependencies": {
"@labkey/components": "7.38.0",
"@labkey/components": "7.38.1-moreAccessibility.8",
"@labkey/themes": "1.9.3"
},
"devDependencies": {
Expand Down
13 changes: 7 additions & 6 deletions core/resources/views/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,27 @@
<div class="labkey-error" id="errors"></div>
<div class="auth-form-body">
<label for="email">Email</label>
<input id="email" name="email" type="text" class="input-block" tabindex="1" autocomplete="off">
<input id="email" name="email" type="text" class="input-block" autocomplete="off">
<label for="password">Password</label>
<div class="forgot-password-link">
<a href="login-resetPassword.view">Forgot password</a>
</div>
<input id="password" name="password" type="password" class="input-block" tabindex="2" autocomplete="off">
<input tabindex="3" type="checkbox" name="remember" id="remember" checked> Remember my email address
<input id="password" name="password" type="password" class="input-block" autocomplete="off">
<input aria-labelledby="remember-label" type="checkbox" name="remember" id="remember" checked >
<span id="remember-label">Remember my email address</span>
<div class="termsOfUseSection" hidden>
<div class="auth-header auth-item">Terms of Use</div>
<div class="toucontent auth-item termsOfUseContent"></div>
<div class="auth-item">
<input type="checkbox" tabindex="4" name="approvedTermsOfUse" id="approvedTermsOfUse" class="auth-item">
<input type="checkbox" name="approvedTermsOfUse" id="approvedTermsOfUse" class="auth-item">
<label for="approvedTermsOfUse">I agree to these terms</label>
</div>
</div>
<input type="hidden" name="termsOfUseType" id="termsOfUseType">
<div class="auth-item auth-credentials-submit">
<!-- Note: login.js attaches an authenticateUser() click event to elements with classes "loginSubmitButton" and "signin-btn" -->
<input type="submit" tabindex="-1" class="loginSubmitButton"/>
<a tabindex="5" class="labkey-button primary signin-btn"><span>Sign In</span></a>
<button class="labkey-button primary signin-btn" type="button"><span>Sign In</span></button>
<span class="registrationSection" hidden>
<a class="labkey-button" id="registerButton" href="login-register.view">Register</a>
</span>
Expand All @@ -47,4 +48,4 @@
document.getElementById('registerButton').href += '?returnUrl=' + encodeURIComponent(LABKEY.ActionURL.getParameter('returnUrl'));
}
});
</script>
</script>
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public void testReorderConfigurations()

signOut();
assertSsoLinkOrder(config_uncool, config_cool);
clickAndWait(Locator.linkWithText("Sign In"));
clickAndWait(Locator.button("Sign In"));
assertSsoLinkOrder(config_uncool, config_cool);
simpleSignIn();

Expand All @@ -64,7 +64,7 @@ public void testReorderConfigurations()

signOut();
assertSsoLinkOrder(config_cool, config_uncool);
clickAndWait(Locator.linkWithText("Sign In"));
clickAndWait(Locator.button("Sign In"));
assertSsoLinkOrder(config_cool, config_uncool);
simpleSignIn();
}
Expand Down
8 changes: 4 additions & 4 deletions experiment/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion experiment/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"test-integration": "cross-env NODE_ENV=test jest --ci --runInBand -c test/js/jest.config.integration.js"
},
"dependencies": {
"@labkey/components": "7.38.0"
"@labkey/components": "7.38.1-moreAccessibility.8"
},
"devDependencies": {
"@labkey/build": "9.1.3",
Expand Down
8 changes: 4 additions & 4 deletions pipeline/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pipeline/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"build-prod": "npm run clean && cross-env NODE_ENV=production PROD_SOURCE_MAP=source-map webpack --config node_modules/@labkey/build/webpack/prod.config.js --color --progress --profile"
},
"dependencies": {
"@labkey/components": "7.38.0"
"@labkey/components": "7.38.1-moreAccessibility.8"
},
"devDependencies": {
"@labkey/build": "9.1.3",
Expand Down