@ihk-gfi/lux-components-update 15.5.0 → 16.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.
Files changed (39) hide show
  1. package/README.md +3 -4
  2. package/add-lux-components/files/app/app.component.scss +4 -0
  3. package/add-lux-components/files/app/app.module.ts +4 -2
  4. package/add-lux-components/files/app/base/license-hint/license-hint.component.html +11 -8
  5. package/add-lux-components/files/app/home/home.component.html +3 -4
  6. package/add-lux-components/files/app/home/home.component.scss +0 -4
  7. package/add-lux-components/index.js +1 -9
  8. package/collection.json +4 -29
  9. package/package.json +22 -22
  10. package/update-dependencies/index.js +42 -45
  11. package/updates/16.0.0/index.d.ts +9 -0
  12. package/updates/16.0.0/index.js +66 -0
  13. package/utility/dependencies.js +1 -1
  14. package/theme/change-theme-to-authentic/index.d.ts +0 -4
  15. package/theme/change-theme-to-authentic/index.js +0 -128
  16. package/theme/change-theme-to-authentic/schema.json +0 -23
  17. package/theme/change-to-lux-icons/index.d.ts +0 -2
  18. package/theme/change-to-lux-icons/index.js +0 -382
  19. package/theme/change-to-lux-icons/schema.json +0 -23
  20. package/updates/15.0.0/files/src/main.ts +0 -17
  21. package/updates/15.0.0/files/src/test.ts +0 -4
  22. package/updates/15.0.0/index.d.ts +0 -8
  23. package/updates/15.0.0/index.js +0 -113
  24. package/updates/15.1.0/index.d.ts +0 -2
  25. package/updates/15.1.0/index.js +0 -20
  26. package/updates/15.1.0/schema.json +0 -23
  27. package/updates/15.2.0/index.d.ts +0 -2
  28. package/updates/15.2.0/index.js +0 -21
  29. package/updates/15.2.0/schema.json +0 -23
  30. package/updates/15.3.0/index.d.ts +0 -2
  31. package/updates/15.3.0/index.js +0 -20
  32. package/updates/15.3.0/schema.json +0 -23
  33. package/updates/15.4.0/index.d.ts +0 -2
  34. package/updates/15.4.0/index.js +0 -19
  35. package/updates/15.4.0/schema.json +0 -23
  36. package/updates/15.5.0/index.d.ts +0 -2
  37. package/updates/15.5.0/index.js +0 -20
  38. package/updates/15.5.0/schema.json +0 -23
  39. /package/updates/{15.0.0 → 16.0.0}/schema.json +0 -0
@@ -1,23 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "luxupdate150200Schema",
4
- "title": "Aktualisiert das LUX-Componentsprojekt",
5
- "type": "object",
6
- "description": "Aktualisiert das LUX-Componentsprojekt",
7
- "properties": {
8
- "project": {
9
- "type": "string",
10
- "description": "Der Projektname",
11
- "$default": {
12
- "$source": "projectName"
13
- }
14
- },
15
- "verbose": {
16
- "type": "boolean",
17
- "description": "Generiert mehr Logausgaben",
18
- "default": false
19
- }
20
- },
21
- "required": [],
22
- "additionalProperties": false
23
- }
@@ -1,2 +0,0 @@
1
- import { Rule } from '@angular-devkit/schematics';
2
- export declare function update150300(_options: any, runNpmInstall?: boolean): Rule;
@@ -1,20 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.update150300 = void 0;
4
- const schematics_1 = require("@angular-devkit/schematics");
5
- const chalk = require("chalk");
6
- const index_1 = require("../../update-dependencies/index");
7
- const util_1 = require("../../utility/util");
8
- function update150300(_options, runNpmInstall = true) {
9
- return (_tree, _context) => {
10
- return (0, schematics_1.chain)([
11
- (0, util_1.messageInfoRule)(`Die LUX-Components werden auf die Version 15.3.0 aktualisiert...`),
12
- (0, util_1.messageInfoRule)(`Die Datei "package.json" wird angepasst...`),
13
- (0, index_1.updateDep)('@ihk-gfi/lux-components', '15.3.0', false),
14
- (0, index_1.updateDep)('@ihk-gfi/lux-components-theme', '15.3.0', false),
15
- (0, util_1.messageSuccessRule)(`Die LUX-Components wurden auf die Version 15.3.0 aktualisiert.`),
16
- (0, util_1.finish)(runNpmInstall, `${chalk.yellowBright('Fertig!')}`)
17
- ]);
18
- };
19
- }
20
- exports.update150300 = update150300;
@@ -1,23 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "luxupdate150300Schema",
4
- "title": "Aktualisiert das LUX-Componentsprojekt",
5
- "type": "object",
6
- "description": "Aktualisiert das LUX-Componentsprojekt",
7
- "properties": {
8
- "project": {
9
- "type": "string",
10
- "description": "Der Projektname",
11
- "$default": {
12
- "$source": "projectName"
13
- }
14
- },
15
- "verbose": {
16
- "type": "boolean",
17
- "description": "Generiert mehr Logausgaben",
18
- "default": false
19
- }
20
- },
21
- "required": [],
22
- "additionalProperties": false
23
- }
@@ -1,2 +0,0 @@
1
- import { Rule } from '@angular-devkit/schematics';
2
- export declare function update150400(_options: any, runNpmInstall?: boolean): Rule;
@@ -1,19 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.update150400 = void 0;
4
- const schematics_1 = require("@angular-devkit/schematics");
5
- const chalk = require("chalk");
6
- const index_1 = require("../../update-dependencies/index");
7
- const util_1 = require("../../utility/util");
8
- function update150400(_options, runNpmInstall = true) {
9
- return (_tree, _context) => {
10
- return (0, schematics_1.chain)([
11
- (0, util_1.messageInfoRule)(`Die LUX-Components werden auf die Version 15.4.0 aktualisiert...`),
12
- (0, util_1.messageInfoRule)(`Die Datei "package.json" wird angepasst...`),
13
- (0, index_1.updateDep)('@ihk-gfi/lux-components', '15.4.0', false),
14
- (0, util_1.messageSuccessRule)(`Die LUX-Components wurden auf die Version 15.4.0 aktualisiert.`),
15
- (0, util_1.finish)(runNpmInstall, `${chalk.yellowBright('Fertig!')}`)
16
- ]);
17
- };
18
- }
19
- exports.update150400 = update150400;
@@ -1,23 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "luxupdate150400Schema",
4
- "title": "Aktualisiert das LUX-Componentsprojekt",
5
- "type": "object",
6
- "description": "Aktualisiert das LUX-Componentsprojekt",
7
- "properties": {
8
- "project": {
9
- "type": "string",
10
- "description": "Der Projektname",
11
- "$default": {
12
- "$source": "projectName"
13
- }
14
- },
15
- "verbose": {
16
- "type": "boolean",
17
- "description": "Generiert mehr Logausgaben",
18
- "default": false
19
- }
20
- },
21
- "required": [],
22
- "additionalProperties": false
23
- }
@@ -1,2 +0,0 @@
1
- import { Rule } from '@angular-devkit/schematics';
2
- export declare function update150500(_options: any, runNpmInstall?: boolean): Rule;
@@ -1,20 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.update150500 = void 0;
4
- const schematics_1 = require("@angular-devkit/schematics");
5
- const chalk = require("chalk");
6
- const index_1 = require("../../update-dependencies/index");
7
- const util_1 = require("../../utility/util");
8
- function update150500(_options, runNpmInstall = true) {
9
- return (_tree, _context) => {
10
- return (0, schematics_1.chain)([
11
- (0, util_1.messageInfoRule)(`Die LUX-Components werden auf die Version 15.5.0 aktualisiert...`),
12
- (0, util_1.messageInfoRule)(`Die Datei "package.json" wird angepasst...`),
13
- (0, index_1.updateDep)('@ihk-gfi/lux-components', '15.5.0', false),
14
- (0, index_1.updateDep)('@ihk-gfi/lux-components-theme', '15.4.0', false),
15
- (0, util_1.messageSuccessRule)(`Die LUX-Components wurden auf die Version 15.5.0 aktualisiert.`),
16
- (0, util_1.finish)(runNpmInstall, `${chalk.yellowBright('Fertig!')}`)
17
- ]);
18
- };
19
- }
20
- exports.update150500 = update150500;
@@ -1,23 +0,0 @@
1
- {
2
- "$schema": "http://json-schema.org/schema",
3
- "$id": "luxupdate150500Schema",
4
- "title": "Aktualisiert das LUX-Componentsprojekt",
5
- "type": "object",
6
- "description": "Aktualisiert das LUX-Componentsprojekt",
7
- "properties": {
8
- "project": {
9
- "type": "string",
10
- "description": "Der Projektname",
11
- "$default": {
12
- "$source": "projectName"
13
- }
14
- },
15
- "verbose": {
16
- "type": "boolean",
17
- "description": "Generiert mehr Logausgaben",
18
- "default": false
19
- }
20
- },
21
- "required": [],
22
- "additionalProperties": false
23
- }
File without changes