fix(all): Ionic components that use child Ionic components are now correctly defined (#24191)

resolves #23571, #24116, #24129

Co-authored-by: Liam DeBeasi <liamdebeasi@icloud.com>
This commit is contained in:
Will Martin
2021-11-11 12:18:38 -05:00
committed by GitHub
parent 5d4f5af360
commit 5a2a335784
9 changed files with 104 additions and 34 deletions

View File

@ -133,7 +133,7 @@ export class PickerColumnInternal implements ComponentInterface {
private inputModeChange = (ev: PickerInternalCustomEvent) => {
if (!this.numericInput) { return; }
const { inputMode, inputModeColumn } = ev.detail;
const { useInputMode, inputModeColumn } = ev.detail;
/**
* If inputModeColumn is undefined then this means
@ -141,7 +141,7 @@ export class PickerColumnInternal implements ComponentInterface {
*/
const isColumnActive = inputModeColumn === undefined || inputModeColumn === this.el;
if (!inputMode || !isColumnActive) {
if (!useInputMode || !isColumnActive) {
this.isActive = false;
return;
}