@igniteui/angular-templates 19.0.1432-beta.0 → 19.0.1432

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.
@@ -24,8 +24,8 @@
24
24
  "options": {
25
25
  "outputPath": "dist/<%=dashName%>",
26
26
  "index": "src/index.html",
27
- "main": "src/main.ts",
28
- "polyfills": "src/polyfills.ts",
27
+ "browser": "src/main.ts",
28
+ "polyfills": ["src/polyfills.ts"],
29
29
  "tsConfig": "tsconfig.app.json",
30
30
  "inlineStyleLanguage": "scss",
31
31
  "assets": [
@@ -65,9 +65,7 @@
65
65
  "outputHashing": "all"
66
66
  },
67
67
  "development": {
68
- "buildOptimizer": false,
69
68
  "optimization": false,
70
- "vendorChunk": true,
71
69
  "extractLicenses": false,
72
70
  "sourceMap": true,
73
71
  "namedChunks": true
@@ -3,7 +3,8 @@ import { Component } from '@angular/core';
3
3
  @Component({
4
4
  selector: 'app-root',
5
5
  templateUrl: './app.component.html',
6
- styleUrls: ['./app.component.scss']
6
+ styleUrls: ['./app.component.scss'],
7
+ standalone: false
7
8
  })
8
9
  export class AppComponent {
9
10
  title = 'Home - IgniteUI for Angular';
@@ -2,5 +2,6 @@ import { Component } from '@angular/core';
2
2
 
3
3
  @Component({
4
4
  template: '<h2>Error 500: Internal Server Error</h2>',
5
+ standalone: false
5
6
  })
6
7
  export class UncaughtErrorComponent { }
@@ -1,6 +1,7 @@
1
1
  import { Component } from '@angular/core';
2
2
 
3
3
  @Component({
4
- template: '<h2>Error 404: Page not found</h2>'
4
+ template: '<h2>Error 404: Page not found</h2>',
5
+ standalone: false
5
6
  })
6
7
  export class PageNotFoundComponent { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@igniteui/angular-templates",
3
- "version": "19.0.1432-beta.0",
3
+ "version": "19.0.1432",
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": "~14.3.2-beta.0",
15
+ "@igniteui/cli-core": "~14.3.2",
16
16
  "typescript": "~5.5.4"
17
17
  }
18
18
  }