What it's solving: copy pasting all the attributes that need to be passed down to the paper-input.
How it's solving it: by re-using the paper-input's template and sort of becoming a paper-input.
To make this work, this would require a similar change to paper-input.
the paper-inputs dom-module would become <dom-module id="paper-input-content">
it would need a similar _prepTemplate method:
_prepTemplate: function() {
var t = Polymer.DomModule.import('paper-input-content', 'template').cloneNode(true);
this._template = t;
},
Don't land this yet!
What it's solving: copy pasting all the attributes that need to be passed down to the
paper-input
. How it's solving it: by re-using thepaper-input
's template and sort of becoming apaper-input
.To make this work, this would require a similar change to
paper-input
.paper-input
s dom-module would become<dom-module id="paper-input-content">
_prepTemplate
method: