@lowcodeunit/applications-flow-common 1.37.125-new-project-page → 1.37.128-CustomDomainFormValidation

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 (47) 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/dfs-modifiers-form/dfs-modifiers-form.component.mjs +19 -49
  4. package/esm2020/lib/controls/edit-application-form/edit-application-form.component.mjs +3 -13
  5. package/esm2020/lib/controls/emulated-devices-toggle/emulated-devices-toggle.component.mjs +3 -7
  6. package/esm2020/lib/controls/processor-details-form/processor-details-form.component.mjs +11 -22
  7. package/esm2020/lib/controls/security-toggle/security-toggle.component.mjs +4 -8
  8. package/esm2020/lib/controls/source-control-form/source-control-form.component.mjs +3 -6
  9. package/esm2020/lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component.mjs +11 -28
  10. package/esm2020/lib/dialogs/edit-application-dialog/edit-application-dialog.component.mjs +1 -1
  11. package/esm2020/lib/dialogs/new-application-dialog/new-application-dialog.component.mjs +2 -2
  12. package/esm2020/lib/dialogs/processor-details-dialog/processor-details-dialog.component.mjs +1 -1
  13. package/esm2020/lib/elements/breadcrumb/breadcrumb.component.mjs +7 -10
  14. package/esm2020/lib/elements/dashboard-toolbar/dashboard-toolbar.component.mjs +3 -9
  15. package/esm2020/lib/elements/feed-header/feed-header.component.mjs +2 -2
  16. package/esm2020/lib/elements/main-feed-card/main-feed-card.component.mjs +3 -3
  17. package/esm2020/lib/elements/project-card/project-card.component.mjs +24 -67
  18. package/esm2020/lib/elements/project-info-card/project-info-card.component.mjs +8 -6
  19. package/esm2020/lib/elements/projects/controls/forms/source-control/source-control.component.mjs +4 -13
  20. package/esm2020/lib/elements/projects/controls/tabs/apps-flow/apps-flow.component.mjs +1 -1
  21. package/esm2020/lib/elements/projects/controls/tabs/domains/domains.component.mjs +48 -26
  22. package/esm2020/lib/elements/usage-stats/usage-stats.component.mjs +3 -3
  23. package/esm2020/lib/models/tree-node.model.mjs +1 -1
  24. package/esm2020/lib/services/eac.service.mjs +2 -3
  25. package/fesm2015/lowcodeunit-applications-flow-common.mjs +160 -454
  26. package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
  27. package/fesm2020/lowcodeunit-applications-flow-common.mjs +151 -440
  28. package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
  29. package/lcu.api.d.ts +0 -1
  30. package/lib/applications-flow.module.d.ts +10 -11
  31. package/lib/controls/dfs-modifiers-form/dfs-modifiers-form.component.d.ts +3 -4
  32. package/lib/controls/edit-application-form/edit-application-form.component.d.ts +1 -3
  33. package/lib/controls/emulated-devices-toggle/emulated-devices-toggle.component.d.ts +0 -2
  34. package/lib/controls/processor-details-form/processor-details-form.component.d.ts +1 -3
  35. package/lib/controls/security-toggle/security-toggle.component.d.ts +0 -3
  36. package/lib/controls/source-control-form/source-control-form.component.d.ts +0 -2
  37. package/lib/dialogs/dfs-modifiers-dialog/dfs-modifiers-dialog.component.d.ts +1 -2
  38. package/lib/elements/dashboard-toolbar/dashboard-toolbar.component.d.ts +1 -2
  39. package/lib/elements/project-card/project-card.component.d.ts +7 -5
  40. package/lib/elements/project-info-card/project-info-card.component.d.ts +0 -1
  41. package/lib/elements/projects/controls/forms/source-control/source-control.component.d.ts +0 -4
  42. package/lib/elements/projects/controls/tabs/domains/domains.component.d.ts +15 -6
  43. package/lib/models/tree-node.model.d.ts +1 -1
  44. package/lib/services/eac.service.d.ts +1 -1
  45. package/package.json +1 -1
  46. package/esm2020/lib/elements/route-card/route-card.component.mjs +0 -181
  47. 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
- }