File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -25,6 +25,8 @@ export type InputType =
25
25
* @element uui-input
26
26
* @slot prepend - for components to render to the left of the input.
27
27
* @slot append - for components to render to the right of the input.
28
+ * @property {boolean } spellcheck - get/set native spellcheck attribute
29
+ * @attribute spellcheck - native spellcheck attribute
28
30
* @fires UUIInputEvent#change on change
29
31
* @fires InputEvent#input on input
30
32
* @fires KeyboardEvent#keyup on keyup
@@ -409,12 +411,12 @@ export class UUIInputElement extends FormControlMixin(
409
411
min=${ ifDefined ( this . min ) }
410
412
max=${ ifDefined ( this . max ) }
411
413
step=${ ifDefined ( this . step ) }
412
- spellcheck=${ ifDefined ( this . spellcheck ) }
414
+ spellcheck=${ this . spellcheck }
413
415
autocomplete=${ ifDefined ( this . autocomplete as any ) }
414
416
placeholder=${ ifDefined ( this . placeholder ) }
415
417
aria-label=${ ifDefined ( this . label ) }
416
418
inputmode=${ ifDefined ( this . inputMode ) }
417
- . disabled=${ this . disabled }
419
+ ? disabled=${ this . disabled }
418
420
?autofocus=${ this . autofocus }
419
421
?required=${ this . required }
420
422
?readonly=${ this . readonly }
You can’t perform that action at this time.
0 commit comments