@coreui/icons-angular 5.1.7 → 5.1.10

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coreui/icons-angular",
3
- "version": "5.1.7",
3
+ "version": "5.1.10",
4
4
  "description": "CoreUI Icons Angular component and service",
5
5
  "copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
6
6
  "license": "MIT",
@@ -44,6 +44,10 @@
44
44
  "component",
45
45
  "angular"
46
46
  ],
47
+ "schematics": "./schematics/collection.json",
48
+ "ng-add": {
49
+ "save": true
50
+ },
47
51
  "module": "fesm2022/coreui-icons-angular.mjs",
48
52
  "typings": "index.d.ts",
49
53
  "exports": {
@@ -0,0 +1,9 @@
1
+ {
2
+ "$schema": "../../../node_modules/@angular-devkit/schematics/collection-schema.json",
3
+ "schematics": {
4
+ "ng-add": {
5
+ "description": "Add @coreui/icons-angular library to the project.",
6
+ "factory": "./ng-add/index#ngAdd"
7
+ }
8
+ }
9
+ }
@@ -0,0 +1,2 @@
1
+ import { Rule } from '@angular-devkit/schematics';
2
+ export declare function ngAdd(): Rule;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ngAdd = void 0;
4
+ const tasks_1 = require("@angular-devkit/schematics/tasks");
5
+ function ngAdd() {
6
+ return (tree, context) => {
7
+ context.logger.info('Installing @coreui/icons-angular ...');
8
+ context.addTask(new tasks_1.NodePackageInstallTask());
9
+ return tree;
10
+ };
11
+ }
12
+ exports.ngAdd = ngAdd;
13
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../projects/coreui-icons-angular/schematics/ng-add/index.ts"],"names":[],"mappings":";;;AACA,4DAA0E;AAE1E,SAAgB,KAAK;IACnB,OAAO,CAAC,IAAU,EAAE,OAAyB,EAAE,EAAE;QAC/C,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,sCAAsC,CAAC,CAAC;QAC5D,OAAO,CAAC,OAAO,CAAC,IAAI,8BAAsB,EAAE,CAAC,CAAC;QAC9C,OAAO,IAAI,CAAC;IACd,CAAC,CAAC;AACJ,CAAC;AAND,sBAMC"}