@igniteui/angular-templates 17.1.1316-rc.0 → 17.1.1316
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/igx-ts/projects/_base/files/package.json +1 -1
- package/igx-ts/projects/_base/files/src/app/app.config.ts +5 -3
- package/igx-ts/projects/_base/files/src/index.html +0 -1
- package/igx-ts/projects/_base_with_home/files/src/index.html +17 -0
- package/igx-ts/projects/base/files/src/index.html +17 -0
- package/igx-ts/projects/side-nav-auth/files/package.json +1 -1
- package/igx-ts-legacy/projects/_base/files/ignite-ui-cli.json +1 -1
- package/igx-ts-legacy/projects/_base/files/package.json +1 -1
- package/igx-ts-legacy/projects/_base/files/src/index.html +0 -1
- package/igx-ts-legacy/projects/_base_with_home/files/index.html +17 -0
- package/igx-ts-legacy/projects/base/files/src/index.html +17 -0
- package/igx-ts-legacy/projects/side-nav-auth/files/package.json +1 -1
- package/package.json +2 -2
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
import { ApplicationConfig, importProvidersFrom } from '@angular/core';
|
|
2
2
|
import { provideRouter, withComponentInputBinding } from '@angular/router';
|
|
3
|
-
import {
|
|
3
|
+
import { HammerModule } from '@angular/platform-browser';
|
|
4
4
|
import { provideAnimations } from '@angular/platform-browser/animations';
|
|
5
|
+
import { provideHttpClient } from '@angular/common/http';
|
|
5
6
|
|
|
6
7
|
import { routes } from './app.routes';
|
|
7
8
|
|
|
8
9
|
export const appConfig: ApplicationConfig = {
|
|
9
10
|
providers: [
|
|
10
11
|
provideRouter(routes, withComponentInputBinding()),
|
|
11
|
-
importProvidersFrom(
|
|
12
|
-
provideAnimations()
|
|
12
|
+
importProvidersFrom(HammerModule),
|
|
13
|
+
provideAnimations(),
|
|
14
|
+
provideHttpClient()
|
|
13
15
|
// provide the HAMMER_GESTURE_CONFIG token
|
|
14
16
|
// to override the default settings of the HammerModule
|
|
15
17
|
// { provide: HAMMER_GESTURE_CONFIG, useClass: MyHammerConfig }
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
10
10
|
|
|
11
11
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
12
|
-
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700" rel="stylesheet">
|
|
13
12
|
</head>
|
|
14
13
|
<body class="ig-typography ig-scrollbar">
|
|
15
14
|
<app-root></app-root>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>Ignite UI for Angular</title>
|
|
6
|
+
<base href="/">
|
|
7
|
+
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
10
|
+
|
|
11
|
+
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
12
|
+
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700" rel="stylesheet">
|
|
13
|
+
</head>
|
|
14
|
+
<body class="ig-typography ig-scrollbar">
|
|
15
|
+
<app-root></app-root>
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>Ignite UI for Angular</title>
|
|
6
|
+
<base href="/">
|
|
7
|
+
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
10
|
+
|
|
11
|
+
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
12
|
+
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700" rel="stylesheet">
|
|
13
|
+
</head>
|
|
14
|
+
<body class="ig-typography ig-scrollbar">
|
|
15
|
+
<app-root></app-root>
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
|
@@ -9,7 +9,6 @@
|
|
|
9
9
|
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
10
10
|
|
|
11
11
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
12
|
-
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700" rel="stylesheet">
|
|
13
12
|
</head>
|
|
14
13
|
<body class="ig-typography ig-scrollbar">
|
|
15
14
|
<app-root></app-root>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>Ignite UI for Angular</title>
|
|
6
|
+
<base href="/">
|
|
7
|
+
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
10
|
+
|
|
11
|
+
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
12
|
+
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700" rel="stylesheet">
|
|
13
|
+
</head>
|
|
14
|
+
<body class="ig-typography ig-scrollbar">
|
|
15
|
+
<app-root></app-root>
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<title>Ignite UI for Angular</title>
|
|
6
|
+
<base href="/">
|
|
7
|
+
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
|
+
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
|
10
|
+
|
|
11
|
+
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
|
12
|
+
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700" rel="stylesheet">
|
|
13
|
+
</head>
|
|
14
|
+
<body class="ig-typography ig-scrollbar">
|
|
15
|
+
<app-root></app-root>
|
|
16
|
+
</body>
|
|
17
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igniteui/angular-templates",
|
|
3
|
-
"version": "17.1.1316
|
|
3
|
+
"version": "17.1.1316",
|
|
4
4
|
"description": "Templates for Ignite UI for Angular projects and components",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"author": "Infragistics",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@igniteui/cli-core": "~13.1.6
|
|
15
|
+
"@igniteui/cli-core": "~13.1.6",
|
|
16
16
|
"typescript": "~4.7.2"
|
|
17
17
|
}
|
|
18
18
|
}
|