OLD | NEW |
1 <!-- | 1 <!-- |
2 @license | 2 @license |
3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2015 The Polymer Project Authors. All rights reserved. |
4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt | 4 This code may only be used under the BSD style license found at http://polymer.g
ithub.io/LICENSE.txt |
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt |
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt | 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI
BUTORS.txt |
7 Code distributed by Google as part of the polymer project is also | 7 Code distributed by Google as part of the polymer project is also |
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt | 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN
TS.txt |
9 --><html><head><link rel="import" href="../polymer/polymer.html"> | 9 --><html><head><link rel="import" href="../polymer/polymer.html"> |
10 <link rel="import" href="../iron-input/iron-input.html"> | 10 <link rel="import" href="../iron-input/iron-input.html"> |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 } | 62 } |
63 | 63 |
64 </style> | 64 </style> |
65 | 65 |
66 <template> | 66 <template> |
67 | 67 |
68 <paper-input-container no-label-float="[[noLabelFloat]]" always-float-label=
"[[_computeAlwaysFloatLabel(alwaysFloatLabel,placeholder)]]" auto-validate$="[[a
utoValidate]]" disabled$="[[disabled]]" invalid="[[invalid]]"> | 68 <paper-input-container no-label-float="[[noLabelFloat]]" always-float-label=
"[[_computeAlwaysFloatLabel(alwaysFloatLabel,placeholder)]]" auto-validate$="[[a
utoValidate]]" disabled$="[[disabled]]" invalid="[[invalid]]"> |
69 | 69 |
70 <label hidden$="[[!label]]">[[label]]</label> | 70 <label hidden$="[[!label]]">[[label]]</label> |
71 | 71 |
72 <input is="iron-input" id="input" aria-labelledby$="[[_ariaLabelledBy]]" a
ria-describedby$="[[_ariaDescribedBy]]" disabled$="[[disabled]]" bind-value="{{v
alue}}" invalid="{{invalid}}" prevent-invalid-input="[[preventInvalidInput]]" al
lowed-pattern="[[allowedPattern]]" validator="[[validator]]" type$="[[type]]" pa
ttern$="[[pattern]]" maxlength$="[[maxlength]]" required$="[[required]]" autocom
plete$="[[autocomplete]]" autofocus$="[[autofocus]]" inputmode$="[[inputmode]]"
minlength$="[[minlength]]" name$="[[name]]" placeholder$="[[placeholder]]" reado
nly$="[[readonly]]" size$="[[size]]"> | 72 <input is="iron-input" id="input" aria-labelledby$="[[_ariaLabelledBy]]" a
ria-describedby$="[[_ariaDescribedBy]]" disabled$="[[disabled]]" bind-value="{{v
alue}}" invalid="{{invalid}}" prevent-invalid-input="[[preventInvalidInput]]" al
lowed-pattern="[[allowedPattern]]" validator="[[validator]]" type$="[[type]]" pa
ttern$="[[pattern]]" maxlength$="[[maxlength]]" required$="[[required]]" autocom
plete$="[[autocomplete]]" autofocus$="[[autofocus]]" inputmode$="[[inputmode]]"
minlength$="[[minlength]]" name$="[[name]]" placeholder$="[[placeholder]]" reado
nly$="[[readonly]]" list$="[[list]]" size$="[[size]]" autocapitalize$="[[autocap
italize]]" autocorrect$="[[autocorrect]]"> |
73 | 73 |
74 <template is="dom-if" if="[[errorMessage]]"> | 74 <template is="dom-if" if="[[errorMessage]]"> |
75 <paper-input-error>[[errorMessage]]</paper-input-error> | 75 <paper-input-error>[[errorMessage]]</paper-input-error> |
76 </template> | 76 </template> |
77 | 77 |
78 <template is="dom-if" if="[[charCounter]]"> | 78 <template is="dom-if" if="[[charCounter]]"> |
79 <paper-input-char-counter></paper-input-char-counter> | 79 <paper-input-char-counter></paper-input-char-counter> |
80 </template> | 80 </template> |
81 | 81 |
82 </paper-input-container> | 82 </paper-input-container> |
83 | 83 |
84 </template> | 84 </template> |
85 | 85 |
86 </dom-module> | 86 </dom-module> |
87 | 87 |
88 <script src="paper-input-extracted.js"></script></body></html> | 88 <script src="paper-input-extracted.js"></script></body></html> |
OLD | NEW |