@ihk-gfi/lux-components-update 15.0.3 → 15.0.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/@angular-devkit/schematics-cli/schematic/files/README.md +28 -0
- package/@angular-devkit/schematics-cli/schematic/files/__dot__gitignore +18 -0
- package/@angular-devkit/schematics-cli/schematic/files/__dot__npmignore +3 -0
- package/@angular-devkit/schematics-cli/schematic/files/package.json +25 -0
- package/@angular-devkit/schematics-cli/schematic/files/src/collection.json +36 -0
- package/@angular-devkit/schematics-cli/schematic/files/src/my-full-schematic/files/test2 +6 -0
- package/@angular-devkit/schematics-cli/schematic/files/src/my-full-schematic/files/test__INDEX__ +2 -0
- package/@angular-devkit/schematics-cli/schematic/files/src/my-full-schematic/index.ts +53 -0
- package/@angular-devkit/schematics-cli/schematic/files/src/my-full-schematic/index_spec.ts +24 -0
- package/@angular-devkit/schematics-cli/schematic/files/src/my-full-schematic/schema.json +16 -0
- package/@angular-devkit/schematics-cli/schematic/files/src/my-other-schematic/index.ts +27 -0
- package/@angular-devkit/schematics-cli/schematic/files/src/my-other-schematic/index_spec.ts +14 -0
- package/@angular-devkit/schematics-cli/schematic/files/src/my-schematic/index.ts +26 -0
- package/@angular-devkit/schematics-cli/schematic/files/src/my-schematic/index_spec.ts +14 -0
- package/@angular-devkit/schematics-cli/schematic/files/tsconfig.json +23 -0
- package/@schematics/angular/application/files/src/favicon.ico.template +0 -0
- package/@schematics/angular/application/files/src/index.html.template +13 -0
- package/@schematics/angular/application/files/src/main.ts.template +13 -0
- package/@schematics/angular/application/files/src/styles.__style__.template +1 -0
- package/@schematics/angular/application/files/tsconfig.app.json.template +14 -0
- package/@schematics/angular/application/files/tsconfig.spec.json.template +14 -0
- package/@schematics/angular/class/files/__name@dasherize____type__.spec.ts.template +7 -0
- package/@schematics/angular/class/files/__name@dasherize____type__.ts.template +2 -0
- package/@schematics/angular/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.__style__.template +6 -0
- package/@schematics/angular/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.html.template +1 -0
- package/@schematics/angular/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.spec.ts.template +23 -0
- package/@schematics/angular/component/files/__name@dasherize@if-flat__/__name@dasherize__.__type@dasherize__.ts.template +27 -0
- package/@schematics/angular/config/files/karma.conf.js.template +39 -0
- package/@schematics/angular/directive/files/__name@dasherize@if-flat__/__name@dasherize__.directive.spec.ts.template +8 -0
- package/@schematics/angular/directive/files/__name@dasherize@if-flat__/__name@dasherize__.directive.ts.template +11 -0
- package/@schematics/angular/e2e/files/protractor.conf.js.template +37 -0
- package/@schematics/angular/e2e/files/src/app.e2e-spec.ts.template +23 -0
- package/@schematics/angular/e2e/files/src/app.po.ts.template +11 -0
- package/@schematics/angular/e2e/files/tsconfig.json.template +13 -0
- package/@schematics/angular/enum/files/__name@dasherize____type__.ts.template +2 -0
- package/@schematics/angular/interface/files/__name@dasherize____type__.ts.template +2 -0
- package/@schematics/angular/library/files/README.md.template +24 -0
- package/@schematics/angular/library/files/ng-package.json.template +7 -0
- package/@schematics/angular/library/files/package.json.template +12 -0
- package/@schematics/angular/library/files/src/__entryFile__.ts.template +7 -0
- package/@schematics/angular/library/files/tsconfig.lib.json.template +14 -0
- package/@schematics/angular/library/files/tsconfig.lib.prod.json.template +10 -0
- package/@schematics/angular/library/files/tsconfig.spec.json.template +14 -0
- package/@schematics/angular/module/files/__name@dasherize@if-flat__/__name@dasherize__-routing.module.ts.template +11 -0
- package/@schematics/angular/module/files/__name@dasherize@if-flat__/__name@dasherize__.module.ts.template +19 -0
- package/@schematics/angular/pipe/files/__name@dasherize@if-flat__/__name@dasherize__.pipe.spec.ts.template +8 -0
- package/@schematics/angular/pipe/files/__name@dasherize@if-flat__/__name@dasherize__.pipe.ts.template +13 -0
- package/@schematics/angular/service/files/__name@dasherize@if-flat__/__name@dasherize__.service.spec.ts.template +16 -0
- package/@schematics/angular/service/files/__name@dasherize@if-flat__/__name@dasherize__.service.ts.template +9 -0
- package/@schematics/angular/service-worker/files/ngsw-config.json.template +30 -0
- package/@schematics/angular/universal/files/root/tsconfig.server.json.template +14 -0
- package/@schematics/angular/universal/files/src/__main@stripTsExtension__.ts.template +2 -0
- package/@schematics/angular/universal/files/src/app/__rootModuleFileName__.template +14 -0
- package/@schematics/angular/web-worker/files/worker/__name@dasherize__.worker.ts.template +6 -0
- package/@schematics/angular/web-worker/files/worker-tsconfig/tsconfig.worker.json.template +15 -0
- package/@schematics/angular/workspace/files/README.md.template +27 -0
- package/@schematics/angular/workspace/files/__dot__editorconfig.template +16 -0
- package/@schematics/angular/workspace/files/__dot__gitignore.template +42 -0
- package/@schematics/angular/workspace/files/__dot__vscode/extensions.json.template +4 -0
- package/@schematics/angular/workspace/files/__dot__vscode/launch.json.template +20 -0
- package/@schematics/angular/workspace/files/__dot__vscode/tasks.json.template +42 -0
- package/@schematics/angular/workspace/files/angular.json.template +10 -0
- package/@schematics/angular/workspace/files/package.json.template +37 -0
- package/@schematics/angular/workspace/files/tsconfig.json.template +33 -0
- package/add-lux-components/files/app/app-routing.module.ts +21 -0
- package/add-lux-components/files/app/app.component.html +34 -0
- package/add-lux-components/files/app/app.component.spec.ts +21 -0
- package/add-lux-components/files/app/app.component.ts +24 -0
- package/add-lux-components/files/app/app.module.ts +61 -0
- package/add-lux-components/files/app/base/license-hint/license-hint.component.html +8 -0
- package/add-lux-components/files/app/base/license-hint/license-hint.component.ts +24 -0
- package/add-lux-components/files/app/error/error.component.html +10 -0
- package/add-lux-components/files/app/error/error.component.scss +3 -0
- package/add-lux-components/files/app/error/error.component.spec.ts +49 -0
- package/add-lux-components/files/app/error/error.component.ts +17 -0
- package/add-lux-components/files/app/home/home.component.html +11 -0
- package/add-lux-components/files/app/home/home.component.scss +7 -0
- package/add-lux-components/files/app/home/home.component.ts +13 -0
- package/add-lux-components/files/app/profil/profil.component.html +1 -0
- package/add-lux-components/files/app/profil/profil.component.scss +0 -0
- package/add-lux-components/files/app/profil/profil.component.spec.ts +24 -0
- package/add-lux-components/files/app/profil/profil.component.ts +11 -0
- package/add-lux-components/files/assets/svg/Example.svg +6 -0
- package/add-lux-components/files/assets/svg/android.svg +2 -0
- package/add-lux-components/files/assets/svg/box.svg +690 -0
- package/add-lux-components/files/assets/svg/demoAppLogo.svg +1 -0
- package/add-lux-components/files/assets/svg/red_power_button.svg +67 -0
- package/add-lux-components/files/assets/svg/svg2009.svg +57457 -0
- package/add-lux-components/files/environments/environment.prod.ts +4 -0
- package/add-lux-components/files/environments/environment.ts +17 -0
- package/add-lux-components/files/locale/messages.en.xlf +1373 -0
- package/add-lux-components/files/locale/messages.xlf +1220 -0
- package/add-lux-components/files/src/index.html +31 -0
- package/add-lux-components/files/src/main.ts +17 -0
- package/package.json +2 -2
- package/updates/15.0.0/files/src/main.ts +17 -0
- package/updates/15.0.0/files/src/test.ts +4 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html lang="de">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<title>Change Me</title>
|
|
6
|
+
<base href="/" />
|
|
7
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
8
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico" />
|
|
9
|
+
<link rel="stylesheet preload" href="assets/icons/fontawesome/css/all.css" as="style" type="text/css" >
|
|
10
|
+
<link rel="stylesheet preload" href="assets/icons/material-icons/material-design-icons.css" as="style" type="text/css" >
|
|
11
|
+
|
|
12
|
+
<style>
|
|
13
|
+
.lux-no-js {
|
|
14
|
+
color: red;
|
|
15
|
+
font-size: 20px;
|
|
16
|
+
border: 1px solid red;
|
|
17
|
+
padding: 10px;
|
|
18
|
+
}
|
|
19
|
+
</style>
|
|
20
|
+
</head>
|
|
21
|
+
<body style="margin: 0">
|
|
22
|
+
<noscript>
|
|
23
|
+
<div id="no-js" class="lux-no-js">
|
|
24
|
+
<p><b>Achtung, Javascript ist deaktiviert.</b></p>
|
|
25
|
+
<p>Bitte aktivieren Sie Javascript in Ihrem Browser, damit die Applikation funktionsfähig ist.</p>
|
|
26
|
+
</div>
|
|
27
|
+
</noscript>
|
|
28
|
+
|
|
29
|
+
<app-root></app-root>
|
|
30
|
+
</body>
|
|
31
|
+
</html>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/***************************************************************************************************
|
|
2
|
+
* Load `$localize` onto the global scope - used if i18n tags appear in Angular templates.
|
|
3
|
+
*/
|
|
4
|
+
import '@angular/localize/init';
|
|
5
|
+
|
|
6
|
+
import { enableProdMode } from '@angular/core';
|
|
7
|
+
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
8
|
+
import { AppModule } from './app/app.module';
|
|
9
|
+
import { environment } from './environments/environment';
|
|
10
|
+
|
|
11
|
+
if (environment.production) {
|
|
12
|
+
enableProdMode();
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
platformBrowserDynamic()
|
|
16
|
+
.bootstrapModule(AppModule)
|
|
17
|
+
.catch((err) => console.log(err));
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ihk-gfi/lux-components-update",
|
|
3
|
-
"version": "15.0.
|
|
3
|
+
"version": "15.0.4",
|
|
4
4
|
"description": "Schematics für die Aktualisierung von LUX-Applikationen",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "npm run clean && tsc -p tsconfig.json",
|
|
7
7
|
"clean": "del-cli --force dist/",
|
|
8
8
|
"husky-init": "husky install",
|
|
9
9
|
"pack-copy-base-files": "copyfiles package.json README.md LICENSE ./dist",
|
|
10
|
-
"pack-copy-template-dirs": "copyfiles -u 1
|
|
10
|
+
"pack-copy-template-dirs": "copyfiles -e ./node_modules/** -u 1 ./**/files/** ./dist",
|
|
11
11
|
"pack-update-colletion-path": "replace --silent './collection.json' './collection.json' dist/package.json",
|
|
12
12
|
"pack": "npm run build && npm run pack-copy-base-files && npm run pack-copy-template-dirs && npm run pack-update-colletion-path",
|
|
13
13
|
"security": "npm audit --registry=https://registry.npmjs.org --audit-level high",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/***************************************************************************************************
|
|
2
|
+
* Load `$localize` onto the global scope - used if i18n tags appear in Angular templates.
|
|
3
|
+
*/
|
|
4
|
+
import '@angular/localize/init';
|
|
5
|
+
|
|
6
|
+
import { enableProdMode } from '@angular/core';
|
|
7
|
+
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
|
|
8
|
+
import { AppModule } from './app/app.module';
|
|
9
|
+
import { environment } from './environments/environment';
|
|
10
|
+
|
|
11
|
+
if (environment.production) {
|
|
12
|
+
enableProdMode();
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
platformBrowserDynamic()
|
|
16
|
+
.bootstrapModule(AppModule)
|
|
17
|
+
.catch((err) => console.log(err));
|