chore(stencil): update to v1.14 (#21458)

This commit is contained in:
Brandy Carney
2020-06-10 11:36:02 -04:00
committed by GitHub
parent 17375d2325
commit cf3035778c
8 changed files with 186 additions and 104 deletions

View File

@ -196,7 +196,7 @@ Type: `Promise<void>`
### `scrollToPoint(x: number | null | undefined, y: number | null | undefined, duration?: number) => Promise<void>`
### `scrollToPoint(x: number | undefined | null, y: number | undefined | null, duration?: number) => Promise<void>`
Scroll to a specified X/Y location in the component.

View File

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

View File

@ -860,7 +860,7 @@ Type: `Promise<number>`
### `open(side: "start" | "end" | undefined) => Promise<void>`
### `open(side: Side | undefined) => Promise<void>`
Open the sliding item.

View File

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

View File

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