docs(): usage and examples

This commit is contained in:
mhartington
2018-06-18 12:45:06 -04:00
parent 518594bcc4
commit 96945b1ee1
66 changed files with 809 additions and 604 deletions

View File

@ -1,5 +1,6 @@
# ion-select-popover
SelectPopover is an internal component that is used for create the popover interface, from a Select component.
<!-- Auto Generated Below -->
@ -11,21 +12,29 @@
string
Header text for the popover
#### message
string
Text for popover body
#### options
SelectPopoverOption[]
Array of options for the popover
#### subHeader
string
Subheader text for the popover
## Attributes
@ -33,21 +42,29 @@ string
string
Header text for the popover
#### message
string
Text for popover body
#### options
Array of options for the popover
#### sub-header
string
Subheader text for the popover
----------------------------------------------

View File

@ -11,12 +11,16 @@ import { Mode, SelectPopoverOption } from '../../interface';
export class SelectPopover {
mode!: Mode;
/** Header text for the popover */
@Prop() header?: string;
/** Subheader text for the popover */
@Prop() subHeader?: string;
/** Text for popover body */
@Prop() message?: string;
/** Array of options for the popover */
@Prop() options: SelectPopoverOption[] = [];
@Listen('ionSelect')