fix(props): update stencil

This commit is contained in:
Manu Mtz.-Almeida
2018-04-10 00:12:38 +02:00
parent 22ebbce57f
commit ea24ad677d
80 changed files with 12106 additions and 275 deletions

View File

@ -16,7 +16,7 @@ export class ItemOptions {
* The side the option button should be on. Defaults to `"right"`.
* If you have multiple `ion-item-options`, a side must be provided for each.
*/
@Prop() side: Side = 'right';
@Prop() side: Side = 'end';
/**
* Emitted when the item has been fully swiped.
@ -25,7 +25,7 @@ export class ItemOptions {
@Method()
isRightSide() {
return isRightSide(this.side, true);
return isRightSide(this.side);
}
@Method()