Fixed: angular2 beta

This commit is contained in:
buchslava
2016-02-02 18:42:21 +02:00
parent 468fe762b1
commit 16350eb5fb
47 changed files with 41696 additions and 26 deletions

View File

@@ -0,0 +1,24 @@
export declare class PositionService {
private window;
private document;
private getStyle(nativeEl, cssProp);
private isStaticPositioned(nativeEl);
private parentOffsetEl(nativeEl);
position(nativeEl: any): {
width: number;
height: number;
top: number;
left: number;
};
offset(nativeEl: any): {
width: number;
height: number;
top: number;
left: number;
};
positionElements(hostEl: any, targetEl: any, positionStr: any, appendToBody: any): {
top: number;
left: number;
};
}
export declare const positionService: PositionService;