@igniteui/angular-templates 17.1.1313 → 17.1.1315
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 +16 -16
- package/igx-ts/projects/_base/files/src/app/app.config.ts +5 -5
- package/igx-ts/projects/_base/files/src/app/app.routes.ts +2 -2
- package/igx-ts/projects/_base/files/src/app/error-routing/error/uncaught-error.component.ts +1 -0
- package/igx-ts/projects/empty/files/src/app/app.routes.ts +2 -2
- package/igx-ts/projects/side-nav/files/src/app/app.config.ts +18 -12
- package/igx-ts/projects/side-nav-auth/files/package.json +12 -12
- package/igx-ts/projects/side-nav-auth/files/src/app/app.config.ts +20 -14
- package/igx-ts-legacy/projects/_base/files/package.json +8 -8
- package/igx-ts-legacy/projects/side-nav-auth/files/package.json +12 -12
- package/package.json +2 -2
|
@@ -10,34 +10,34 @@
|
|
|
10
10
|
},
|
|
11
11
|
"private": true,
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@angular/animations": "
|
|
14
|
-
"@angular/common": "
|
|
15
|
-
"@angular/compiler": "
|
|
16
|
-
"@angular/core": "
|
|
17
|
-
"@angular/forms": "
|
|
18
|
-
"@angular/platform-browser": "
|
|
19
|
-
"@angular/platform-browser-dynamic": "
|
|
20
|
-
"@angular/router": "
|
|
21
|
-
|
|
13
|
+
"@angular/animations": "~17.0.0",
|
|
14
|
+
"@angular/common": "~17.0.0",
|
|
15
|
+
"@angular/compiler": "~17.0.0",
|
|
16
|
+
"@angular/core": "~17.0.0",
|
|
17
|
+
"@angular/forms": "~17.0.0",
|
|
18
|
+
"@angular/platform-browser": "~17.0.0",
|
|
19
|
+
"@angular/platform-browser-dynamic": "~17.0.0",
|
|
20
|
+
"@angular/router": "~17.0.0",
|
|
21
|
+
"hammerjs": "~2.0.8",
|
|
22
22
|
"igniteui-angular": "~17.0.0",
|
|
23
23
|
"minireset.css": "~0.0.7",
|
|
24
24
|
"rxjs": "~7.8.0",
|
|
25
|
-
"tslib": "
|
|
25
|
+
"tslib": "~2.3.0",
|
|
26
26
|
"zone.js": "~0.14.2"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@angular-devkit/build-angular": "~17.0.0",
|
|
30
|
-
"@angular-eslint/builder": "
|
|
31
|
-
"@angular-eslint/eslint-plugin": "
|
|
32
|
-
"@angular-eslint/eslint-plugin-template": "
|
|
33
|
-
"@angular-eslint/schematics": "
|
|
34
|
-
"@angular-eslint/template-parser": "
|
|
30
|
+
"@angular-eslint/builder": "~17.0.0",
|
|
31
|
+
"@angular-eslint/eslint-plugin": "~17.0.0",
|
|
32
|
+
"@angular-eslint/eslint-plugin-template": "~17.0.0",
|
|
33
|
+
"@angular-eslint/schematics": "~17.0.0",
|
|
34
|
+
"@angular-eslint/template-parser": "~17.0.0",
|
|
35
35
|
"@angular/cli": "~17.0.0",
|
|
36
36
|
"@angular/compiler-cli": "~17.0.0",
|
|
37
37
|
"@types/jasmine": "~5.1.1",
|
|
38
38
|
"@typescript-eslint/eslint-plugin": "6.9.1",
|
|
39
39
|
"@typescript-eslint/parser": "6.9.1",
|
|
40
|
-
"eslint": "
|
|
40
|
+
"eslint": "~8.52.0",
|
|
41
41
|
"igniteui-cli": "~<%=cliVersion%>",
|
|
42
42
|
"jasmine-core": "~5.1.0",
|
|
43
43
|
"karma": "~6.4.0",
|
|
@@ -7,11 +7,11 @@ import { routes } from './app.routes';
|
|
|
7
7
|
|
|
8
8
|
export const appConfig: ApplicationConfig = {
|
|
9
9
|
providers: [
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
10
|
+
provideRouter(routes, withComponentInputBinding()),
|
|
11
|
+
importProvidersFrom(BrowserModule, HammerModule),
|
|
12
|
+
provideAnimations()
|
|
13
|
+
// provide the HAMMER_GESTURE_CONFIG token
|
|
14
|
+
// to override the default settings of the HammerModule
|
|
15
15
|
// { provide: HAMMER_GESTURE_CONFIG, useClass: MyHammerConfig }
|
|
16
16
|
]
|
|
17
17
|
};
|
|
@@ -4,6 +4,6 @@ import { PageNotFoundComponent } from './error-routing/not-found/not-found.compo
|
|
|
4
4
|
import { UncaughtErrorComponent } from './error-routing/error/uncaught-error.component';
|
|
5
5
|
|
|
6
6
|
export const routes: Routes = [
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
{ path: 'error', component: UncaughtErrorComponent },
|
|
8
|
+
{ path: '**', component: PageNotFoundComponent } // must always be last
|
|
9
9
|
];
|
|
@@ -3,6 +3,6 @@ import { Routes } from '@angular/router';
|
|
|
3
3
|
import { HomeComponent } from './home/home.component';
|
|
4
4
|
|
|
5
5
|
export const routes: Routes = [
|
|
6
|
-
|
|
7
|
-
|
|
6
|
+
{ path: '', redirectTo: '/home', pathMatch: 'full' },
|
|
7
|
+
{ path: 'home', component: HomeComponent, data: { text: 'Home' } }
|
|
8
8
|
];
|
|
@@ -2,23 +2,29 @@ import { ApplicationConfig, importProvidersFrom } from '@angular/core';
|
|
|
2
2
|
import { provideRouter, withComponentInputBinding } from '@angular/router';
|
|
3
3
|
import { BrowserModule, HammerModule } from '@angular/platform-browser';
|
|
4
4
|
import { provideAnimations } from '@angular/platform-browser/animations';
|
|
5
|
-
import {
|
|
5
|
+
import {
|
|
6
|
+
IgxNavigationDrawerModule,
|
|
7
|
+
IgxNavbarModule,
|
|
8
|
+
IgxLayoutModule,
|
|
9
|
+
IgxRippleModule,
|
|
10
|
+
} from 'igniteui-angular';
|
|
6
11
|
|
|
7
12
|
import { routes } from './app.routes';
|
|
8
13
|
|
|
9
14
|
export const appConfig: ApplicationConfig = {
|
|
10
15
|
providers: [
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
16
|
+
provideRouter(routes, withComponentInputBinding()),
|
|
17
|
+
importProvidersFrom(
|
|
18
|
+
BrowserModule,
|
|
19
|
+
HammerModule,
|
|
20
|
+
IgxLayoutModule,
|
|
21
|
+
IgxNavbarModule,
|
|
22
|
+
IgxNavigationDrawerModule,
|
|
23
|
+
IgxRippleModule
|
|
24
|
+
),
|
|
25
|
+
provideAnimations()
|
|
26
|
+
// provide the HAMMER_GESTURE_CONFIG token
|
|
27
|
+
// to override the default settings of the HammerModule
|
|
22
28
|
// { provide: HAMMER_GESTURE_CONFIG, useClass: MyHammerConfig }
|
|
23
29
|
]
|
|
24
30
|
};
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "
|
|
14
|
+
"@angular/animations": "~17.0.0",
|
|
15
15
|
"@angular/common": "~17.0.0",
|
|
16
16
|
"@angular/compiler": "~17.0.0",
|
|
17
17
|
"@angular/core": "~17.0.0",
|
|
@@ -19,31 +19,31 @@
|
|
|
19
19
|
"@angular/platform-browser": "~17.0.0",
|
|
20
20
|
"@angular/platform-browser-dynamic": "~17.0.0",
|
|
21
21
|
"@angular/router": "~17.0.0",
|
|
22
|
-
"angular-auth-oidc-client": "
|
|
23
|
-
"hammerjs": "
|
|
22
|
+
"angular-auth-oidc-client": "~15.0.4",
|
|
23
|
+
"hammerjs": "~2.0.8",
|
|
24
24
|
"igniteui-angular": "~17.0.0",
|
|
25
25
|
"minireset.css": "~0.0.7",
|
|
26
26
|
"rxjs": "~7.8.0",
|
|
27
|
-
"tslib": "
|
|
27
|
+
"tslib": "~2.3.0",
|
|
28
28
|
"zone.js": "~0.14.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@angular-devkit/build-angular": "~17.0.0",
|
|
32
|
-
"@angular-eslint/builder": "
|
|
33
|
-
"@angular-eslint/eslint-plugin": "
|
|
34
|
-
"@angular-eslint/eslint-plugin-template": "
|
|
35
|
-
"@angular-eslint/schematics": "
|
|
36
|
-
"@angular-eslint/template-parser": "
|
|
32
|
+
"@angular-eslint/builder": "~17.0.0",
|
|
33
|
+
"@angular-eslint/eslint-plugin": "~17.0.0",
|
|
34
|
+
"@angular-eslint/eslint-plugin-template": "~17.0.0",
|
|
35
|
+
"@angular-eslint/schematics": "~17.0.0",
|
|
36
|
+
"@angular-eslint/template-parser": "~17.0.0",
|
|
37
37
|
"@angular/cli": "~17.0.0",
|
|
38
38
|
"@angular/compiler-cli": "~17.0.0",
|
|
39
39
|
"@angular/language-service": "~17.0.0",
|
|
40
|
-
"@types/facebook-js-sdk": "
|
|
41
|
-
"@types/hammerjs": "
|
|
40
|
+
"@types/facebook-js-sdk": "~3.3.6",
|
|
41
|
+
"@types/hammerjs": "~2.0.41",
|
|
42
42
|
"@types/jasmine": "~5.1.1",
|
|
43
43
|
"@types/jasminewd2": "~2.0.3",
|
|
44
44
|
"@typescript-eslint/eslint-plugin": "6.9.1",
|
|
45
45
|
"@typescript-eslint/parser": "6.9.1",
|
|
46
|
-
"eslint": "
|
|
46
|
+
"eslint": "~8.52.0",
|
|
47
47
|
"igniteui-cli": "~<%=cliVersion%>",
|
|
48
48
|
"jasmine-core": "~5.1.0",
|
|
49
49
|
"karma": "~6.4.0",
|
|
@@ -2,26 +2,32 @@ import { ApplicationConfig, importProvidersFrom } from '@angular/core';
|
|
|
2
2
|
import { provideRouter, withComponentInputBinding } from '@angular/router';
|
|
3
3
|
import { BrowserModule, HammerModule } from '@angular/platform-browser';
|
|
4
4
|
import { provideAnimations } from '@angular/platform-browser/animations';
|
|
5
|
-
import {
|
|
5
|
+
import {
|
|
6
|
+
IgxNavigationDrawerModule,
|
|
7
|
+
IgxNavbarModule,
|
|
8
|
+
IgxLayoutModule,
|
|
9
|
+
IgxRippleModule,
|
|
10
|
+
} from 'igniteui-angular';
|
|
6
11
|
|
|
7
12
|
import { AuthenticationModule, ExternalAuthService } from './authentication';
|
|
8
13
|
import { routes } from './app.routes';
|
|
9
14
|
|
|
10
15
|
export const appConfig: ApplicationConfig = {
|
|
11
16
|
providers: [
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
17
|
+
provideRouter(routes, withComponentInputBinding()),
|
|
18
|
+
importProvidersFrom(
|
|
19
|
+
BrowserModule,
|
|
20
|
+
HammerModule,
|
|
21
|
+
IgxLayoutModule,
|
|
22
|
+
IgxNavbarModule,
|
|
23
|
+
IgxNavigationDrawerModule,
|
|
24
|
+
IgxRippleModule,
|
|
25
|
+
AuthenticationModule
|
|
26
|
+
),
|
|
27
|
+
provideAnimations(),
|
|
28
|
+
ExternalAuthService
|
|
29
|
+
// provide the HAMMER_GESTURE_CONFIG token
|
|
30
|
+
// to override the default settings of the HammerModule
|
|
25
31
|
// { provide: HAMMER_GESTURE_CONFIG, useClass: MyHammerConfig }
|
|
26
32
|
]
|
|
27
33
|
};
|
|
@@ -19,26 +19,26 @@
|
|
|
19
19
|
"@angular/platform-browser": "~17.0.0",
|
|
20
20
|
"@angular/platform-browser-dynamic": "~17.0.0",
|
|
21
21
|
"@angular/router": "~17.0.0",
|
|
22
|
-
"hammerjs": "
|
|
22
|
+
"hammerjs": "~2.0.8",
|
|
23
23
|
"igniteui-angular": "~17.0.0",
|
|
24
24
|
"minireset.css": "~0.0.7",
|
|
25
25
|
"rxjs": "~7.8.0",
|
|
26
|
-
"tslib": "
|
|
26
|
+
"tslib": "~2.3.0",
|
|
27
27
|
"zone.js": "~0.14.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@angular-devkit/build-angular": "~17.0.0",
|
|
31
|
-
"@angular-eslint/builder": "
|
|
32
|
-
"@angular-eslint/eslint-plugin": "
|
|
33
|
-
"@angular-eslint/eslint-plugin-template": "
|
|
34
|
-
"@angular-eslint/schematics": "
|
|
35
|
-
"@angular-eslint/template-parser": "
|
|
31
|
+
"@angular-eslint/builder": "~17.0.0",
|
|
32
|
+
"@angular-eslint/eslint-plugin": "~17.0.0",
|
|
33
|
+
"@angular-eslint/eslint-plugin-template": "~17.0.0",
|
|
34
|
+
"@angular-eslint/schematics": "~17.0.0",
|
|
35
|
+
"@angular-eslint/template-parser": "~17.0.0",
|
|
36
36
|
"@angular/cli": "~17.0.0",
|
|
37
37
|
"@angular/compiler-cli": "~17.0.0",
|
|
38
38
|
"@types/jasmine": "~5.1.1",
|
|
39
39
|
"@typescript-eslint/eslint-plugin": "6.9.1",
|
|
40
40
|
"@typescript-eslint/parser": "6.9.1",
|
|
41
|
-
"eslint": "
|
|
41
|
+
"eslint": "~8.52.0",
|
|
42
42
|
"igniteui-cli": "~<%=cliVersion%>",
|
|
43
43
|
"jasmine-core": "~5.1.0",
|
|
44
44
|
"karma": "~6.4.0",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
},
|
|
12
12
|
"private": true,
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@angular/animations": "
|
|
14
|
+
"@angular/animations": "~17.0.0",
|
|
15
15
|
"@angular/common": "~17.0.0",
|
|
16
16
|
"@angular/compiler": "~17.0.0",
|
|
17
17
|
"@angular/core": "~17.0.0",
|
|
@@ -19,31 +19,31 @@
|
|
|
19
19
|
"@angular/platform-browser": "~17.0.0",
|
|
20
20
|
"@angular/platform-browser-dynamic": "~17.0.0",
|
|
21
21
|
"@angular/router": "~17.0.0",
|
|
22
|
-
"angular-auth-oidc-client": "
|
|
23
|
-
"hammerjs": "
|
|
22
|
+
"angular-auth-oidc-client": "~15.0.4",
|
|
23
|
+
"hammerjs": "~2.0.8",
|
|
24
24
|
"igniteui-angular": "~17.0.0",
|
|
25
25
|
"minireset.css": "~0.0.7",
|
|
26
26
|
"rxjs": "~7.8.0",
|
|
27
|
-
"tslib": "
|
|
27
|
+
"tslib": "~2.3.0",
|
|
28
28
|
"zone.js": "~0.14.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@angular-devkit/build-angular": "~17.0.0",
|
|
32
|
-
"@angular-eslint/builder": "
|
|
33
|
-
"@angular-eslint/eslint-plugin": "
|
|
34
|
-
"@angular-eslint/eslint-plugin-template": "
|
|
35
|
-
"@angular-eslint/schematics": "
|
|
36
|
-
"@angular-eslint/template-parser": "
|
|
32
|
+
"@angular-eslint/builder": "~17.0.0",
|
|
33
|
+
"@angular-eslint/eslint-plugin": "~17.0.0",
|
|
34
|
+
"@angular-eslint/eslint-plugin-template": "~17.0.0",
|
|
35
|
+
"@angular-eslint/schematics": "~17.0.0",
|
|
36
|
+
"@angular-eslint/template-parser": "~17.0.0",
|
|
37
37
|
"@angular/cli": "~17.0.0",
|
|
38
38
|
"@angular/compiler-cli": "~17.0.0",
|
|
39
39
|
"@angular/language-service": "~17.0.0",
|
|
40
|
-
"@types/facebook-js-sdk": "
|
|
41
|
-
"@types/hammerjs": "
|
|
40
|
+
"@types/facebook-js-sdk": "~3.3.6",
|
|
41
|
+
"@types/hammerjs": "~2.0.41",
|
|
42
42
|
"@types/jasmine": "~5.1.1",
|
|
43
43
|
"@types/jasminewd2": "~2.0.3",
|
|
44
44
|
"@typescript-eslint/eslint-plugin": "6.9.1",
|
|
45
45
|
"@typescript-eslint/parser": "6.9.1",
|
|
46
|
-
"eslint": "
|
|
46
|
+
"eslint": "~8.52.0",
|
|
47
47
|
"igniteui-cli": "~<%=cliVersion%>",
|
|
48
48
|
"jasmine-core": "~5.1.0",
|
|
49
49
|
"karma": "~6.4.0",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@igniteui/angular-templates",
|
|
3
|
-
"version": "17.1.
|
|
3
|
+
"version": "17.1.1315",
|
|
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.
|
|
15
|
+
"@igniteui/cli-core": "~13.1.5",
|
|
16
16
|
"typescript": "~4.7.2"
|
|
17
17
|
}
|
|
18
18
|
}
|