File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -298,7 +298,6 @@ export class UUIInputElement extends FormControlMixin(
298
298
* Validates the input based on the Regex pattern
299
299
* @type {string }
300
300
* @attr
301
- * @default undefined
302
301
*/
303
302
@property ( { type : String } )
304
303
pattern ?: string ;
@@ -308,7 +307,6 @@ export class UUIInputElement extends FormControlMixin(
308
307
* @see {@link https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode|MDN } for further information
309
308
* @type {string }
310
309
* @attr
311
- * @default undefined
312
310
*/
313
311
@property ( { type : String } )
314
312
inputmode ?: string ;
@@ -416,9 +414,9 @@ export class UUIInputElement extends FormControlMixin(
416
414
step=${ ifDefined ( this . step ) }
417
415
spellcheck=${ ifDefined ( this . spellcheck ) }
418
416
autocomplete=${ ifDefined ( this . autocomplete as any ) }
419
- placeholder=${ this . placeholder }
420
- aria-label=${ this . label }
421
- inputmode=${ this . inputMode }
417
+ placeholder=${ ifDefined ( this . placeholder ) }
418
+ aria-label=${ ifDefined ( this . label ) }
419
+ inputmode=${ ifDefined ( this . inputMode ) }
422
420
.disabled=${ this . disabled }
423
421
?autofocus=${ this . autofocus }
424
422
?required=${ this . required }
You can’t perform that action at this time.
0 commit comments