angular-techs-logos 0.0.7 → 0.0.9
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.
|
@@ -1,13 +1,11 @@
|
|
|
1
|
-
import { OnInit, OnChanges, SimpleChanges, ViewContainerRef, Type,
|
|
1
|
+
import { OnInit, OnChanges, SimpleChanges, ViewContainerRef, Type, ChangeDetectorRef } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
interface Tech {
|
|
4
4
|
name: string;
|
|
5
5
|
icon: Type<any>;
|
|
6
6
|
}
|
|
7
|
-
export declare class AngularTechsLogosComponent implements OnInit, OnChanges
|
|
8
|
-
private componentFactoryResolver;
|
|
7
|
+
export declare class AngularTechsLogosComponent implements OnInit, OnChanges {
|
|
9
8
|
private cdr;
|
|
10
|
-
private injector;
|
|
11
9
|
list: string[] | undefined;
|
|
12
10
|
name: string | undefined;
|
|
13
11
|
size: string | undefined;
|
|
@@ -17,15 +15,15 @@ export declare class AngularTechsLogosComponent implements OnInit, OnChanges, Af
|
|
|
17
15
|
hiddenLogos: string[] | undefined;
|
|
18
16
|
iconContainer: ViewContainerRef;
|
|
19
17
|
techs: Tech[];
|
|
20
|
-
constructor(
|
|
18
|
+
constructor(cdr: ChangeDetectorRef);
|
|
21
19
|
ngOnInit(): void;
|
|
22
20
|
ngOnChanges(changes: SimpleChanges): void;
|
|
23
|
-
ngAfterViewInit(): void;
|
|
24
21
|
private updateTechs;
|
|
22
|
+
techClass(name: string): (string | undefined)[];
|
|
25
23
|
getTech(name: string): Tech | undefined;
|
|
26
24
|
private getTechs;
|
|
27
25
|
private hiddenTechs;
|
|
28
|
-
|
|
26
|
+
getIcon(icon: any): any;
|
|
29
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<AngularTechsLogosComponent, never>;
|
|
30
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<AngularTechsLogosComponent, "lib-angular-techs-logos", never, { "list": { "alias": "list"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "label": { "alias": "label"; "required": false; }; "hiddenLabel": { "alias": "hiddenLabel"; "required": false; }; "class": { "alias": "class"; "required": false; }; "hiddenLogos": { "alias": "hiddenLogos"; "required": false; }; }, {}, never, never, false, never>;
|
|
31
29
|
}
|