mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 21:48:42 +08:00
style(components): add line breaks, edit comments
This commit is contained in:
@ -35,7 +35,6 @@ export class ActionSheet {
|
|||||||
@Prop() subTitle: string;
|
@Prop() subTitle: string;
|
||||||
@Prop() buttons: ActionSheetButton[];
|
@Prop() buttons: ActionSheetButton[];
|
||||||
@Prop() enableBackdropDismiss: boolean = true;
|
@Prop() enableBackdropDismiss: boolean = true;
|
||||||
@Prop() showBackdrop: boolean = true;
|
|
||||||
|
|
||||||
@Prop() enterAnimation: AnimationBuilder;
|
@Prop() enterAnimation: AnimationBuilder;
|
||||||
@Prop() exitAnimation: AnimationBuilder;
|
@Prop() exitAnimation: AnimationBuilder;
|
||||||
@ -173,6 +172,7 @@ export class ActionSheet {
|
|||||||
return b;
|
return b;
|
||||||
})
|
})
|
||||||
.filter(b => b !== null);
|
.filter(b => b !== null);
|
||||||
|
|
||||||
return [
|
return [
|
||||||
<ion-backdrop
|
<ion-backdrop
|
||||||
onClick={this.backdropClick.bind(this)}
|
onClick={this.backdropClick.bind(this)}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { Animation } from '../../../index';
|
import { Animation } from '../../../index';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* iOS Action Sheet Animation
|
* iOS Action Sheet Enter Animation
|
||||||
*/
|
*/
|
||||||
export default function(Animation: Animation, baseElm: HTMLElement) {
|
export default function(Animation: Animation, baseElm: HTMLElement) {
|
||||||
const baseAnimation = new Animation();
|
const baseAnimation = new Animation();
|
||||||
|
@ -36,4 +36,4 @@ export class SelectOption {
|
|||||||
return <slot></slot>;
|
return <slot></slot>;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user