Skip to content

PolymerElements/paper-input

Folders and files

NameName
Last commit message
Last commit date

Latest commit

783eebd · Jun 28, 2021
Aug 23, 2018
Aug 2, 2019
Nov 13, 2018
Aug 16, 2018
Aug 16, 2018
Apr 9, 2019
May 17, 2016
Jul 16, 2018
Sep 14, 2018
Aug 8, 2018
Jun 23, 2018
Jun 28, 2021
Mar 19, 2020
Jul 16, 2018
Mar 14, 2020
Jun 19, 2019
Dec 19, 2019
Jun 19, 2019
Dec 6, 2019
Jun 19, 2019
Jun 5, 2018

Repository files navigation

Published on NPM Build status Published on webcomponents.org

<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