taiga-ui 2.59.0 → 2.61.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.
Files changed (25) hide show
  1. package/package.json +23 -31
  2. package/{collection.json → schematics/collection.json} +0 -0
  3. package/{ng-add → schematics/ng-add}/constants/modules.d.ts +0 -0
  4. package/{ng-add → schematics/ng-add}/constants/modules.js +0 -0
  5. package/{ng-add → schematics/ng-add}/constants/versions.d.ts +0 -0
  6. package/{ng-add → schematics/ng-add}/constants/versions.js +2 -2
  7. /package/{ng-add → schematics/ng-add}/index.d.ts +0 -0
  8. /package/{ng-add → schematics/ng-add}/index.js +0 -0
  9. /package/{ng-add → schematics/ng-add}/schema.d.ts +0 -0
  10. /package/{ng-add → schematics/ng-add}/schema.js +0 -0
  11. /package/{ng-add → schematics/ng-add}/schema.json +0 -0
  12. /package/{ng-add → schematics/ng-add}/setup-project.d.ts +0 -0
  13. /package/{ng-add → schematics/ng-add}/setup-project.js +0 -0
  14. /package/{ng-add → schematics/ng-add}/steps/add-taiga-icons.d.ts +0 -0
  15. /package/{ng-add → schematics/ng-add}/steps/add-taiga-icons.js +0 -0
  16. /package/{ng-add → schematics/ng-add}/steps/add-taiga-modules.d.ts +0 -0
  17. /package/{ng-add → schematics/ng-add}/steps/add-taiga-modules.js +0 -0
  18. /package/{ng-add → schematics/ng-add}/steps/add-taiga-styles.d.ts +0 -0
  19. /package/{ng-add → schematics/ng-add}/steps/add-taiga-styles.js +0 -0
  20. /package/{ng-add → schematics/ng-add}/steps/wrap-with-tui-root.d.ts +0 -0
  21. /package/{ng-add → schematics/ng-add}/steps/wrap-with-tui-root.js +0 -0
  22. /package/{utils → schematics/utils}/get-project-target-options.d.ts +0 -0
  23. /package/{utils → schematics/utils}/get-project-target-options.js +0 -0
  24. /package/{utils → schematics/utils}/get-project.d.ts +0 -0
  25. /package/{utils → schematics/utils}/get-project.js +0 -0
package/package.json CHANGED
@@ -1,33 +1,25 @@
1
1
  {
2
- "name": "taiga-ui",
3
- "version": "2.59.0",
4
- "description": "Taiga UI package that provides ng add command for Taiga library",
5
- "keywords": [
6
- "angular",
7
- "kit",
8
- "ui",
9
- "component-library",
10
- "component",
11
- "service",
12
- "directive"
13
- ],
14
- "homepage": "https://github.com/tinkoff/taiga-ui",
15
- "repository": "https://github.com/tinkoff/taiga-ui",
16
- "license": "Apache-2.0",
17
- "dependencies": {
18
- "@angular-devkit/schematics": "^9.1.12",
19
- "ng-morph": "^2.1.0",
20
- "tslib": "^1.10.0"
21
- },
22
- "schematics": "./collection.json",
23
- "main": "bundles/taiga-ui.umd.js",
24
- "module": "fesm5/taiga-ui.js",
25
- "es2015": "fesm2015/taiga-ui.js",
26
- "esm5": "esm5/taiga-ui.js",
27
- "esm2015": "esm2015/taiga-ui.js",
28
- "fesm5": "fesm5/taiga-ui.js",
29
- "fesm2015": "fesm2015/taiga-ui.js",
30
- "typings": "taiga-ui.d.ts",
31
- "metadata": "taiga-ui.metadata.json",
32
- "sideEffects": false
2
+ "name": "taiga-ui",
3
+ "version": "2.61.0",
4
+ "description": "Taiga UI package that provides ng add command for Taiga library",
5
+ "keywords": [
6
+ "angular",
7
+ "kit",
8
+ "ui",
9
+ "component-library",
10
+ "component",
11
+ "service",
12
+ "directive"
13
+ ],
14
+ "homepage": "https://github.com/tinkoff/taiga-ui",
15
+ "repository": "https://github.com/tinkoff/taiga-ui",
16
+ "license": "Apache-2.0",
17
+ "dependencies": {
18
+ "@angular-devkit/schematics": "^9.1.12",
19
+ "ng-morph": "^2.1.0"
20
+ },
21
+ "devDependencies": {
22
+ "@angular-devkit/schematics-cli": "~0.901.12"
23
+ },
24
+ "schematics": "./schematics/collection.json"
33
25
  }
File without changes
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const { version } = require('../../package.json');
4
- exports.TAIGA_VERSION = `^${version}`;
3
+ const package_json_1 = require("../../../package.json");
4
+ exports.TAIGA_VERSION = `^${package_json_1.version}`;
5
5
  exports.NG_DOMPURIFY_VERSION = '3.0.0';
6
6
  exports.DOMPURIFY_VERSION = '2.2.9';
7
7
  exports.DOMPURIFY_TYPES_VERSION = '2.2.3';
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes