@lowcodeunit/applications-flow-common 1.33.241-lets-get-social-ish → 1.33.244-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/main-feed-card/main-feed-card.component.mjs +17 -11
- package/fesm2015/lowcodeunit-applications-flow-common.mjs +10 -5
- package/fesm2015/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/fesm2020/lowcodeunit-applications-flow-common.mjs +10 -5
- package/fesm2020/lowcodeunit-applications-flow-common.mjs.map +1 -1
- package/lib/elements/main-feed-card/main-feed-card.component.d.ts +4 -1
- package/package.json +1 -1
|
@@ -4,10 +4,12 @@ import { EaCService } from '../../services/eac.service';
|
|
|
4
4
|
import { MatDialog } from '@angular/material/dialog';
|
|
5
5
|
import { EaCEnvironmentAsCode } from '@semanticjs/common';
|
|
6
6
|
import { ApplicationsFlowState } from '../../state/applications-flow.state';
|
|
7
|
+
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
7
8
|
import * as i0 from "@angular/core";
|
|
8
9
|
export declare class MainFeedCardComponent implements OnInit {
|
|
9
10
|
protected eacSvc: EaCService;
|
|
10
11
|
protected dialog: MatDialog;
|
|
12
|
+
private sanitizer;
|
|
11
13
|
get ActiveEnvironment(): EaCEnvironmentAsCode;
|
|
12
14
|
get ActiveEnvironmentLookup(): string;
|
|
13
15
|
get Environment(): EaCEnvironmentAsCode;
|
|
@@ -15,11 +17,12 @@ export declare class MainFeedCardComponent implements OnInit {
|
|
|
15
17
|
get Icon(): string;
|
|
16
18
|
get IconColor(): string;
|
|
17
19
|
get State(): ApplicationsFlowState;
|
|
18
|
-
constructor(eacSvc: EaCService, dialog: MatDialog);
|
|
20
|
+
constructor(eacSvc: EaCService, dialog: MatDialog, sanitizer: DomSanitizer);
|
|
19
21
|
ngOnInit(): void;
|
|
20
22
|
CalculateTimelapse(timestamp: Date): string;
|
|
21
23
|
HandleAction(action: FeedItemAction): void;
|
|
22
24
|
OpenSourceControlDialog(scLookup: string): void;
|
|
25
|
+
SafeHtml(html: string): SafeHtml;
|
|
23
26
|
protected handleRefresh(): void;
|
|
24
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainFeedCardComponent, never>;
|
|
25
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<MainFeedCardComponent, "lcu-main-feed-card", never, { "FeedItem": "feed-item"; }, {}, never, never>;
|