-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(textfield): add end-alignment (#5356)
* feat(textfield): add end-alignment * chore(textfield): update end-aligned screenshots * chore: fix FOUC in screenshot test * chore(textfield): remove endAligned component property * chore(textfield): add textarea end alignment test * chore(textfield): fix label linting issue * test(menu): increase animation delay for all menu tests * chore(textfield): add @NoFlip to end-alignment CSS
- Loading branch information
Showing
8 changed files
with
230 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 88 additions & 0 deletions
88
test/screenshot/spec/mdc-textfield/classes/baseline-end-aligned.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
<!DOCTYPE html> | ||
<!-- | ||
Copyright 2018 Google Inc. | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
--> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Baseline Text Field Element end-aligned - MDC Web Screenshot Test</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="../../../out/mdc.textfield.css"> | ||
<link rel="stylesheet" href="../../../out/mdc.typography.css"> | ||
<link rel="stylesheet" href="../../../out/spec/fixture.css"> | ||
<link rel="stylesheet" href="../../../out/spec/mdc-textfield/fixture.css"> | ||
</head> | ||
|
||
<body class="test-container"> | ||
<main class="test-viewport test-viewport--mobile"> | ||
<div class="test-layout"> | ||
|
||
<div class="test-cell test-cell--textfield"> | ||
<div class="mdc-text-field mdc-text-field--end-aligned mdc-text-field--no-label"> | ||
<!-- htmllint-disable --> | ||
<input type="text" class="mdc-text-field__input test-text-field__input" aria-label="Label" placeholder="Placeholder"> | ||
<!-- htmllint-enable --> | ||
<div class="mdc-line-ripple"></div> | ||
</div> | ||
</div> | ||
|
||
<div class="test-cell test-cell--textfield"> | ||
<div class="mdc-text-field mdc-text-field--end-aligned mdc-text-field--outlined mdc-text-field--no-label"> | ||
<!-- htmllint-disable --> | ||
<input type="text" class="mdc-text-field__input test-text-field__input" aria-label="Label" placeholder="Placeholder"> | ||
<!-- htmllint-enable --> | ||
<div class="mdc-notched-outline"> | ||
<div class="mdc-notched-outline__leading"></div> | ||
<div class="mdc-notched-outline__trailing"></div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="test-cell test-cell--textfield"> | ||
<div class="mdc-text-field mdc-text-field--end-aligned mdc-text-field--label-floating"> | ||
<input type="text" id="filled-text-field" class="mdc-text-field__input test-text-field__input" value="Filled value"> | ||
<label for="filled-text-field" class="mdc-floating-label mdc-floating-label--float-above">Label</label> | ||
<div class="mdc-line-ripple"></div> | ||
</div> | ||
</div> | ||
|
||
<div class="test-cell test-cell--textfield"> | ||
<div class="mdc-text-field mdc-text-field--end-aligned mdc-text-field--outlined mdc-text-field--label-floating"> | ||
<input type="text" id="outlined-text-field" class="mdc-text-field__input test-text-field__input" value="Filled value"> | ||
<div class="mdc-notched-outline mdc-notched-outline--notched"> | ||
<div class="mdc-notched-outline__leading"></div> | ||
<div class="mdc-notched-outline__notch"> | ||
<label for="outlined-text-field" class="mdc-floating-label mdc-floating-label--float-above">Label</label> | ||
</div> | ||
<div class="mdc-notched-outline__trailing"></div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</main> | ||
|
||
<!-- Automatically provides/replaces `Promise` if missing or broken. --> | ||
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/fontfaceobserver/2.0.13/fontfaceobserver.standalone.js"></script> | ||
<script src="../../../out/material-components-web.js"></script> | ||
<script src="../../../out/spec/fixture.js"></script> | ||
<script src="../../../out/spec/mdc-textfield/fixture.js"></script> | ||
</body> | ||
</html> |
105 changes: 105 additions & 0 deletions
105
test/screenshot/spec/mdc-textfield/classes/textarea-end-aligned.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
<!DOCTYPE html> | ||
<!-- | ||
Copyright 2018 Google Inc. | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
--> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Textarea Text Field end aligned - MDC Web Screenshot Test</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="stylesheet" href="../../../out/mdc.textfield.css"> | ||
<link rel="stylesheet" href="../../../out/mdc.typography.css"> | ||
<link rel="stylesheet" href="../../../out/spec/fixture.css"> | ||
<link rel="stylesheet" href="../../../out/spec/mdc-textfield/fixture.css"> | ||
|
||
<!-- Global site tag (gtag.js) - Google Analytics --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-118996389-2"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
gtag('config', 'UA-118996389-2'); | ||
</script> | ||
</head> | ||
|
||
<body class="test-container"> | ||
<main class="test-viewport test-viewport--mobile"> | ||
<div class="test-layout"> | ||
|
||
<div class="test-cell test-cell--textarea"> | ||
<div class="mdc-text-field mdc-text-field--textarea mdc-text-field--end-aligned"> | ||
<textarea id="full-width-textarea" | ||
class="mdc-text-field__input test-text-field__input" | ||
rows="2"></textarea> | ||
<div class="mdc-notched-outline"> | ||
<div class="mdc-notched-outline__leading"></div> | ||
<div class="mdc-notched-outline__notch"> | ||
<label for="full-width-textarea" class="mdc-floating-label">Textarea Label</label> | ||
</div> | ||
<div class="mdc-notched-outline__trailing"></div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="test-cell test-cell--textarea"> | ||
<div class="mdc-text-field mdc-text-field--textarea mdc-text-field--end-aligned"> | ||
<textarea id="full-width-textarea-filled" | ||
class="mdc-text-field__input test-text-field__input" | ||
rows="2">Xyz</textarea> | ||
<div class="mdc-notched-outline mdc-notched-outline--notched"> | ||
<div class="mdc-notched-outline__leading"></div> | ||
<div class="mdc-notched-outline__notch"> | ||
<label for="full-width-textarea-filled" class="mdc-floating-label mdc-floating-label--float-above">Textarea Label</label> | ||
</div> | ||
<div class="mdc-notched-outline__trailing"></div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="test-cell test-cell--textarea"> | ||
<div class="mdc-text-field mdc-text-field--textarea mdc-text-field--end-aligned"> | ||
<!-- htmllint-disable --> | ||
<textarea id="full-width-textarea-long-filled" | ||
class="mdc-text-field__input test-text-field__input" | ||
rows="2">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur rhoncus ac risus a eleifend. Phasellus dictum luctus leo quis ultricies. Vivamus fringilla vehicula turpis eu eleifend. Donec ultricies, est a scelerisque laoreet, arcu eros commodo nunc, sit amet hendrerit diam nisi id velit. Suspendisse porta nibh orci. Donec velit nisl, accumsan vitae eros a, consectetur interdum eros. Aenean dapibus vulputate semper. Aliquam finibus nec leo sed ultricies. Integer luctus convallis risus. Etiam suscipit suscipit ante vel volutpat. Ut venenatis dapibus elit dictum fringilla.</textarea> | ||
<div class="mdc-notched-outline mdc-notched-outline--notched"> | ||
<div class="mdc-notched-outline__leading"></div> | ||
<div class="mdc-notched-outline__notch"> | ||
<label for="full-width-textarea-long-filled" class="mdc-floating-label mdc-floating-label--float-above">Textarea Label</label> | ||
</div> | ||
<div class="mdc-notched-outline__trailing"></div> | ||
</div> | ||
<!-- htmllint-enable --> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
</main> | ||
|
||
<!-- Automatically provides/replaces `Promise` if missing or broken. --> | ||
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/es6-promise@4/dist/es6-promise.auto.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/fontfaceobserver/2.0.13/fontfaceobserver.standalone.js"></script> | ||
<script src="../../../out/material-components-web.js"></script> | ||
<script src="../../../out/spec/fixture.js"></script> | ||
<script src="../../../out/spec/mdc-textfield/fixture.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters