@ihk-gfi/lux-components-update 15.0.2 → 15.0.3

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.
@@ -1,31 +0,0 @@
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&auml;hig ist.</p>
26
- </div>
27
- </noscript>
28
-
29
- <app-root></app-root>
30
- </body>
31
- </html>
@@ -1,17 +0,0 @@
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));