asap-feed-beta 12.7.3 → 12.7.5

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.
@@ -5,6 +5,7 @@ import { Global } from 'asap-crud';
5
5
  import { UtilsService } from '../services/utils.service';
6
6
  import { MatDialog } from '@angular/material/dialog';
7
7
  import { TranslateService } from '@ngx-translate/core';
8
+ import { DomSanitizer } from '@angular/platform-browser';
8
9
  export declare class FeedItemComponent implements OnInit, AfterViewInit, OnDestroy {
9
10
  streamService: StreamService;
10
11
  db: AngularFirestore;
@@ -12,6 +13,7 @@ export declare class FeedItemComponent implements OnInit, AfterViewInit, OnDestr
12
13
  dialog: MatDialog;
13
14
  service: UtilsService;
14
15
  translate: TranslateService;
16
+ sanitizer: DomSanitizer;
15
17
  item: any;
16
18
  settings: any;
17
19
  owner: any;
@@ -26,7 +28,7 @@ export declare class FeedItemComponent implements OnInit, AfterViewInit, OnDestr
26
28
  observer: any;
27
29
  visibleTimer: any;
28
30
  shotTimer: any;
29
- constructor(streamService: StreamService, db: AngularFirestore, global: Global, dialog: MatDialog, service: UtilsService, translate: TranslateService);
31
+ constructor(streamService: StreamService, db: AngularFirestore, global: Global, dialog: MatDialog, service: UtilsService, translate: TranslateService, sanitizer: DomSanitizer);
30
32
  ngOnInit(): void;
31
33
  ngAfterViewInit(): void;
32
34
  ngOnDestroy(): void;
@@ -34,6 +36,7 @@ export declare class FeedItemComponent implements OnInit, AfterViewInit, OnDestr
34
36
  onloadImage(event: any): void;
35
37
  onErrorImage(event: any): void;
36
38
  playVideo(event: any): void;
39
+ sanitizedLinkify(str: any): import("@angular/platform-browser").SafeHtml;
37
40
  linkify(str: any): any;
38
41
  checkVideoRender(item: any): void;
39
42
  onEditItem(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "asap-feed-beta",
3
- "version": "12.7.3",
3
+ "version": "12.7.5",
4
4
  "main": "bundles/asap-feed-beta.umd.js",
5
5
  "module": "fesm5/asap-feed-beta.js",
6
6
  "es2015": "fesm2015/asap-feed-beta.js",