yoyo-ng-modulewindy
Version:
服务于52ABP模板的前端开源的相关组件内容。整合了ng-alain和你NG ZORRO的内容
25 lines • 954 B
JavaScript
import { Directive, HostListener } from '@angular/core';
import { FullContentComponent } from './full-content.component';
var FullContentToggleDirective = /** @class */ (function () {
function FullContentToggleDirective(parent) {
this.parent = parent;
}
FullContentToggleDirective.prototype._click = function () {
this.parent.toggle();
};
FullContentToggleDirective.decorators = [
{ type: Directive, args: [{
selector: '[full-toggle]',
},] },
];
/** @nocollapse */
FullContentToggleDirective.ctorParameters = function () { return [
{ type: FullContentComponent }
]; };
FullContentToggleDirective.propDecorators = {
_click: [{ type: HostListener, args: ['click',] }]
};
return FullContentToggleDirective;
}());
export { FullContentToggleDirective };
//# sourceMappingURL=full-content-toggle.directive.js.map