mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 19:57:22 +08:00
chore(stencil): update to latest stencil version (#21378)
references ionic-team/ionic-docs#1343
This commit is contained in:
@ -34,7 +34,7 @@
|
|||||||
"tslib": "^1.10.0"
|
"tslib": "^1.10.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@stencil/core": "1.12.4",
|
"@stencil/core": "1.13.0",
|
||||||
"@stencil/sass": "1.3.1",
|
"@stencil/sass": "1.3.1",
|
||||||
"@types/jest": "24.9.1",
|
"@types/jest": "24.9.1",
|
||||||
"@types/node": "12.12.3",
|
"@types/node": "12.12.3",
|
||||||
|
@ -393,7 +393,7 @@ export class Input implements ComponentInterface {
|
|||||||
placeholder={this.placeholder || ''}
|
placeholder={this.placeholder || ''}
|
||||||
readOnly={this.readonly}
|
readOnly={this.readonly}
|
||||||
required={this.required}
|
required={this.required}
|
||||||
spellCheck={this.spellcheck}
|
spellcheck={this.spellcheck ? 'true' : undefined}
|
||||||
step={this.step}
|
step={this.step}
|
||||||
size={this.size}
|
size={this.size}
|
||||||
tabindex={this.tabindex}
|
tabindex={this.tabindex}
|
||||||
|
@ -481,7 +481,7 @@ export class Searchbar implements ComponentInterface {
|
|||||||
value={this.getValue()}
|
value={this.getValue()}
|
||||||
autoComplete={this.autocomplete}
|
autoComplete={this.autocomplete}
|
||||||
autoCorrect={this.autocorrect}
|
autoCorrect={this.autocorrect}
|
||||||
spellCheck={this.spellcheck}
|
spellcheck={this.spellcheck ? 'true' : undefined}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{mode === 'md' && cancelButton}
|
{mode === 'md' && cancelButton}
|
||||||
|
@ -15,6 +15,8 @@
|
|||||||
<ion-textarea placeholder="Textarea"></ion-textarea>
|
<ion-textarea placeholder="Textarea"></ion-textarea>
|
||||||
<ion-textarea value="value"></ion-textarea>
|
<ion-textarea value="value"></ion-textarea>
|
||||||
<ion-textarea value="44"></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 placeholder="Custom" class="custom"></ion-textarea>
|
||||||
<ion-textarea id="nowrap" rows="15"></ion-textarea>
|
<ion-textarea id="nowrap" rows="15"></ion-textarea>
|
||||||
<ion-textarea placeholder="Auto Grow!" auto-grow="true"></ion-textarea>
|
<ion-textarea placeholder="Auto Grow!" auto-grow="true"></ion-textarea>
|
||||||
|
@ -345,7 +345,7 @@ export class Textarea implements ComponentInterface {
|
|||||||
placeholder={this.placeholder || ''}
|
placeholder={this.placeholder || ''}
|
||||||
readOnly={this.readonly}
|
readOnly={this.readonly}
|
||||||
required={this.required}
|
required={this.required}
|
||||||
spellCheck={this.spellcheck}
|
spellcheck={this.spellcheck ? 'true' : undefined}
|
||||||
cols={this.cols}
|
cols={this.cols}
|
||||||
rows={this.rows}
|
rows={this.rows}
|
||||||
wrap={this.wrap}
|
wrap={this.wrap}
|
||||||
|
Reference in New Issue
Block a user