You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ion-app component has an internal setFocus method that can be used to programmatically focus elements. We should document this usage in the ion-app documentation and remove the @internal flag:
/** * @internal * Used to set focus on an element that uses `ion-focusable`. * Do not use this if focusing the element as a result of a keyboard * event as the focus utility should handle this for us. This method * should be used when we want to programmatically focus an element as * a result of another user action. (Ex: We focus the first element * inside of a popover when the user presents it, but the popover is not always * presented as a result of keyboard action.) */
@Method()asyncsetFocus(elements: HTMLElement[]){if(this.focusVisible){this.focusVisible.setFocus(elements);}}
We may want to link to this documentation from other components to show how to programmatically focus them.
URL
https://ionicframework.com/docs/api/app
Issue Description
The
ion-app
component has an internalsetFocus
method that can be used to programmatically focus elements. We should document this usage in theion-app
documentation and remove the@internal
flag:We may want to link to this documentation from other components to show how to programmatically focus them.
Related issue: ionic-team/ionic-framework#29830
The text was updated successfully, but these errors were encountered: