docs(popover): add docs, usage, fix styling to guide

This commit is contained in:
Brandy Carney
2018-02-19 18:49:02 -05:00
parent a26a1971b1
commit 4ab951f645
8 changed files with 170 additions and 104 deletions

View File

@ -4,9 +4,6 @@
* and imports for stencil collections that might be configured in your stencil.config.js file
*/
import {
ActionSheetButton,
} from './components/action-sheet/action-sheet';
import {
AnimationBuilder,
FrameworkDelegate,
@ -14,6 +11,9 @@ import {
PickerOptions,
RouterDelegate,
} from './index';
import {
ActionSheetButton,
} from './components/action-sheet/action-sheet';
import {
AlertButton,
AlertInput,
@ -1600,6 +1600,7 @@ declare global {
cssClass?: string;
dismissOnPageChange?: boolean;
duration?: number;
enableBackdropDismiss?: boolean;
enterAnimation?: AnimationBuilder;
leaveAnimation?: AnimationBuilder;
showBackdrop?: boolean;
@ -2057,14 +2058,11 @@ declare global {
export interface IonPickerAttributes extends HTMLAttributes {
buttons?: PickerButton[];
columns?: PickerColumn[];
content?: string;
cssClass?: string;
dismissOnPageChange?: boolean;
duration?: number;
enableBackdropDismiss?: boolean;
enterAnimation?: AnimationBuilder;
leaveAnimation?: AnimationBuilder;
pickerId?: number;
showBackdrop?: boolean;
willAnimate?: boolean;
}
@ -2166,7 +2164,6 @@ declare global {
ev?: Event;
leaveAnimation?: AnimationBuilder;
mode?: 'ios' | 'md';
popoverId?: number;
showBackdrop?: boolean;
translucent?: boolean;
willAnimate?: boolean;
@ -3411,7 +3408,6 @@ declare global {
message?: string;
position?: string;
showCloseButton?: boolean;
toastId?: number;
translucent?: boolean;
willAnimate?: boolean;
}