ngx-ntk-icon-picker 18.26.2 → 20.25.1

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.
Files changed (39) hide show
  1. package/README.md +63 -24
  2. package/{fesm2020 → fesm2022}/ngx-ntk-icon-picker.mjs +44973 -44974
  3. package/fesm2022/ngx-ntk-icon-picker.mjs.map +1 -0
  4. package/index.d.ts +154 -5
  5. package/package.json +8 -16
  6. package/esm2020/lib/icon-picker.component.mjs +0 -204
  7. package/esm2020/lib/icon-picker.directive.mjs +0 -131
  8. package/esm2020/lib/icon-picker.module.mjs +0 -43
  9. package/esm2020/lib/icon-picker.service.mjs +0 -68
  10. package/esm2020/lib/icon.mjs +0 -11
  11. package/esm2020/lib/icons-pack.mjs +0 -2
  12. package/esm2020/lib/index.mjs +0 -6
  13. package/esm2020/lib/pack/font-awesome4-icons-pack.mjs +0 -4791
  14. package/esm2020/lib/pack/font-awesome5-icons-pack.mjs +0 -18193
  15. package/esm2020/lib/pack/font-awesome6-icons-pack.mjs +0 -16828
  16. package/esm2020/lib/pack/material-icons-pack.mjs +0 -3735
  17. package/esm2020/lib/pack/prime-icons-pack.mjs +0 -951
  18. package/esm2020/lib/search-icon.pipe.mjs +0 -38
  19. package/esm2020/lib/text.directive.mjs +0 -27
  20. package/esm2020/ngx-ntk-icon-picker.mjs +0 -5
  21. package/esm2020/public-api.mjs +0 -5
  22. package/fesm2015/ngx-ntk-icon-picker.mjs +0 -45004
  23. package/fesm2015/ngx-ntk-icon-picker.mjs.map +0 -1
  24. package/fesm2020/ngx-ntk-icon-picker.mjs.map +0 -1
  25. package/lib/icon-picker.component.d.ts +0 -59
  26. package/lib/icon-picker.directive.d.ts +0 -40
  27. package/lib/icon-picker.module.d.ts +0 -12
  28. package/lib/icon-picker.service.d.ts +0 -15
  29. package/lib/icon.d.ts +0 -17
  30. package/lib/icons-pack.d.ts +0 -4
  31. package/lib/index.d.ts +0 -5
  32. package/lib/pack/font-awesome4-icons-pack.d.ts +0 -5
  33. package/lib/pack/font-awesome5-icons-pack.d.ts +0 -5
  34. package/lib/pack/font-awesome6-icons-pack.d.ts +0 -5
  35. package/lib/pack/material-icons-pack.d.ts +0 -5
  36. package/lib/pack/prime-icons-pack.d.ts +0 -5
  37. package/lib/search-icon.pipe.d.ts +0 -9
  38. package/lib/text.directive.d.ts +0 -9
  39. package/public-api.d.ts +0 -1
package/README.md CHANGED
@@ -1,24 +1,63 @@
1
- # NgxNtkIconPicker
2
-
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 15.1.0.
4
-
5
- ## Code scaffolding
6
-
7
- Run `ng generate component component-name --project ngx-ntk-icon-picker` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project ngx-ntk-icon-picker`.
8
- > Note: Don't forget to add `--project ngx-ntk-icon-picker` or else it will be added to the default project in your `angular.json` file.
9
-
10
- ## Build
11
-
12
- Run `ng build ngx-ntk-icon-picker` to build the project. The build artifacts will be stored in the `dist/` directory.
13
-
14
- ## Publishing
15
-
16
- After building your library with `ng build ngx-ntk-icon-picker`, go to the dist folder `cd dist/ngx-ntk-icon-picker` and run `npm publish`.
17
-
18
- ## Running unit tests
19
-
20
- Run `ng test ngx-ntk-icon-picker` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
-
22
- ## Further help
23
-
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
1
+ # NgxNtkIconPicker
2
+
3
+ This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 20.1.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
8
+
9
+ ```bash
10
+ ng generate component component-name
11
+ ```
12
+
13
+ For a complete list of available schematics (such as `components`, `directives`, or `pipes`), run:
14
+
15
+ ```bash
16
+ ng generate --help
17
+ ```
18
+
19
+ ## Building
20
+
21
+ To build the library, run:
22
+
23
+ ```bash
24
+ ng build ngx-ntk-icon-picker
25
+ ```
26
+
27
+ This command will compile your project, and the build artifacts will be placed in the `dist/` directory.
28
+
29
+ ### Publishing the Library
30
+
31
+ Once the project is built, you can publish your library by following these steps:
32
+
33
+ 1. Navigate to the `dist` directory:
34
+ ```bash
35
+ cd dist/ngx-ntk-icon-picker
36
+ ```
37
+
38
+ 2. Run the `npm publish` command to publish your library to the npm registry:
39
+ ```bash
40
+ npm publish
41
+ ```
42
+
43
+ ## Running unit tests
44
+
45
+ To execute unit tests with the [Karma](https://karma-runner.github.io) test runner, use the following command:
46
+
47
+ ```bash
48
+ ng test
49
+ ```
50
+
51
+ ## Running end-to-end tests
52
+
53
+ For end-to-end (e2e) testing, run:
54
+
55
+ ```bash
56
+ ng e2e
57
+ ```
58
+
59
+ Angular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
60
+
61
+ ## Additional Resources
62
+
63
+ For more information on using the Angular CLI, including detailed command references, visit the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.