Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5,176 changes: 3,171 additions & 2,005 deletions package-lock.json

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,35 +42,35 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^20.0.3",
"@angular/common": "^20.0.3",
"@angular/compiler": "^20.0.3",
"@angular/core": "^20.0.3",
"@angular/forms": "^20.0.3",
"@angular/platform-browser": "^20.0.3",
"@angular/platform-browser-dynamic": "^20.0.3",
"@angular/platform-server": "^20.0.3",
"@angular/router": "^20.0.3",
"@angular/ssr": "^20.0.2",
"@angular/animations": "^21.0.2",
"@angular/common": "^21.0.2",
"@angular/compiler": "^21.0.2",
"@angular/core": "^21.0.2",
"@angular/forms": "^21.0.2",
"@angular/platform-browser": "^21.0.2",
"@angular/platform-browser-dynamic": "^21.0.2",
"@angular/platform-server": "^21.0.2",
"@angular/router": "^21.0.2",
"@angular/ssr": "^21.0.2",
"@igniteui/material-icons-extended": "^3.1.0",
"express": "^5.1.0",
"fflate": "^0.8.1",
"hammerjs": "^2.0.8",
"igniteui-angular": "~20.0.3",
"igniteui-angular": "~21.0.0",
"igniteui-angular-charts": "^20.0.0",
"igniteui-angular-core": "^20.0.0",
"igniteui-angular-maps": "^20.0.0",
"igniteui-theming": "^19.2.3",
"igniteui-webcomponents": "^6.1.0",
"igniteui-theming": "^24.0.1",
"igniteui-webcomponents": "^6.3.6",
"minireset.css": "~0.0.4",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^20.0.2",
"@angular/cli": "^20.0.2",
"@angular/compiler-cli": "^20.0.3",
"@angular/build": "^21.0.2",
"@angular/cli": "^21.0.2",
"@angular/compiler-cli": "^21.0.2",
"@igniteui/angular-schematics": "~20.0.1450",
"@types/express": "^5.0.1",
"@types/hammerjs": "^2.0.40",
Expand All @@ -82,7 +82,7 @@
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"typescript": "~5.8.3"
"typescript": "~5.9.3"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "4.26.0",
Expand Down
4 changes: 2 additions & 2 deletions projects/charts/bar-chart/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Component, ViewEncapsulation } from '@angular/core';
import { CommonModule } from '@angular/common';

import { BarChartDemoComponent } from './bar-chart-sample/bar-chart-sample.component';

@Component({
selector: 'app-bar-chart',
standalone: true,
imports: [CommonModule, BarChartDemoComponent],
imports: [BarChartDemoComponent],
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
encapsulation: ViewEncapsulation.None,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { THEME_TOKEN, ThemeToken } from 'igniteui-angular';

import { THEME_TOKEN, ThemeToken } from 'igniteui-angular/core';
import { IgxBarSeriesModule, IgxCategoryHighlightLayerModule, IgxCategoryYAxisModule, IgxDataChartAnnotationModule, IgxDataChartCategoryCoreModule, IgxDataChartCategoryModule, IgxDataChartCoreModule, IgxDataChartInteractivityModule, IgxDataChartVerticalCategoryModule, IgxDataToolTipLayerModule, IgxLegendModule, IgxNumericXAxisModule } from 'igniteui-angular-charts';

@Component({
Expand All @@ -15,7 +15,6 @@ import { IgxBarSeriesModule, IgxCategoryHighlightLayerModule, IgxCategoryYAxisMo
},
],
imports: [
CommonModule,
IgxLegendModule,
IgxDataChartCoreModule,
IgxDataChartCategoryCoreModule,
Expand All @@ -28,7 +27,7 @@ import { IgxBarSeriesModule, IgxCategoryHighlightLayerModule, IgxCategoryYAxisMo
IgxBarSeriesModule,
IgxCategoryHighlightLayerModule,
IgxDataToolTipLayerModule
],
],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
templateUrl: './bar-chart-sample.component.html',
styleUrl: './bar-chart-sample.component.scss'
Expand Down
5 changes: 3 additions & 2 deletions projects/charts/bar-chart/src/main.server.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { provideZoneChangeDetection } from "@angular/core";
import { bootstrapApplication, BootstrapContext } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { config } from './app/app.config.server';

const bootstrap = () => bootstrapApplication(AppComponent, config);
const bootstrap = (context: BootstrapContext) => bootstrapApplication(AppComponent, {...config, providers: [provideZoneChangeDetection(), ...config.providers]}, context);

export default bootstrap;
4 changes: 2 additions & 2 deletions projects/charts/bar-chart/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { enableProdMode } from '@angular/core';
import { enableProdMode, provideZoneChangeDetection } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';

import { appConfig } from './app/app.config';
Expand All @@ -9,5 +9,5 @@ if (environment.production) {
enableProdMode();
}

bootstrapApplication(AppComponent, appConfig)
bootstrapApplication(AppComponent, {...appConfig, providers: [provideZoneChangeDetection(), ...appConfig.providers]})
.catch((err) => console.error(err));
4 changes: 2 additions & 2 deletions projects/charts/column-chart/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Component, ViewEncapsulation } from '@angular/core';
import { CommonModule } from '@angular/common';

import { ColumnChartDemoComponent } from './column-chart-sample/column-chart-sample.component';

@Component({
selector: 'app-column-chart',
standalone: true,
imports: [CommonModule, ColumnChartDemoComponent],
imports: [ColumnChartDemoComponent],
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
encapsulation: ViewEncapsulation.None,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { THEME_TOKEN, ThemeToken } from 'igniteui-angular';

import { THEME_TOKEN, ThemeToken } from 'igniteui-angular/core';
import { IgxCategoryChartModule } from 'igniteui-angular-charts';

@Component({
Expand All @@ -15,9 +15,8 @@ import { IgxCategoryChartModule } from 'igniteui-angular-charts';
},
],
imports: [
CommonModule,
IgxCategoryChartModule
],
],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
templateUrl: './column-chart-sample.component.html',
styleUrl: './column-chart-sample.component.scss'
Expand Down
5 changes: 3 additions & 2 deletions projects/charts/column-chart/src/main.server.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { provideZoneChangeDetection } from "@angular/core";
import { bootstrapApplication, BootstrapContext } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { config } from './app/app.config.server';

const bootstrap = () => bootstrapApplication(AppComponent, config);
const bootstrap = (context: BootstrapContext) => bootstrapApplication(AppComponent, {...config, providers: [provideZoneChangeDetection(), ...config.providers]}, context);

export default bootstrap;
4 changes: 2 additions & 2 deletions projects/charts/column-chart/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { enableProdMode } from '@angular/core';
import { enableProdMode, provideZoneChangeDetection } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';

import { appConfig } from './app/app.config';
Expand All @@ -9,5 +9,5 @@ if (environment.production) {
enableProdMode();
}

bootstrapApplication(AppComponent, appConfig)
bootstrapApplication(AppComponent, {...appConfig, providers: [provideZoneChangeDetection(), ...appConfig.providers]})
.catch((err) => console.error(err));
4 changes: 2 additions & 2 deletions projects/charts/line-chart/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Component, ViewEncapsulation } from '@angular/core';
import { CommonModule } from '@angular/common';

import { LineChartDemoComponent } from './line-chart-sample/line-chart-sample.component';

@Component({
selector: 'app-line-chart',
standalone: true,
imports: [CommonModule, LineChartDemoComponent],
imports: [LineChartDemoComponent],
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
encapsulation: ViewEncapsulation.None,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { ChangeDetectionStrategy, Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { THEME_TOKEN, ThemeToken } from 'igniteui-angular';

import { THEME_TOKEN, ThemeToken } from 'igniteui-angular/core';
import { IgxCategoryChartModule, IgxLegendModule } from 'igniteui-angular-charts';

@Component({
Expand All @@ -16,10 +16,9 @@ import { IgxCategoryChartModule, IgxLegendModule } from 'igniteui-angular-charts
],
changeDetection: ChangeDetectionStrategy.OnPush,
imports: [
CommonModule,
IgxCategoryChartModule,
IgxLegendModule,
],
IgxLegendModule
],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
templateUrl: './line-chart-sample.component.html',
styleUrl: './line-chart-sample.component.scss'
Expand Down
5 changes: 3 additions & 2 deletions projects/charts/line-chart/src/main.server.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { provideZoneChangeDetection } from "@angular/core";
import { bootstrapApplication, BootstrapContext } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { config } from './app/app.config.server';

const bootstrap = () => bootstrapApplication(AppComponent, config);
const bootstrap = (context: BootstrapContext) => bootstrapApplication(AppComponent, {...config, providers: [provideZoneChangeDetection(), ...config.providers]}, context);

export default bootstrap;
4 changes: 2 additions & 2 deletions projects/charts/line-chart/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { enableProdMode } from '@angular/core';
import { enableProdMode, provideZoneChangeDetection } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';

import { appConfig } from './app/app.config';
Expand All @@ -9,5 +9,5 @@ if (environment.production) {
enableProdMode();
}

bootstrapApplication(AppComponent, appConfig)
bootstrapApplication(AppComponent, {...appConfig, providers: [provideZoneChangeDetection(), ...appConfig.providers]})
.catch((err) => console.error(err));
4 changes: 2 additions & 2 deletions projects/charts/pie-chart/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Component, ViewEncapsulation } from '@angular/core';
import { CommonModule } from '@angular/common';

import { PieChartDemoComponent } from './pie-chart-sample/pie-chart-sample.component';

@Component({
selector: 'app-pie-chart',
standalone: true,
imports: [CommonModule, PieChartDemoComponent],
imports: [PieChartDemoComponent],
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
encapsulation: ViewEncapsulation.None,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { THEME_TOKEN, ThemeToken } from 'igniteui-angular';

import { THEME_TOKEN, ThemeToken } from 'igniteui-angular/core';
import { IgxCategoryChartModule, IgxItemLegendModule, IgxPieChartModule } from 'igniteui-angular-charts';

@Component({
Expand All @@ -15,11 +15,10 @@ import { IgxCategoryChartModule, IgxItemLegendModule, IgxPieChartModule } from '
},
],
imports: [
CommonModule,
IgxCategoryChartModule,
IgxItemLegendModule,
IgxPieChartModule
],
],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
templateUrl: './pie-chart-sample.component.html',
styleUrl: './pie-chart-sample.component.scss'
Expand Down
5 changes: 3 additions & 2 deletions projects/charts/pie-chart/src/main.server.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { provideZoneChangeDetection } from "@angular/core";
import { bootstrapApplication, BootstrapContext } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { config } from './app/app.config.server';

const bootstrap = () => bootstrapApplication(AppComponent, config);
const bootstrap = (context: BootstrapContext) => bootstrapApplication(AppComponent, {...config, providers: [provideZoneChangeDetection(), ...config.providers]}, context);

export default bootstrap;
4 changes: 2 additions & 2 deletions projects/charts/pie-chart/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { enableProdMode } from '@angular/core';
import { enableProdMode, provideZoneChangeDetection } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';

import { appConfig } from './app/app.config';
Expand All @@ -9,5 +9,5 @@ if (environment.production) {
enableProdMode();
}

bootstrapApplication(AppComponent, appConfig)
bootstrapApplication(AppComponent, {...appConfig, providers: [provideZoneChangeDetection(), ...appConfig.providers]})
.catch((err) => console.error(err));
4 changes: 2 additions & 2 deletions projects/charts/polar-chart/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Component, ViewEncapsulation } from '@angular/core';
import { CommonModule } from '@angular/common';

import { PolarChartDemoComponent } from './polar-chart-sample/polar-chart-sample.component';

@Component({
selector: 'app-polar-chart',
standalone: true,
imports: [CommonModule, PolarChartDemoComponent],
imports: [PolarChartDemoComponent],
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
encapsulation: ViewEncapsulation.None,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
import { CommonModule } from '@angular/common';
import { THEME_TOKEN, ThemeToken } from 'igniteui-angular';

import { THEME_TOKEN, ThemeToken } from 'igniteui-angular/core';
import {
IgxCategoryChartModule,
IgxDataChartAnnotationModule,
Expand All @@ -23,15 +23,14 @@ import {
},
],
imports: [
CommonModule,
IgxCategoryChartModule,
IgxDataChartCoreModule,
IgxDataChartPolarModule,
IgxDataChartPolarCoreModule,
IgxDataChartInteractivityModule,
IgxDataChartAnnotationModule,
IgxLegendModule
],
],
schemas: [CUSTOM_ELEMENTS_SCHEMA],
templateUrl: './polar-chart-sample.component.html',
styleUrl: './polar-chart-sample.component.scss'
Expand Down
5 changes: 3 additions & 2 deletions projects/charts/polar-chart/src/main.server.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { provideZoneChangeDetection } from "@angular/core";
import { bootstrapApplication, BootstrapContext } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { config } from './app/app.config.server';

const bootstrap = () => bootstrapApplication(AppComponent, config);
const bootstrap = (context: BootstrapContext) => bootstrapApplication(AppComponent, {...config, providers: [provideZoneChangeDetection(), ...config.providers]}, context);

export default bootstrap;
4 changes: 2 additions & 2 deletions projects/charts/polar-chart/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { enableProdMode } from '@angular/core';
import { enableProdMode, provideZoneChangeDetection } from '@angular/core';
import { bootstrapApplication } from '@angular/platform-browser';

import { appConfig } from './app/app.config';
Expand All @@ -9,5 +9,5 @@ if (environment.production) {
enableProdMode();
}

bootstrapApplication(AppComponent, appConfig)
bootstrapApplication(AppComponent, {...appConfig, providers: [provideZoneChangeDetection(), ...appConfig.providers]})
.catch((err) => console.error(err));
4 changes: 2 additions & 2 deletions projects/charts/step-chart/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { Component, ViewEncapsulation } from '@angular/core';
import { CommonModule } from '@angular/common';

import { StepChartDemoComponent } from './step-chart-sample/step-chart-sample.component';

@Component({
selector: 'app-step-chart',
standalone: true,
imports: [CommonModule, StepChartDemoComponent],
imports: [StepChartDemoComponent],
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
encapsulation: ViewEncapsulation.None,
Expand Down
Loading
Loading