mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-24 14:58:36 +08:00
fix(select): update select interfaces
This commit is contained in:
8
packages/core/src/components.d.ts
vendored
8
packages/core/src/components.d.ts
vendored
@ -2493,7 +2493,6 @@ declare global {
|
||||
namespace JSXElements {
|
||||
export interface IonSelectPopoverAttributes extends HTMLAttributes {
|
||||
options?: SelectPopoverOption[];
|
||||
value?: string;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -2527,11 +2526,12 @@ declare global {
|
||||
cancelText?: string;
|
||||
okText?: string;
|
||||
placeholder?: string;
|
||||
selectOptions?: any;
|
||||
interface?: string;
|
||||
name?: string;
|
||||
selectedText?: string;
|
||||
multiple?: boolean;
|
||||
value?: string | string[];
|
||||
interface?: string;
|
||||
interfaceOptions?: any;
|
||||
value?: string|string[];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user