yoyo-ng-modulewindy
Version:
服务于52ABP模板的前端开源的相关组件内容。整合了ng-alain和你NG ZORRO的内容
38 lines (37 loc) • 1.24 kB
TypeScript
import { ElementRef, ChangeDetectorRef, EventEmitter, OnChanges, SimpleChanges, SimpleChange, OnInit, OnDestroy, AfterViewInit } from '@angular/core';
import { FullContentService } from './full-content.service';
import { Router } from '@angular/router';
export declare class FullContentComponent implements AfterViewInit, OnInit, OnChanges, OnDestroy {
private el;
private router;
private cd;
private srv;
private doc;
private bodyEl;
private inited;
private srv$;
private route$;
private id;
_height: number;
fullscreen: any;
private _fullscreen;
hideTitle: any;
private _hideTitle;
padding: any;
private _padding;
fullscreenChange: EventEmitter<boolean>;
constructor(el: ElementRef, router: Router, cd: ChangeDetectorRef, srv: FullContentService, doc: any);
ngOnInit(): void;
ngAfterViewInit(): void;
private updateFsCls();
private update();
private updateHeight();
toggle(): void;
ngOnChanges(changes: {
[P in keyof this]?: SimpleChange;
} & SimpleChanges): void;
ngOnDestroy(): void;
private scroll$;
private installResizeEvent();
private uninstallResizeEvent();
}