chore(): update to latest stencil

This commit is contained in:
Manu Mtz.-Almeida
2018-08-12 12:04:27 +02:00
parent 149039bd12
commit d856ecfbbf
101 changed files with 1098 additions and 8675 deletions

View File

@ -41,182 +41,36 @@ Since select uses the alert, action sheet and popover interfaces, options can be
## Properties
#### cancelText
string
The text to display on the cancel button. Default: `Cancel`.
#### disabled
boolean
If true, the user cannot interact with the select. Defaults to `false`.
#### interface
string
The interface the select should use: `action-sheet`, `popover` or `alert`. Default: `alert`.
#### interfaceOptions
any
Any additional options that the `alert`, `action-sheet` or `popover` interface
can take. See the [AlertController API docs](../../alert/AlertController/#create), the
[ActionSheetController API docs](../../action-sheet/ActionSheetController/#create) and the
[PopoverController API docs](../../popover/PopoverController/#create) for the
create options for each interface.
#### multiple
boolean
If true, the select can accept multiple values.
#### name
string
The name of the control, which is submitted with the form data.
#### okText
string
The text to display on the ok button. Default: `OK`.
#### placeholder
string
The text to display when the select is empty.
#### selectedText
string
The text to display instead of the selected option's value.
#### value
any
the value of the select.
## Attributes
#### cancel-text
string
The text to display on the cancel button. Default: `Cancel`.
#### disabled
boolean
If true, the user cannot interact with the select. Defaults to `false`.
#### interface
string
The interface the select should use: `action-sheet`, `popover` or `alert`. Default: `alert`.
#### interface-options
any
Any additional options that the `alert`, `action-sheet` or `popover` interface
can take. See the [AlertController API docs](../../alert/AlertController/#create), the
[ActionSheetController API docs](../../action-sheet/ActionSheetController/#create) and the
[PopoverController API docs](../../popover/PopoverController/#create) for the
create options for each interface.
#### multiple
boolean
If true, the select can accept multiple values.
#### name
string
The name of the control, which is submitted with the form data.
#### ok-text
string
The text to display on the ok button. Default: `OK`.
#### placeholder
string
The text to display when the select is empty.
#### selected-text
string
The text to display instead of the selected option's value.
#### value
any
the value of the select.
| Property | Attribute | Description | Type |
| ------------------ | --------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------- |
| `cancelText` | `cancel-text` | The text to display on the cancel button. Default: `Cancel`. | `string` |
| `disabled` | `disabled` | If true, the user cannot interact with the select. Defaults to `false`. | `boolean` |
| `interfaceOptions` | -- | Any additional options that the `alert`, `action-sheet` or `popover` interface can take. See the [AlertController API docs](../../alert/AlertController/#create), the [ActionSheetController API docs](../../action-sheet/ActionSheetController/#create) and the [PopoverController API docs](../../popover/PopoverController/#create) for the create options for each interface. | `any` |
| `interface` | `interface` | The interface the select should use: `action-sheet`, `popover` or `alert`. Default: `alert`. | `SelectInterface` |
| `multiple` | `multiple` | If true, the select can accept multiple values. | `boolean` |
| `name` | `name` | The name of the control, which is submitted with the form data. | `string` |
| `okText` | `ok-text` | The text to display on the ok button. Default: `OK`. | `string` |
| `placeholder` | `placeholder` | The text to display when the select is empty. | `string` |
| `selectedText` | `selected-text` | The text to display instead of the selected option's value. | `string` |
| `value` | -- | the value of the select. | `any` |
## Events
#### ionBlur
Emitted when the select loses focus.
| Event | Description |
| ----------- | ---------------------------------------- |
| `ionBlur` | Emitted when the select loses focus. |
| `ionCancel` | Emitted when the selection is cancelled. |
| `ionChange` | Emitted when the value has changed. |
| `ionFocus` | Emitted when the select has focus. |
| `ionStyle` | Emitted when the styles change. |
#### ionCancel
Emitted when the selection is cancelled.
#### ionChange
Emitted when the value has changed.
#### ionFocus
Emitted when the select has focus.
#### ionStyle
Emitted when the styles change.
## Methods
| Method | Description |
| ------ | ----------- |
| `open` | |
----------------------------------------------