@lowcodeunit/applications-flow-common 1.36.1-lets-get-social-ish → 1.36.2-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/feed-header/feed-header.component.mjs +3 -3
- package/esm2020/lib/elements/main-feed-card/main-feed-card.component.mjs +7 -2
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +8 -3
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +8 -3
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/elements/main-feed-card/main-feed-card.component.d.ts +4 -2
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { OnInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { FeedItem, FeedItemAction } from '../../models/user-feed.model';
|
|
3
3
|
import { EaCService } from '../../services/eac.service';
|
|
4
4
|
import { MatDialog } from '@angular/material/dialog';
|
|
@@ -6,10 +6,11 @@ import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
|
6
6
|
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
7
7
|
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class MainFeedCardComponent implements OnInit {
|
|
9
|
+
export declare class MainFeedCardComponent implements OnDestroy, OnInit {
|
|
10
10
|
protected eacSvc: EaCService;
|
|
11
11
|
protected dialog: MatDialog;
|
|
12
12
|
private sanitizer;
|
|
13
|
+
protected checkTimeout: any;
|
|
13
14
|
get ActiveEnvironment(): EaCEnvironmentAsCode;
|
|
14
15
|
get ActiveEnvironmentLookup(): string;
|
|
15
16
|
get Environment(): EaCEnvironmentAsCode;
|
|
@@ -18,6 +19,7 @@ export declare class MainFeedCardComponent implements OnInit {
|
|
|
18
19
|
get IconColor(): string;
|
|
19
20
|
get State(): ApplicationsFlowState;
|
|
20
21
|
constructor(eacSvc: EaCService, dialog: MatDialog, sanitizer: DomSanitizer);
|
|
22
|
+
ngOnDestroy(): void;
|
|
21
23
|
ngOnInit(): void;
|
|
22
24
|
CalculateTimelapse(timestamp: Date): string;
|
|
23
25
|
HandleAction(action: FeedItemAction): void;
|