@lowcodeunit/applications-flow-common 1.33.171-social-ui → 1.33.174-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 (46) hide show
  1. package/esm2020/lcu.api.mjs +1 -2
  2. package/esm2020/lib/applications-flow.module.mjs +8 -17
  3. package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +6 -6
  4. package/esm2020/lib/dialogs/new-application-dialog/new-application-dialog.component.mjs +1 -1
  5. package/esm2020/lib/elements/breadcrumb/breadcrumb.component.mjs +14 -14
  6. package/esm2020/lib/elements/dynamic-tabs/dynamic-tabs.component.mjs +2 -2
  7. package/esm2020/lib/elements/feed-card-sm/feed-card-sm.component.mjs +21 -19
  8. package/esm2020/lib/elements/form-card/form-card.component.mjs +2 -2
  9. package/esm2020/lib/elements/gh-control/gh-control.component.mjs +2 -2
  10. package/esm2020/lib/elements/main-feed-card/main-feed-card.component.mjs +10 -22
  11. package/esm2020/lib/elements/project-info-card/project-info-card.component.mjs +4 -5
  12. package/esm2020/lib/elements/projects/controls/builds/builds.component.mjs +2 -2
  13. package/esm2020/lib/elements/projects/controls/create-project-wizard/create-project-wizard.component.mjs +2 -2
  14. package/esm2020/lib/elements/projects/controls/forms/source-control/source-control.component.mjs +2 -2
  15. package/esm2020/lib/elements/projects/controls/git-auth/git-auth.component.mjs +2 -2
  16. package/esm2020/lib/elements/projects/controls/header/header.component.mjs +2 -2
  17. package/esm2020/lib/elements/projects/controls/hosting-details-form-group/hosting-details-form-group.component.mjs +2 -2
  18. package/esm2020/lib/elements/projects/controls/project-items/project-items.component.mjs +2 -2
  19. package/esm2020/lib/elements/projects/controls/project-tabs/project-tabs.component.mjs +2 -2
  20. package/esm2020/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.mjs +2 -2
  21. package/esm2020/lib/elements/projects/controls/tabs/apps-flow/npm-package-select/npm-package-select.component.mjs +2 -2
  22. package/esm2020/lib/elements/projects/controls/tabs/devops/devops.component.mjs +2 -2
  23. package/esm2020/lib/elements/projects/controls/tabs/dfs-modifiers/dfs-modifiers.component.mjs +2 -2
  24. package/esm2020/lib/elements/projects/controls/tabs/domains/domains.component.mjs +2 -2
  25. package/esm2020/lib/elements/projects/controls/tabs/general/forms/project-details/project-details.component.mjs +2 -2
  26. package/esm2020/lib/elements/projects/controls/tabs/general/forms/root-directory/root-directory.component.mjs +2 -2
  27. package/esm2020/lib/elements/projects/controls/tabs/general/general.component.mjs +2 -2
  28. package/esm2020/lib/elements/projects/projects.component.mjs +2 -2
  29. package/esm2020/lib/elements/slotted-card/slotted-card.component.mjs +12 -15
  30. package/esm2020/lib/services/eac.service.mjs +3 -3
  31. package/fesm2015/lowcodeunit-applications-flow-common.mjs +128 -293
  32. package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
  33. package/fesm2020/lowcodeunit-applications-flow-common.mjs +125 -286
  34. package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
  35. package/lcu.api.d.ts +0 -1
  36. package/lib/applications-flow.module.d.ts +8 -10
  37. package/lib/controls/processor-details-form/processor-details-form.component.d.ts +2 -3
  38. package/lib/elements/breadcrumb/breadcrumb.component.d.ts +3 -3
  39. package/lib/elements/feed-card-sm/feed-card-sm.component.d.ts +6 -6
  40. package/lib/elements/main-feed-card/main-feed-card.component.d.ts +4 -6
  41. package/lib/elements/project-info-card/project-info-card.component.d.ts +1 -2
  42. package/lib/elements/slotted-card/slotted-card.component.d.ts +3 -7
  43. package/lib/services/eac.service.d.ts +1 -1
  44. package/package.json +1 -1
  45. package/esm2020/lib/dialogs/processor-details-dialog/processor-details-dialog.component.mjs +0 -153
  46. package/lib/dialogs/processor-details-dialog/processor-details-dialog.component.d.ts +0 -31
@@ -6,35 +6,37 @@ import * as i3 from "@angular/flex-layout/flex";
6
6
  import * as i4 from "@angular/common";
7
7
  export class FeedCardSmComponent {
8
8
  constructor() { }
9
+ // Life Cycle
9
10
  ngOnInit() {
10
- this.determineIconColor();
11
+ this.determineIcon();
11
12
  }
12
- // HELPERS
13
- determineIconColor() {
14
- if (this.Icon === 'check_circle') {
13
+ // API Methods
14
+ HandleAction(action) {
15
+ console.log('Action clicked');
16
+ }
17
+ // Helpers
18
+ determineIcon() {
19
+ if (this.FeedItem.Status.Code === 0) {
20
+ this.Icon = 'check_circle';
15
21
  this.IconColor = 'green';
16
22
  }
17
- else if (this.Icon === 'cancel') {
23
+ else if (this.FeedItem.Status.Code === 1) {
24
+ this.Icon = 'cancel';
18
25
  this.IconColor = 'red';
19
26
  }
27
+ else if (this.FeedItem.Status.Code === 2) {
28
+ this.Icon = 'sync';
29
+ this.IconColor = 'blue';
30
+ }
20
31
  }
21
32
  }
22
33
  FeedCardSmComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: FeedCardSmComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
23
- FeedCardSmComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: FeedCardSmComponent, selector: "lcu-feed-card-sm", inputs: { Icon: ["icon", "Icon"], Title: ["title", "Title"], Subtext: ["subtext", "Subtext"], Description: ["description", "Description"] }, ngImport: i0, 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", 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}.slot-description{font-size:12px;margin-right:10px}.slot-action-anchor{font-size:10px;text-decoration:none;color:#000}.action-icon{height:25px;width:25px;font-size:25px;cursor:pointer}\n"], components: [{ type: i1.MatCard, selector: "mat-card", exportAs: ["matCard"] }, { type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], directives: [{ type: i3.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { type: i1.MatCardActions, selector: "mat-card-actions", inputs: ["align"], exportAs: ["matCardActions"] }, { type: i3.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }] });
34
+ FeedCardSmComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.2.2", type: FeedCardSmComponent, selector: "lcu-feed-card-sm", inputs: { FeedItem: ["feed-item", "FeedItem"] }, ngImport: i0, 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=\"FeedItem.Title\">\n {{ FeedItem.Title }}\n </mat-card-title>\n\n <div *ngIf=\"FeedItem.Subtitle\">{{ FeedItem.Subtitle }}</div>\n\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", 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{font-size:10px;text-decoration:none;color:#000}.action-icon{height:25px;width:25px;font-size:25px;cursor:pointer}.gold-icon{color:#d4af37}.upgrade-text{font-weight:700;margin-left:10px;cursor:pointer}\n"], components: [{ type: i1.MatCard, selector: "mat-card", exportAs: ["matCard"] }, { type: i2.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], directives: [{ type: i3.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.MatCardTitle, selector: "mat-card-title, [mat-card-title], [matCardTitle]" }, { type: i1.MatCardActions, selector: "mat-card-actions", inputs: ["align"], exportAs: ["matCardActions"] }, { type: i3.DefaultLayoutAlignDirective, selector: " [fxLayoutAlign], [fxLayoutAlign.xs], [fxLayoutAlign.sm], [fxLayoutAlign.md], [fxLayoutAlign.lg], [fxLayoutAlign.xl], [fxLayoutAlign.lt-sm], [fxLayoutAlign.lt-md], [fxLayoutAlign.lt-lg], [fxLayoutAlign.lt-xl], [fxLayoutAlign.gt-xs], [fxLayoutAlign.gt-sm], [fxLayoutAlign.gt-md], [fxLayoutAlign.gt-lg]", inputs: ["fxLayoutAlign", "fxLayoutAlign.xs", "fxLayoutAlign.sm", "fxLayoutAlign.md", "fxLayoutAlign.lg", "fxLayoutAlign.xl", "fxLayoutAlign.lt-sm", "fxLayoutAlign.lt-md", "fxLayoutAlign.lt-lg", "fxLayoutAlign.lt-xl", "fxLayoutAlign.gt-xs", "fxLayoutAlign.gt-sm", "fxLayoutAlign.gt-md", "fxLayoutAlign.gt-lg"] }] });
24
35
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.2.2", ngImport: i0, type: FeedCardSmComponent, decorators: [{
25
36
  type: Component,
26
- args: [{ selector: 'lcu-feed-card-sm', 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", 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}.slot-description{font-size:12px;margin-right:10px}.slot-action-anchor{font-size:10px;text-decoration:none;color:#000}.action-icon{height:25px;width:25px;font-size:25px;cursor:pointer}\n"] }]
27
- }], ctorParameters: function () { return []; }, propDecorators: { Icon: [{
28
- type: Input,
29
- args: ['icon']
30
- }], Title: [{
31
- type: Input,
32
- args: ['title']
33
- }], Subtext: [{
34
- type: Input,
35
- args: ['subtext']
36
- }], Description: [{
37
+ args: [{ selector: 'lcu-feed-card-sm', 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=\"FeedItem.Title\">\n {{ FeedItem.Title }}\n </mat-card-title>\n\n <div *ngIf=\"FeedItem.Subtitle\">{{ FeedItem.Subtitle }}</div>\n\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", 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{font-size:10px;text-decoration:none;color:#000}.action-icon{height:25px;width:25px;font-size:25px;cursor:pointer}.gold-icon{color:#d4af37}.upgrade-text{font-weight:700;margin-left:10px;cursor:pointer}\n"] }]
38
+ }], ctorParameters: function () { return []; }, propDecorators: { FeedItem: [{
37
39
  type: Input,
38
- args: ['description']
40
+ args: ['feed-item']
39
41
  }] } });
40
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmVlZC1jYXJkLXNtLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NvbW1vbi9zcmMvbGliL2VsZW1lbnRzL2ZlZWQtY2FyZC1zbS9mZWVkLWNhcmQtc20uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tbW9uL3NyYy9saWIvZWxlbWVudHMvZmVlZC1jYXJkLXNtL2ZlZWQtY2FyZC1zbS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQzs7Ozs7O0FBT3pELE1BQU0sT0FBTyxtQkFBbUI7SUFnQjlCLGdCQUFnQixDQUFDO0lBRWpCLFFBQVE7UUFDTixJQUFJLENBQUMsa0JBQWtCLEVBQUUsQ0FBQztJQUM1QixDQUFDO0lBRUQsVUFBVTtJQUNBLGtCQUFrQjtRQUMxQixJQUFJLElBQUksQ0FBQyxJQUFJLEtBQUssY0FBYyxFQUFDO1lBRS9CLElBQUksQ0FBQyxTQUFTLEdBQUcsT0FBTyxDQUFDO1NBRTFCO2FBQ0ksSUFBSSxJQUFJLENBQUMsSUFBSSxLQUFLLFFBQVEsRUFBQztZQUM5QixJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQztTQUN4QjtJQUNILENBQUM7O2dIQWhDVSxtQkFBbUI7b0dBQW5CLG1CQUFtQixxTUNQaEMsd3BCQWVBOzJGRFJhLG1CQUFtQjtrQkFML0IsU0FBUzsrQkFDRSxrQkFBa0I7MEVBT3JCLElBQUk7c0JBRFYsS0FBSzt1QkFBQyxNQUFNO2dCQUlOLEtBQUs7c0JBRFgsS0FBSzt1QkFBQyxPQUFPO2dCQUlQLE9BQU87c0JBRGIsS0FBSzt1QkFBQyxTQUFTO2dCQUlULFdBQVc7c0JBRGpCLEtBQUs7dUJBQUMsYUFBYSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdsY3UtZmVlZC1jYXJkLXNtJyxcbiAgdGVtcGxhdGVVcmw6ICcuL2ZlZWQtY2FyZC1zbS5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2ZlZWQtY2FyZC1zbS5jb21wb25lbnQuc2NzcyddXG59KVxuZXhwb3J0IGNsYXNzIEZlZWRDYXJkU21Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gIEBJbnB1dCgnaWNvbicpXG4gIHB1YmxpYyBJY29uOiBzdHJpbmc7XG5cbiAgQElucHV0KCd0aXRsZScpXG4gIHB1YmxpYyBUaXRsZTogc3RyaW5nO1xuXG4gIEBJbnB1dCgnc3VidGV4dCcpXG4gIHB1YmxpYyBTdWJ0ZXh0OiBzdHJpbmc7XG5cbiAgQElucHV0KCdkZXNjcmlwdGlvbicpXG4gIHB1YmxpYyBEZXNjcmlwdGlvbjogc3RyaW5nO1xuXG4gIHB1YmxpYyBJY29uQ29sb3I6IHN0cmluZztcblxuICBjb25zdHJ1Y3RvcigpIHsgfVxuXG4gIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIHRoaXMuZGV0ZXJtaW5lSWNvbkNvbG9yKCk7XG4gIH1cblxuICAvLyBIRUxQRVJTXG4gIHByb3RlY3RlZCBkZXRlcm1pbmVJY29uQ29sb3IoKTogdm9pZHtcbiAgICBpZiAodGhpcy5JY29uID09PSAnY2hlY2tfY2lyY2xlJyl7XG5cbiAgICAgIHRoaXMuSWNvbkNvbG9yID0gJ2dyZWVuJztcblxuICAgIH1cbiAgICBlbHNlIGlmICh0aGlzLkljb24gPT09ICdjYW5jZWwnKXtcbiAgICAgIHRoaXMuSWNvbkNvbG9yID0gJ3JlZCc7XG4gICAgfVxuICB9XG5cbn1cbiIsIjxtYXQtY2FyZCBjbGFzcz1cInNvY2lhbC1jYXJkXCI+XG4gICAgPGRpdiBjbGFzcz1cImZlZWQtY2FyZC1jb250YWluZXJcIiBmeExheW91dD1cInJvd1wiPlxuICAgICAgICA8bWF0LWljb24gKm5nSWY9XCJJY29uXCIgW3N0eWxlLmNvbG9yXT1cIkljb25Db2xvclwiPnt7SWNvbn19PC9tYXQtaWNvbj5cbiAgICAgICAgPGRpdiBjbGFzcz1cImZlZWQtY2FyZC1tYWluLWNvbnRlbnRcIj5cbiAgICAgICAgICAgIDxtYXQtY2FyZC10aXRsZSAqbmdJZj1cIlRpdGxlXCI+e3tUaXRsZX19PC9tYXQtY2FyZC10aXRsZT5cbiAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJTdWJ0ZXh0XCI+e3tTdWJ0ZXh0fX08L2Rpdj5cbiAgICAgICAgICAgIDxkaXYgKm5nSWY9XCJEZXNjcmlwdGlvblwiPnt7RGVzY3JpcHRpb259fTwvZGl2PlxuICAgICAgICAgICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiW21vcmUtZGV0YWlsc11cIj48L25nLWNvbnRlbnQ+XG4gICAgICAgIDwvZGl2PlxuICAgIDwvZGl2PlxuXG4gICAgPG1hdC1jYXJkLWFjdGlvbnMgZnhMYXlvdXQ9XCJyb3dcIiBmeExheW91dEFsaWduPVwiZW5kXCI+XG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJbYWN0aW9uc11cIj48L25nLWNvbnRlbnQ+XG4gICAgPC9tYXQtY2FyZC1hY3Rpb25zPlxuICA8L21hdC1jYXJkPlxuIl19
42
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZmVlZC1jYXJkLXNtLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2NvbW1vbi9zcmMvbGliL2VsZW1lbnRzL2ZlZWQtY2FyZC1zbS9mZWVkLWNhcmQtc20uY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvY29tbW9uL3NyYy9saWIvZWxlbWVudHMvZmVlZC1jYXJkLXNtL2ZlZWQtY2FyZC1zbS5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQzs7Ozs7O0FBUXpELE1BQU0sT0FBTyxtQkFBbUI7SUFROUIsZ0JBQWUsQ0FBQztJQUVoQixjQUFjO0lBQ1AsUUFBUTtRQUNiLElBQUksQ0FBQyxhQUFhLEVBQUUsQ0FBQztJQUN2QixDQUFDO0lBRUQsZUFBZTtJQUNSLFlBQVksQ0FBQyxNQUFzQjtRQUN4QyxPQUFPLENBQUMsR0FBRyxDQUFDLGdCQUFnQixDQUFDLENBQUM7SUFDaEMsQ0FBQztJQUVELFdBQVc7SUFDRCxhQUFhO1FBQ3JCLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsRUFBRTtZQUNuQyxJQUFJLENBQUMsSUFBSSxHQUFHLGNBQWMsQ0FBQztZQUUzQixJQUFJLENBQUMsU0FBUyxHQUFHLE9BQU8sQ0FBQztTQUMxQjthQUFNLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsRUFBRTtZQUMxQyxJQUFJLENBQUMsSUFBSSxHQUFHLFFBQVEsQ0FBQztZQUVyQixJQUFJLENBQUMsU0FBUyxHQUFHLEtBQUssQ0FBQztTQUN4QjthQUFNLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsSUFBSSxLQUFLLENBQUMsRUFBRTtZQUMxQyxJQUFJLENBQUMsSUFBSSxHQUFHLE1BQU0sQ0FBQztZQUVuQixJQUFJLENBQUMsU0FBUyxHQUFHLE1BQU0sQ0FBQztTQUN6QjtJQUNILENBQUM7O2dIQW5DVSxtQkFBbUI7b0dBQW5CLG1CQUFtQix5R0NSaEMsa25CQWtCQTsyRkRWYSxtQkFBbUI7a0JBTC9CLFNBQVM7K0JBQ0Usa0JBQWtCOzBFQU1yQixRQUFRO3NCQURkLEtBQUs7dUJBQUMsV0FBVyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQsIE9uSW5pdCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRmVlZEl0ZW0sIEZlZWRJdGVtQWN0aW9uIH0gZnJvbSAnLi4vLi4vbW9kZWxzL3VzZXItZmVlZC5tb2RlbCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2xjdS1mZWVkLWNhcmQtc20nLFxuICB0ZW1wbGF0ZVVybDogJy4vZmVlZC1jYXJkLXNtLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vZmVlZC1jYXJkLXNtLmNvbXBvbmVudC5zY3NzJ10sXG59KVxuZXhwb3J0IGNsYXNzIEZlZWRDYXJkU21Db21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICBASW5wdXQoJ2ZlZWQtaXRlbScpXG4gIHB1YmxpYyBGZWVkSXRlbTogRmVlZEl0ZW07XG5cbiAgcHVibGljIEljb25Db2xvcjogc3RyaW5nO1xuXG4gIHB1YmxpYyBJY29uOiBzdHJpbmc7XG5cbiAgY29uc3RydWN0b3IoKSB7fVxuXG4gIC8vICBMaWZlIEN5Y2xlXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLmRldGVybWluZUljb24oKTtcbiAgfVxuXG4gIC8vICBBUEkgTWV0aG9kc1xuICBwdWJsaWMgSGFuZGxlQWN0aW9uKGFjdGlvbjogRmVlZEl0ZW1BY3Rpb24pIHtcbiAgICBjb25zb2xlLmxvZygnQWN0aW9uIGNsaWNrZWQnKTtcbiAgfVxuXG4gIC8vICBIZWxwZXJzXG4gIHByb3RlY3RlZCBkZXRlcm1pbmVJY29uKCk6IHZvaWQge1xuICAgIGlmICh0aGlzLkZlZWRJdGVtLlN0YXR1cy5Db2RlID09PSAwKSB7XG4gICAgICB0aGlzLkljb24gPSAnY2hlY2tfY2lyY2xlJztcbiAgICAgIFxuICAgICAgdGhpcy5JY29uQ29sb3IgPSAnZ3JlZW4nO1xuICAgIH0gZWxzZSBpZiAodGhpcy5GZWVkSXRlbS5TdGF0dXMuQ29kZSA9PT0gMSkge1xuICAgICAgdGhpcy5JY29uID0gJ2NhbmNlbCc7XG4gICAgICBcbiAgICAgIHRoaXMuSWNvbkNvbG9yID0gJ3JlZCc7XG4gICAgfSBlbHNlIGlmICh0aGlzLkZlZWRJdGVtLlN0YXR1cy5Db2RlID09PSAyKSB7XG4gICAgICB0aGlzLkljb24gPSAnc3luYyc7XG4gICAgICBcbiAgICAgIHRoaXMuSWNvbkNvbG9yID0gJ2JsdWUnO1xuICAgIH1cbiAgfVxufVxuIiwiPG1hdC1jYXJkIGNsYXNzPVwic29jaWFsLWNhcmRcIj5cbiAgPGRpdiBjbGFzcz1cImZlZWQtY2FyZC1jb250YWluZXJcIiBmeExheW91dD1cInJvd1wiPlxuICAgIDxtYXQtaWNvbiAqbmdJZj1cIkljb25cIiBbc3R5bGUuY29sb3JdPVwiSWNvbkNvbG9yXCI+e3sgSWNvbiB9fTwvbWF0LWljb24+XG4gICAgPGRpdiBjbGFzcz1cImZlZWQtY2FyZC1tYWluLWNvbnRlbnRcIj5cbiAgICAgIDxtYXQtY2FyZC10aXRsZSAqbmdJZj1cIkZlZWRJdGVtLlRpdGxlXCI+XG4gICAgICAgIHt7IEZlZWRJdGVtLlRpdGxlIH19XG4gICAgICA8L21hdC1jYXJkLXRpdGxlPlxuXG4gICAgICA8ZGl2ICpuZ0lmPVwiRmVlZEl0ZW0uU3VidGl0bGVcIj57eyBGZWVkSXRlbS5TdWJ0aXRsZSB9fTwvZGl2PlxuXG4gICAgICA8bmctY29udGVudCBzZWxlY3Q9XCJbbW9yZS1kZXRhaWxzXVwiPjwvbmctY29udGVudD5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG5cbiAgPG1hdC1jYXJkLWFjdGlvbnMgZnhMYXlvdXQ9XCJyb3dcIiBmeExheW91dEFsaWduPVwiZW5kXCI+XG4gICAgPG5nLWNvbnRlbnQgc2VsZWN0PVwiW2FjdGlvbnNdXCI+PC9uZy1jb250ZW50PlxuICA8L21hdC1jYXJkLWFjdGlvbnM+XG48L21hdC1jYXJkPlxuIl19