docs(item-options): side values renamed start/end

instead of left/right.
This commit is contained in:
ghybs
2018-04-11 23:20:02 +04:00
committed by Manu MA
parent b6348ca075
commit 27fae3b70d

View File

@ -13,7 +13,9 @@ export class ItemOptions {
@Element() private el: HTMLElement; @Element() private el: HTMLElement;
/** /**
* The side the option button should be on. Defaults to `"right"`. * The side the option button should be on.
* Possible values: `"start"` and `"end"`.
* Defaults to `"end"`.
* If you have multiple `ion-item-options`, a side must be provided for each. * If you have multiple `ion-item-options`, a side must be provided for each.
*/ */
@Prop() side: Side = 'end'; @Prop() side: Side = 'end';