@lowcodeunit/applications-flow-common 1.33.135-lets-get-social-ish → 1.33.136-lets-get-social-ish

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (24) hide show
  1. package/bundles/lowcodeunit-applications-flow-common.umd.js +75 -9
  2. package/bundles/lowcodeunit-applications-flow-common.umd.js.map +1 -1
  3. package/bundles/lowcodeunit-applications-flow-common.umd.min.js +1 -1
  4. package/bundles/lowcodeunit-applications-flow-common.umd.min.js.map +1 -1
  5. package/esm2015/lib/applications-flow.module.js +12 -4
  6. package/esm2015/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.js +31 -0
  7. package/esm2015/lib/dialogs/edit-application-dialog/edit-application-dialog.component.js +29 -0
  8. package/esm2015/lib/elements/feed-card-sm/feed-card-sm.component.js +1 -1
  9. package/esm2015/lib/elements/gh-control/gh-control.component.js +1 -1
  10. package/esm2015/lib/elements/main-feed-card/main-feed-card.component.js +1 -1
  11. package/esm2015/lib/elements/project-info-card/project-info-card.component.js +2 -2
  12. package/esm2015/lib/elements/slotted-card/slotted-card.component.js +3 -3
  13. package/esm2015/lowcodeunit-applications-flow-common.js +3 -1
  14. package/fesm2015/lowcodeunit-applications-flow-common.js +72 -10
  15. package/fesm2015/lowcodeunit-applications-flow-common.js.map +1 -1
  16. package/lib/applications-flow.module.d.ts.map +1 -1
  17. package/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.d.ts +20 -0
  18. package/lib/dialogs/custom-domain-dialog/custom-domain-dialog.component.d.ts.map +1 -0
  19. package/lib/dialogs/edit-application-dialog/edit-application-dialog.component.d.ts +15 -0
  20. package/lib/dialogs/edit-application-dialog/edit-application-dialog.component.d.ts.map +1 -0
  21. package/lowcodeunit-applications-flow-common.d.ts +2 -0
  22. package/lowcodeunit-applications-flow-common.d.ts.map +1 -1
  23. package/lowcodeunit-applications-flow-common.metadata.json +1 -1
  24. package/package.json +1 -1
@@ -4767,8 +4767,8 @@
4767
4767
  SlottedCardComponent.decorators = [
4768
4768
  { type: i0.Component, args: [{
4769
4769
  selector: 'lcu-slotted-card',
4770
- template: "<mat-card class=\"col-info-card\">\n <mat-card-header fxLayoutAlign=\"space-between center\">\n <mat-card-title class=\"card-title\">{{ Title }}</mat-card-title>\n <mat-icon mat-card-avatar class=\"header-icon\">{{ Icon }}</mat-icon>\n </mat-card-header>\n\n <mat-card-content>\n <div class=\"slot-main-container\">\n <div class=\"header-description\">{{ MainSlotDescription }}</div>\n\n <div class=\"slot-main\">\n <ng-content></ng-content>\n </div>\n </div>\n\n <div *ngIf=\"SecondarySlotDescription\" class=\"slot-secondary-container\">\n <div class=\"header-description\">{{ SecondarySlotDescription }}</div>\n\n <div class=\"slot-secondary\">\n <ng-content select=\"[secondary]\"></ng-content>\n </div>\n </div>\n </mat-card-content>\n\n <mat-card-actions *ngIf=\"ActionText\" fxLayoutAlign=\"center\">\n <a\n mat-button\n *ngIf=\"ActionPath\"\n class=\"slotted-card-action-btn\"\n [href]=\"ActionPath\"\n color=\"primary\"\n >{{ ActionText }}\n </a>\n\n <a\n mat-button\n *ngIf=\"!ActionPath\"\n class=\"slotted-card-action-btn\"\n (click)=\"MainActionClickEvent()\"\n color=\"primary\"\n >\n {{ ActionText }}\n </a>\n </mat-card-actions>\n</mat-card>\n",
4771
- styles: [".col-info-card{margin:20px;padding:0}.header-icon{margin-right:10px}.card-title{font-size:30px;margin-bottom:0}.header-description{background-color:#d3d3d3;margin-left:-2px;padding:10px}mat-card-actions{margin-bottom:0!important;margin-left:-1px!important;margin-right:0!important}.slotted-card-action-btn{width:100%}"]
4770
+ template: "<mat-card class=\"col-info-card\">\n <mat-card-header >\n <!-- How are these two getting switched?? -->\n <mat-icon class=\"header-icon\">{{ Icon }}</mat-icon>\n <mat-card-title class=\"card-title\">{{ Title }}</mat-card-title>\n \n </mat-card-header>\n\n <mat-card-content>\n <div class=\"slot-main-container\">\n <div class=\"header-description\">{{ MainSlotDescription }}</div>\n\n <div class=\"slot-main\">\n <ng-content></ng-content>\n </div>\n </div>\n\n <div *ngIf=\"SecondarySlotDescription\" class=\"slot-secondary-container\">\n <div class=\"header-description\">{{ SecondarySlotDescription }}</div>\n\n <div class=\"slot-secondary\">\n <ng-content select=\"[secondary]\"></ng-content>\n </div>\n </div>\n </mat-card-content>\n\n <mat-card-actions *ngIf=\"ActionText\" fxLayoutAlign=\"center\">\n <a\n mat-button\n *ngIf=\"ActionPath\"\n class=\"slotted-card-action-btn\"\n [href]=\"ActionPath\"\n color=\"primary\"\n >{{ ActionText }}\n </a>\n\n <a\n mat-button\n *ngIf=\"!ActionPath\"\n class=\"slotted-card-action-btn\"\n (click)=\"MainActionClickEvent()\"\n color=\"primary\"\n >\n {{ ActionText }}\n </a>\n </mat-card-actions>\n</mat-card>\n",
4771
+ styles: [".col-info-card{margin:20px;padding:0}.header-icon{font-size:30px;height:30px;width:30px}.card-title{font-size:25px;margin-bottom:0}.header-description{background-color:#d3d3d3;margin-left:-2px;padding:10px}mat-card-actions{margin-bottom:0!important;margin-left:-1px!important;margin-right:0!important}.slotted-card-action-btn{width:100%}"]
4772
4772
  },] }
4773
4773
  ];
4774
4774
  SlottedCardComponent.ctorParameters = function () { return []; };
@@ -4800,7 +4800,7 @@
4800
4800
  ProjectInfoCardComponent.decorators = [
4801
4801
  { type: i0.Component, args: [{
4802
4802
  selector: 'lcu-project-info-card',
4803
- template: "<mat-card class=\"project-info-card\">\n\n <div class=\"header-img-container\" fxLayout=\"row\" >\n <div class=\"round-project-img\" fxLayoutAlign=\"center center\">\n <mat-icon class=\"temp-icon\">flutter_dash</mat-icon>\n </div>\n </div>\n\n <div class=\"icon-btn-container\" fxLayout=\"row\" fxLayoutAlign=\"space-between center\" >\n <button mat-icon-button id=\"left-icon\" (click)=\"LeftIconClicked()\">\n <mat-icon>settings</mat-icon>\n </button>\n <button mat-icon-button id=\"right-icon\" (click)=\"RightIconClicked()\">\n <mat-icon>share</mat-icon>\n </button>\n </div>\n\n <mat-card-header class=\"project-card-header\" fxLayoutAlign=\"center center\">\n\n <mat-card-title class=\"project-card-name\" *ngIf=\"Name\">{{Name}}</mat-card-title>\n\n <mat-card-subtitle class=\"project-card-description\" *ngIf=\"Description\">{{Description}}</mat-card-subtitle>\n\n <mat-card-subtitle class=\"project-card-host\">\n <a class=\"host-anchor\" *ngIf=\"Subtext\" [href]=\"Subtext\" target=\"_blank\">{{Subtext}}</a>\n </mat-card-subtitle>\n\n </mat-card-header>\n <mat-card-content class=\"card-content-container\">\n <div class=\"stats-container\">\n <ng-content select=\"[stats]\"></ng-content>\n </div>\n\n <div class=\"promo-container\">\n <ng-content select=\"[promo]\"></ng-content>\n </div>\n\n </mat-card-content>\n <mat-card-actions class=\"actions-container\">\n <ng-content select=\"[action]\"></ng-content>\n \n </mat-card-actions>\n </mat-card>\n \n",
4803
+ template: "<mat-card class=\"project-info-card\">\n\n <div class=\"header-img-container\" fxLayout=\"row\" >\n <div class=\"round-project-img\" fxLayoutAlign=\"center center\">\n <mat-icon class=\"temp-icon\">flutter_dash</mat-icon>\n </div>\n </div>\n\n <div class=\"icon-btn-container\" fxLayout=\"row\" fxLayoutAlign=\"space-between center\" >\n <button mat-icon-button id=\"left-icon\" (click)=\"LeftIconClicked()\">\n <mat-icon>edit</mat-icon>\n </button>\n <button mat-icon-button id=\"right-icon\" (click)=\"RightIconClicked()\">\n <mat-icon>share</mat-icon>\n </button>\n </div>\n\n <mat-card-header class=\"project-card-header\" fxLayoutAlign=\"center center\">\n\n <mat-card-title class=\"project-card-name\" *ngIf=\"Name\">{{Name}}</mat-card-title>\n\n <mat-card-subtitle class=\"project-card-description\" *ngIf=\"Description\">{{Description}}</mat-card-subtitle>\n\n <mat-card-subtitle class=\"project-card-host\">\n <a class=\"host-anchor\" *ngIf=\"Subtext\" [href]=\"Subtext\" target=\"_blank\">{{Subtext}}</a>\n </mat-card-subtitle>\n\n </mat-card-header>\n <mat-card-content class=\"card-content-container\">\n <div class=\"stats-container\">\n <ng-content select=\"[stats]\"></ng-content>\n </div>\n\n <div class=\"promo-container\">\n <ng-content select=\"[promo]\"></ng-content>\n </div>\n\n </mat-card-content>\n <mat-card-actions class=\"actions-container\">\n <ng-content select=\"[action]\"></ng-content>\n \n </mat-card-actions>\n </mat-card>\n \n",
4804
4804
  styles: [".project-info-card{margin:20px;padding:0}.round-project-img{background-color:#dfeff2;border:2px solid #fff;border-radius:40px;height:75px;margin-top:20px;text-align:center;width:75px}.temp-icon{font-size:50px;height:50px;width:50px}.icon-btn-container{margin:5px}.project-card-header{margin-top:50px;text-align:center}.host-anchor{color:#4a918e;text-decoration:none}.header-img-container{background-color:#a4bab3;border-radius:2px 2px 0 0;height:60px;justify-content:center;margin-right:-.5px;margin-top:-.5px!important}.project-card-name{font-size:30px;font-weight:600}.card-content-container{margin-bottom:0!important}.stats-container{border-bottom:1px solid #d3d3d3;border-top:1px solid #d3d3d3}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.actions-container{padding:0!important}.info-card-btn{border-radius:0 0 2px 2px;border-top:1px solid #d3d3d3;width:100%}"]
4805
4805
  },] }
4806
4806
  ];
@@ -4856,7 +4856,7 @@
4856
4856
  { type: i0.Component, args: [{
4857
4857
  selector: 'lcu-feed-card-sm',
4858
4858
  template: "<mat-card class=\"social-card\">\n <div class=\"feed-card-container\" fxLayout=\"row\">\n <mat-icon *ngIf=\"Icon\" [style.color]=\"IconColor\">{{Icon}}</mat-icon>\n <div class=\"feed-card-main-content\">\n <mat-card-title *ngIf=\"Title\">{{Title}}</mat-card-title>\n <div *ngIf=\"Subtext\">{{Subtext}}</div>\n <div *ngIf=\"Description\">{{Description}}</div>\n <ng-content select=\"[more-details]\"></ng-content>\n </div>\n </div>\n\n <mat-card-actions fxLayout=\"row\" fxLayoutAlign=\"end\">\n <ng-content select=\"[actions]\"></ng-content>\n </mat-card-actions>\n </mat-card>\n",
4859
- styles: [".social-card{margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:22px;font-weight:600;padding-left:5px}.slot-description{font-size:12px;margin-right:10px}.slot-action-anchor{color:#000;font-size:10px;text-decoration:none}.action-icon{font-size:25px;height:25px;width:25px}.gold-icon{color:#d4af37}.upgrade-text{cursor:pointer;font-weight:700;margin-left:10px}"]
4859
+ styles: [".social-card{margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:13px;font-weight:600;padding-left:5px}.slot-description{font-size:12px;margin-right:10px}.slot-action-anchor{color:#000;font-size:10px;text-decoration:none}.action-icon{cursor:pointer;font-size:25px;height:25px;width:25px}.gold-icon{color:#d4af37}.upgrade-text{cursor:pointer;font-weight:700;margin-left:10px}"]
4860
4860
  },] }
4861
4861
  ];
4862
4862
  FeedCardSmComponent.ctorParameters = function () { return []; };
@@ -4934,7 +4934,7 @@
4934
4934
  { type: i0.Component, args: [{
4935
4935
  selector: 'lcu-gh-control',
4936
4936
  template: "<mat-card class=\"social-card\">\n <div class=\"gh-card-container\" fxLayout=\"row\" fxLayoutAlign=\"center center\">\n <mat-icon fxFlex=\"15%\" class=\"gh-icon\">error_outline</mat-icon>\n <div fxFlex=\"70%\"class=\"gh-card-main-content\">\n <mat-form-field appearance=\"fill\" class=\"gh-input\">\n <mat-label>{{InputLabel}}</mat-label>\n <input matInput type=\"text\" [(ngModel)]=\"value\">\n <!-- <button *ngIf=\"value\" matSuffix mat-icon-button aria-label=\"Clear\" (click)=\"value=''\">\n <mat-icon>close</mat-icon>\n </button> -->\n </mat-form-field>\n </div>\n <button fxFlex=\"15%\" mat-button (click)=\"Submit()\" id=\"submit-btn\">Submit</button>\n </div>\n\n <mat-card-actions fxLayout=\"row\" fxLayoutAlign=\"space-around center\">\n <button mat-button (click)=\"CreatePullRequest()\" id=\"pr-btn\">Pull Request</button>\n <button mat-button (click)=\"OpenIssue()\" id=\"oi-btn\">Open Issue</button>\n <button mat-button (click)=\"CreateFeatureBranch()\" id=\"fb-btn\">Feature Branch</button>\n <button mat-icon-button (click)=\"OpenMoreInfo()\">\n <mat-icon>more_horiz</mat-icon>\n </button>\n </mat-card-actions>\n </mat-card>",
4937
- styles: [".social-card{margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:22px;font-weight:600;padding-left:5px}.slot-description{font-size:12px;margin-right:10px}.slot-action-anchor{color:#000;font-size:10px;text-decoration:none}.action-icon{font-size:25px;height:25px;width:25px}.gold-icon{color:#d4af37}.upgrade-text{cursor:pointer;font-weight:700;margin-left:10px}.gh-icon{font-size:60px;height:60px;text-align:center;width:60px}.gh-input{width:90%}.selected{border:1px solid green}::ng-deep .mat-form-field-flex{border:1px solid;border-radius:30px!important}::ng-deep .mat-form-field-wrapper{padding-bottom:0!important}"]
4937
+ styles: [".social-card{margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:13px;font-weight:600;padding-left:5px}.slot-description{font-size:12px;margin-right:10px}.slot-action-anchor{color:#000;font-size:10px;text-decoration:none}.action-icon{cursor:pointer;font-size:25px;height:25px;width:25px}.gold-icon{color:#d4af37}.upgrade-text{cursor:pointer;font-weight:700;margin-left:10px}.gh-icon{font-size:60px;height:60px;text-align:center;width:60px}.gh-input{width:90%}.selected{border:1px solid green}::ng-deep .mat-form-field-flex{border:1px solid;border-radius:30px!important}::ng-deep .mat-form-field-wrapper{padding-bottom:0!important}"]
4938
4938
  },] }
4939
4939
  ];
4940
4940
  GhControlComponent.ctorParameters = function () { return []; };
@@ -4953,7 +4953,7 @@
4953
4953
  { type: i0.Component, args: [{
4954
4954
  selector: 'lcu-main-feed-card',
4955
4955
  template: "<mat-card class=\"social-card\">\n <mat-card-header fxLayout=\"row\">\n <div *ngIf=\"Avatar\" mat-card-avatar class=\"example-header-image\" [style.backgroundImage]=\"Avatar\" fxFlex=\"10%\"></div>\n <div class=\"header-main-content-container\" fxFlex=\"80%\">\n <mat-card-title *ngIf=\"Title\">{{Title}}</mat-card-title>\n <div *ngIf=\"Subtext\">{{Subtext}}</div>\n <div *ngIf=\"TimeAgo\">{{TimeAgo}}</div>\n </div>\n <div fxFlex=\"10%\">\n <button mat-icon-button (click)=\"MoreClicked()\" >\n <mat-icon>more_horiz</mat-icon>\n </button>\n </div>\n\n </mat-card-header>\n \n <div class=\"feed-card-container\" fxLayout=\"row\">\n <div class=\"feed-card-main-content\">\n <ng-content select=\"[tabs]\"></ng-content>\n </div>\n </div>\n\n <mat-card-actions fxLayout=\"row\" fxLayoutAlign=\"space-around center\">\n <ng-content select=\"[actions]\"></ng-content>\n \n\n </mat-card-actions>\n </mat-card>\n",
4956
- styles: [".social-card{margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:22px;font-weight:600;padding-left:5px}.slot-description{font-size:12px;margin-right:10px}.slot-action-anchor{color:#000;font-size:10px;text-decoration:none}.action-icon{font-size:25px;height:25px;width:25px}.gold-icon{color:#d4af37}.upgrade-text{cursor:pointer;font-weight:700;margin-left:10px}.example-header-image{background-size:cover}"]
4956
+ styles: [".social-card{margin:20px;padding:15px 5px}mat-card-actions{margin-bottom:-1px!important;margin-left:0!important;margin-right:-.5px!important}.main-slot-container{padding:10px}.slot-header{align-items:center}.slot-content{width:100%}.slot-name{font-size:13px;font-weight:600;padding-left:5px}.slot-description{font-size:12px;margin-right:10px}.slot-action-anchor{color:#000;font-size:10px;text-decoration:none}.action-icon{cursor:pointer;font-size:25px;height:25px;width:25px}.gold-icon{color:#d4af37}.upgrade-text{cursor:pointer;font-weight:700;margin-left:10px}.example-header-image{background-size:cover}"]
4957
4957
  },] }
4958
4958
  ];
4959
4959
  MainFeedCardComponent.ctorParameters = function () { return []; };
@@ -6582,6 +6582,64 @@
6582
6582
  SelectedRoute: [{ type: i0.Input, args: ['selected-route',] }]
6583
6583
  };
6584
6584
 
6585
+ var CustomDomainDialogComponent = /** @class */ (function () {
6586
+ function CustomDomainDialogComponent(dialogRef, data) {
6587
+ this.dialogRef = dialogRef;
6588
+ this.data = data;
6589
+ this.DomainData = {
6590
+ Hosts: this.data.hosts,
6591
+ PrimaryHost: this.data.primaryHost,
6592
+ Project: this.data.project,
6593
+ ProjectLookup: this.data.projectLookup
6594
+ };
6595
+ }
6596
+ CustomDomainDialogComponent.prototype.ngOnInit = function () {
6597
+ };
6598
+ CustomDomainDialogComponent.prototype.CloseDialog = function () {
6599
+ this.dialogRef.close();
6600
+ };
6601
+ return CustomDomainDialogComponent;
6602
+ }());
6603
+ CustomDomainDialogComponent.decorators = [
6604
+ { type: i0.Component, args: [{
6605
+ selector: 'lcu-custom-domain-dialog',
6606
+ template: "<div class=\"dialog-header\" fxLayoutAlign=\"end center\">\n <button mat-icon-button (click)=\"CloseDialog()\">\n <mat-icon>cancel</mat-icon>\n </button>\n</div>\n\n<lcu-domains\n[data]=\"DomainData\"\n>\n\n</lcu-domains>\n",
6607
+ styles: [""]
6608
+ },] }
6609
+ ];
6610
+ CustomDomainDialogComponent.ctorParameters = function () { return [
6611
+ { type: dialog.MatDialogRef },
6612
+ { type: undefined, decorators: [{ type: i0.Inject, args: [dialog.MAT_DIALOG_DATA,] }] }
6613
+ ]; };
6614
+
6615
+ var EditApplicationDialogComponent = /** @class */ (function () {
6616
+ function EditApplicationDialogComponent(dialogRef, data) {
6617
+ this.dialogRef = dialogRef;
6618
+ this.data = data;
6619
+ }
6620
+ EditApplicationDialogComponent.prototype.ngOnInit = function () {
6621
+ };
6622
+ EditApplicationDialogComponent.prototype.CloseDialog = function () {
6623
+ this.dialogRef.close();
6624
+ };
6625
+ EditApplicationDialogComponent.prototype.SaveApplication = function (event) {
6626
+ console.log("event to save: ", event);
6627
+ this.dialogRef.close({ event: 'Save' });
6628
+ };
6629
+ return EditApplicationDialogComponent;
6630
+ }());
6631
+ EditApplicationDialogComponent.decorators = [
6632
+ { type: i0.Component, args: [{
6633
+ selector: 'lcu-edit-application-dialog',
6634
+ template: "<div class=\"dialog-header\" fxLayoutAlign=\"end center\">\n <button mat-icon-button (click)=\"CloseDialog()\">\n <mat-icon>cancel</mat-icon>\n </button>\n</div>\n\n<lcu-edit-application-form \n [editing-application]=\"data.application\"\n (save-form-event)=\"SaveApplication($event)\">\n</lcu-edit-application-form>\n",
6635
+ styles: [""]
6636
+ },] }
6637
+ ];
6638
+ EditApplicationDialogComponent.ctorParameters = function () { return [
6639
+ { type: dialog.MatDialogRef },
6640
+ { type: undefined, decorators: [{ type: i0.Inject, args: [dialog.MAT_DIALOG_DATA,] }] }
6641
+ ]; };
6642
+
6585
6643
  var ApplicationsFlowModule = /** @class */ (function () {
6586
6644
  function ApplicationsFlowModule() {
6587
6645
  }
@@ -6643,7 +6701,9 @@
6643
6701
  SourceControlDialogComponent,
6644
6702
  BuildPipelineDialogComponent,
6645
6703
  EditApplicationFormComponent,
6646
- BreadcrumbComponent
6704
+ BreadcrumbComponent,
6705
+ CustomDomainDialogComponent,
6706
+ EditApplicationDialogComponent
6647
6707
  ],
6648
6708
  imports: [
6649
6709
  i2.FathymSharedModule,
@@ -6697,7 +6757,9 @@
6697
6757
  SourceControlDialogComponent,
6698
6758
  BuildPipelineDialogComponent,
6699
6759
  EditApplicationFormComponent,
6700
- BreadcrumbComponent
6760
+ BreadcrumbComponent,
6761
+ CustomDomainDialogComponent,
6762
+ EditApplicationDialogComponent
6701
6763
  ],
6702
6764
  entryComponents: [
6703
6765
  ApplicationsFlowProjectsElementComponent,
@@ -6738,7 +6800,9 @@
6738
6800
  SourceControlDialogComponent,
6739
6801
  BuildPipelineDialogComponent,
6740
6802
  EditApplicationFormComponent,
6741
- BreadcrumbComponent
6803
+ BreadcrumbComponent,
6804
+ CustomDomainDialogComponent,
6805
+ EditApplicationDialogComponent
6742
6806
  ],
6743
6807
  },] }
6744
6808
  ];
@@ -6836,6 +6900,8 @@
6836
6900
  exports.ɵbe = BuildPipelineDialogComponent;
6837
6901
  exports.ɵbf = EditApplicationFormComponent;
6838
6902
  exports.ɵbg = BreadcrumbComponent;
6903
+ exports.ɵbh = CustomDomainDialogComponent;
6904
+ exports.ɵbi = EditApplicationDialogComponent;
6839
6905
  exports.ɵc = ProjectTabsComponent;
6840
6906
  exports.ɵd = GeneralComponent;
6841
6907
  exports.ɵe = DomainsComponent;