A Material Design text field
<paper-input>
<paper-input>
is a single-line text field with Material Design styling.
See: Documentation, Demo.
Usage
Installation
npm install --save @polymer/paper-input
In an html file
<html>
<head>
<script type="module">
import '@polymer/paper-input/paper-input.js';
</script>
</head>
<body>
<paper-input always-float-label label="Floating label"></paper-input>
</body>
</html>
In a Polymer 3 element
import {PolymerElement, html} from '@polymer/polymer';
import '@polymer/paper-input/paper-input.js';
class SampleElement extends PolymerElement {
static get template() {
return html`
<paper-input always-float-label label="Floating label"></paper-input>
`;
}
}
customElements.define('sample-element', SampleElement);
Contributing
If you want to send a PR to this element, here are the instructions for running the tests and demo locally:
Installation
git clone https://github.com/PolymerElements/paper-input
cd paper-input
npm install
npm install -g polymer-cli
Running the demo locally
polymer serve --npm
open http://127.0.0.1:<port>/demo/
Running the tests
polymer test --npm
Install
Framework Support
Browser Independent
Install with
Run the above npm command in your project folder.
If you have any issues installing, please
contact the author.
Release notes - Version 3.0.2
Dependencies
- @polymer/polymer#^3.0.0
- @polymer/iron-autogrow-textarea#^3.0.0-pre.26
- @polymer/iron-behaviors#^3.0.0-pre.26
- @polymer/iron-input#^3.0.0-pre.26
- @polymer/paper-styles#^3.0.0-pre.26
- @polymer/iron-a11y-keys-behavior#^3.0.0-pre.26
- @polymer/iron-form-element-behavior#^3.0.0-pre.26