Name Date Size #Lines LOC

..--

.github/H25-Apr-2025-3414

demo/H25-Apr-2025-281211

test/H25-Apr-2025-1,210936

.bower.jsonH A D25-Apr-20252.1 KiB6060

.gitignoreH A D25-Apr-202517 21

.travis.ymlH A D25-Apr-2025784 2524

CONTRIBUTING.mdH A D25-Apr-20253.4 KiB7839

README.mdH A D25-Apr-20251.2 KiB3934

all-imports.htmlH A D25-Apr-2025605 132

bower.jsonH A D25-Apr-20251.8 KiB5251

hero.svgH A D25-Apr-2025752 2018

index.htmlH A D25-Apr-2025920 2913

paper-input-addon-behavior.htmlH A D25-Apr-20251.4 KiB4830

paper-input-behavior.htmlH A D25-Apr-202517.6 KiB570492

paper-input-char-counter.htmlH A D25-Apr-20252.6 KiB10058

paper-input-container.htmlH A D25-Apr-202519.9 KiB654456

paper-input-error.htmlH A D25-Apr-20252.6 KiB9556

paper-input.htmlH A D25-Apr-20256 KiB184101

paper-textarea.htmlH A D25-Apr-20254 KiB146100

README.md

1[![Build status](https://travis-ci.org/PolymerElements/paper-input.svg?branch=master)](https://travis-ci.org/PolymerElements/paper-input)
2[![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://beta.webcomponents.org/element/PolymerElements/paper-input)
3
4## <paper-input>
5
6Material design: [Text fields](https://www.google.com/design/spec/components/text-fields.html)
7
8`<paper-input>` is a single-line text field with Material Design styling.
9
10<!---
11```
12<custom-element-demo>
13  <template>
14    <script src="../webcomponentsjs/webcomponents-lite.js"></script>
15    <link rel="import" href="paper-input.html">
16    <link rel="import" href="../iron-icons/iron-icons.html">
17    <style>
18      paper-input {
19        max-width: 400px;
20        margin: auto;
21      }
22      iron-icon, div[suffix] {
23        color: hsl(0, 0%, 50%);
24        margin-right: 12px;
25      }
26    </style>
27    <next-code-block></next-code-block>
28  </template>
29</custom-element-demo>
30```
31-->
32```html
33<paper-input always-float-label label="Floating label"></paper-input>
34<paper-input label="username">
35  <iron-icon icon="mail" prefix></iron-icon>
36  <div suffix>@email.com</div>
37</paper-input>
38```
39