dynamicdialogcontent.js 1.4 KB

1234567891011121314151617181920212223242526
  1. "use strict";
  2. var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
  3. var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
  4. if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
  5. else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
  6. return c > 3 && r && Object.defineProperty(target, key, r), r;
  7. };
  8. var __metadata = (this && this.__metadata) || function (k, v) {
  9. if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
  10. };
  11. Object.defineProperty(exports, "__esModule", { value: true });
  12. var core_1 = require("@angular/core");
  13. var DynamicDialogContent = /** @class */ (function () {
  14. function DynamicDialogContent(viewContainerRef) {
  15. this.viewContainerRef = viewContainerRef;
  16. }
  17. DynamicDialogContent = __decorate([
  18. core_1.Directive({
  19. selector: '[pDynamicDialogContent]'
  20. }),
  21. __metadata("design:paramtypes", [core_1.ViewContainerRef])
  22. ], DynamicDialogContent);
  23. return DynamicDialogContent;
  24. }());
  25. exports.DynamicDialogContent = DynamicDialogContent;
  26. //# sourceMappingURL=dynamicdialogcontent.js.map