JSPM

  • Created
  • Published
  • Downloads 22152
  • Score
    100M100P100Q146363F
  • License BSD-3-Clause

Material design text fields

Package Exports

  • @polymer/paper-input/paper-input
  • @polymer/paper-input/paper-input-behavior
  • @polymer/paper-input/paper-input-behavior.js
  • @polymer/paper-input/paper-input-char-counter.js
  • @polymer/paper-input/paper-input-container
  • @polymer/paper-input/paper-input-container.js
  • @polymer/paper-input/paper-input-error
  • @polymer/paper-input/paper-input-error.js
  • @polymer/paper-input/paper-input.js
  • @polymer/paper-input/paper-textarea
  • @polymer/paper-input/paper-textarea.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@polymer/paper-input) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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