UNPKG

yoyo-ng-modulewindy

Version:

服务于52ABP模板的前端开源的相关组件内容。整合了ng-alain和你NG ZORRO的内容

25 lines 834 B
import { Injectable } from '@angular/core'; import { BehaviorSubject } from 'rxjs'; import { share } from 'rxjs/operators'; var FullContentService = /** @class */ (function () { function FullContentService() { this._change = new BehaviorSubject(null); } /** 切换全屏工作区状态 */ FullContentService.prototype.toggle = function () { this._change.next(true); }; Object.defineProperty(FullContentService.prototype, "change", { get: function () { return this._change.pipe(share()); }, enumerable: true, configurable: true }); FullContentService.decorators = [ { type: Injectable }, ]; return FullContentService; }()); export { FullContentService }; //# sourceMappingURL=full-content.service.js.map