OLD | NEW |
1 /** | 1 /** |
2 * Use `Polymer.PaperInputBehavior` to implement inputs with `<paper-input-con
tainer>`. This | 2 * Use `Polymer.PaperInputBehavior` to implement inputs with `<paper-input-con
tainer>`. This |
3 * behavior is implemented by `<paper-input>`. It exposes a number of properti
es from | 3 * behavior is implemented by `<paper-input>`. It exposes a number of properti
es from |
4 * `<paper-input-container>` and `<input is="iron-input">` and they should be
bound in your | 4 * `<paper-input-container>` and `<input is="iron-input">` and they should be
bound in your |
5 * template. | 5 * template. |
6 * | 6 * |
7 * The input element can be accessed by the `inputElement` property if you nee
d to access | 7 * The input element can be accessed by the `inputElement` property if you nee
d to access |
8 * properties or methods that are not exposed. | 8 * properties or methods that are not exposed. |
9 * @polymerBehavior Polymer.PaperInputBehavior | 9 * @polymerBehavior Polymer.PaperInputBehavior |
10 */ | 10 */ |
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
289 /** | 289 /** |
290 * Bind this to the `<input is="iron-input">`'s `multiple` property, , use
d with type=file. | 290 * Bind this to the `<input is="iron-input">`'s `multiple` property, , use
d with type=file. |
291 */ | 291 */ |
292 multiple: { | 292 multiple: { |
293 type: Boolean | 293 type: Boolean |
294 }, | 294 }, |
295 | 295 |
296 _ariaDescribedBy: { | 296 _ariaDescribedBy: { |
297 type: String, | 297 type: String, |
298 value: '' | 298 value: '' |
| 299 }, |
| 300 |
| 301 _ariaLabelledBy: { |
| 302 type: String, |
| 303 value: '' |
299 } | 304 } |
300 | 305 |
301 }, | 306 }, |
302 | 307 |
303 listeners: { | 308 listeners: { |
304 'addon-attached': '_onAddonAttached' | 309 'addon-attached': '_onAddonAttached' |
305 }, | 310 }, |
306 | 311 |
307 observers: [ | 312 observers: [ |
308 '_focusedControlStateChanged(focused)' | 313 '_focusedControlStateChanged(focused)' |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 bubbles: event.bubbles, | 431 bubbles: event.bubbles, |
427 cancelable: event.cancelable | 432 cancelable: event.cancelable |
428 }); | 433 }); |
429 } | 434 } |
430 } | 435 } |
431 | 436 |
432 }; | 437 }; |
433 | 438 |
434 /** @polymerBehavior */ | 439 /** @polymerBehavior */ |
435 Polymer.PaperInputBehavior = [Polymer.IronControlState, Polymer.PaperInputBeha
viorImpl]; | 440 Polymer.PaperInputBehavior = [Polymer.IronControlState, Polymer.PaperInputBeha
viorImpl]; |
OLD | NEW |