ngx-ntk-icon-picker 20.25.2 → 20.25.4
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 +669 -33
- package/fesm2022/ngx-ntk-icon-picker.mjs +163 -156
- package/fesm2022/ngx-ntk-icon-picker.mjs.map +1 -1
- package/index.d.ts +5 -5
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { IconName } from '@fortawesome/fontawesome-svg-core';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
3
|
import { OnInit, ElementRef, ChangeDetectorRef, OnChanges, EventEmitter, ViewContainerRef, PipeTransform } from '@angular/core';
|
|
4
|
-
import * as
|
|
4
|
+
import * as i3 from '@fortawesome/angular-fontawesome';
|
|
5
5
|
import { FaIconLibrary } from '@fortawesome/angular-fontawesome';
|
|
6
|
-
import * as
|
|
6
|
+
import * as i2 from '@angular/common';
|
|
7
7
|
|
|
8
8
|
declare class Icon {
|
|
9
9
|
name: string;
|
|
@@ -92,7 +92,7 @@ declare class IconPickerComponent implements OnInit {
|
|
|
92
92
|
getFontAwesome6Icon(iconName: string): any;
|
|
93
93
|
shouldShowFontAwesome6Icon(icon: any): boolean;
|
|
94
94
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconPickerComponent, never>;
|
|
95
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconPickerComponent, "icon-picker", never, {}, {}, never, never,
|
|
95
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconPickerComponent, "icon-picker", never, {}, {}, never, never, false, never>;
|
|
96
96
|
}
|
|
97
97
|
|
|
98
98
|
declare class IconPickerDirective implements OnInit, OnChanges {
|
|
@@ -151,8 +151,8 @@ declare class SearchIconPipe implements PipeTransform {
|
|
|
151
151
|
|
|
152
152
|
declare class IconPickerModule {
|
|
153
153
|
static ɵfac: i0.ɵɵFactoryDeclaration<IconPickerModule, never>;
|
|
154
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<IconPickerModule,
|
|
154
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<IconPickerModule, [typeof IconPickerComponent], [typeof i2.CommonModule, typeof i3.FontAwesomeModule, typeof IconPickerDirective, typeof TextDirective, typeof SearchIconPipe], [typeof IconPickerComponent, typeof IconPickerDirective, typeof TextDirective, typeof SearchIconPipe]>;
|
|
155
155
|
static ɵinj: i0.ɵɵInjectorDeclaration<IconPickerModule>;
|
|
156
156
|
}
|
|
157
157
|
|
|
158
|
-
export { Icon, IconPickerComponent, IconPickerDirective, IconPickerModule, IconPickerService, IconType };
|
|
158
|
+
export { Icon, IconPickerComponent, IconPickerDirective, IconPickerModule, IconPickerService, IconType, SearchIconPipe, TextDirective };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-ntk-icon-picker",
|
|
3
|
-
"version": "20.25.
|
|
3
|
+
"version": "20.25.4",
|
|
4
4
|
"description": "Ntk Cms Api And Model For Typscript",
|
|
5
5
|
"author": "Alireza-Karavi",
|
|
6
6
|
"license": "ISC",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"peerDependencies": {
|
|
15
15
|
"@angular/common": "^20.1.0",
|
|
16
16
|
"@angular/core": "^20.1.0",
|
|
17
|
-
"@fortawesome/angular-fontawesome": "
|
|
17
|
+
"@fortawesome/angular-fontawesome": "^0.10.2",
|
|
18
18
|
"@fortawesome/fontawesome-svg-core": ">=6.1.1",
|
|
19
19
|
"@fortawesome/free-solid-svg-icons": ">=6.1.1",
|
|
20
20
|
"primeicons": ">=5.0.0"
|