chore(stencil): update to latest stencil version (#21378)

references ionic-team/ionic-docs#1343
This commit is contained in:
Brandy Carney
2020-05-26 15:05:36 -04:00
committed by GitHub
parent 33be1f061e
commit 1ea5ce5839
5 changed files with 6 additions and 4 deletions

View File

@ -34,7 +34,7 @@
"tslib": "^1.10.0"
},
"devDependencies": {
"@stencil/core": "1.12.4",
"@stencil/core": "1.13.0",
"@stencil/sass": "1.3.1",
"@types/jest": "24.9.1",
"@types/node": "12.12.3",

View File

@ -393,7 +393,7 @@ export class Input implements ComponentInterface {
placeholder={this.placeholder || ''}
readOnly={this.readonly}
required={this.required}
spellCheck={this.spellcheck}
spellcheck={this.spellcheck ? 'true' : undefined}
step={this.step}
size={this.size}
tabindex={this.tabindex}

View File

@ -481,7 +481,7 @@ export class Searchbar implements ComponentInterface {
value={this.getValue()}
autoComplete={this.autocomplete}
autoCorrect={this.autocorrect}
spellCheck={this.spellcheck}
spellcheck={this.spellcheck ? 'true' : undefined}
/>
{mode === 'md' && cancelButton}

View File

@ -15,6 +15,8 @@
<ion-textarea placeholder="Textarea"></ion-textarea>
<ion-textarea value="value"></ion-textarea>
<ion-textarea value="44"></ion-textarea>
<ion-textarea value="thus shuld git spellchuk" spellcheck="true"></ion-textarea>
<ion-textarea value="thus shuld NOT git spellchuk" spellcheck="false"></ion-textarea>
<ion-textarea placeholder="Custom" class="custom"></ion-textarea>
<ion-textarea id="nowrap" rows="15"></ion-textarea>
<ion-textarea placeholder="Auto Grow!" auto-grow="true"></ion-textarea>

View File

@ -345,7 +345,7 @@ export class Textarea implements ComponentInterface {
placeholder={this.placeholder || ''}
readOnly={this.readonly}
required={this.required}
spellCheck={this.spellcheck}
spellcheck={this.spellcheck ? 'true' : undefined}
cols={this.cols}
rows={this.rows}
wrap={this.wrap}