docs(select): include popover for interface docs

This commit is contained in:
Brandy Carney
2017-10-13 13:19:12 -04:00
parent 17cdce101e
commit 213815cf4c
2 changed files with 6 additions and 3 deletions

View File

@ -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 = {};

View File

@ -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 === '') {