mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 03:00:58 +08:00
fix(select): ensure popover options with number values are searched for correctly (#23998)
This commit is contained in:
4
core/src/components.d.ts
vendored
4
core/src/components.d.ts
vendored
@ -539,7 +539,7 @@ export namespace Components {
|
||||
/**
|
||||
* The value of the checkbox does not mean if it's checked or not, use the `checked` property for that. The value of a checkbox is analogous to the value of an `<input type="checkbox">`, it's only used when the checkbox participates in a native `<form>`.
|
||||
*/
|
||||
"value": string;
|
||||
"value": any | null;
|
||||
}
|
||||
interface IonChip {
|
||||
/**
|
||||
@ -4229,7 +4229,7 @@ declare namespace LocalJSX {
|
||||
/**
|
||||
* The value of the checkbox does not mean if it's checked or not, use the `checked` property for that. The value of a checkbox is analogous to the value of an `<input type="checkbox">`, it's only used when the checkbox participates in a native `<form>`.
|
||||
*/
|
||||
"value"?: string;
|
||||
"value"?: any | null;
|
||||
}
|
||||
interface IonChip {
|
||||
/**
|
||||
|
Reference in New Issue
Block a user