File tree Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Expand file tree Collapse file tree 1 file changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ Polymer({
168
168
169
169
<!-- Need to bind maxlength so that the paper-input-char-counter works correctly -->
170
170
< iron-input bind-value ="{{value}} " slot ="input " class ="input-element " id$ ="[[_inputId]] " maxlength$ ="[[maxlength]] " allowed-pattern ="[[allowedPattern]] " invalid ="{{invalid}} " validator ="[[validator]] ">
171
- < input aria-labelledby$ ="[[_ariaLabelledBy]] " aria-describedby$ ="[[_ariaDescribedBy]] " disabled$ ="[[disabled]] " title$ ="[[title]] " type$ ="[[type]] " pattern$ ="[[pattern]] " required$ ="[[required]] " autocomplete$ ="[[autocomplete]] " autofocus$ ="[[autofocus]] " inputmode$ ="[[inputmode]] " minlength$ ="[[minlength]] " maxlength$ ="[[maxlength]] " min$ ="[[min]] " max$ ="[[max]] " step$ ="[[step]] " name$ ="[[name]] " placeholder$ ="[[placeholder]] " readonly$ ="[[readonly]] " list$ ="[[list]] " size$ ="[[size]] " autocapitalize$ ="[[autocapitalize]] " autocorrect$ ="[[autocorrect]] " on-change ="_onChange " tabindex$ ="[[tabIndex]] " autosave$ ="[[autosave]] " results$ ="[[results]] " accept$ ="[[accept]] " multiple$ ="[[multiple]] ">
171
+ < input aria-labelledby$ ="[[_ariaLabelledBy]] " aria-describedby$ ="[[_ariaDescribedBy]] " disabled$ ="[[disabled]] " title$ ="[[title]] " type$ ="[[type]] " pattern$ ="[[pattern]] " required$ ="[[required]] " autocomplete$ ="[[autocomplete]] " autofocus$ ="[[autofocus]] " inputmode$ ="[[inputmode]] " minlength$ ="[[minlength]] " maxlength$ ="[[maxlength]] " min$ ="[[min]] " max$ ="[[max]] " step$ ="[[step]] " name$ ="[[name]] " placeholder$ ="[[placeholder]] " readonly$ ="[[readonly]] " list$ ="[[list]] " size$ ="[[size]] " autocapitalize$ ="[[autocapitalize]] " autocorrect$ ="[[autocorrect]] " on-change ="_onChange " tabindex$ ="[[tabIndex]] " autosave$ ="[[autosave]] " results$ ="[[results]] " accept$ ="[[accept]] " multiple$ ="[[multiple]] " role$ =" [[inputRole]] " aria-haspopup$ =" [[inputAriaHaspopup]] " >
172
172
</ iron-input >
173
173
174
174
< slot name ="suffix " slot ="suffix "> </ slot >
@@ -190,7 +190,17 @@ Polymer({
190
190
value : {
191
191
// Required for the correct TypeScript type-generation
192
192
type : String
193
- }
193
+ } ,
194
+
195
+ inputRole : {
196
+ type : String ,
197
+ value : undefined ,
198
+ } ,
199
+
200
+ inputAriaHaspopup : {
201
+ type : String ,
202
+ value : undefined ,
203
+ } ,
194
204
} ,
195
205
196
206
/**
You can’t perform that action at this time.
0 commit comments