@lowcodeunit/applications-flow-common 1.33.177-lets-get-social-ish → 1.33.180-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.
- package/esm2020/lib/elements/breadcrumb/breadcrumb.component.mjs +6 -3
- package/esm2020/lib/elements/main-feed-card/main-feed-card.component.mjs +8 -3
- package/esm2020/lib/services/project.service.mjs +7 -8
- package/esm2020/lib/state/applications-flow.state.mjs +1 -1
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +19 -11
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +18 -11
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/elements/breadcrumb/breadcrumb.component.d.ts +1 -0
- package/lib/elements/main-feed-card/main-feed-card.component.d.ts +1 -0
- package/lib/state/applications-flow.state.d.ts +2 -0
- package/package.json +1 -1
|
@@ -17,6 +17,7 @@ export declare class BreadcrumbComponent implements OnInit {
|
|
|
17
17
|
};
|
|
18
18
|
get SelectedApplication(): EaCApplicationAsCode;
|
|
19
19
|
get CurrentRouteApplicationLookups(): Array<string>;
|
|
20
|
+
get Loading(): boolean;
|
|
20
21
|
get Projects(): any;
|
|
21
22
|
get ProjectLookups(): string[];
|
|
22
23
|
get Routes(): Array<string>;
|
|
@@ -5,6 +5,7 @@ export declare class MainFeedCardComponent implements OnInit {
|
|
|
5
5
|
FeedItem: FeedItem;
|
|
6
6
|
constructor();
|
|
7
7
|
ngOnInit(): void;
|
|
8
|
+
CalculateTimelapse(timestamp: Date): string;
|
|
8
9
|
HandleAction(action: FeedItemAction): void;
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainFeedCardComponent, never>;
|
|
10
11
|
static ɵcmp: i0.ɵɵComponentDeclaration<MainFeedCardComponent, "lcu-main-feed-card", never, { "FeedItem": "feed-item"; }, {}, never, never>;
|
|
@@ -11,6 +11,8 @@ export declare class ApplicationsFlowState {
|
|
|
11
11
|
GitHub?: GitHubSetupState;
|
|
12
12
|
HostingDetails?: ProjectHostingDetails;
|
|
13
13
|
Loading?: boolean;
|
|
14
|
+
LoadingActiveEnterprise?: boolean;
|
|
15
|
+
LoadingEnterprises?: boolean;
|
|
14
16
|
LoadingFeed?: boolean;
|
|
15
17
|
Unleashed?: boolean;
|
|
16
18
|
UserEnterpriseLookup?: string;
|