mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-09 08:09:32 +08:00
chore(stencil): update to v1.14 (#21458)
This commit is contained in:
@ -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.
|
||||
|
||||
|
||||
@ -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}
|
||||
|
||||
@ -860,7 +860,7 @@ Type: `Promise<number>`
|
||||
|
||||
|
||||
|
||||
### `open(side: "start" | "end" | undefined) => Promise<void>`
|
||||
### `open(side: Side | undefined) => Promise<void>`
|
||||
|
||||
Open the sliding item.
|
||||
|
||||
|
||||
@ -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}
|
||||
|
||||
@ -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}
|
||||
|
||||
Reference in New Issue
Block a user