@lowcodeunit/applications-flow-common 1.37.118-new-project-page → 1.37.121-sc-hotfix

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 (40) hide show
  1. package/esm2020/lcu.api.mjs +1 -2
  2. package/esm2020/lib/applications-flow.module.mjs +3 -8
  3. package/esm2020/lib/controls/devops-source-control-form/devops-source-control-form.component.mjs +9 -3
  4. package/esm2020/lib/controls/dfs-modifiers-form/dfs-modifiers-form.component.mjs +19 -49
  5. package/esm2020/lib/controls/edit-application-form/edit-application-form.component.mjs +3 -13
  6. package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +11 -20
  7. package/esm2020/lib/controls/security-toggle/security-toggle.component.mjs +3 -4
  8. package/esm2020/lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component.mjs +8 -24
  9. package/esm2020/lib/dialogs/edit-application-dialog/edit-application-dialog.component.mjs +1 -1
  10. package/esm2020/lib/dialogs/new-application-dialog/new-application-dialog.component.mjs +1 -1
  11. package/esm2020/lib/dialogs/processor-details-dialog/processor-details-dialog.component.mjs +1 -1
  12. package/esm2020/lib/elements/breadcrumb/breadcrumb.component.mjs +6 -6
  13. package/esm2020/lib/elements/dashboard-toolbar/dashboard-toolbar.component.mjs +3 -9
  14. package/esm2020/lib/elements/project-card/project-card.component.mjs +24 -66
  15. package/esm2020/lib/elements/project-info-card/project-info-card.component.mjs +8 -6
  16. package/esm2020/lib/elements/projects/controls/header/header.component.mjs +2 -2
  17. package/esm2020/lib/elements/projects/controls/tabs/domains/domains.component.mjs +32 -46
  18. package/esm2020/lib/elements/usage-stats/usage-stats.component.mjs +3 -3
  19. package/esm2020/lib/models/tree-node.model.mjs +1 -1
  20. package/esm2020/lib/services/eac.service.mjs +2 -3
  21. package/fesm2015/lowcodeunit-applications-flow-common.mjs +142 -440
  22. package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
  23. package/fesm2020/lowcodeunit-applications-flow-common.mjs +131 -424
  24. package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
  25. package/lcu.api.d.ts +0 -1
  26. package/lib/applications-flow.module.d.ts +10 -11
  27. package/lib/controls/devops-source-control-form/devops-source-control-form.component.d.ts +2 -1
  28. package/lib/controls/dfs-modifiers-form/dfs-modifiers-form.component.d.ts +3 -4
  29. package/lib/controls/edit-application-form/edit-application-form.component.d.ts +1 -3
  30. package/lib/controls/processor-details-form/processor-details-form.component.d.ts +1 -2
  31. package/lib/controls/security-toggle/security-toggle.component.d.ts +0 -1
  32. package/lib/elements/dashboard-toolbar/dashboard-toolbar.component.d.ts +1 -2
  33. package/lib/elements/project-card/project-card.component.d.ts +7 -5
  34. package/lib/elements/project-info-card/project-info-card.component.d.ts +0 -1
  35. package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts +8 -5
  36. package/lib/models/tree-node.model.d.ts +1 -1
  37. package/lib/services/eac.service.d.ts +1 -1
  38. package/package.json +1 -1
  39. package/esm2020/lib/elements/route-card/route-card.component.mjs +0 -181
  40. package/lib/elements/route-card/route-card.component.d.ts +0 -39
@@ -1,39 +0,0 @@
1
- import { FlatTreeControl } from '@angular/cdk/tree';
2
- import { OnInit } from '@angular/core';
3
- import { MatDialog } from '@angular/material/dialog';
4
- import { MatTreeFlatDataSource, MatTreeFlattener } from '@angular/material/tree';
5
- import { EaCApplicationAsCode, EaCProjectAsCode } from '@semanticjs/common';
6
- import { FlatNode, TreeNode } from '../../models/tree-node.model';
7
- import * as i0 from "@angular/core";
8
- export declare class RouteCardComponent implements OnInit {
9
- protected dialog: MatDialog;
10
- private transformer;
11
- ApplicationsBank: Array<EaCApplicationAsCode>;
12
- Loading: boolean;
13
- protected get Applications(): {
14
- [lookup: string]: EaCApplicationAsCode;
15
- };
16
- protected get CurrentRouteApplicationLookups(): Array<string>;
17
- protected get RoutedApplications(): {
18
- [route: string]: {
19
- [lookup: string]: EaCApplicationAsCode;
20
- };
21
- };
22
- treeControl: FlatTreeControl<FlatNode, FlatNode>;
23
- protected treeFlattener: MatTreeFlattener<any, any, any>;
24
- DataSource: MatTreeFlatDataSource<any, any, any>;
25
- Project: EaCProjectAsCode;
26
- ProjectLookup: string;
27
- ActiveEnvironmentLookup: string;
28
- ApplicationRoutes: Array<string>;
29
- AppRoute: string;
30
- constructor(dialog: MatDialog);
31
- HasChild: (_: number, node: FlatNode) => boolean;
32
- ngOnInit(): void;
33
- ngOnChanges(): void;
34
- BuildRouteTree(): TreeNode[];
35
- HandleRoute(route: string): void;
36
- OpenNewAppDialog(event: any): void;
37
- static ɵfac: i0.ɵɵFactoryDeclaration<RouteCardComponent, never>;
38
- static ɵcmp: i0.ɵɵComponentDeclaration<RouteCardComponent, "lcu-route-card", never, { "ApplicationsBank": "applications-bank"; "Loading": "loading"; "Project": "project"; "ProjectLookup": "project-lookup"; "ActiveEnvironmentLookup": "active-environment-lookup"; }, {}, never, never>;
39
- }