@ng-icons/core 28.0.0 → 29.0.0
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/README.md +2 -2
- package/esm2022/lib/components/glyph/glyph.component.mjs +42 -67
- package/esm2022/lib/components/icon/icon-name.mjs +1 -1
- package/esm2022/lib/components/icon/icon.component.mjs +35 -77
- package/esm2022/lib/icon.module.mjs +4 -4
- package/esm2022/lib/providers/icon.provider.mjs +6 -4
- package/esm2022/lib/utils/async.mjs +5 -3
- package/fesm2022/ng-icons-core.mjs +126 -189
- package/fesm2022/ng-icons-core.mjs.map +1 -1
- package/lib/components/glyph/glyph.component.d.ts +11 -16
- package/lib/components/icon/icon-name.d.ts +1 -1
- package/lib/components/icon/icon.component.d.ts +9 -24
- package/package.json +5 -1
|
@@ -11,48 +11,43 @@ export declare class NgGlyph {
|
|
|
11
11
|
/**
|
|
12
12
|
* Define the name of the glyph to display
|
|
13
13
|
*/
|
|
14
|
-
name: string
|
|
14
|
+
readonly name: import("@angular/core").InputSignal<string>;
|
|
15
15
|
/**
|
|
16
16
|
* Define the glyphset to use
|
|
17
17
|
*/
|
|
18
|
-
glyphset: string
|
|
18
|
+
readonly glyphset: import("@angular/core").InputSignal<string>;
|
|
19
19
|
/**
|
|
20
20
|
* Define the optical size of the glyph
|
|
21
21
|
*/
|
|
22
|
-
opticalSize: number
|
|
22
|
+
readonly opticalSize: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
23
23
|
/**
|
|
24
24
|
* Define the weight of the glyph
|
|
25
25
|
*/
|
|
26
|
-
weight: number
|
|
26
|
+
readonly weight: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
27
27
|
/**
|
|
28
28
|
* Define the grade of the glyph
|
|
29
29
|
*/
|
|
30
|
-
grade: number
|
|
30
|
+
readonly grade: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
31
31
|
/**
|
|
32
32
|
* Define the fill of the glyph
|
|
33
33
|
*/
|
|
34
|
-
fill: boolean
|
|
34
|
+
readonly fill: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
|
|
35
35
|
/**
|
|
36
36
|
* Define the size of the glyph
|
|
37
37
|
*/
|
|
38
|
-
size
|
|
38
|
+
readonly size: import("@angular/core").InputSignalWithTransform<string | number, string>;
|
|
39
39
|
/**
|
|
40
40
|
* Define the color of the glyph
|
|
41
41
|
*/
|
|
42
|
-
color
|
|
42
|
+
readonly color: import("@angular/core").InputSignal<string>;
|
|
43
43
|
/**
|
|
44
44
|
* Derive the glyphset class from the glyphset name
|
|
45
45
|
*/
|
|
46
|
-
|
|
46
|
+
protected readonly glyphsetClass: import("@angular/core").Signal<string>;
|
|
47
47
|
/**
|
|
48
48
|
* Define the font variation settings of the glyph
|
|
49
49
|
*/
|
|
50
|
-
|
|
50
|
+
protected readonly fontVariationSettings: import("@angular/core").Signal<string>;
|
|
51
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgGlyph, never>;
|
|
52
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NgGlyph, "ng-glyph", never, { "name": { "alias": "name"; "required": true; }; "glyphset": { "alias": "glyphset"; "required": false; }; "opticalSize": { "alias": "opticalSize"; "required": false; }; "weight": { "alias": "weight"; "required": false; }; "grade": { "alias": "grade"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "size": { "alias": "size"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
|
|
53
|
-
static ngAcceptInputType_opticalSize: unknown;
|
|
54
|
-
static ngAcceptInputType_weight: unknown;
|
|
55
|
-
static ngAcceptInputType_grade: unknown;
|
|
56
|
-
static ngAcceptInputType_fill: unknown;
|
|
57
|
-
static ngAcceptInputType_size: string;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgGlyph, "ng-glyph", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; "glyphset": { "alias": "glyphset"; "required": false; "isSignal": true; }; "opticalSize": { "alias": "opticalSize"; "required": false; "isSignal": true; }; "weight": { "alias": "weight"; "required": false; "isSignal": true; }; "grade": { "alias": "grade"; "required": false; "isSignal": true; }; "fill": { "alias": "fill"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
58
53
|
}
|