@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.
@@ -10,34 +10,34 @@
10
10
  },
11
11
  "private": true,
12
12
  "dependencies": {
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",
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": "^2.3.0",
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": "^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",
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": "^8.52.0",
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
- 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
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
- { path: 'error', component: UncaughtErrorComponent },
8
- { path: '**', component: PageNotFoundComponent } // must always be last
7
+ { path: 'error', component: UncaughtErrorComponent },
8
+ { path: '**', component: PageNotFoundComponent } // must always be last
9
9
  ];
@@ -1,6 +1,7 @@
1
1
  import { Component } from '@angular/core';
2
2
 
3
3
  @Component({
4
+ standalone: true,
4
5
  template: '<h2>Error 500: Internal Server Error</h2>',
5
6
  })
6
7
  export class UncaughtErrorComponent { }
@@ -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
- { path: '', redirectTo: '/home', pathMatch: 'full'},
7
- { path: 'home', component: HomeComponent, data: { text: 'Home' }}
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 { IgxNavigationDrawerModule, IgxNavbarModule, IgxLayoutModule, IgxRippleModule } from 'igniteui-angular';
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
- provideRouter(routes, withComponentInputBinding()),
12
- importProvidersFrom(
13
- BrowserModule,
14
- HammerModule,
15
- IgxLayoutModule,
16
- IgxNavbarModule,
17
- IgxNavigationDrawerModule,
18
- IgxRippleModule),
19
- provideAnimations(),
20
- // provide the HAMMER_GESTURE_CONFIG token
21
- // to override the default settings of the HammerModule
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": "^17.0.0",
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": "^15.0.4",
23
- "hammerjs": "^2.0.8",
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": "^2.3.0",
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": "^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",
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": "^3.3.6",
41
- "@types/hammerjs": "^2.0.41",
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": "^8.52.0",
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 { IgxNavigationDrawerModule, IgxNavbarModule, IgxLayoutModule, IgxRippleModule } from 'igniteui-angular';
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
- provideRouter(routes, withComponentInputBinding()),
13
- importProvidersFrom(
14
- BrowserModule,
15
- HammerModule,
16
- IgxLayoutModule,
17
- IgxNavbarModule,
18
- IgxNavigationDrawerModule,
19
- IgxRippleModule,
20
- AuthenticationModule),
21
- provideAnimations(),
22
- ExternalAuthService
23
- // provide the HAMMER_GESTURE_CONFIG token
24
- // to override the default settings of the HammerModule
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": "^2.0.8",
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": "^2.3.0",
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": "^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",
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": "^8.52.0",
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": "^17.0.0",
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": "^15.0.4",
23
- "hammerjs": "^2.0.8",
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": "^2.3.0",
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": "^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",
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": "^3.3.6",
41
- "@types/hammerjs": "^2.0.41",
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": "^8.52.0",
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.1313",
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.3",
15
+ "@igniteui/cli-core": "~13.1.5",
16
16
  "typescript": "~4.7.2"
17
17
  }
18
18
  }