| Index: third_party/polymer/v1_0/components-chromium/paper-input/paper-input-behavior-extracted.js
|
| diff --git a/third_party/polymer/v1_0/components-chromium/paper-input/paper-input-behavior-extracted.js b/third_party/polymer/v1_0/components-chromium/paper-input/paper-input-behavior-extracted.js
|
| index ff51360788b29438ffbe1d82570acb845d4747a6..f1de848f75a08a799455febeb303d23395ba4a07 100644
|
| --- a/third_party/polymer/v1_0/components-chromium/paper-input/paper-input-behavior-extracted.js
|
| +++ b/third_party/polymer/v1_0/components-chromium/paper-input/paper-input-behavior-extracted.js
|
| @@ -8,9 +8,9 @@
|
| *
|
| * The input element can be accessed by the `inputElement` property if you need to access
|
| * properties or methods that are not exposed.
|
| - * @polymerBehavior
|
| + * @polymerBehavior Polymer.PaperInputBehavior
|
| */
|
| - Polymer.PaperInputBehavior = {
|
| + Polymer.PaperInputBehaviorImpl = {
|
|
|
| properties: {
|
|
|
| @@ -73,6 +73,14 @@
|
| },
|
|
|
| /**
|
| + * The datalist of the input (if any). This should match the id of an existing <datalist>. Bind this
|
| + * to the `<input is="iron-input">`'s `list` property.
|
| + */
|
| + list: {
|
| + type: String
|
| + },
|
| +
|
| + /**
|
| * A pattern to validate the `input` with. Bind this to the `<input is="iron-input">`'s
|
| * `pattern` property.
|
| */
|
| @@ -303,3 +311,5 @@
|
|
|
| };
|
|
|
| + Polymer.PaperInputBehavior = [Polymer.IronControlState, Polymer.PaperInputBehaviorImpl];
|
| +
|
|
|