mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
docs(select): include popover for interface docs
This commit is contained in:
@ -61,9 +61,10 @@ export class Select {
|
|||||||
@Prop() placeholder: string;
|
@Prop() placeholder: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @input {any} Any additional options that the `alert` or `action-sheet` interface can take.
|
* @input {any} Any additional options that the `alert`, `action-sheet` or `popover` interface
|
||||||
* See the [AlertController API docs](../../alert/AlertController/#create) and the
|
* can take. See the [AlertController API docs](../../alert/AlertController/#create), the
|
||||||
* [ActionSheetController API docs](../../action-sheet/ActionSheetController/#create) for the
|
* [ActionSheetController API docs](../../action-sheet/ActionSheetController/#create) and the
|
||||||
|
* [PopoverController API docs](../../popover/PopoverController/#create) for the
|
||||||
* create options for each interface.
|
* create options for each interface.
|
||||||
*/
|
*/
|
||||||
@Prop() selectOptions: any = {};
|
@Prop() selectOptions: any = {};
|
||||||
|
@ -22,6 +22,8 @@ export function isFunction(v: any): v is (Function) { return typeof v === 'funct
|
|||||||
|
|
||||||
export function isStringOrNumber(v: any): v is (string | number) { return isString(v) || isNumber(v); }
|
export function isStringOrNumber(v: any): v is (string | number) { return isString(v) || isNumber(v); }
|
||||||
|
|
||||||
|
export function isBlank(val: any): val is null { return val === undefined || val === null; }
|
||||||
|
|
||||||
/** @hidden */
|
/** @hidden */
|
||||||
export function isCheckedProperty(a: any, b: any): boolean {
|
export function isCheckedProperty(a: any, b: any): boolean {
|
||||||
if (a === undefined || a === null || a === '') {
|
if (a === undefined || a === null || a === '') {
|
||||||
|
Reference in New Issue
Block a user